@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/MontserratMedium.woff2) format("woff2"), url(../fonts/MontserratMedium.woff) format("woff"), url(../fonts/MontserratMedium.otf) format("opentype"), url(../fonts/MontserratMedium.ttf) format("truetype");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/MontserratRegular.woff2) format("woff2"), url(../fonts/MontserratRegular.woff) format("woff"), url(../fonts/MontserratRegular.otf) format("opentype"), url(../fonts/MontserratRegular.ttf) format("truetype");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: 'Tenor';
  src: url(../fonts/TenorSansRegular.woff2) format("woff2"), url(../fonts/TenorSansRegular.woff) format("woff"), url(../fonts/TenorSansRegular.otf) format("opentype"), url(../fonts/TenorSansRegular.ttf) format("truetype");
  font-style: normal;
  font-weight: normal;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #333333;
}

button {
  display: block;
  border: none;
  outline: none;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-transition: .4s;
  transition: .4s;
}

h1, h2, h3, h4, h5, h6, p, ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  display: block;
  text-decoration: none;
}

/*
    list sections

    common
    topSection
    ProductsSection
    StocksSection
    PaymenSection
    AboutSection
    formatSection
    Contact__form
    GalarySection
    footer

*/
/* common start*/
.wrapper {
  max-width: 1170px;
  margin: 0 auto;
}

.title {
  font-family: 'Tenor';
  font-weight: normal;
  font-size: 60px;
  line-height: 70px;
  text-align: center;
}

.title span {
  display: block;
}

/* common end*/
/* header start*/
.header {
  background: #3F5C6C;
  padding: 17px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .header__logo {
  width: 45px;
  height: 59px;
}

.header .header__logo img {
  width: 100%;
  height: 100%;
}

.header .header__nav {
  width: 65%;
}

.header .header__nav .header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header .header__nav .header__list a {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  position: relative;
}

.header .header__nav .header__list a:after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 1px;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header .header__nav .header__list a:hover:after {
  width: 100%;
}

.header .header__nav .header__list .active__anchor:after {
  width: 100%;
}

.header .header__tel {
  width: 24%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
}

.header .header__tel img {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

.header .burger {
  display: none;
  width: 30px;
  height: 30px;
  padding: 0;
  background: transparent;
  border: none;
}

.header .burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: relative;
  border-radius: 5px;
}

.header .burger span:after, .header .burger span:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background: #fff;
}

.header .burger span:after {
  bottom: -5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header .burger span:before {
  top: -5px;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.header .active_burger span {
  background: transparent;
}

.header .active_burger span:after {
  -webkit-transform: translateY(-5px) rotate(45deg);
          transform: translateY(-5px) rotate(45deg);
}

.header .active_burger span:before {
  -webkit-transform: translateY(5px) rotate(-405deg);
          transform: translateY(5px) rotate(-405deg);
}

.header .header__social {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .header__social .social__item {
  margin: 0 10px;
  width: 35px;
  height: 35px;
}

.header .header__social .social__item img {
  width: 100%;
  height: 100%;
}

/* header end*/
/* topSection start*/
.top {
  padding: 238px 0 110px 0;
  background: url(../img/top/topbg.jpg) no-repeat center center;
  background-size: 100% 100%;
}

.top__title {
  font-family: 'Tenor';
  font-weight: normal;
  font-size: 65px;
  line-height: 76px;
  color: #FFFFFF;
  margin-bottom: 42px;
}

.top__title span {
  display: block;
}

.top__consult {
  background: transparent;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: #FFFFFF;
  margin-bottom: 117px;
}

.top__consult:hover img {
  -webkit-animation: opacityImg 1s infinite linear;
          animation: opacityImg 1s infinite linear;
}

.top__consult span {
  margin-right: 22px;
  text-transform: none;
}

.top__consult img {
  width: 60px;
  height: auto;
}

.top__advanteges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top__advanteges .advanteg__item:nth-child(1) {
  margin-right: 84px;
}

.top__advanteges .advanteg__item:nth-child(2) {
  margin-right: 44px;
}

.top__advanteges .advanteg__item .img {
  width: 70px;
  height: 70px;
  background: #3F5C6C;
  -webkit-box-shadow: 0px 0px 25px rgba(205, 107, 52, 0.25);
          box-shadow: 0px 0px 25px rgba(205, 107, 52, 0.25);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 13px;
}

.top__advanteges .advanteg__item img {
  max-height: 40px;
  width: auto;
}

.top__advanteges .advanteg__item .text {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #FFFFFF;
}

.top__advanteges .advanteg__item .text span {
  display: block;
}

/* topSection end*/
/* ProductsSection start*/
.products {
  padding: 70px 0;
}

.products__advanteges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 70px 0;
  border-bottom: 2px solid rgba(51, 51, 51, 0.1);
  margin-bottom: 70px;
  position: relative;
}

.products__advanteges:after {
  position: absolute;
  content: "";
  background: #3F5C6C;
  border-radius: 15px;
  width: 330px;
  height: 5px;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.products__advanteges .item {
  margin: 0 40px;
}

.products__advanteges .item .img {
  background: #3F5C6C;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.products__advanteges .item .img img {
  max-width: 44px;
}

.products__advanteges .item .text {
  margin-top: 12px;
  text-align: center;
  font-family: 'Tenor';
  font-weight: normal;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
}

.products__advanteges .item .text span {
  display: block;
}

.products__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 70px;
}

.products__list .products__item {
  width: 370px;
  margin-bottom: 42px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding-bottom: 25px;
}

.products__list .products__item:nth-child(3n + 2) {
  margin: 0 30px 42px 30px;
}

.products__list .products__item:last-child .product__title {
  letter-spacing: -0.055em;
}

.products__list .products__item .img {
  width: 100%;
  height: 237px;
  border-radius: 15px;
  overflow: hidden;
}

.products__list .products__item .img img {
  width: 100%;
  height: 100%;
}

.products__list .products__item .wrap_prod {
  padding: 0 12px;
}

.products__list .products__item .product__title {
  font-family: 'Tenor';
  font-size: 24px;
  line-height: 28px;
  margin: 30px 0 20px 0;
}

.products__list .products__item .product__text {
  font-size: 18px;
  line-height: 22px;
  min-height: 180px;
}

.products__list .products__item .order__btn {
  background: #3F5C6C;
  border-radius: 25px;
  padding: 11px 90px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.15em;
  color: #FFFFFF;
  margin-top: 40px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.products__list .products__item .order__btn:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 100%;
  top: 0;
  left: -60px;
  background: #fff;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
  -webkit-animation: blick 3s linear infinite;
          animation: blick 3s linear infinite;
}

@-webkit-keyframes blick {
  0% {
    left: -60px;
    -webkit-transform: skew(-15deg);
            transform: skew(-15deg);
  }
  40%, 100% {
    left: 400px;
    -webkit-transform: skew(-15deg);
            transform: skew(-15deg);
  }
}

@keyframes blick {
  0% {
    left: -60px;
    -webkit-transform: skew(-15deg);
            transform: skew(-15deg);
  }
  40%, 100% {
    left: 400px;
    -webkit-transform: skew(-15deg);
            transform: skew(-15deg);
  }
}

.products__list .products__item .order__btn:hover {
  background: #517d8b;
  -webkit-box-shadow: 0 0 30px rgba(63, 92, 108, 0.7);
          box-shadow: 0 0 30px rgba(63, 92, 108, 0.7);
}

/* ProductsSection end*/
/* AboutSection start*/
.about .wrapper {
  padding: 70px 0;
  border-top: 2px solid rgba(51, 51, 51, 0.1);
  border-bottom: 2px solid rgba(51, 51, 51, 0.1);
}

.about .about__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 70px;
}

.about .about__description .text {
  width: 555px;
}

.about .about__description .text .about__descr__title {
  font-family: 'Tenor';
  font-weight: normal;
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 35px;
}

.about .about__description .text .about__descr__title span {
  display: block;
}

.about .about__description .text .about__descr__text {
  position: relative;
  padding-left: 15px;
  font-size: 18px;
  line-height: 22px;
}

.about .about__description .text .about__descr__text p:not(:last-child) {
  margin-bottom: 25px;
}

.about .about__description .text .about__descr__text:before {
  content: "";
  position: absolute;
  width: 0;
  left: 0;
  height: 100%;
  width: 5px;
  background: #3F5C6C;
  border-radius: 15px;
}

.about .about__description .img {
  background: url(../img/about.png) no-repeat center center;
  background-size: cover;
  width: 470px;
  border-radius: 15px;
}

/* AboutSection end*/
/* formatSection start*/
.format {
  padding: 70px 0;
}

.format .sub__title {
  margin: 70px 0 45px 0;
  font-family: 'Tenor';
  font-weight: normal;
  font-size: 36px;
  line-height: 42px;
  color: #000003;
}

.format .list__item {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.format .list__item .number {
  display: block;
  font-family: 'Tenor';
  background: #3F5C6C;
  width: 50px;
  height: 50px;
  text-align: center;
  padding-top: 10px;
  margin-right: 20px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 28px;
  color: #FFFFFF;
}

.format .list__item .text {
  font-size: 24px;
  line-height: 29px;
  color: #000003;
}

.format .contact_us {
  margin-top: 45px;
  padding: 18px 45px;
  background: #3F5C6C;
  -webkit-box-shadow: 0px 0px 25px rgba(63, 92, 108, 0.25);
          box-shadow: 0px 0px 25px rgba(63, 92, 108, 0.25);
  border-radius: 60px;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: #FFFFFF;
}

.format .contact_us:hover {
  -webkit-box-shadow: 0 0 40px #265670;
          box-shadow: 0 0 40px #265670;
}

/* formatSection end*/
/* contact__form start*/
.contact__form {
  background: #3F5C6C;
  padding: 70px 0;
}

.contact__form .title {
  color: #fff;
  margin-bottom: 70px;
}

.contact__form .form {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contact__form .form__text {
  width: 710px;
  margin-right: 90px;
}

.contact__form .form__text .form__title {
  font-family: 'Tenor';
  font-size: 36px;
  line-height: 50px;
  margin-bottom: 15px;
}

.contact__form .form__text .form__title span {
  display: block;
}

.contact__form .form__text:nth-child(2) {
  margin-bottom: 50px;
}

.contact__form .form__text .form__text {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
}

.contact__form .form__information {
  width: 370px;
}

.contact__form .form__information .label span {
  display: block;
  font-family: 'Tenor';
  font-size: 14px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.contact__form .form__information input[type=text],
.contact__form .form__information input[type=tel],
.contact__form .form__information input[type=email],
.contact__form .form__information textarea {
  width: 100%;
  display: block;
  border: none;
  border-bottom: 2px solid #fff;
  background: transparent;
  outline: none;
  color: #fff;
}

.contact__form .form__information input[type=text] {
  margin-bottom: 30px;
}

.contact__form .form__information input[type=tel] {
  margin-bottom: 17px;
}

.contact__form .form__information input[type=email] {
  margin-bottom: 22px;
}

.contact__form .form__information textarea {
  margin-bottom: 30px;
  resize: none;
  height: 30px;
}

.contact__form .form__information textarea::-webkit-input-placeholder,
.contact__form .form__information input::-webkit-input-placeholder {
  color: #fff;
}

.contact__form .form__information textarea::-moz-placeholder,
.contact__form .form__information input::-moz-placeholder {
  color: #fff;
}

.contact__form .form__information textarea:-ms-input-placeholder,
.contact__form .form__information input:-ms-input-placeholder {
  color: #fff;
}

.contact__form .form__information .file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border: 2px solid #FFFFFF;
  border-radius: 4px;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  text-align: center;
}

.contact__form .form__information .file input[type=file] {
  outline: none;
  display: none;
}

.contact__form .form__information .file span {
  display: block;
  font-size: 14px;
  line-height: 17px;
}

.contact__form .form__information .file .border {
  border: 2px solid #FFFFFF;
  border-radius: 2px;
  padding: 5px 11px;
  color: #FFFFFF;
  margin-right: 19px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact__form .form__information .file:hover .border {
  border: 2px solid #000;
}

.contact__form .form__information .file:hover .title {
  color: #000;
}

.contact__form .form input[type=submit] {
  cursor: pointer;
  display: block;
  -webkit-box-shadow: 0px 0px 25px rgba(63, 92, 108, 0.25);
          box-shadow: 0px 0px 25px rgba(63, 92, 108, 0.25);
  border-radius: 60px;
  background: #FFFFFF;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: #3F5C6C;
  padding: 18px 43px;
  border: none;
  outline: none;
  margin: 70px auto 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact__form .form input[type=submit]:hover {
  -webkit-box-shadow: 0 0 30px #a3c0cf;
          box-shadow: 0 0 30px #a3c0cf;
}

/* contact__form end*/
/* GalarySection start*/
.gallary {
  padding: 70px 0;
}

.gallary .gallary__list {
  margin: 93px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.gallary .gallary__list img {
  display: none;
  width: 270px;
  height: 160px;
  border-radius: 15px;
  margin-bottom: 50px;
}

.gallary .watch__more {
  padding: 18px 72px;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: #FFFFFF;
  background: #3F5C6C;
  -webkit-box-shadow: 0px 0px 25px rgba(63, 92, 108, 0.25);
          box-shadow: 0px 0px 25px rgba(63, 92, 108, 0.25);
  border-radius: 60px;
  margin: 0 auto;
}

.gallary .watch__more:hover {
  background: #0e3b52;
}

/* GalarySection end*/
/* footer start*/
.footer {
  padding: 35px 0;
  border-top: 2px solid rgba(51, 51, 51, 0.1);
  position: relative;
}

.footer .footer__logo {
  width: 68px;
  height: 86px;
  margin: 0 auto;
}

.footer .footer__logo img {
  width: 100%;
  height: 100%;
}

.footer .social__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 36px auto;
}

.footer .social__links .social__item {
  margin: 0 10px;
  width: 35px;
  height: 35px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.footer .social__links .social__item:hover {
  -webkit-transform: rotate(360deg) scale(1.2);
          transform: rotate(360deg) scale(1.2);
}

.footer .social__links .social__item img {
  width: 100%;
  height: 100%;
}

.footer .footer__cont {
  display: block;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: #333333;
  text-align: center;
}

.footer .footer__mail {
  margin: 20px auto 36px auto;
}

.footer .footer__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  position: relative;
  padding-top: 36px;
  text-align: center;
}

.footer .footer__text:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: rgba(51, 51, 51, 0.1);
  border-radius: 15px;
  width: 370px;
  height: 2px;
}

.footer .footer__text .registration__number {
  margin-bottom: 20px;
}

.footer .up {
  position: absolute;
  top: 27px;
  right: 15%;
}

.footer .up button {
  background: #3F5C6C;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.footer .up button:hover img {
  -webkit-animation: opacityImg 1s infinite linear;
          animation: opacityImg 1s infinite linear;
}

.footer .up button img {
  height: 21px;
  width: auto;
}

.footer .up p {
  text-align: center;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
}

@-webkit-keyframes opacityImg {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes opacityImg {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* footer end*/
/* modal start*/
.modal_order,
.modal_call {
  position: fixed;
  top: 0;
  left: -999px;
  width: 1%;
  height: 1%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  overflow-y: auto;
}

.modal_order .wrap,
.modal_call .wrap {
  margin: auto;
}

.modal_order .modal__form,
.modal_call .modal__form {
  background: #3F5C6C;
  border-radius: 22px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 36px 68px;
}

.modal_order .modal__form .close__modal,
.modal_call .modal__form .close__modal {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 29px;
  height: 29px;
  background: transparent;
  padding: 0;
}

.modal_order .modal__form .close__modal span,
.modal_call .modal__form .close__modal span {
  display: block;
  width: 35px;
  height: 1px;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
}

.modal_order .modal__form .close__modal span:after,
.modal_call .modal__form .close__modal span:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.modal_order .modal__form .inputs,
.modal_call .modal__form .inputs {
  width: 300px;
  margin-right: 30px;
}

.modal_order .modal__form .inputs .varient__title,
.modal_call .modal__form .inputs .varient__title {
  margin-bottom: 12px;
}

.modal_order .modal__form .inputs .varient__title .sub,
.modal_call .modal__form .inputs .varient__title .sub {
  font-family: 'Tenor';
  font-size: 14px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.modal_order .modal__form .inputs .varient__title .name,
.modal_call .modal__form .inputs .varient__title .name {
  color: #9FADB6;
  font-size: 18px;
  line-height: 22px;
  border-bottom: 2px solid #9FADB6;
}

.modal_order .modal__form .inputs .label span,
.modal_call .modal__form .inputs .label span {
  display: block;
  font-family: 'Tenor';
  font-size: 14px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.modal_order .modal__form .inputs input[type=text],
.modal_order .modal__form .inputs input[type=tel],
.modal_order .modal__form .inputs input[type=email],
.modal_order .modal__form .inputs textarea,
.modal_call .modal__form .inputs input[type=text],
.modal_call .modal__form .inputs input[type=tel],
.modal_call .modal__form .inputs input[type=email],
.modal_call .modal__form .inputs textarea {
  width: 100%;
  display: block;
  border: none;
  border-bottom: 2px solid #fff;
  background: transparent;
  outline: none;
  color: #fff;
}

.modal_order .modal__form .inputs input[type=text],
.modal_call .modal__form .inputs input[type=text] {
  margin-bottom: 12px;
}

.modal_order .modal__form .inputs input[type=email],
.modal_call .modal__form .inputs input[type=email] {
  margin-bottom: 31px;
}

.modal_order .modal__form .inputs input[type=tel],
.modal_call .modal__form .inputs input[type=tel] {
  margin-bottom: 31px;
}

.modal_order .modal__form .inputs textarea,
.modal_call .modal__form .inputs textarea {
  resize: none;
  height: 30px;
}

.modal_order .modal__form .inputs textarea::-webkit-input-placeholder,
.modal_call .modal__form .inputs textarea::-webkit-input-placeholder {
  opacity: 0.5;
}

.modal_order .modal__form .inputs textarea::-moz-placeholder,
.modal_call .modal__form .inputs textarea::-moz-placeholder {
  opacity: 0.5;
}

.modal_order .modal__form .inputs textarea:-ms-input-placeholder,
.modal_call .modal__form .inputs textarea:-ms-input-placeholder {
  opacity: 0.5;
}

.modal_order .modal__form .inputs textarea::-webkit-input-placeholder,
.modal_order .modal__form .inputs input::-webkit-input-placeholder,
.modal_call .modal__form .inputs textarea::-webkit-input-placeholder,
.modal_call .modal__form .inputs input::-webkit-input-placeholder {
  color: #fff;
}

.modal_order .modal__form .inputs textarea::-moz-placeholder,
.modal_order .modal__form .inputs input::-moz-placeholder,
.modal_call .modal__form .inputs textarea::-moz-placeholder,
.modal_call .modal__form .inputs input::-moz-placeholder {
  color: #fff;
}

.modal_order .modal__form .inputs textarea:-ms-input-placeholder,
.modal_order .modal__form .inputs input:-ms-input-placeholder,
.modal_call .modal__form .inputs textarea:-ms-input-placeholder,
.modal_call .modal__form .inputs input:-ms-input-placeholder {
  color: #fff;
}

.modal_order .modal__form .files,
.modal_call .modal__form .files {
  width: 200px;
}

.modal_order .modal__form .files .file,
.modal_call .modal__form .files .file {
  width: 100%;
  background: transparent;
  cursor: pointer;
  text-align: center;
}

.modal_order .modal__form .files .file input[type=file],
.modal_call .modal__form .files .file input[type=file] {
  outline: none;
  display: none;
}

.modal_order .modal__form .files .file span,
.modal_call .modal__form .files .file span {
  display: block;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
  text-align: center;
}

.modal_order .modal__form .files .file .border,
.modal_call .modal__form .files .file .border {
  border: 1px solid #FFFFFF;
  border-radius: 2px;
  padding: 5px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 71px;
  margin: 0 auto 10px auto;
}

.modal_order .modal__form input[type=submit],
.modal_call .modal__form input[type=submit] {
  display: block;
  -webkit-box-shadow: 0px 0px 25px rgba(63, 92, 108, 0.25);
          box-shadow: 0px 0px 25px rgba(63, 92, 108, 0.25);
  border-radius: 60px;
  background: #FFFFFF;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #3F5C6C;
  padding: 11px 58px;
  border: none;
  outline: none;
  margin: 65px auto 0 auto;
}

.modal_order .files {
  padding-top: 90px;
}

.modal_call .files {
  padding-top: 35px;
}

.gratitude {
  position: fixed;
  top: 0;
  left: -999px;
  width: 1%;
  height: 1%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.7);
  overflow-y: auto;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.gratitude .wrap {
  margin: auto;
}

.gratitude .gratitude__text {
  background: #3F5C6C;
  border-radius: 25px;
  padding: 87px 170px 60px 170px;
  position: relative;
  text-align: center;
}

.gratitude .gratitude__text .close__modal {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 29px;
  height: 29px;
  background: transparent;
  padding: 0;
}

.gratitude .gratitude__text .close__modal span {
  display: block;
  width: 35px;
  height: 1px;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
}

.gratitude .gratitude__text .close__modal span:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.gratitude .gratitude__text .img {
  width: 98px;
  height: 98px;
  margin: 0 auto;
}

.gratitude .gratitude__text .img img {
  width: 100%;
  height: 100%;
}

.gratitude .gratitude__text .gratitude__title {
  font-family: 'Tenor';
  font-size: 24px;
  line-height: 28px;
  color: #FFFFFF;
  margin: 45px auto 19px auto;
}

.gratitude .gratitude__text .gratitude__descr {
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
}

.gratitude .gratitude__text .gratitude__descr span {
  display: block;
}

.active__modal {
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 100;
}

/* modal end*/
/*   media   start*/
/*header media start*/
@media screen and (max-width: 1150px) {
  .header {
    overflow-y: auto;
  }
  .header .wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: auto;
  }
  .header .header__logo {
    width: 40px;
    height: 50px;
  }
  .header .header__nav {
    display: none;
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .header .header__nav .header__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header .header__nav .header__list a {
    font-size: 24px;
    line-height: 40px;
    text-align: center;
  }
  .header .header__nav .header__list a:after {
    display: none;
  }
  .header .header__tel {
    width: 210px;
  }
  .header .burger {
    display: block;
  }
  .header .header__social {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    display: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .header__social .social__item {
    margin: 0 10px;
    width: 35px;
    height: 35px;
  }
  .header .header__social .social__item:hover img {
    -webkit-transform: rotate(360deg) scale(1.2);
            transform: rotate(360deg) scale(1.2);
  }
  .header .header__social .social__item img {
    width: 100%;
    height: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .active_header {
    padding: 0;
    height: 100vh;
  }
  .active_header .wrapper {
    padding: 17px 0;
  }
  .active_header .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20vh;
  }
  .active_header .header__social {
    margin-top: 40vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

@media screen and (min-height: 721px) and (max-height: 900px) {
  .active_header .header__nav {
    margin-top: 15vh;
  }
  .active_header .header__social {
    margin-top: 35vh;
  }
}

@media screen and (min-height: 551px) and (max-height: 720px) {
  .active_header .header__nav {
    margin-top: 15vh;
  }
  .active_header .header__social {
    margin-top: 25vh;
  }
}

@media screen and (min-height: 410px) and (max-height: 550px) {
  .active_header .header__nav {
    margin-top: 5vh;
  }
  .active_header .header__social {
    margin-top: 15vh;
  }
}

@media screen and (max-height: 409px) {
  .active_header .header__nav {
    margin-top: 0;
  }
  .active_header .header__social {
    margin-top: 2vh;
  }
}

/*header media end*/
@media screen and (min-width: 992px) and (max-width: 1300px) {
  .wrapper {
    max-width: 85%;
  }
  .title {
    font-size: 50px;
    line-height: 60px;
  }
  .top {
    padding: 150px 0 70px 0;
    background-size: cover;
  }
  .top__title {
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 35px;
  }
  .top__consult {
    margin-bottom: 80px;
  }
  .top__advanteges .advanteg__item:nth-child(1) {
    margin-right: 50px;
  }
  .top__advanteges .advanteg__item:nth-child(2) {
    margin-right: 40px;
  }
  .top__advanteges .advanteg__item .text {
    font-weight: 500;
    font-size: 16px;
  }
  .products {
    padding: 60px 0;
  }
  .products__advanteges .item {
    margin: 0 25px;
  }
  .products__advanteges .item .text {
    font-size: 20px;
    line-height: 26px;
  }
  .products__list {
    width: 800px;
    margin: 70px auto 0 auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .products__list .products__item:nth-child(3n + 2) {
    margin: 0 0 42px 0;
  }
  .about .wrapper {
    padding: 60px 0;
  }
  .about .about__description {
    margin-top: 60px;
  }
  .about .about__description .text {
    width: 68%;
  }
  .about .about__description .text .about__descr__title {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 30px;
  }
  .about .about__description .text .about__descr__text p:not(:last-child) {
    margin-bottom: 20px;
  }
  .about .about__description .img {
    width: 30%;
  }
  .format {
    padding: 60px 0;
  }
  .contact__form {
    padding: 60px 0;
  }
  .contact__form .title {
    margin-bottom: 60px;
  }
  .contact__form .form__text {
    width: 65%;
    margin-right: 5%;
  }
  .contact__form .form__text .form__title {
    font-size: 30px;
    line-height: 40px;
  }
  .contact__form .form__text:nth-child(2) {
    margin-bottom: 40px;
  }
  .contact__form .form__text .form__text {
    font-size: 20px;
    line-height: 30px;
  }
  .contact__form .form__information {
    width: 30%;
  }
  .gallary {
    padding: 60px 0;
  }
  .gallary .gallary__list {
    margin: 70px 0 0 0;
  }
  .gallary .gallary__list img {
    width: 24%;
    height: 140px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .wrapper {
    width: 90%;
  }
  .title {
    font-size: 36px;
    line-height: 45px;
  }
  .top {
    padding: 160px 0 110px 0;
    background-size: cover;
  }
  .top__title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 30px;
  }
  .top__consult {
    font-size: 22px;
    line-height: 25px;
    margin-bottom: 50px;
  }
  .top__consult span {
    margin-right: 15px;
    text-transform: none;
  }
  .top__consult img {
    width: 50px;
    height: auto;
  }
  .top__advanteges {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .top__advanteges .advanteg__item {
    max-width: 305px;
    margin: 0 0 20px 0;
  }
  .top__advanteges .advanteg__item:nth-child(1) {
    margin-right: 20px;
  }
  .top__advanteges .advanteg__item:nth-child(2) {
    margin-right: 20px;
  }
  .top__advanteges .advanteg__item .text {
    font-size: 16px;
    line-height: 25px;
  }
  .products {
    padding: 50px 0;
  }
  .products__advanteges {
    margin-bottom: 60px;
  }
  .products__advanteges .item {
    margin: 0 20px;
  }
  .products__advanteges .item .text {
    font-size: 18px;
    line-height: 21px;
  }
  .products__list {
    width: 690px;
    margin: 50px auto 0 auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .products__list .products__item:nth-child(3n + 2) {
    margin: 0;
  }
  .products__list .products__item {
    width: 330px;
    margin-bottom: 30px;
  }
  .products__list .products__item:last-child .product__title {
    letter-spacing: -0.055em;
  }
  .products__list .products__item .img {
    height: 200px;
  }
  .products__list .products__item .product__title {
    font-size: 22px;
    line-height: 25px;
    margin: 25px 0 15px 0;
  }
  .products__list .products__item .product__text {
    font-size: 16px;
    line-height: 20px;
    min-height: 160px;
  }
  .products__list .products__item .order__btn {
    padding: 11px 60px;
    font-size: 22px;
    line-height: 26px;
    margin-top: 30px;
  }
  .about .wrapper {
    padding: 50px 0;
  }
  .about .about__description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 50px;
  }
  .about .about__description .text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    margin-top: 30px;
  }
  .about .about__description .text .about__descr__title {
    font-size: 28px;
    line-height: 30px;
  }
  .about .about__description .img {
    width: 450px;
    height: 270px;
    margin: 0 auto;
  }
  .format {
    padding: 50px 0;
  }
  .format .sub__title {
    margin: 50px 0 35px 0;
    font-size: 30px;
    line-height: 35px;
  }
  .format .list__item {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .format .list__item .number {
    margin-right: 0;
  }
  .format .list__item .text {
    width: 90%;
    font-size: 20px;
    line-height: 25px;
    color: #000003;
  }
  .format .contact_us {
    padding: 15px 45px;
    font-size: 20px;
    line-height: 25px;
  }
  .contact__form {
    padding: 50px 0;
  }
  .contact__form .title {
    color: #fff;
    margin-bottom: 50px;
  }
  .contact__form .form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact__form .form__text {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
  .contact__form .form__text .form__title {
    font-size: 28px;
    line-height: 35px;
  }
  .contact__form .form__text .form__text {
    width: 350px;
    margin: 0 auto;
    font-weight: normal;
    font-size: 20px;
    line-height: 30px;
  }
  .contact__form .form__text:nth-child(2) {
    margin-bottom: 30px;
  }
  .contact__form .form__information {
    width: 350px;
    margin: 40px auto 0 auto;
  }
  .gallary {
    padding: 50px 0;
  }
  .gallary .gallary__list {
    margin: 60px 0 0 0;
  }
  .gallary .gallary__list img {
    width: 24%;
    height: 110px;
    margin-bottom: 30px;
  }
  .gallary .watch__more {
    padding: 10px 50px;
    font-size: 22px;
    line-height: 26px;
  }
  .footer .footer__logo {
    width: 60px;
    height: 77px;
  }
  .footer .social__links {
    margin: 30px auto;
  }
  .footer .footer__cont {
    font-size: 20px;
    line-height: 25px;
  }
  .footer .footer__mail {
    margin: 15px auto 25px auto;
  }
  .footer .footer__text {
    padding-top: 25px;
  }
  .footer .footer__text:after {
    width: 100%;
  }
  .footer .footer__text .registration__number {
    margin-bottom: 10px;
  }
  .footer .up {
    right: 10%;
  }
  .footer .up button {
    width: 50px;
    height: 50px;
    margin: 0 auto;
  }
  .footer .up p {
    font-size: 20px;
    line-height: 25px;
  }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
  .wrapper {
    width: 95%;
  }
  .title {
    font-size: 30px;
    line-height: 35px;
  }
  .top {
    padding: 160px 0 25px 0;
    background-size: cover;
  }
  .top__title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 30px;
  }
  .top__consult {
    font-size: 22px;
    line-height: 25px;
    margin-bottom: 50px;
  }
  .top__consult span {
    margin-right: 15px;
    text-transform: none;
  }
  .top__consult img {
    width: 50px;
    height: auto;
  }
  .top__advanteges {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top__advanteges .advanteg__item:nth-child(1) {
    margin: 0 0 20px 0;
  }
  .top__advanteges .advanteg__item:nth-child(2) {
    margin: 0 0 20px 0;
  }
  .top__advanteges .advanteg__item .text {
    font-size: 16px;
    line-height: 25px;
  }
  .products {
    padding: 50px 0;
  }
  .products__advanteges {
    padding: 50px 0 0 0;
    margin-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .products__advanteges .item {
    margin: 0 0 50px 0;
  }
  .products__advanteges .item .text {
    font-size: 18px;
    line-height: 21px;
  }
  .products__list {
    width: 100%;
    margin: 50px auto 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .products__list .products__item:nth-child(3n + 2) {
    margin: 0;
  }
  .products__list .products__item {
    margin-bottom: 30px;
  }
  .products__list .products__item:last-child .product__title {
    letter-spacing: normal;
  }
  .products__list .products__item .img {
    height: 250px;
  }
  .products__list .products__item .product__title {
    font-size: 22px;
    line-height: 23px;
    margin: 25px 0 15px 0;
  }
  .products__list .products__item .product__text {
    font-size: 16px;
    line-height: 17px;
    min-height: 140px;
  }
  .products__list .products__item .order__btn {
    padding: 11px 60px;
    font-size: 22px;
    line-height: 26px;
    margin-top: 30px;
  }
  .about .wrapper {
    padding: 50px 0;
  }
  .about .about__description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 50px;
  }
  .about .about__description .text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    margin-top: 30px;
  }
  .about .about__description .text .about__descr__title {
    font-size: 28px;
    line-height: 30px;
  }
  .about .about__description .img {
    width: 450px;
    height: 270px;
    margin: 0 auto;
  }
  .format {
    padding: 50px 0;
  }
  .format .sub__title {
    margin: 50px 0 35px 0;
    font-size: 25px;
    line-height: 30px;
  }
  .format .list__item {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .format .list__item .number {
    margin-right: 0;
  }
  .format .list__item .text {
    width: 90%;
    font-size: 18px;
    line-height: 20px;
    color: #000003;
  }
  .format .contact_us {
    padding: 15px 45px;
    font-size: 20px;
    line-height: 25px;
  }
  .contact__form {
    padding: 50px 0;
  }
  .contact__form .title {
    color: #fff;
    margin-bottom: 50px;
  }
  .contact__form .form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact__form .form__text {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
  .contact__form .form__text .form__title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .contact__form .form__text .form__text {
    width: 350px;
    margin: 0 auto;
    font-weight: normal;
    font-size: 20px;
    line-height: 30px;
  }
  .contact__form .form__text:nth-child(2) {
    margin-bottom: 25px;
  }
  .contact__form .form__information {
    width: 350px;
    margin: 40px auto 0 auto;
  }
  .gallary {
    padding: 50px 0;
  }
  .gallary .gallary__list {
    margin: 40px 0 0 0;
  }
  .gallary .gallary__list img {
    width: 48%;
    height: 140px;
    margin-bottom: 30px;
  }
  .gallary .watch__more {
    padding: 10px 50px;
    font-size: 22px;
    line-height: 26px;
  }
  .footer .footer__logo {
    width: 60px;
    height: 77px;
  }
  .footer .social__links {
    margin: 30px auto;
  }
  .footer .footer__cont {
    font-size: 20px;
    line-height: 25px;
  }
  .footer .footer__mail {
    margin: 15px auto 25px auto;
  }
  .footer .footer__text {
    padding-top: 25px;
  }
  .footer .footer__text:after {
    width: 100%;
  }
  .footer .footer__text .registration__number {
    margin-bottom: 10px;
  }
  .footer .up {
    right: 10%;
  }
  .footer .up button {
    width: 50px;
    height: 50px;
    margin: 0 auto;
  }
  .footer .up p {
    font-size: 20px;
    line-height: 25px;
  }
  .modal_order .modal__form,
  .modal_call .modal__form {
    border-radius: 22px;
    padding: 26px 20px;
  }
  .modal_order .modal__form .inputs,
  .modal_call .modal__form .inputs {
    width: 200px;
    margin-right: 20px;
  }
  .modal_order .modal__form .inputs .varient__title .sub,
  .modal_call .modal__form .inputs .varient__title .sub {
    font-size: 10px;
    line-height: 12px;
  }
  .modal_order .modal__form .inputs .varient__title .name,
  .modal_call .modal__form .inputs .varient__title .name {
    font-size: 14px;
    line-height: 17px;
  }
  .modal_order .modal__form .inputs .label span,
  .modal_call .modal__form .inputs .label span {
    font-size: 10px;
    line-height: 12px;
  }
  .modal_order .modal__form .inputs input[type=text],
  .modal_order .modal__form .inputs input[type=tel],
  .modal_order .modal__form .inputs input[type=email],
  .modal_order .modal__form .inputs textarea,
  .modal_call .modal__form .inputs input[type=text],
  .modal_call .modal__form .inputs input[type=tel],
  .modal_call .modal__form .inputs input[type=email],
  .modal_call .modal__form .inputs textarea {
    font-size: 14px;
    line-height: 17px;
  }
  .modal_order .modal__form .inputs input[type=text],
  .modal_call .modal__form .inputs input[type=text] {
    margin-bottom: 20px;
  }
  .modal_order .modal__form .inputs textarea,
  .modal_call .modal__form .inputs textarea {
    height: 25px;
  }
  .modal_order .modal__form input[type=submit],
  .modal_call .modal__form input[type=submit] {
    margin: 50px auto 0 auto;
  }
  .modal_call .files {
    padding-top: 45px;
  }
  .gratitude .gratitude__text {
    padding: 50px 80px;
  }
  .gratitude .gratitude__text .img {
    width: 80px;
    height: 80px;
  }
}

@media screen and (max-width: 575px) {
  .wrapper {
    width: 100%;
    padding: 0 18px;
  }
  .title {
    font-size: 24px;
    line-height: 28px;
  }
  .header {
    padding: 12px 0;
  }
  .header .header__logo {
    width: 21px;
    height: 28px;
  }
  .header .header__nav .header__list a {
    text-align: left;
  }
  .header .header__tel {
    width: auto;
    font-size: 14px;
    line-height: 17px;
  }
  .header .header__tel img {
    display: none;
  }
  .active_header {
    padding: 0;
  }
  .active_header .wrapper {
    padding: 12px 18px;
  }
  .active_header .header__nav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .active_header .header__social {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .top {
    padding: 95px 0 25px 0;
    background-size: cover;
  }
  .top__title {
    font-size: 28px;
    line-height: 33px;
    margin-bottom: 30px;
  }
  .top__consult {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 40px;
  }
  .top__consult span {
    margin-right: 10px;
  }
  .top__consult img {
    width: 30px;
  }
  .top__advanteges {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top__advanteges .advanteg__item:nth-child(1) {
    margin: 0 0 30px 0;
  }
  .top__advanteges .advanteg__item:nth-child(2) {
    margin: 0 0 30px 0;
  }
  .top__advanteges .advanteg__item .img {
    margin-bottom: 5px;
    width: 50px;
    height: 50px;
  }
  .top__advanteges .advanteg__item .img img {
    max-height: 29px;
  }
  .top__advanteges .advanteg__item .text {
    font-size: 14px;
    line-height: 18px;
  }
  .products {
    padding: 40px 0;
  }
  .products__advanteges {
    padding: 50px 0 0 0;
    margin-bottom: 35px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .products__advanteges:after {
    width: 95%;
  }
  .products__advanteges .item {
    margin: 0 0 50px 0;
  }
  .products__advanteges .item .text {
    font-size: 18px;
    line-height: 21px;
  }
  .products .title span {
    display: inline;
  }
  .products__list {
    width: 100%;
    margin: 50px auto 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .products__list .products__item:nth-child(3n + 2) {
    margin: 0;
  }
  .products__list .products__item {
    max-width: 320px;
    margin-bottom: 30px;
  }
  .products__list .products__item:last-child .product__title {
    letter-spacing: normal;
  }
  .products__list .products__item .img {
    height: 200px;
  }
  .products__list .products__item .product__title {
    font-size: 22px;
    line-height: 23px;
    margin: 25px 0 15px 0;
  }
  .products__list .products__item .product__text {
    font-size: 14px;
    line-height: 17px;
    min-height: 140px;
  }
  .products__list .products__item .order__btn {
    padding: 10px 77px;
    font-size: 20px;
    line-height: 24px;
    margin-top: 30px;
  }
  .about .wrapper {
    padding: 35px 18px 50px 18px;
  }
  .about .about__description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
  .about .about__description .text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    margin-top: 30px;
  }
  .about .about__description .text .about__descr__title {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 15px;
  }
  .about .about__description .text .about__descr__text {
    font-size: 14px;
    line-height: 17px;
    padding: 0;
  }
  .about .about__description .text .about__descr__text p:not(:last-child) {
    margin-bottom: 15px;
  }
  .about .about__description .text .about__descr__text:before {
    display: none;
  }
  .about .about__description .img {
    width: 100%;
    height: 270px;
  }
  .format {
    padding: 35px 0 50px 0;
  }
  .format .sub__title {
    margin: 35px 0 30px 0;
    font-size: 20px;
    line-height: 23px;
    width: 220px;
  }
  .format .list__item {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .format .list__item .number {
    margin-right: 0;
  }
  .format .list__item .text {
    width: 80%;
    font-size: 14px;
    line-height: 17px;
  }
  .format .contact_us {
    padding: 10px 30px;
    font-size: 20px;
    line-height: 24px;
  }
  .contact__form {
    padding: 30px 0;
  }
  .contact__form .title {
    display: none;
  }
  .contact__form .form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact__form .form__text {
    width: 100%;
    margin-right: 0;
  }
  .contact__form .form__text .form__title {
    width: 250px;
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 25px;
  }
  .contact__form .form__text .form__title span {
    display: inline;
  }
  .contact__form .form__text .form__text {
    width: 100%;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
  }
  .contact__form .form__text:nth-child(2) {
    margin-bottom: 25px;
  }
  .contact__form .form__information {
    width: 100%;
    margin-top: 40px;
  }
  .contact__form .form__information .label span {
    font-size: 10px;
    line-height: 12px;
  }
  .contact__form .form__information input[type=text],
  .contact__form .form__information input[type=tel],
  .contact__form .form__information input[type=email],
  .contact__form .form__information textarea {
    width: 188px;
    border-bottom: 1px solid #fff;
    font-size: 14px;
    line-height: 17px;
  }
  .contact__form .form__information input[type=text] {
    margin-bottom: 20px;
  }
  .contact__form .form__information input[type=tel] {
    margin-bottom: 32px;
  }
  .contact__form .form__information input[type=email] {
    margin-bottom: 32px;
  }
  .contact__form .form__information textarea {
    margin-bottom: 30px;
    height: 25px;
  }
  .contact__form .form__information .file {
    display: block;
    width: 87px;
    border: none;
    padding: 0;
  }
  .contact__form .form__information .file span {
    display: block;
    font-size: 10px;
    line-height: 12px;
  }
  .contact__form .form__information .file .border {
    border: 1px solid #FFFFFF;
    padding: 5px 0;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 17px;
  }
  .contact__form .form input[type=submit] {
    border-radius: 22px;
    font-size: 20px;
    line-height: 24px;
    padding: 10px 41px;
    margin: 55px auto 0 auto;
  }
  .gallary {
    padding: 50px 0 35px 0;
  }
  .gallary .gallary__list {
    margin: 40px 0 0 0;
  }
  .gallary .gallary__list img {
    width: 48%;
    height: 25vw;
    margin-bottom: 30px;
  }
  .gallary .watch__more {
    padding: 10px 50px;
    font-size: 20px;
    line-height: 24px;
  }
  .footer {
    padding: 25px 0;
  }
  .footer .footer__logo {
    width: 60px;
    height: 77px;
  }
  .footer .social__links {
    margin: 25px auto;
  }
  .footer .footer__cont {
    font-size: 14px;
    line-height: 17px;
  }
  .footer .footer__mail {
    margin: 15px auto 25px auto;
  }
  .footer .footer__text {
    padding-top: 25px;
    font-size: 14px;
    line-height: 17px;
  }
  .footer .footer__text:after {
    width: 100%;
  }
  .footer .footer__text .registration__number {
    margin-bottom: 10px;
  }
  .footer .up {
    right: 5%;
  }
  .footer .up button {
    width: 40px;
    height: 40px;
    margin: 0 auto;
  }
  .footer .up p {
    font-size: 15px;
    line-height: 20px;
  }
  .modal_order .modal__form,
  .modal_call .modal__form {
    padding: 26px 18px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .modal_order .modal__form .close__modal,
  .modal_call .modal__form .close__modal {
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
  }
  .modal_order .modal__form .close__modal span,
  .modal_call .modal__form .close__modal span {
    width: 28px;
  }
  .modal_order .modal__form .inputs,
  .modal_call .modal__form .inputs {
    width: 190px;
    margin-right: 0;
  }
  .modal_order .modal__form .inputs .varient__title .sub,
  .modal_call .modal__form .inputs .varient__title .sub {
    font-size: 10px;
    line-height: 12px;
  }
  .modal_order .modal__form .inputs .varient__title .name,
  .modal_call .modal__form .inputs .varient__title .name {
    font-size: 14px;
    line-height: 17px;
  }
  .modal_order .modal__form .inputs .label span,
  .modal_call .modal__form .inputs .label span {
    font-size: 10px;
    line-height: 12px;
  }
  .modal_order .modal__form .inputs input[type=text],
  .modal_order .modal__form .inputs input[type=tel],
  .modal_order .modal__form .inputs input[type=email],
  .modal_order .modal__form .inputs textarea,
  .modal_call .modal__form .inputs input[type=text],
  .modal_call .modal__form .inputs input[type=tel],
  .modal_call .modal__form .inputs input[type=email],
  .modal_call .modal__form .inputs textarea {
    font-size: 14px;
    line-height: 17px;
  }
  .modal_order .modal__form .inputs input[type=text],
  .modal_call .modal__form .inputs input[type=text] {
    margin-bottom: 20px;
  }
  .modal_order .modal__form .inputs textarea,
  .modal_call .modal__form .inputs textarea {
    height: 25px;
  }
  .modal_order .modal__form .files,
  .modal_call .modal__form .files {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .modal_order .modal__form .files .file,
  .modal_call .modal__form .files .file {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .modal_order .modal__form .files .file input[type=file],
  .modal_call .modal__form .files .file input[type=file] {
    outline: none;
    display: none;
  }
  .modal_order .modal__form .files .file span,
  .modal_call .modal__form .files .file span {
    font-size: 10px;
    line-height: 12px;
  }
  .modal_order .modal__form .files .file .border,
  .modal_call .modal__form .files .file .border {
    border: 1px solid #FFFFFF;
    border-radius: 2px;
    padding: 5px 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 71px;
    margin: 0 auto 10px auto;
  }
  .modal_order .modal__form input[type=submit],
  .modal_call .modal__form input[type=submit] {
    border-radius: 15px;
    font-size: 14px;
    line-height: 17px;
    padding: 7px 20px;
    margin: 0 10px 0 0;
  }
  .modal_order .files,
  .modal_call .files {
    padding-top: 20px;
  }
  .gratitude .gratitude__text {
    padding: 40px 20px;
  }
  .gratitude .gratitude__text .img {
    width: 80px;
    height: 80px;
  }
  .gratitude .gratitude__text .gratitude__title {
    font-size: 20px;
    line-height: 22px;
    margin: 25px auto 15px auto;
  }
  .gratitude .gratitude__text .gratitude__descr {
    width: 280px;
    font-size: 16px;
    line-height: 20px;
  }
  .gratitude .gratitude__text .gratitude__descr span {
    display: inline;
  }
}

/*   media   end*/
/*# sourceMappingURL=styles.css.map */