html {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

b {font-weight: 700;}

:root {
  --main-gradient-color: linear-gradient(270deg, #0b0f0e 0%, #13254d 95.45%);
  --second-gradient-color: linear-gradient(90deg, #0b0f0e 0%, #13254d 95.45%);
  --main-btn-gradient-color:linear-gradient(270deg, #95a66f 0%, #4f5e31 100%);
  --second-btn-gradient-color:linear-gradient(270deg, #4f5e31 0%, #95a66f 100%);
  --main-font-color: #ffffff;
  --special-font-color: #0b0f0e;

}

.logo {
  /* display: block; */
}

.btn {
  /* display: flex;
  align-items: center;  
  justify-content: center; */
  display: inline;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  text-align: center;
  background: var(--main-btn-gradient-color);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  border: 0;
  -webkit-box-shadow: 0px 6px 1px -4px rgba(34, 78, 80, 0.2);
  -moz-box-shadow: 0px 6px 1px -4px rgba(34, 78, 80, 0.2);
  box-shadow: 0px 6px 1px -4px rgba(34, 78, 80, 0.2);
  cursor: pointer;
}

.btn:hover {
  background: var(--second-btn-gradient-color);
}

.btn__lighting: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;
}

/* .btn__lighting:after {
  content: "";
  position: absolute;
  top: -25%;
  bottom: -25%;
  right: -25%;
  left: -25%;
  background-color: #cd2929;
  -webkit-transform: rotate(-45deg) translateY(100%);
  transform: rotate(-45deg) translateY(100%);
  -webkit-animation: fill 5s forwards;
  animation: fill 3s ease-in-out 0.05s infinite;
}

@-webkit-keyframes fill {
  0% {
    -webkit-transform: rotate(-45deg) translateY(100%);
    transform: rotate(-45deg) translateY(100%);
  }
  100% {
    -webkit-transform: rotate(-45deg) translateY(0);
    transform: rotate(-45deg) translateY(-200%);
  }
} */

@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;
  }
}



.logo__pic {
  width: 100%;
  max-width: 304px;
}

.btn__lined {
  display: block;
  border-radius: 0;
  color: var(--special-font-color);
  font-weight: 700;

  text-decoration: none;
}

.btn__lined:hover {
  color: #0449d3;
}

.btn_simple {
  position: relative;
  align-items: center;
  font-size: 2rem;
  border-radius: 5px;
  background: #02d6c8;
  box-shadow: 0px 5px 1px 0px rgba(0, 0, 0, 0.1);
  display: inline;
}
a:hover {
  cursor: pointer;
}

.btn_large {
  font-size: 1.5rem;
  padding: 1rem 1.5rem;
}
.hilight {
  color: #95a66f;
}

.crystal {
  background: #02d6c8;
}

.blue {
  background: #518bda;
}

.aqua {
  background: #109dc0;
}

.grey {
  background: #545479;
}

.wrapper {
  display: flex;
  flex-direction: column;
  /* background: url("img/clounds.jpg");
  background-repeat: no-repeat; */
  position: relative;
}

.wrapper__long {
  justify-content: space-between;
  height: 100vh;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}

/* .wrapper::before {
  display: block;
  width: 322px;
  height: 270px;
  content: "";
  position: absolute;
  right: 10%;
  top: 1%;
  background: url(img/pol3.png);
  background-size: cover;
  z-index: 1;
  animation-name: bounce-2;
  animation-timing-function: linear;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  z-index: 2;
  opacity: 0.5;
}


.wrapper::after {
  display: block;
  width: 343px;
  height: 260px;
  content: "";
  position: absolute;
  left: 5%;
  top: 10%;
  background: url(img/pol4.png);
  background-size: cover;
  z-index: 1;
  animation-name: bounce-2;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  z-index: 2;
  opacity: 0.5;
} */

.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 15px 0;
  box-sizing: border-box;
}

header {
  background: #000000;
}

.header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;

  border-radius: 15px;
  margin-top: 30px;
  -webkit-box-shadow: 0px 5px 6px -5px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 5px 6px -5px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 5px 6px -5px rgba(34, 60, 80, 0.2);
}

.header__logo {
  /* width: 66.66%; */
  flex: 1;
  padding: 0 15px;
  box-sizing: border-box;
}

.header__phone {
  /* width: 16.66%; */
  padding: 0 15px;
  font-weight: bold;
}

.header__cities {
  padding: 15px;
  font-weight: normal;
}

.header__btn {
  /* width: 16.66%; */
  padding: 0 15px;
  display: flex;
  justify-content: flex-end;
}

.phone {
  text-decoration: none;
  color: #ffffff;
}

.main {
  z-index: 3;
  position: relative;
}

.main__wrapper {
  background: url(img/clounds.jpg);
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
  color: #ffffff;
 
}

.main__offer-pic{
transform: rotate(80);
 position: absolute;
 top: 0;
 right: 25%;
 height: 100%;
 display: none;
}

.main__presentation {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin: 30px 0;
}

.main__title {
  padding: 5rem 15px 1rem;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  width: 70%;
}

.main__desscription {
  padding: 15px;
}

.main__meta {
  display: flex;
  flex-direction: column;
  /* width: 50%; */
  flex: 1;
  padding: 15px;
  box-sizing: border-box;
}

.main__img {
  /* width: 50%; */
  flex: 1;
  padding: 15px;
  box-sizing: border-box;
  min-width: 500px;
}

.main__pic {
  position: relative;
}

.main__conditioner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.main__pic:after {
  display: block;
  width: 384px;
  height: 368px;
  content: "";
  position: absolute;
  left: 10%;
  top: -40%;
  background: url("img/polygon1.png");
  background-size: cover;
  z-index: 1;
  animation-name: bounce-1;
  animation-timing-function: linear;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

@keyframes bounce-1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes bounce-2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0);
  }
}

.main__btn {
  margin: 15px 0 80px 0;
  padding: 0 15px;
  justify-content: left;
  display: flex;
  font-size: 1.5rem;
  flex-direction: row;
}

.main__btn-desc {
  font-size: 16px;
  padding: 15px;
}

.main__trigers {
  display: flex;
  flex-direction: row;
  background: #ffffff;
  border-radius: 10px;
}

.main__triger {
  padding: 15px;
  margin: 15px;
}

.triger {
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: var(--main-gradient-color);
color: #ffffff;
width: 100%;
}

.triger__icon {
  padding: 5px;
}

.triger__text {
  line-height: 1.2;
  text-align: left;
  margin-left: 15px;
}

.services {
  background: #e9e9e9;
}

.models {
  z-index: 3;
  position: relative;
}

.models__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.models__header {
  padding: 2rem;
  text-align: center;
  line-height: 2.5rem;
}

.models__title {
  font-size: 2.5rem;
  color: #18191a;
}

.models__subtitle {
  font-size: 1.5rem;
  color: var(--special-font-color); 
  text-transform: uppercase;
}

.coll-left {
  width: 50%;
  padding: 30px;
}

.coll-right {
  width: 50%;
  padding: 30px;
}
.goods {
  display: flex;
}

.goods__img {
}

.goods__pic {
  border-radius: 10px;

  box-sizing: border-box;
  width: 100%;
}

.goods__years {
  display: flex;
  flex-direction: row;
  padding: 15px;
}

.goods__title {
  font-size: 36px;
  margin: 15px 0;
}

.goods__quote {
  padding: 15px 30px;
  margin: 10px 0;
  background: #ffffff;
  border-left: 3px solid #95a66f;
  font-size: 16px;
  -webkit-box-shadow: 0px 3px 7px -2px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 3px 7px -2px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 3px 7px -2px rgba(34, 60, 80, 0.2);
  background: var(--main-gradient-color);
  color:#ffffff;
}

.goods__number {
  font-size: 2rem;
  color: var(--special-font-color);
  font-weight: 700;
  margin-right: 15px;
}
.goodes__meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.goods__triggers {
  margin: 30px 0 0;
  border-radius: 10px;
  -webkit-box-shadow: 0px 3px 7px -2px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 3px 7px -2px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 3px 7px -2px rgba(34, 60, 80, 0.2);
}

.goods__triggers .triger {
  flex-direction: column;
  box-sizing: border-box;
}
.goods__triggers .main__trigers {
  align-items: center;
  padding: 0 15px;
}

.goods__triggers .separator {
  width: 3px;
  background: var(--main-gradient-color);
  height: 100%;
  padding: 15px 0;
}
.goods__triggers .triger__icon {
  color: var(--special-font-color);
  font-size: 2rem;
  font-weight: 700;
  padding: 15px;
}

.goods__triggers .triger__text {
  text-align: center;
  margin-left: 0;
}

.goods__year-meta {
  display: flex;
  flex-direction: column;
}

.goods__sub-title {
  color: var(--special-font-color);
}

.model {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
  height: 100%;
  padding: 25px;
}

.model:hover {
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);

}

.model__adv {
  padding: 10px;
  color: #ffffff;
}

.model__title {
  text-align: center;
  padding: 0.9rem 0;
  line-height: 1.2rem;
  font-weight: 700;
}

.model__pic {
  width: 100%;
  border-radius: 15px;
}

.model__price {
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.9rem 0;
  color: #6b727e;
}

.model__btn {
  align-self: flex-start;
}

.models__item {
  min-width: 50%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  box-sizing: border-box;
}

.models__sub {
  min-width: 20%;
}

.models__sub .model {
  align-items: center;
}
.models__sub .model__title {
  text-align: center;
  padding: 10px 0;
  line-height: 1rem;
  font-weight: 700;
}

.models__sub .model__btn {
  padding: 0;
  align-self: center;
}

.models__sub-header {
  padding: 1rem;
  text-align: center;
  line-height: 1.5rem;
}

.models__sub .model {
  padding: 10px;
}

.steps {
  display: flex;
  flex-direction: column;
  background: var(--main-gradient-color);
  color: var(--main-font-color);
}
.steps__header {
  text-align: center;
  line-height: 2.5rem;
  padding: 2rem;
}

.steps__title {
  color: var(--special-font-color);
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 700;
    color: #0b0f0e;
}

.steps__title_light {
  color: #ffffff
}

.steps__wrapper {
  background: var(--main-gradient-color);
  padding: 30px 0;
  color: var(--main-font-color);
}

.steps__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.steps__img {
  width: 33.33%;
  padding: 15px;
}

.steps__pic {
  width: 100%;
  border-radius: 25px;
}

.steps__meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.steps__number {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.steps__btn {
  margin-top: 2rem;
  padding: 15px;
}

.step {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px;
}

.step__info {
  display: flex;
  flex-direction: column;
  padding-left: 15px;
}
.step__title {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.step__desc {
  margin-top: 5px;
}

.step__number-wrapper {
  background: var(--main-gradient-color);
  position: relative;
  padding: 3px;

  overflow: hidden;
  position: relative;
}

.step__number {
  top: 0px;
  color: #ffffff;
  font-size: 3.25rem;
  width: 4rem;
  text-align: center;
}

.steps__btn-img {
  position: relative;
  top: 6px;
  left: 0;
}

.question {
  border-bottom: 1px solid #cdd4e1;
  padding: 30px 0 25px;
}

.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/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;
  font-size: 14px;
  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;
}

.why__header {
  text-align: center;
  line-height: 2.5rem;
  padding: 2rem;
}

.why__title {
  font-size: 2.4rem;
  text-transform: uppercase;
  color: #132a3d;
}

.why__title-decor {
  font-weight: 700;
  display: block;
}

.why__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.why__item {
  width: 33.33%;
  padding: 45px 15px;
  box-sizing: border-box;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-item__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.why-item__img {
}

.why-item__desc {
  text-align: center;
  color: #68727d;
}

.why-item__pic {
  width: 100%;
}

.reviews {
  background:var(--main-gradient-color) ;
  color: var(--main-font-color);
  padding: 30px 0;
}

.reviews__header {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.reviews__title {
 
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 15px;
}

.reviews__title-decor {
  font-weight: 400;
  display: flex;
  text-transform: none;
}

.reviews__desc {
  line-height: 1.5rem;
  padding: 15px;
}

.reviews__wrapper {
  display: flex;
  flex-direction: row;
}

.reviews__item {
  /* width: 50%; */
  flex: 1;
  padding: 15px;
  box-sizing: border-box;
}

.review-item {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 15px;
  height: 100%;
}

.review-item__header {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.review-item__title {
  font-size: 1.5rem;
  flex: 1;
}

.review-item__meta {
  line-height: 1.5rem;
  margin: 15px 0;
}

.review-item__rating {
  display: flex;
}

.review-item__stars {
  width: 100%;
}

.brands__header {
  text-align: center;
  line-height: 2.5rem;
  padding: 2rem;
}

.brands__title {
  color: #133d2d;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 700;
}

.brands__wrapper {
  display: flex;
  flex-wrap: wrap;
}

.brand {
  padding: 15px;
  box-sizing: border-box;
  flex: 1;
  text-align: center;
}

/* .brand_s1 {
  flex: 1;
}
.brand_s2 {
  flex: 2;
} */

.map {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.map__card, .map__regions {
  display: flex;
 
  box-sizing: border-box;
}

.map__regions {
  flex-direction: column;
  width: 40%;
}

.map__card {

}

.map__img {
  width: 100%;
  max-width: 560px;
  padding: 30px;
  margin: 0 auto;
}

.map__regions {
  display: flex;
  padding: 30px 15px;
}



.map__list-region {
list-style-type: disc;
line-height: 1.5;
margin: 0 auto;
}

.gallery {
  background:var(--main-gradient-color) ;
  color: var(--main-font-color);
}

.gallery__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery__item {
width: 30%;
display: flex;
padding: 15px;
box-sizing: border-box;
flex: auto;
}

.gallery__img {
  width: 100%;
  display: block;
}

.consultation {
}

.consultation__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 15px;
  border: 1px solid #eeeeee;
}

.consultation__img {
  padding: 15px;
  width: 25%;
  box-sizing: border-box;
}

.consultation__pic {
  width: 100%;
}

.consultation__meta {
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.consultation__title {
  font-size: 2.5rem;
}

.consultation__desc {
  padding: 2rem 0;
  line-height: 1.5rem;
}

.consultation__action {
  display: flex;
  flex-direction: row;
}

.consultation__social {
  display: flex;
  flex-direction: row;
  padding: 5px;
  line-height: 0;
}

.consultation__desc-highlight {
  font-weight: 700;
}

.consultation__btn {
  display: flex;
  align-items: center;
}

.social-link {
  padding: 5px;
}

.footer {
  background: var(--main-gradient-color);

  padding: 15px;
  text-align: center;
}

.copyright {
  text-decoration: none;
  color: var(--main-font-color);
}

@media screen and (max-width: 1200px) {
  html {
    font-size: 14px;
  }
  .main__pic:after {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  .main__title {
    font-size: 2.2rem;
    text-align: center;
  }
  .goods__triggers .main__trigers {
    flex-wrap: wrap;
    justify-content: center;
  }
  .separator {
    display: none;
  }
  .main__meta {
    align-items: center;
  }
}

@media screen and (max-width: 960px) {
  .main__presentation {
    flex-direction: column;
  }
  .main__title {
    font-size: 3.8rem;
    text-align: center;
  }

  .main__img {
    min-width: auto;
  }

  .models__item {
    flex: auto;
    width: 50%;
  }
  .why-item__title {
    font-size: 1.3rem;
  }
  .why-item__desc {
    font-size: 1.2rem;
  }
  .reviews__wrapper {
    flex-direction: column;
  }
  .consultation__img {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .step__title {
    font-size: 1.5rem;
  }

  .wrapper::after,
  .wrapper::before {
    display: none;
  }
  .step__number-wrapper {
    height: 4rem;
  }
  .step__number {
    font-size: 4.25rem;
  }
  .btn_simple {
    font-size: 1.5rem;
  }
  .steps__btn-img {
    display: none;
  }

  .why__item {
    width: 50%;
  }
  .reviews__header {
    flex-direction: column;
  }
  .reviews__desc {
    text-align: center;
  }
  .header__logo {
    width: 100%;
    text-align: center;
  }
  .header__phone {
    width: 50%;
    text-align: right;
    box-sizing: border-box;
  }
  .header__btn {
    width: 50%;
    text-align: center;
    box-sizing: border-box;
    justify-content: center;
  }
  .main__title {
    font-size: 2.8rem;
    padding: 1rem 15px 2rem;
    width:100%;
  }
  .main__presentation {
    margin: 0;
  }
  .btn {
    font-size: 1.4rem;
  }
  .phone {
    font-size: 1.4rem;
    padding: 15px;
    margin: 10px 0;
  }
  .steps__img {
    display: none;
  }
  .header__btn {
    display: none;
  }

  .coll-left,
  .coll-right {
    width: 100%;
  }
  .goods {
    display: flex;
    flex-wrap: wrap;
  }
  .main__trigers {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .main__btn {
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
  }

  .goods__title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
  }
  header {
    padding: 0 15px;
  }
  
.gallery__item {
  width: 50%;
  }
  .map__regions {
   
    width: 100%;
}
.map__list-region {
  list-style-type: none;
  
}

.triger {
  text-align: center;
  justify-content: center;
  width: 100%;
}

.coll-left {
  order: 2;
}

}

@media screen and (max-width: 510px) {
  .models__item {
    flex: auto;
    width: 100%;
  }
  .header__logo {
    margin-bottom: 0px;
    width: 100%;
  }
  .header__phone {
    padding: 15px;
    width: 100%;
    text-align: center;
  }
  .wrapper {
    background-position-x: 80%;
  }
  .header {
    flex-direction: column;
  }
  .gallery__item {
    width: 100%;
    }
}

@media screen and (max-width: 590px) {
  .consultation__action {
    align-items: center;
    flex-direction: column;
  }
  .consultation__wrapper {
    flex-direction: column;
  }
  .consultation__pic {
    width: 100%;
    max-width: 300px;
  }
  .consultation__meta {
    text-align: center;
  }
  .consultation__btn {
    padding: 15px 0 25px;
  }
  .main__btn-desc {
    text-align: center;
  }
}

@media screen and (max-width: 481px) {
  .header {
    flex-direction: column;
  }
  .header__phone {
    width: 100%;
    text-align: center;
  }
  .main__title {
    font-size: 2.2rem;
  }
  .triger__text {
    font-size: 0.8rem;
  }
  .models__title {
    font-size: 3.5rem;
    line-height: 1;
    color: #133d2d;
    font-weight: 700;
  }
  .models__subtitle {
    font-size: 1rem;
    margin-top: 15px;
    line-height: 1;
    color: #000000;
    text-transform: uppercase;
  }

  .main__desscription {
    text-align: center;
  }
}

@media screen and (max-width: 420px) {
  .why__item {
    width: 100%;
  }
  /* .header {
  padding: 5px 0;
} */
  .header__phone {
    padding: 10px;
  }
  .main {
    padding: 5px 0;
  }
  .main__meta {
    padding: 8px 15px;
  }
  .main__title {
    padding: 1rem 15px 1rem;
  }
  .main__img {
    padding: 8px 15px;
  }
  .triger__icon {
    margin-bottom: 10px;
  }
  .main__title {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 380px) {
  .steps__title {
    font-size: 2rem;
  }
  .models__title {
    font-size: 2rem;
  }
  .main__title {
    font-size: 1.6rem;
  }
  .main__triger {
    padding: 15px 0;
  }
  .main__trigers {
    justify-content: space-around;
  }
  .step__title {
    font-size: 1.2rem;
  }
  .steps__title {
    font-size: 1.4rem;
  }
  .consultation__title {
    font-size: 1.9rem;
  }
  .triger__text {
    font-size: 0.7rem;
  }
}
