@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@500&display=swap");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Raleway", sans-serif;
  background-color: #e9e9e9;
  overflow-x: hidden;
  color: #242424;
}

.header {
  z-index: 2;
  background-color: #f5f5f5;
  position: fixed;
  width: 100%;
  height: 60px;
  top: 0;
  left: 0;
  letter-spacing: 2px;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-shadow: 0px 5px 10px rgba(43, 43, 43, 0.2);
          box-shadow: 0px 5px 10px rgba(43, 43, 43, 0.2);
}

.header .logo {
  width: 150px;
  height: 50px;
}

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

.header .header-phone {
  display: block;
  background-image: url("/icons/phone.svg");
  height: 30px;
  background-repeat: no-repeat;
  background-position: left;
  background-size: 25px 25px;
  padding: 5px 0;
}

.header .header-phone a {
  margin-left: 30px;
}

@media (max-width: 481px) {
  .header .header-phone {
    display: none;
  }
}

.header .hamburger {
  width: 40px;
  height: 40px;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
}

@media (max-width: 961px) {
  .header .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header .hamburger .line {
  margin: 3px;
  width: 25px;
  height: 1px;
  background-color: #242424;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .toggle .line1 {
  -webkit-transform: rotate(-45deg) translate(-5px, 5px);
          transform: rotate(-45deg) translate(-5px, 5px);
}

.header .toggle .line2 {
  opacity: 0;
}

.header .toggle .line3 {
  -webkit-transform: rotate(45deg) translate(-5px, -5px);
          transform: rotate(45deg) translate(-5px, -5px);
}

.header .navigation {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

@media (max-width: 961px) {
  .header .navigation {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    position: absolute;
    top: 60px;
    right: 0;
    width: 50%;
    background-color: #f5f5f5;
    height: calc(100vh - 60px);
  }
}

@media (max-width: 961px) and (max-width: 481px) {
  .header .navigation {
    width: 70%;
  }
}

.header .navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

@media (max-width: 961px) {
  .header .navigation ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header .navigation ul li {
  list-style: none;
  padding: 10px 15px;
  position: relative;
}

@media (max-width: 961px) {
  .header .navigation ul li {
    opacity: 0;
    margin-bottom: 30px;
  }
}

.header .navigation ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 0;
  height: 1px;
  background-color: #1976d2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .navigation ul li:hover::after {
  width: 90%;
}

.header .navigation ul li a {
  font-size: 18px;
  text-decoration: none;
  color: #242424;
}

.header .navigation ul .active-link {
  position: relative;
}

.header .navigation ul .active-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  height: 1px;
  background-color: #1976d2;
}

.header .nav-active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

@-webkit-keyframes navLinkFade {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

.callback-bt {
  background: #1976d2;
  border: 2px solid #1976d2;
  border-radius: 50%;
  -webkit-box-shadow: 0 8px 10px #1976d2;
          box-shadow: 0 8px 10px #1976d2;
  cursor: pointer;
  height: 70px;
  text-align: center;
  width: 70px;
  position: fixed;
  right: 8%;
  bottom: 18%;
  z-index: 3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-animation: hoverWave linear 1s infinite;
          animation: hoverWave linear 1s infinite;
  text-shadow: none;
}

.callback-bt .text-call {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.callback-bt .text-call span {
  color: #1976d2;
  opacity: 0;
  font-size: 0;
  position: absolute;
  right: 4px;
  top: 22px;
  line-height: 14px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

.callback-bt .text-call:hover span {
  opacity: 1;
  font-size: 11px;
}

.callback-bt img {
  width: 40px;
  height: 40px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  margin-top: 15px;
  margin-right: 5px;
  -webkit-animation: 1200ms ease 0s normal none 1 running shake;
          animation: 1200ms ease 0s normal none 1 running shake;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.callback-bt:hover {
  z-index: 1;
  background: #fff;
  color: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.callback-bt:hover img {
  display: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@-webkit-keyframes hoverWave {
  0% {
    -webkit-box-shadow: 0 8px 10px rgba(25, 118, 210, 0.7), 0 0 0 0 rgba(25, 118, 210, 0.4), 0 0 0 0 rgba(25, 118, 210, 0.4);
            box-shadow: 0 8px 10px rgba(25, 118, 210, 0.7), 0 0 0 0 rgba(25, 118, 210, 0.4), 0 0 0 0 rgba(25, 118, 210, 0.4);
  }
  40% {
    -webkit-box-shadow: 0 8px 10px rgba(25, 118, 210, 0.7), 0 0 0 15px rgba(25, 118, 210, 0.4), 0 0 0 0 rgba(25, 118, 210, 0.4);
            box-shadow: 0 8px 10px rgba(25, 118, 210, 0.7), 0 0 0 15px rgba(25, 118, 210, 0.4), 0 0 0 0 rgba(25, 118, 210, 0.4);
  }
  80% {
    -webkit-box-shadow: 0 8px 10px rgba(25, 118, 210, 0.7), 0 0 0 30px rgba(25, 118, 210, 0), 0 0 0 26.7px rgba(25, 118, 210, 0.067);
            box-shadow: 0 8px 10px rgba(25, 118, 210, 0.7), 0 0 0 30px rgba(25, 118, 210, 0), 0 0 0 26.7px rgba(25, 118, 210, 0.067);
  }
  100% {
    -webkit-box-shadow: 0 8px 10px rgba(25, 118, 210, 0.7), 0 0 0 30px rgba(25, 118, 210, 0), 0 0 0 40px rgba(25, 118, 210, 0);
            box-shadow: 0 8px 10px rgba(25, 118, 210, 0.7), 0 0 0 30px rgba(25, 118, 210, 0), 0 0 0 40px rgba(25, 118, 210, 0);
  }
}

@keyframes hoverWave {
  0% {
    -webkit-box-shadow: 0 8px 10px rgba(25, 118, 210, 0.7), 0 0 0 0 rgba(25, 118, 210, 0.4), 0 0 0 0 rgba(25, 118, 210, 0.4);
            box-shadow: 0 8px 10px rgba(25, 118, 210, 0.7), 0 0 0 0 rgba(25, 118, 210, 0.4), 0 0 0 0 rgba(25, 118, 210, 0.4);
  }
  40% {
    -webkit-box-shadow: 0 8px 10px rgba(25, 118, 210, 0.7), 0 0 0 15px rgba(25, 118, 210, 0.4), 0 0 0 0 rgba(25, 118, 210, 0.4);
            box-shadow: 0 8px 10px rgba(25, 118, 210, 0.7), 0 0 0 15px rgba(25, 118, 210, 0.4), 0 0 0 0 rgba(25, 118, 210, 0.4);
  }
  80% {
    -webkit-box-shadow: 0 8px 10px rgba(25, 118, 210, 0.7), 0 0 0 30px rgba(25, 118, 210, 0), 0 0 0 26.7px rgba(25, 118, 210, 0.067);
            box-shadow: 0 8px 10px rgba(25, 118, 210, 0.7), 0 0 0 30px rgba(25, 118, 210, 0), 0 0 0 26.7px rgba(25, 118, 210, 0.067);
  }
  100% {
    -webkit-box-shadow: 0 8px 10px rgba(25, 118, 210, 0.7), 0 0 0 30px rgba(25, 118, 210, 0), 0 0 0 40px rgba(25, 118, 210, 0);
            box-shadow: 0 8px 10px rgba(25, 118, 210, 0.7), 0 0 0 30px rgba(25, 118, 210, 0), 0 0 0 40px rgba(25, 118, 210, 0);
  }
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  10% {
    -webkit-transform: rotateZ(-30deg);
            transform: rotateZ(-30deg);
  }
  20% {
    -webkit-transform: rotateZ(15deg);
            transform: rotateZ(15deg);
  }
  30% {
    -webkit-transform: rotateZ(-10deg);
            transform: rotateZ(-10deg);
  }
  40% {
    -webkit-transform: rotateZ(7.5deg);
            transform: rotateZ(7.5deg);
  }
  50% {
    -webkit-transform: rotateZ(-6deg);
            transform: rotateZ(-6deg);
  }
  60% {
    -webkit-transform: rotateZ(5deg);
            transform: rotateZ(5deg);
  }
  70% {
    -webkit-transform: rotateZ(-4.28571deg);
            transform: rotateZ(-4.28571deg);
  }
  80% {
    -webkit-transform: rotateZ(3.75deg);
            transform: rotateZ(3.75deg);
  }
  90% {
    -webkit-transform: rotateZ(-3.33333deg);
            transform: rotateZ(-3.33333deg);
  }
  100% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  10% {
    -webkit-transform: rotateZ(-30deg);
            transform: rotateZ(-30deg);
  }
  20% {
    -webkit-transform: rotateZ(15deg);
            transform: rotateZ(15deg);
  }
  30% {
    -webkit-transform: rotateZ(-10deg);
            transform: rotateZ(-10deg);
  }
  40% {
    -webkit-transform: rotateZ(7.5deg);
            transform: rotateZ(7.5deg);
  }
  50% {
    -webkit-transform: rotateZ(-6deg);
            transform: rotateZ(-6deg);
  }
  60% {
    -webkit-transform: rotateZ(5deg);
            transform: rotateZ(5deg);
  }
  70% {
    -webkit-transform: rotateZ(-4.28571deg);
            transform: rotateZ(-4.28571deg);
  }
  80% {
    -webkit-transform: rotateZ(3.75deg);
            transform: rotateZ(3.75deg);
  }
  90% {
    -webkit-transform: rotateZ(-3.33333deg);
            transform: rotateZ(-3.33333deg);
  }
  100% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
}

.modal {
  display: none;
  position: fixed;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 4;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-animation-name: modalbox;
          animation-name: modalbox;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.modal #info-form {
  position: relative;
  width: 400px;
  height: 350px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #e9e9e9;
  border-radius: 30px;
}

@media (max-width: 481px) {
  .modal #info-form {
    width: 300px;
  }
}

.modal #info-form p {
  font-size: 26px;
  text-align: center;
}

@media (max-width: 481px) {
  .modal #info-form p {
    font-size: 20px;
  }
}

.modal #info-form label {
  font-size: 20px;
}

@media (max-width: 481px) {
  .modal #info-form label {
    font-size: 18px;
  }
}

.modal #info-form input {
  border: none;
  outline: none;
  font-size: 18px;
  margin: 2px;
  height: 2em;
  min-width: 230px;
  border-radius: 10px;
}

.modal #info-form input:focus {
  border-bottom: 2px solid #242424;
}

.modal #info-form input[type="submit"] {
  margin-top: 15px;
  font-size: 18px;
  background-color: #1976d2;
  color: white;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 0.4s, color 0.4s;
  transition: background-color 0.4s, color 0.4s;
}

.modal #info-form input[type="submit"]:hover {
  background-color: white;
  color: #1976d2;
}

.modal #info-form .close {
  color: #aaa;
  font-size: 32px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}

.modal #info-form .close:hover {
  color: black;
}

@-webkit-keyframes modalbox {
  0% {
    top: -250px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes modalbox {
  0% {
    top: -250px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

.phone {
  text-decoration: none;
  color: #242424;
  font-family: Arial, sans-serif;
  pointer-events: none;
}

@media (max-width: 481px) {
  .phone {
    pointer-events: all;
  }
}

.order {
  padding: 20px;
  font-size: 24px;
  width: 330px;
  border-radius: 6px;
  outline: none;
  border: none;
  background-color: #1976d2;
  color: #f5f5f5;
  margin: 20px 0;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.order:hover {
  background-color: #f5f5f5;
  outline: 2px solid #1976d2;
  color: #1976d2;
}

@media (max-width: 481px) {
  .order {
    width: 300px;
    font-size: 20px;
    padding: 15px;
  }
}

.steps {
  background-color: #e9e9e9;
  padding: 40px 0;
}

.steps h2 {
  font-size: 40px;
  padding: 0 5px 15px;
  text-align: center;
  color: #1976d2;
}

@media (max-width: 481px) {
  .steps h2 {
    font-size: 28px;
  }
}

.steps h3 {
  font-size: 28px;
  padding: 0 5px 10px;
  text-align: center;
}

@media (max-width: 481px) {
  .steps h3 {
    font-size: 20px;
  }
}

.steps ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 961px) {
  .steps ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.steps ul li {
  font-size: 20px;
  list-style: none;
  text-align: center;
  width: 300px;
  height: 330px;
  padding: 5px;
}

.steps ul li figure {
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.steps ul li figure img {
  width: 150px;
  height: 150px;
  background-color: #dddddd;
  border: 6px solid #243b55;
  border-radius: 50%;
}

.steps ul li figure figcaption {
  margin-top: 10px;
}

.question {
  padding: 40px 0;
}

.question h2 {
  font-size: 40px;
  padding: 0 5px 15px;
  text-align: center;
  color: #1976d2;
}

@media (max-width: 481px) {
  .question h2 {
    font-size: 28px;
  }
}

.question p {
  line-height: 2em;
  text-align: center;
  font-size: 22px;
}

@media (max-width: 481px) {
  .question p {
    font-size: 18px;
  }
}

.question p span {
  font-size: 28px;
  font-family: Arial, sans-serif;
  color: #1976d2;
}

@media (max-width: 481px) {
  .question p span {
    font-size: 22px;
  }
}

.question div {
  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;
}

footer .footer-container {
  background-color: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media (max-width: 721px) {
  footer .footer-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

footer .footer-container .footer-column {
  padding: 20px 10px;
}

footer .footer-container h3 {
  margin-bottom: 5px;
}

footer .footer-container a {
  margin-left: 30px;
  text-decoration: none;
  color: #242424;
}

footer .footer-container .footer-link {
  height: 35px;
  background-repeat: no-repeat;
  background-position: left;
  background-size: 25px 25px;
  padding: 10px 0;
  width: 300px;
  position: relative;
}

footer .footer-container .footer-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #1976d2;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

footer .footer-container .footer-link:hover::after {
  width: 100%;
}

footer .footer-container .facebook {
  background-image: url("/icons/fb.svg");
}

footer .footer-container .instagram {
  background-image: url("/icons/insta.svg");
}

footer .footer-container .response {
  background-image: url("/icons/response.svg");
}

footer .footer-container .location {
  background-image: url("/icons/location.svg");
}

footer .footer-container .footer-phone {
  background-image: url("/icons/phone.svg");
}

footer .footer-container .mail {
  background-image: url("/icons/mail.svg");
}

footer .footer-rights {
  text-align: center;
  padding: 10px 0;
}
/*# sourceMappingURL=main.css.map */