/** Montserrat Regular **/
@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  src:
    url("../fonts/Montserrat-Regular.woff2") format("woff2"),
    url("../fonts/Montserrat-Regular.woff") format("woff");
  font-display: swap;
}

/** Montserrat SemiBold **/
@font-face {
  font-family: "Montserrat";
  font-weight: 600;
  font-style: normal;
  src:
    url("../fonts/Montserrat-SemiBold.woff2") format("woff2"),
    url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-display: swap;
}

/** Montserrat Bold **/
@font-face {
  font-family: "Montserrat";
  font-weight: 700;
  font-style: normal;
  src:
    url("../fonts/Montserrat-Bold.woff2") format("woff2"),
    url("../fonts/Montserrat-Bold.woff") format("woff");
  font-display: swap;
}

.wow {
  visibility: hidden;
}

.btn-main {
  height: 64px;
  font-size: 16px;
  padding: 0 32px;
  border-radius: 6px;
  line-height: 150%;
  -webkit-box-shadow: 0 15px 30px 0 rgba(171, 201, 190, 0.1);
  box-shadow: 0 15px 30px 0 rgba(171, 201, 190, 0.1);
  font-weight: 700;
  color: #fff;
  background: #00b10c;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.container {
  max-width: 1600px;
  padding: 0 20px;
  margin: 0 auto;
}

/* @media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 920px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

@media (min-width: 1550px) {
  .container {
    max-width: 1470px;
  }
} */

.header {
  padding: 30px 0 0;
  position: relative;
  z-index: 400;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Montserrat";
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.logo img {
  width: 151px;
  display: block;
}
.menu__list {
  gap: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.menu__list a {
  font-weight: 600;
  text-decoration: none;
  color: #282b29;
  border-bottom: 1px transparent solid;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.menu__list > li {
  gap: 6px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.menu__arrow {
  width: 10px;
  height: 9px;
  background-image: url(../img/arrow1.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.menu__list li ul {
  width: 300px;
  padding: 15px;
  -webkit-box-shadow: 0 15px 30px 0 rgba(171, 201, 190, 0.1);
  box-shadow: 0 15px 30px 0 rgba(171, 201, 190, 0.1);
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  top: 100%;
  left: 0;
  list-style-type: none;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  margin-top: 15px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
}
.menu__list li ul::before {
  position: absolute;
  display: block;
  content: " ";
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 15px;
}
.menu__list li:hover ul {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.menu__list li ul li {
  margin-bottom: 8px;
}
.menu__list li ul li:last-child {
  margin-bottom: 0;
}
.phone-main {
  gap: 6px;
  color: #282b29;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
}
.phone-main img {
  display: block;
}
.header__wrapper .phone-main {
  margin-left: -30px;
}
.header__wrapper .socials-main {
  margin-right: 15px;
}
.socials-main li {
  list-style-type: none;
}
.socials-main {
  gap: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  margin: 0;
}
.socials-main img {
  width: 16px;
  height: auto;
  display: block;
}
.header__search input {
  height: 45px;
  padding-left: 54px;
  font-size: 16px;
  line-height: 150%;
  padding-right: 15px;
  font-weight: 600;
  -webkit-box-shadow: 0 15px 30px 0 rgba(171, 201, 190, 0.1);
  box-shadow: 0 15px 30px 0 rgba(171, 201, 190, 0.1);
  background: #fff;
  width: 100%;
  color: #282b29;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  background-image: url(../img/search1.svg);
  background-repeat: no-repeat;
  background-position: center left 20px;
}
.header__search *::-webkit-input-placeholder {
  color: #282b29;
  opacity: 1;
}
.header__search *:-moz-placeholder {
  color: #282b29;
  opacity: 1;
}
.header__search *::-moz-placeholder {
  color: #282b29;
  opacity: 1;
}
.header__search *:-ms-input-placeholder {
  color: #282b29;
  opacity: 1;
}
.search-wrap {
  position: relative;
  z-index: 5;
}
.open-search {
  width: 45px;
  height: 45px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  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;
  cursor: pointer;
  position: relative;
}
.open-search::after,
.open-search::before {
  position: absolute;
  display: block;
  content: " ";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-image: url(../img/search1.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.open-search::after {
  background-image: url(../img/close.svg);
  background-size: 17px auto;
  opacity: 0;
}
.search-wrap.active .open-search::before {
  opacity: 0;
}
.search-wrap.active .open-search::after {
  opacity: 1;
}
.header__search {
  width: 0;
  overflow: hidden;
  top: 0;
  right: 100%;
  position: absolute;
  z-index: 5;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.search-wrap.active .header__search {
  width: 411px;
}
.header__right {
  gap: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.dropdown-main a {
  font-weight: 600;
  color: #282b29;
  text-decoration: none;
}
.dropdown-main {
  position: relative;
}
.dropdown-main__dropdown {
  padding: 15px;
  -webkit-box-shadow: 0 15px 30px 0 rgba(171, 201, 190, 0.1);
  box-shadow: 0 15px 30px 0 rgba(171, 201, 190, 0.1);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  top: 100%;
  left: 0;
  white-space: nowrap;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
}
.dropdown-main:hover .dropdown-main__dropdown {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.dropdown-main__dropdown ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.dropdown-main__dropdown ul li {
  margin-bottom: 10px;
}
.dropdown-main__dropdown ul li:last-child {
  margin-bottom: 0;
}
.dropdown-main__arrow {
  width: 10px;
  height: 9px;
  background-image: url(../img/arrow1.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.dropdown-main__value {
  gap: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer {
  font-family: "Montserrat";
}

footer .animation {
  background: repeat-x 0 100% url("../img/footer_back.webp");
  padding: 0 10px;
}

footer .animation .footer_city {
  position: relative;
  max-width: 956px;
  width: 100%;
  margin: auto;
}

footer .animation .footer_city img {
  width: 100%;
}

footer .animation .footer_city .propeller {
  position: absolute;
  width: 4.8%;
  top: 1%;
}

footer .animation .footer_city .propeller:nth-child(2) {
  right: 14.8%;
  -webkit-animation: propeller linear 3s infinite;
  animation: propeller linear 3s infinite;
}

footer .animation .footer_city .propeller:nth-child(3) {
  right: 7.4%;
  -webkit-animation: propeller linear 2s infinite;
  animation: propeller linear 2s infinite;
}

footer .animation .footer_city .propeller:nth-child(4) {
  right: 0;
  -webkit-animation: propeller linear 1s infinite;
  animation: propeller linear 1s infinite;
}

footer .animation .footer_city .light {
  position: absolute;
  width: 2.824%;
  top: 20%;
  right: 15.9%;
  -webkit-animation: light linear 6s infinite;
  animation: light linear 6s infinite;
}

footer .animation .footer_city .light_window {
  width: 1.036%;
  height: 9.846%;
  background: #f0e930;
  position: absolute;
  opacity: 0;
}

footer .animation .footer_city .light_window.n1 {
  top: 48.9%;
  left: 2.05%;
  width: 0.7%;
  height: 7%;
  -webkit-animation: light_window 6s linear 8s infinite;
  animation: light_window 6s linear 8s infinite;
}

footer .animation .footer_city .light_window.n2 {
  top: 38%;
  left: 11.45%;
  -webkit-animation: light_window 6s linear 7.5s infinite;
  animation: light_window 6s linear 7.5s infinite;
}

footer .animation .footer_city .light_window.n3 {
  width: 0.627%;
  height: 6.153%;
  top: 62.8%;
  left: 16.9%;
  -webkit-animation: light_window 6s linear 7s infinite;
  animation: light_window 6s linear 7s infinite;
}

footer .animation .footer_city .light_window.n4 {
  top: 38%;
  left: 28.75%;
  -webkit-animation: light_window 6s linear 6.5s infinite;
  animation: light_window 6s linear 6.5s infinite;
}

@-webkit-keyframes propeller {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes propeller {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes light {
  0% {
    top: 20%;
    right: 15.9%;
  }

  10% {
    top: 43%;
    right: 20.92%;
  }

  20% {
    top: 50%;
    right: 25.94%;
  }

  30% {
    top: 50%;
    right: 30.96%;
  }

  40% {
    top: 40%;
    right: 35.98%;
  }

  50% {
    top: 10%;
    right: 41%;
  }

  60% {
    top: 45%;
    right: 45.3%;
  }

  70% {
    top: 65%;
    right: 49.6%;
  }

  80% {
    top: 76%;
    right: 53.9%;
  }

  90% {
    top: 81%;
    right: 58.2%;
  }

  100% {
    top: 75%;
    right: 62.5%;
  }
}

@keyframes light {
  0% {
    top: 20%;
    right: 15.9%;
  }

  10% {
    top: 43%;
    right: 20.92%;
  }

  20% {
    top: 50%;
    right: 25.94%;
  }

  30% {
    top: 50%;
    right: 30.96%;
  }

  40% {
    top: 40%;
    right: 35.98%;
  }

  50% {
    top: 10%;
    right: 41%;
  }

  60% {
    top: 45%;
    right: 45.3%;
  }

  70% {
    top: 65%;
    right: 49.6%;
  }

  80% {
    top: 76%;
    right: 53.9%;
  }

  90% {
    top: 81%;
    right: 58.2%;
  }

  100% {
    top: 75%;
    right: 62.5%;
  }
}

@-webkit-keyframes light_window {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes light_window {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}
.footer .animation {
  margin-bottom: 70px;
  position: relative;
  top: -1px;
  z-index: 2;
  background-color: #fff;
}

.footer {
  padding-bottom: 77px;
  background: #3a3a3a;
  color: #fff;
  max-width: 100% !important;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.footer__title {
  font-size: 20px;
  margin-bottom: 24px;
  line-height: 150%;
  font-weight: 700;
}
.footer__nav {
  max-width: 220px;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.footer__nav li {
  margin-bottom: 16px;
  font-weight: 600;
}
.footer__nav li:last-child {
  margin-bottom: 0;
}
.footer__nav a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 1px transparent solid;
}
.footer__descr {
  margin-top: 41px;
  margin-bottom: 16px;
}
.footer__logo img {
  width: 182px;
}
.footer__wrap {
  gap: 24px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(4, 1fr);
}
.footer__link {
  font-weight: 600;
  color: #00b10c;
  text-decoration: none;
  border-bottom: 1px transparent solid;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__location {
  margin-bottom: 20px;
}
.footer__contact {
  margin-bottom: 16px;
  font-weight: 600;
}
.footer__contact a {
  color: #fff;
  text-decoration: none;
}
.footer .btn-main {
  margin-top: 12px;
}
.socials-list {
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  list-style-type: none;
  margin: 0;
}
.socials-list a {
  width: 41px;
  height: 41px;
  border-radius: 6px;
  background: #00b10c;
  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;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.socials-list img {
  max-width: 100%;
  max-height: 100%;
}
.footer .socials-list {
  margin-top: 41px;
}
.footer__copyright {
  font-size: 12px;
  margin-top: 37px;
  line-height: 150%;
}

@media only screen and (max-width: 1550px) {
  .menu__list {
    gap: 25px;
  }
  .header__search input {
    height: 42px;
    padding-left: 43px;
    font-size: 14px;
    padding-right: 13px;
    background-size: 19px;
    background-position: center left 10px;
  }
  .open-search {
    width: 42px;
    height: 42px;
  }
  .menu__list > li {
    gap: 3px;
  }
  .dropdown-main__arrow,
  .menu__arrow {
    width: 8px;
    height: 7px;
  }
  .logo img {
    width: 138px;
  }
  /* .header {
    top: 35px;
  } */
  .menu__list li ul {
    width: 270px;
  }

  .header__wrapper .phone-main {
    margin-left: -15px;
  }
  .header__wrapper .socials-main {
    margin-right: 5px;
  }
  .header__right {
    gap: 16px;
  }

  .footer {
    padding-bottom: 65px;
  }
  .footer__nav li {
    margin-bottom: 14px;
  }
  .footer__title {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .footer__logo img {
    width: 170px;
  }
  .footer__descr {
    margin-top: 30px;
    margin-bottom: 13px;
  }
  .footer__location {
    margin-bottom: 17px;
  }
  .footer__contact {
    margin-bottom: 14px;
  }
  .footer .socials-list {
    margin-top: 32px;
  }
  .socials-list {
    gap: 19px;
  }
  .socials-list a {
    width: 38px;
    height: 38px;
  }
  .footer__copyright {
    font-size: 11px;
    margin-top: 32px;
  }
  .footer .animation {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 1200px) {
  .header__search input {
    height: 36px;
    padding-left: 32px;
    font-size: 12px;
    padding-right: 10px;
    background-size: 14px;
    background-position: center left 7px;
  }
  .open-search {
    width: 36px;
    height: 36px;
  }
  .open-search::after,
  .open-search::before {
    background-size: 18px auto;
  }
  .logo img {
    width: 115px;
  }
  .menu__list {
    gap: 13px;
  }
  .header__right {
    gap: 9px;
  }
  .header__wrapper .phone-main {
    margin-left: 0;
  }
}

@media only screen and (max-width: 992px) {
  .hidden-mob {
    display: none !important;
  }

  .header__wrapper .dropdown-main,
  .header__wrapper .header__search,
  .header__wrapper .menu {
    display: none;
  }
  .logo img {
    width: 104px;
  }
  .header {
    padding: 20px 0 0;
    top: 0;
    position: sticky;
    width: 100%;
  }
  .sandwich {
    width: 40px;
    height: 40px;
    padding-top: 12px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    z-index: 20;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    cursor: pointer;
  }
  .sw-topper {
    position: relative;
    top: 0px;
    width: 20px;
    height: 2px;
    display: block;
    margin: 0;
    background-color: #282b29;
    border-radius: 2px;
    border: medium none;
    -webkit-transition:
      top 0.2s,
      -webkit-transform 0.5s;
    transition:
      top 0.2s,
      -webkit-transform 0.5s;
    -o-transition:
      transform 0.5s,
      top 0.2s;
    transition:
      transform 0.5s,
      top 0.2s;
    transition:
      transform 0.5s,
      top 0.2s,
      -webkit-transform 0.5s;
  }
  .sw-bottom {
    position: relative;
    top: 5px;
    width: 20px;
    height: 2px;
    display: block;
    margin: 0;
    background-color: #282b29;
    border-radius: 2px;
    border: medium none;
    -webkit-transition:
      top 0.2s,
      -webkit-transform 0.5s;
    transition:
      top 0.2s,
      -webkit-transform 0.5s;
    -o-transition:
      transform 0.5s,
      top 0.2s;
    transition:
      transform 0.5s,
      top 0.2s;
    transition:
      transform 0.5s,
      top 0.2s,
      -webkit-transform 0.5s;
  }
  .sw-footer {
    position: relative;
    top: 10px;
    width: 20px;
    height: 2px;
    display: block;
    margin: 0;
    background-color: #282b29;
    border-radius: 2px;
    border: medium none;
    -webkit-transition:
      top 0.2s,
      -webkit-transform 0.5s;
    transition:
      top 0.2s,
      -webkit-transform 0.5s;
    -o-transition:
      transform 0.5s,
      top 0.2s;
    transition:
      transform 0.5s,
      top 0.2s;
    transition:
      transform 0.5s,
      top 0.2s,
      -webkit-transform 0.5s;
  }
  .sandwich.active .sw-topper {
    top: 8px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .sandwich.active .sw-bottom {
    opacity: 0;
  }
  .sandwich.active .sw-footer {
    top: 4px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .no-scroll {
    overflow: hidden;
  }
  .menu-overlay {
    top: 137px;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    z-index: -1;
    display: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  .menu-mobile {
    padding: 10px 15px;
    padding-bottom: 120px;
    top: 100%;
    left: 0;
    width: 100%;
    position: absolute;
    background: #fff;
    max-height: 100vh;
    overflow: auto;
    display: none;
    padding-bottom: 40px;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  .header.fixed,
  .no-scroll .header {
    background: #fff;
  }
  .menu__list {
    display: block;
  }
  .menu__list li {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: block;
    position: relative;
  }
  .menu__list a {
    padding: 10px 0;
    border-bottom: 1px rgba(0, 0, 0, 0.6) solid;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .menu__arrow {
    position: absolute;
    top: 0;
    right: 0;
  }
  .dropdown-main__arrow,
  .menu__arrow {
    width: 50px;
    height: 40px;
    background-size: initial;
  }
  .header__search {
    width: 100%;
    margin-bottom: 20px;
  }
  .menu-mobile__bottom {
    display: -ms-grid;
    display: grid;
    padding-top: 15px;
    gap: 10px 0;
    -ms-grid-columns: 1.5fr 0 1fr;
    grid-template-columns: 1.5fr 1fr;
  }
  .menu__list li ul::before {
    display: none;
  }
  .menu__list li ul {
    width: 100%;
    margin: 0;
    visibility: visible;
    opacity: 1;
    -webkit-transition: initial;
    -o-transition: initial;
    transition: initial;
    display: none;
    top: 0;
    left: 0;
    background: transparent;
    padding: 0;
    padding-left: 20px;
    padding-bottom: 20px;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .header__search input {
    height: 40px;
    padding-left: 38px;
    font-size: 14px;
    padding-right: 14px;
    background-size: 17px;
    background-position: center left 10px;
  }
  .dropdown-main.active .dropdown-main__arrow,
  .active > .menu__arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .dropdown-main__dropdown,
  .dropdown-main:hover .dropdown-main__dropdown {
    visibility: visible;
    opacity: 1;
    top: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    display: none;
    -webkit-transition: initial;
    -o-transition: initial;
    transition: initial;
    position: relative;
    background: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
  }

  .footer {
    padding-bottom: 50px;
  }
  .footer__logo img {
    width: 120px;
  }
  .footer__descr {
    margin-top: 28px;
    margin-bottom: 16px;
  }
  .footer__nav li {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .footer__title {
    margin-bottom: 24px;
  }
  .footer__location {
    margin-bottom: 20px;
  }
  .footer__location br {
    display: none;
  }
  .footer__contact {
    margin-bottom: 16px;
  }
  .footer .btn-main {
    width: 100%;
    margin-top: 8px;
  }
  .socials-list a {
    width: 49px;
    height: 49px;
  }
  .footer .socials-list {
    margin-top: 0;
    gap: 15px;
  }
  .footer__copyright {
    font-size: 12px;
    margin-top: 45px;
  }
  .footer__line {
    gap: 15px;
    padding-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  .footer__line .btn-main {
    height: 49px;
    font-size: 12px;
    margin: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 10px;
  }
  /*Style Sandwich*/
  .sandwich {
    width: 40px;
    height: 40px;
    padding-top: 12px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    z-index: 20;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    cursor: pointer;
  }
  .sw-topper {
    position: relative;
    top: 0px;
    width: 20px;
    height: 2px;
    display: block;
    margin: 0;
    background-color: #282b29;
    border-radius: 2px;
    border: medium none;
    -webkit-transition:
      top 0.2s,
      -webkit-transform 0.5s;
    transition:
      top 0.2s,
      -webkit-transform 0.5s;
    -o-transition:
      transform 0.5s,
      top 0.2s;
    transition:
      transform 0.5s,
      top 0.2s;
    transition:
      transform 0.5s,
      top 0.2s,
      -webkit-transform 0.5s;
  }
  .sw-bottom {
    position: relative;
    top: 5px;
    width: 20px;
    height: 2px;
    display: block;
    margin: 0;
    background-color: #282b29;
    border-radius: 2px;
    border: medium none;
    -webkit-transition:
      top 0.2s,
      -webkit-transform 0.5s;
    transition:
      top 0.2s,
      -webkit-transform 0.5s;
    -o-transition:
      transform 0.5s,
      top 0.2s;
    transition:
      transform 0.5s,
      top 0.2s;
    transition:
      transform 0.5s,
      top 0.2s,
      -webkit-transform 0.5s;
  }
  .sw-footer {
    position: relative;
    top: 10px;
    width: 20px;
    height: 2px;
    display: block;
    margin: 0;
    background-color: #282b29;
    border-radius: 2px;
    border: medium none;
    -webkit-transition:
      top 0.2s,
      -webkit-transform 0.5s;
    transition:
      top 0.2s,
      -webkit-transform 0.5s;
    -o-transition:
      transform 0.5s,
      top 0.2s;
    transition:
      transform 0.5s,
      top 0.2s;
    transition:
      transform 0.5s,
      top 0.2s,
      -webkit-transform 0.5s;
  }
  .sandwich.active .sw-topper {
    top: 8px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .sandwich.active .sw-bottom {
    opacity: 0;
  }
  .sandwich.active .sw-footer {
    top: 4px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .no-scroll {
    overflow: hidden;
  }
  .menu-overlay {
    top: 137px;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    z-index: -1;
    display: none;
  }
  .menu-mobile {
    padding: 10px 15px;
    padding-bottom: 120px;
    top: 100%;
    left: 0;
    width: 100%;
    position: absolute;
    background: #fff;
    max-height: 100vh;
    overflow: auto;
    display: none;
    padding-bottom: 40px;
  }
  .header.fixed,
  .no-scroll .header {
    background: #fff;
  }
  .menu__list {
    display: block;
  }
  .menu__list li {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: block;
    position: relative;
  }
  .menu__list a {
    padding: 10px 0;
    border-bottom: 1px rgba(0, 0, 0, 0.6) solid;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .menu__arrow {
    position: absolute;
    top: 0;
    right: 0;
  }
  .dropdown-main__arrow,
  .menu__arrow {
    width: 50px;
    height: 40px;
    background-size: initial;
  }
  .header__search {
    width: 100%;
    margin-bottom: 20px;
  }
  .menu-mobile__bottom {
    display: -ms-grid;
    display: grid;
    padding-top: 15px;
    gap: 10px 0;
    -ms-grid-columns: 1.5fr 0 1fr;
    grid-template-columns: 1.5fr 1fr;
  }
  .menu__list li ul::before {
    display: none;
  }
  .menu__list li ul {
    width: 100%;
    margin: 0;
    visibility: visible;
    opacity: 1;
    -webkit-transition: initial;
    -o-transition: initial;
    transition: initial;
    display: none;
    top: 0;
    left: 0;
    background: transparent;
    padding: 0;
    padding-left: 20px;
    padding-bottom: 20px;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .header__search input {
    height: 40px;
    padding-left: 38px;
    font-size: 14px;
    padding-right: 14px;
    background-size: 17px;
    background-position: center left 10px;
  }
  .dropdown-main.active .dropdown-main__arrow,
  .active > .menu__arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .dropdown-main__dropdown,
  .dropdown-main:hover .dropdown-main__dropdown {
    visibility: visible;
    opacity: 1;
    top: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    display: none;
    -webkit-transition: initial;
    -o-transition: initial;
    transition: initial;
    position: relative;
    background: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
  }
  .header .wow {
    visibility: visible !important;
    -webkit-animation: none !important;
    animation: none !important;
  }
  .header.fixed {
    padding: 10px 0;
  }
  .search-wrap {
    display: none;
  }
  .header__wrapper .phone-main {
    width: 40px;
    height: 40px;
    margin-left: auto;
    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;
  }
  .header__wrapper .phone-main img {
    width: 20px;
    height: auto;
  }
  .header__wrapper .socials-main {
    display: none;
  }
  .footer__wrap {
    gap: 40px 8px;
    -ms-grid-columns: 1fr 8px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__wrap > div:nth-child(4),
  .footer__wrap > div:nth-child(1) {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}

@media only screen and (min-width: 992px) {
  .parametrs__more,
  .menu-overlay,
  .menu-mobile,
  .sandwich,
  .show-mob {
    display: none !important;
  }
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
