

 /* ================== Site Loader=================  
#site-loader {
    position: fixed;
    background: #fff;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
}
#site-loader.loader-hidden {
  display: none;
}
#site-loader.loader-hiding {
    animation: loading 1s;
}
.line-scale {
  position: absolute;
  top: 50%;
  left: 0;
	right: 0;
  text-align: center;
}
.line-scale > div {
	display: inline-block;
	background-color: #cd2122;
  border-radius: 2px;
  width: 4px;
  height: 35px;
}
.line-scale>div:nth-child(1) {
  animation: line-scale 1s -.4s infinite;
  animation-timing-function: cubic-bezier(.2, .68, .18, 1.08);
}
.line-scale>div:nth-child(2) {
  animation: line-scale 1s -.3s infinite;
  animation-timing-function: cubic-bezier(.2, .68, .18, 1.08);
}
.line-scale>div:nth-child(3) {
  animation: line-scale 1s -.2s infinite;
  animation-timing-function: cubic-bezier(.2, .68, .18, 1.08);
}
.line-scale>div:nth-child(4) {
  animation: line-scale 1s -.1s infinite;
  animation-timing-function: cubic-bezier(.2, .68, .18, 1.08);
}
.line-scale>div:nth-child(5) {
  animation: line-scale 1s 0s infinite;
  animation-timing-function: cubic-bezier(.2, .68, .18, 1.08);
}

@keyframes line-scale {
  0%, 100% {
    transform: scaleY(1);
    -webkit-transform: scaley(1);
  }
  50% {
    transform: scaleY(.4);
    -webkit-transform: scaley(.4);
  }
}

@keyframes loading {
  0% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}
@-moz-keyframes loading {
  0% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}
@-webkit-keyframes loading {
  0% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}
@-ms-keyframes loading {
  0% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}
@-o-keyframes loading {
  0% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}
 ============================================== */
@keyframes scroll {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
/* ================ modal-callback-appointment ================== */

.modal-overlay-reviews,
.modal-overlay-callback,
.modal-overlay-appointment {
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: auto;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 101;
}
.modal-content {
  font-family: sans-serif;
  align-self: center;
  max-width: 350px;
  background-color: #fff;
  display: inline-flex;
  border: 2px solid #cd2122;
  flex-direction: column;
}
.modal-header {
  display: flex;
  flex-direction:column-reverse
}
.modal-header p {
  font-family: sans-serif;
}

.form-text {
  font-size: 0.9em;
  line-height: 1.3;
  color: #333;
  padding: 10px 15px;
}
.modal-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border: none;
  background-color: inherit;
  padding: 13px 13px 10px 10px;
}
.modal-close:hover {
  cursor: pointer;
}
.modal-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  margin: 0 15px 15px 15px;
}
.modal-form .form-group input,
.modal-form .form-group textarea {
  padding: 4px 10px;
}
.modal-form .form-group textarea {
  height: 100px;
}
.modal-form .form-submit-btn {
  margin-bottom: 15px;
}
.modal-form .form-check-label::before {
  line-height: 1;
}
.modal-form .form-check-text {
  line-height: 1.2;
  font-size: 0.9em;
}

/*=================== form ===================*/
.form {
    align-self: center;
    max-width: 600px;
    background-color: #fff;
    display: inline-flex;
    padding: 20px;
    margin: 20px auto;
    border: 2px solid #cd2122;
    flex-direction: column;
}
.form-group {
  margin: 10px 0;
  width: 100%;
}
.form-group input,
.form-group textarea,
.form-submit-btn {
  width: 100%;
  height: 100%;
  padding: 10px 15px;
  border: 2px solid #cd2122;
}
.form-group textarea {
  height: 130px;
}
.form-submit-btn {
  background-color: #cd2122;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  margin: 5px 0 20px 0;
}
.form-submit-btn:hover {
  background-color: transparent;
  color: #cd2122;
  cursor: pointer;
}
.form a {
  color: red;
}
.form-check {
  display: flex;
  text-align: left;
}
.form-check-text {
  padding-left: 27px;
}
.privacy-choice {
  display: none;
}
.privacy-choice+.form-check-label,
.privacy-choice+.form-check-label::before,
.privacy-choice+.form-check-label::after {
  transition: all .3s;
}
.privacy-choice+.form-check-label {
  display: inline-flex;
  flex: 0 0 42px;
  position: relative;
  width: 42px;
  height: 20px;
  border-radius: 10px;
  cursor: pointer;
  background-color: #ccc;
}
.privacy-choice+.form-check-label::before {
  display: block;
  content: attr(data-offlabel);
  position: absolute;
  top: 4px;
  right: 6px;
  color: #000;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
}
.privacy-choice+.form-check-label::after {
  border-radius: 50%;
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background-color: #fff;
  border: 2px solid #333;
}
.privacy-choice:checked+.form-check-label::before {
  content: attr(data-onlabel);
  left: 5px;
  right: auto;
  color: #fff;
}
.privacy-choice:checked+.form-check-label::after {
  left: 24px;
  background-color: #cd2122;
  border: 2px solid #fff;
}
.privacy-choice:checked+.form-check-label {
  background-color: #cd2122;
}
/*=================== sign-link-box ===================*/
.sign-link-box {
  align-self: flex-start;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sign-link-text {
padding: 15px 0;

font-size: 1.1em;
letter-spacing: 0.7px;
line-height: 25px;
color: #333;
}
/*====================== ant-carousel ====================*/
.carousel-wraper {
  display: block;
  margin: 0 auto;
}
.carousel-arrows-wraper {
  display: flex;
  justify-content: space-between;
}
.rev-carousel {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

.rev-carousel-element {
  display: block;
  width: 270px;
  text-align: center;
}

    /* General styles */
    .rev-carousel {
      width: auto;
      /*position: relative;*/
    }

    .rev-carousel-hider {
      overflow: hidden;
    }

    .rev-carousel-list {
      width: auto;
      margin: 0;
      padding: 0;
      list-style-type: none;
      display: flex;
      justify-content: flex-start;
    }

    .rev-carousel-element {
      /*display: block;*/
      flex: 0 0 auto;
    }

    /* Navigation item styles */
    .rev-carousel-arrow-left,
    .rev-carousel-arrow-right {
      display: block;
      width: 30px;
      height: 30px;
      margin: 30px 10px;
      cursor: pointer;
    }

    .rev-carousel-arrow-left {
      margin-right: 30px;
    }

    .rev-carousel-arrow-left:hover,
    .rev-carousel-arrow-right:hover {
      opacity: .6;
    }

    .rev-carousel-arrow-right:hover {
      opacity: .6;
    }


        @media screen and (min-width: 1401px) {
          .rev-carousel {
            max-width: 1080px;
          }
        }
        @media (min-width: 1100px) {
          .carousel-arrows-wraper {
            position: absolute;
            left: 0;
            top: 60px;
            width: 140px;
          }
          .rev-carousel-arrow-left,
          .rev-carousel-arrow-right {
            margin: 30px 0;
          }
        }
        @media screen and (min-width: 911px) and (max-width: 1400px) {
          .rev-carousel {
            max-width: 810px;
          }
        }

        @media screen and (min-width: 641px) and (max-width: 910px) {
          .rev-carousel {
            max-width: 540px;
          }
        }

        @media screen and (max-width: 640px) {
          .rev-carousel {
            max-width: 270px;
          }
        }
/*===================== carousel-team ====================
.team-item-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 250px;
  color: #eee;
}
.team-item-name {
  font-weight: 600;
  
  padding: 8px;
  background-color: #cd2122;
  border-top: 1px solid #fff;
}
.team-item-text {
  
  background-color: #333;
  border-top: 1px solid #fff;
}*/
/*=================== carousel-reviews ===================*/

    .reviews-item-card {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 250px;
      height: 380px;
      background-color: #555;
      color: #eee;
      overflow-y: auto;
    }
    .reviews-item-card p {
      text-align: left;
      padding: 8px;
      font-size: 0.8em;
    }
    .reviews-item-origin {
      justify-content: center;
    }

/*=================== animated ===================*/

.sticky {
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

