.footer {
  padding: 40px 0;
  padding-bottom: 10px;
  position: relative;
}
.go-top {
  width: 54px;
  height: 54px;
  box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, 0.18);
  background-color: #ffffff;
  text-align: center;
  line-height: 54px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  margin-left: -27px;
  top: -27px;
  transition: .2s all;
}
.go-top:hover {
  background-color: #e1080b;
}
.footer-logo {
  display: flex;
  justify-content: center;
  padding-bottom: 47px;
}
.footer-contry {
  color: #101010;
  font-family: "Gotham Pro";
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.05px;
}
.footer-tel {
  color: #101010;
  font-family: "Gotham Pro";
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 1.05px;
}
.social-mnu-foter {
  padding-top: 60px;
  margin: 0 auto;
}
.copywrite {
  padding-top: 60px;
  text-align: center;
  color: #0e0e0e;
  font-family: "Gotham Pro";
  font-size: 11px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.82px;
}
/* ФОРМА */
.contacts-form {
  padding-top: 60px;
  padding-bottom: 40px;
  background-color: #f9f8f4;
}
.contacts-form h2 {
  width: 100%;
  text-align: center;
  color: #101010;
  font-family: "Gotham Pro";
  font-size: 36px;
  font-weight: 900;
  line-height: 48px;
  text-transform: uppercase;
}
.contacts-form p {
  color: #101010;
  font-family: "Gotham Pro";
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  text-align: center;
  display: inline-block;
  width: 60%;
  margin-left: 20%;
  letter-spacing: 0.7px;
}
.form {
  padding-top: 75px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
.contact-form-input {
  width: 48%;
  margin-bottom: 30px;
  padding: 20px 5px;
  border: none;
  border-bottom: 1px solid #7c7c7c;
  background: transparent;
}
.contact-form-input:focus {
  border-bottom: 1px solid #eb000d;
  outline: none;
}
.contact-form-select {
  width: 100%;
  padding: 20px 5px;
  border: none;
  border-bottom: 1px solid #7c7c7c;
  background: transparent;
}
.send-form {
  color: #ffffff;
  font-family: "Gotham Pro";
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  background-color: #eb000d;
  padding: 22px 85px;
  border: none;
}
.form-butt-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 60px;
}
@media (max-width: 768px) {
  .contacts-form h2 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .contacts-form p {
    width: 100%;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 0;
  }
  .rewius {
    flex-wrap: wrap;
  }
  .rewius-img {
    width: 100% !important;
    height: 100px;
    display: flex;
    justify-content: center;
  }
  .owl-carousel .owl-item img {
    max-height: 100%;
    width: auto !important;
  }
  footer p {
    text-align: center;
  }
}
.grecaptcha-badge {
  display: none !important;
}
/********** ICONS FOOTER **********/
.messenger_icons a {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 56px;
  font-size: 26px;
  z-index: 999;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  animation: animationpulse 2s infinite;
  -webkit-animation: animationpulse 2s ease-out;
  -webkit-animation-iteration-count: infinite;
}
.messenger_icons a:hover {
  animation: linear;
  width: 62px;
  height: 62px;
}
.viber_icon {
  bottom: 230px;
  right: 30px;
  background: #7b519c;
  box-shadow: 1px 1px 5px #7b519c;
}
.telegram_icon {
  bottom: 160px;
  right: 30px;
  background: #27A5E7;
  box-shadow: 1px 1px 5px #27A5E7;
}
.call-order_icon {
  bottom: 90px;
  right: 30px;
  background: #eb000d;
  box-shadow: 1px 1px 5px #f60;
}
@-webkit-keyframes animationpulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 inherit;
  }
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
@keyframes animationpulse {
  0% {
    transform: scale(1.0, 1.0);
    -moz-box-shadow: 0 0 0 0 inherit;
    box-shadow: 0 0 0 0 inherit;
  }
  10% {
    transform: scale(1.1, 1.1);
  }
  15% {
    transform: scale(1.0, 1.0);
  }
  70% {
    -moz-box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
@-ms-keyframes animationpulse {
  0% {
    -ms-transform: scale(1.0, 1.0);
  }
  10% {
    -ms-transform: scale(1.1, 1.1);
  }
  20% {
    -ms-transform: scale(1.0, 1.0);
  }
  100% {
    -ms-transform: scale(1.0, 1.0);
  }
}
/********** ICONS FOOTER **********/