* {
  margin: 0;
  padding: 0;
}

@font-face {
  src: url("../library/fonts/GoogleSans-Regular.ttf");
  font-family: "Google Sans";
}

@font-face {
  src: url("../library/fonts/RobotoCondensed-Regular.ttf");
  font-family: "Roboto Condensed";
}

@font-face {
  src: url("../library/fonts/DIN-Regular.ttf");
  font-family: "Din Reg";
}

@font-face {
  src: url("../library/fonts/DIN-Medium.ttf");
  font-family: "Din Mid";
}

.animations {
  margin: 4rem 8rem 0 8rem;
}

svg {
  height: 250px;
}

p {
  padding: 2rem;
  margin-bottom: -10px;
  color: #262626 !important;
}

.special_col {
  color: #53d8fb;
  margin: 6rem 0 0 0;
}

.about_us {
  margin: 1rem 0 0 0;
}

.about_us .about {
  height: 25vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#005acf), to(#008fe2));
  background-image: linear-gradient(#005acf, #008fe2);
}

.about_us .about h4 {
  color: #ffffff;
  margin: 0 0 0 4rem;
  font-weight: 700;
}

.about_us .about .statement {
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
}

.about_us .about img {
  width: 120px;
  height: auto;
  border-radius: 50%;
  margin: 0 4rem 0 0;
}

.image-1:hover #right-hand {
  -webkit-animation: spin 2s ease forwards;
          animation: spin 2s ease forwards;
  -webkit-transform-origin: right;
          transform-origin: right;
  transform-box: fill-box;
}

.image-1:hover #card {
  -webkit-animation: up 1s ease forwards;
          animation: up 1s ease forwards;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  to {
    -webkit-transform: rotateZ(-10deg);
            transform: rotateZ(-10deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  to {
    -webkit-transform: rotateZ(-10deg);
            transform: rotateZ(-10deg);
  }
}

@-webkit-keyframes up {
  from {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  to {
    -webkit-transform: translateY(-220px);
            transform: translateY(-220px);
  }
}

@keyframes up {
  from {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  to {
    -webkit-transform: translateY(-220px);
            transform: translateY(-220px);
  }
}

@media screen and (max-width: 767px) {
  svg {
    height: 220px;
  }
  .about_us .about h4 {
    margin: 0;
    font-size: 24px;
  }
  .about_us .about img {
    display: none;
  }
  .animations {
    margin: auto 2rem;
  }
  .animation {
    padding: 2rem 0;
  }
}
/*# sourceMappingURL=about.css.map */