footer {
  padding: 40px 0;
  background-color: #242424;
  position: relative;
}
footer .footer-container p, footer .footer-container a, footer .footer-container i, footer .footer-container li a {
  color: #ffffff;
}
footer .footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer-container .footer_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
footer .footer-container .footer_block {
  width: calc(100% / 3 - 10px);
  min-width: 300px;
}
footer .footer-container .footer_contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer_contacts.email {
  text-align: right;
}
footer .footer-container .footer_contacts a {
  font-size: 25px;
}
footer .footer-container .footer_contacts .mail {
  font-size: 21px;
  width: max-content;
  font-weight: 900;
  margin: 0 0 0 auto;
}
footer .footer-container .footer_contacts .tel {
  font-weight: 900;
  font-size: 21px;
  border-bottom: 3px dotted #fff;
  padding-bottom: 7px;
  box-sizing: border-box;
  color: #fff;
  transition: all .3s;
  display: inline-block;
  width: max-content;
  position: relative;
}
footer .footer-container .footer_contacts .tel::after,
footer .footer-container .footer_contacts .tel::before {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background-color: #e0643f;
  bottom: -3px;
  position: absolute;
  box-sizing: border-box;
  transition: all .3s;
}
footer .footer-container .footer_contacts .tel::after {
  left: 50%;
}
footer .footer-container .footer_contacts .tel::before {
  right: 50%;
}
footer .footer-container .footer_contacts .tel:hover::after,
footer .footer-container .footer_contacts .tel:hover::before {
  width: 50%;
  transition: all .3s;
}
footer .footer-container .footer_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .footer-container .footer_social a {
  border-radius: 50%;
  width: auto;
  height: auto;
  text-align: center;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
footer .footer-container .footer_social a i {
  font-size: 30px;
  width: 40px;
}
footer .footer-container .footer_social a:hover i {
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  color: #f7481b;
}
footer .footer-container .footer_social a:not(:last-child) {
  margin-right: 20px;
}
footer .footer-container .footer_copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  width: 100%;
}
footer .footer-container .footer_copyright img {
  width: auto;
  height: 40px;
  margin-right: 10px;
}

/* modal */

.page-wrapper main.active__overlay {
    -webkit-filter: blur(3px);
            filter: blur(3px);
    -webkit-transition-delay: 0.2s;
         -o-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.succsess {
  position: fixed;
  left: 50%;
  top: 50%;
  background: rgb(0,0,0); /* Old browsers */ /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg,  rgba(0,0,0,1) 0%,rgba(26,26,26,1) 50%,rgba(78,61,102,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: -webkit-linear-gradient(339deg,  rgba(0,0,0,1) 0%,rgba(26,26,26,1) 50%,rgba(78,61,102,1) 100%);
  background: -o-linear-gradient(339deg,  rgba(0,0,0,1) 0%,rgba(26,26,26,1) 50%,rgba(78,61,102,1) 100%);
  background: linear-gradient(111deg,  rgba(0,0,0,1) 0%,rgba(26,26,26,1) 50%,rgba(78,61,102,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#4e3d66',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  padding: 20px 30px;
  max-width: 300px;
  width: 100%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 1000;
}
.succsess.unactive {
  display: none;
  z-index: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.succsess p {
  color: #ffffff;
  text-align: center;
  z-index: 1000;
}

.order-form__overlay {
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 70;
  width: 0;
  height: 100%;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  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;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.order-form__overlay.active {
  width: 100%;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.order-form__overlay .order-form {
  padding: 30px 40px;
  position: relative;
}
.order-form__overlay .order-form h3 {
  color: #ffffff;
}
.order-form__overlay #modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    cursor: pointer;
    transform: rotate(0deg);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.order-form__overlay #modal-close:hover {
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.order-form__overlay #modal-close i {
  font-size: 20px;
  color: #ffffff;
}

.order-form__overlay .other-order-form {
  background: #fff;
  padding: 70px 100px;
  box-sizing: border-box;
  max-width: 660px;
  width: calc(100% - 20px);
  border-radius: 30px;
}
.order-form__overlay .other-order-form h3,
.order-form__overlay .other-order-form p {
  color: #292929;
  text-align: center;
  margin-bottom: 18px;
}
.order-form__overlay .other-order-form p {
  font-size: 21px;
  font-weight: 700;
}
.order-form__overlay .other-order-form .error p {
  text-align: left;
}

.order-form__overlay .other-order-form #modal-close {
  top: 25px;
  right: 25px;
}
.order-form__overlay .other-order-form #modal-close i {
  font-size: 32px;
  color: #292929;
}
.other-order-form .field-group_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.other-order-form .field-group_item:last-child {
  margin-bottom: 0;
}
.other-order-form input[type='text'],
.other-order-form input[type='tel'],
.other-order-form textarea {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  height: 50px;
  line-height: 50px;
  border: 1px solid #b8b8b8;
  border-radius: 10px;
  background-color: transparent;
  font-size: 12px;
  color: #292929;
  outline: 0;
}
.other-order-form textarea {
  height: 90px;
}
.other-order-form input[type='text']:focus,
.other-order-form input[type='tel']:focus,
.other-order-form textarea:focus {
  border: 1px solid #4b58b0;
}
.other-order-form .field-group_item input[type="text"]::-webkit-input-placeholder,
.other-order-form .field-group_item input[type="text"]::-ms-input-placeholder,
.other-order-form .field-group_item input[type="text"]::-webkit-input-placeholder,
.other-order-form .field-group_item input[type="tel"]::-ms-input-placeholder,
.other-order-form .field-group_item input[type="tel"]::placeholder,
.other-order-form .field-group_item input[type="tel"]::placeholder {
  color: #b8b8b8;
  font-size: 12px;
}
.other-order-form label {
  font-size: 14px;
  margin-bottom: 10px;
  color: #292929;
}
.other-order-form input[type='submit'] {
  width: 100%;
  max-width: 260px;
  font-size: 18px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-weight: 700;
  background-image: -moz-linear-gradient( -30deg, rgb(223,96,62) 0%, rgb(244,171,90) 50%, rgb(223,96,62) 100%);
  background-image: -webkit-linear-gradient( -30deg, rgb(223,96,62) 0%, rgb(244,171,90) 50%, rgb(223,96,62) 100%);
  background-image: -ms-linear-gradient( -30deg, rgb(223,96,62) 0%, rgb(244,171,90) 50%, rgb(223,96,62) 100%);
  background-position: 100% 0;
  background-size: 200% 200%;
  box-shadow: 10.231px 13.577px 24px 0px rgba(228, 118, 60, 0.24);
  transition: all 0.3s;
  display: inline-block;
  margin: 30px auto 0;
  border: none;
  border-radius: 25px;
  color: #fff;
  outline: 0;
}
.other-order-form input[type='submit']:hover {
  background-image: -moz-linear-gradient( -30deg, rgb(223,96,62) 0%, rgb(244,171,90) 50%, rgb(223,96,62) 100%);
  background-image: -webkit-linear-gradient( -30deg, rgb(223,96,62) 0%, rgb(244,171,90) 50%, rgb(223,96,62) 100%);
  background-image: -ms-linear-gradient( -30deg, rgb(223,96,62) 0%, rgb(244,171,90) 50%, rgb(223,96,62) 100%);
  background-position: 0 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
/* /modal */
