.container {
  display: block;
  max-width: 1400px;
  margin: 0 auto;
}

section {
  padding: 10px;
  margin: 10px 0;
}

@media (min-width: 768px) {
  section {
    padding: 15px;
    margin: 20px 0;
  }
}

@media (min-width: 992px) {
  section {
    padding: 20px;
    margin: 25px 0;
  }
}

.spacer10 {
  margin: 10px 0;
}

.spacer20 {
  margin: 20px 0;
}

.spacer30 {
  margin: 30px 0;
}

.section-title {
  font-family: "Oswald";
  font-weight: 500;
  text-align: center;
  font-size: 20px;
  text-transform: uppercase;
  color: #6a11cb;
}

@media (min-width: 576px) {
  .section-title {
    font-size: 22px;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 24px;
  }
}

@media (min-width: 992px) {
  .section-title {
    font-size: 26px;
  }
}

@media (min-width: 1200px) {
  .section-title {
    font-size: 30px;
  }
}

.section-text {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

@media (min-width: 576px) {
  .section-text {
    font-size: 17px;
  }
}

@media (min-width: 768px) {
  .section-text {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .section-text {
    font-size: 19px;
  }
}

@media (min-width: 1200px) {
  .section-text {
    font-size: 20px;
  }
}

.main-button {
  text-align: center;
  display: block;
  border: 1px solid #6a11cb;
  cursor: pointer;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  margin: 10px 0;
  font-family: "Oswald";
  font-weight: 500;
  color: #6a11cb;
  text-transform: uppercase;
  border-radius: 4px;
  font-size: 15px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 10px 15px;
}

@media (min-width: 576px) {
  .main-button {
    display: inline-block;
  }
}

@media (min-width: 768px) {
  .main-button {
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  .main-button {
    font-size: 17px;
    padding: 15px 25px;
  }
}

@media (min-width: 1200px) {
  .main-button {
    font-size: 18px;
    padding: 15px 40px;
  }
}

.main-button img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  margin-top: -5px;
}

@media (min-width: 992px) {
  .main-button img {
    width: 25px;
    height: 25px;
  }
}

.main-button:before {
  content: "";
  position: absolute;
  height: 150px;
  width: 50px;
  background: #b721ff;
  right: -40px;
  top: -40px;
  -webkit-transform: rotate(37deg);
  -ms-transform: rotate(37deg);
  transform: rotate(37deg);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0.3;
}

.main-button:hover:before {
  right: 105%;
}

.main-button:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

header {
  background-image: url("./images/header-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 30px;
}

header .container {
  width: 100%;
}

@media (min-width: 768px) {
  header {
    min-height: 50vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  header {
    padding: 60px;
    min-height: 60vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (min-width: 1200px) {
  header {
    padding: 100px;
    min-height: 70vh;
  }
}

header .header-block {
  background: white;
  border-radius: 4px;
  -webkit-box-shadow: rgba(99, 99, 99, 0.5) 0px 2px 8px 0px;
  box-shadow: rgba(99, 99, 99, 0.5) 0px 2px 8px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

@media (min-width: 576px) {
  header .header-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  header .header-block {
    gap: 20px;
  }
}

@media (min-width: 992px) {
  header .header-block {
    gap: 30px;
  }
}

@media (min-width: 1200px) {
  header .header-block {
    gap: 40px;
  }
}

header .header-block .text-content {
  width: 100%;
}

@media (min-width: 576px) {
  header .header-block .text-content {
    width: 60%;
  }
}

@media (min-width: 992px) {
  header .header-block .text-content {
    width: 50%;
  }
}

header .header-block h1 {
  font-family: "Oswald";
  font-weight: 500;
  text-transform: uppercase;
  font-size: 20px;
  color: #000;
  text-align: center;
}

@media (min-width: 576px) {
  header .header-block h1 {
    text-align: left;
  }
}

@media (min-width: 768px) {
  header .header-block h1 {
    font-size: 24px;
  }
}

@media (min-width: 992px) {
  header .header-block h1 {
    font-size: 32px;
  }
}

@media (min-width: 1200px) {
  header .header-block h1 {
    font-size: 38px;
  }
}

header .header-block h1 span {
  color: #6a11cb;
}

header .header-block #typed-text {
  font-family: "Oswald";
  font-weight: 500;
  margin: 20px 0 10px 0;
  min-height: 45px;
  text-align: center;
}

@media (min-width: 576px) {
  header .header-block #typed-text {
    text-align: left;
  }
}

header .header-block p {
  font-family: "Roboto";
  font-weight: 400;
  color: #b721ff;
  text-transform: uppercase;
  font-size: 18px;
}

@media (min-width: 768px) {
  header .header-block p {
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  header .header-block p {
    font-size: 24px;
  }
}

@media (min-width: 1200px) {
  header .header-block p {
    font-size: 28px;
  }
}

header .header-block .blob-wrapper {
  background-repeat: no-repeat;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-animation: scaleUp 0.5s ease-in-out 0.5s forwards;
  animation: scaleUp 0.5s ease-in-out 0.5s forwards;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

header .header-block .blob-wrapper .logo-animation-wrapper {
  display: none;
}

@media (min-width: 576px) {
  header .header-block .blob-wrapper .logo-animation-wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 140px;
    height: 200px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-animation: scaleUp 0.5s ease-in-out 0.7s forwards;
    animation: scaleUp 0.5s ease-in-out 0.7s forwards;
  }
  header .header-block .blob-wrapper .logo-animation-wrapper img {
    width: 100%;
    height: 100%;
    -webkit-animation: levitate-animation 2s ease-in-out infinite alternate;
    animation: levitate-animation 2s ease-in-out infinite alternate;
  }
}

@media (min-width: 768px) {
  header .header-block .blob-wrapper .logo-animation-wrapper {
    min-width: 200px;
    height: 250px;
  }
}

@media (min-width: 992px) {
  header .header-block .blob-wrapper .logo-animation-wrapper {
    min-width: 240px;
    height: 300px;
  }
}

@media (min-width: 1200px) {
  header .header-block .blob-wrapper .logo-animation-wrapper {
    min-width: 280px;
    height: 360px;
  }
}

header .header-block .blob-wrapper .logo-animation-wrapper::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 80%;
  height: 10px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-filter: blur(5px);
  filter: blur(5px);
  -webkit-animation: shadow-animation 2s ease-in-out infinite alternate;
  animation: shadow-animation 2s ease-in-out infinite alternate;
}

header .header-block .blob-wrapper a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Oswald";
  font-weight: 500;
  text-decoration: none;
  color: #6a11cb;
  text-transform: uppercase;
  font-size: 30px;
}

header .header-block .blob-wrapper a span {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 15px;
  display: block;
  padding-top: 15px;
  margin-left: 3px;
}

@media (min-width: 768px) {
  header .header-block .blob-wrapper a span {
    font-size: 19px;
  }
}

@media (min-width: 992px) {
  header .header-block .blob-wrapper a span {
    font-size: 22px;
    padding-top: 20px;
  }
}

@media (min-width: 1200px) {
  header .header-block .blob-wrapper a span {
    font-size: 27px;
    padding-top: 25px;
  }
}

@media (min-width: 768px) {
  header .header-block .blob-wrapper a {
    font-size: 38px;
  }
}

@media (min-width: 992px) {
  header .header-block .blob-wrapper a {
    font-size: 45px;
  }
}

@media (min-width: 1200px) {
  header .header-block .blob-wrapper a {
    font-size: 55px;
  }
}

header .header-block .blob-wrapper a img {
  width: 28px;
  height: 35px;
}

@media (min-width: 768px) {
  header .header-block .blob-wrapper a img {
    width: 32px;
    height: 39px;
  }
}

@media (min-width: 992px) {
  header .header-block .blob-wrapper a img {
    width: 36px;
    height: 45px;
  }
}

@media (min-width: 1200px) {
  header .header-block .blob-wrapper a img {
    width: 42px;
    height: 52px;
  }
}

@media (min-width: 576px) {
  header .header-block .blob-wrapper {
    width: 40%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
  }
}

@media (min-width: 992px) {
  header .header-block .blob-wrapper {
    width: 50%;
    background-image: url("./images/blob.svg");
    background-position: center;
    background-size: contain;
    min-height: 420px;
  }
}

@media (min-width: 1200px) {
  header .header-block .blob-wrapper {
    min-height: 520px;
  }
}

.info-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  padding: 50px 0;
}

@media (min-width: 576px) {
  .info-wrapper {
    gap: 55px;
  }
}

@media (min-width: 768px) {
  .info-wrapper {
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media (min-width: 992px) {
  .info-wrapper {
    gap: 65px;
  }
}

.info-wrapper-card {
  background-color: #fff;
  border-radius: 4px;
  padding: 40px 20px 20px 20px;
  position: relative;
  -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0px 3px 8px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 3px 8px;
}

@media (min-width: 768px) {
  .info-wrapper-card {
    min-height: 350px;
  }
}

@media (min-width: 1200px) {
  .info-wrapper-card {
    min-height: 250px;
  }
}

.info-wrapper-card .image {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  top: -10%;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-items: center;
  width: 100px;
  height: 100px;
  min-width: 100px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0px 3px 8px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 3px 8px;
}

@media (min-width: 576px) {
  .info-wrapper-card .image {
    width: 120px;
    height: 120px;
    top: -18%;
  }
}

@media (min-width: 768px) {
  .info-wrapper-card .image {
    top: -10%;
  }
}

@media (min-width: 992px) {
  .info-wrapper-card .image {
    width: 140px;
    height: 140px;
    min-width: 140px;
    top: -15%;
  }
}

.info-wrapper-card .image img {
  width: 100%;
  height: 100%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-animation: levitate-animation 2s ease-in-out infinite alternate;
  animation: levitate-animation 2s ease-in-out infinite alternate;
}

.info-wrapper-card h3 {
  font-family: "Oswald";
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
  font-size: 18px;
}

@media (min-width: 768px) {
  .info-wrapper-card h3 {
    font-size: 19px;
  }
}

@media (min-width: 992px) {
  .info-wrapper-card h3 {
    font-size: 20px;
  }
}

@media (min-width: 1200px) {
  .info-wrapper-card h3 {
    font-size: 22px;
  }
}

.info-wrapper-card p {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

@media (min-width: 768px) {
  .info-wrapper-card p {
    font-size: 17px;
  }
}

@media (min-width: 992px) {
  .info-wrapper-card p {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .info-wrapper-card p {
    font-size: 19px;
  }
}

.info {
  background-image: url("./images/office.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0px 3px 8px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 3px 8px;
}

.about-us-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 576px) {
  .about-us-wrapper {
    gap: 15px;
  }
}

@media (min-width: 992px) {
  .about-us-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 30px;
  }
}

@media (min-width: 1200px) {
  .about-us-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 40px;
  }
}

@media (min-width: 992px) {
  .about-us-wrapper .section-title {
    text-align: left;
  }
}

.about-us-wrapper .brand {
  border-radius: 4px;
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-left: 4px solid #b721ff;
  padding: 6px 20px;
}

@media (min-width: 1200px) {
  .about-us-wrapper .brand {
    margin-top: 60px;
  }
}

.about-us-wrapper .brand p {
  font-family: "Oswald";
  font-weight: 500;
  color: #000;
  font-size: 18px;
  text-transform: uppercase;
  padding: 0 60px;
  text-align: center;
}

@media (min-width: 768px) {
  .about-us-wrapper .brand p {
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  .about-us-wrapper .brand p {
    font-size: 22px;
  }
}

@media (min-width: 1200px) {
  .about-us-wrapper .brand p {
    font-size: 26px;
  }
}

.about-us-wrapper .brand p span {
  color: #b721ff;
}

.about-us-wrapper .brand .qwoter {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-us-wrapper .brand .qwoter img {
  width: 50px;
  height: 50px;
  min-width: unset;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.about-us-wrapper .brand .qwoter-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.about-us-wrapper .brand .qwoter-end img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.about-us-wrapper img {
  border-radius: 4px;
  width: 100%;
  height: 100%;
}

@media (min-width: 992px) {
  .about-us-wrapper img {
    min-width: 450px;
  }
}

@media (min-width: 1200px) {
  .about-us-wrapper img {
    min-width: 520px;
  }
}

.contact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 20px;
}

@media (min-width: 768px) {
  .contact-wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 30px;
  }
}

.contact-wrapper .section-text {
  text-align: center;
}

@media (min-width: 768px) {
  .contact-wrapper .section-text {
    text-align: left;
  }
}

.contact-wrapper a {
  background: none;
  outline: none;
  border: 2px solid #b721ff;
  font-family: "Oswald";
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 10px 20px;
  color: #b721ff;
  font-size: 16px;
  cursor: pointer;
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  text-decoration: none;
}

@media (min-width: 768px) {
  .contact-wrapper a {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .contact-wrapper a {
    font-size: 20px;
  }
}

.contact-wrapper a:hover, .contact-wrapper a:active {
  background-color: #b721ff;
  color: #fff;
  -webkit-box-shadow: #b721ff 0px 2px 8px 0px;
  box-shadow: #b721ff 0px 2px 8px 0px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

footer {
  background-color: #000;
}

footer .footer-content {
  display: grid;
  gap: 20px;
  padding: 10px;
  margin: 10px 0;
}

@media (min-width: 768px) {
  footer .footer-content {
    padding: 15px;
    margin: 20px 0;
    gap: 30px;
  }
}

@media (min-width: 992px) {
  footer .footer-content {
    grid-template-columns: repeat(3, 1fr);
    padding: 20px;
    margin: 25px 0;
  }
}

@media (min-width: 1200px) {
  footer .footer-content {
    padding: 40px 0;
  }
}

footer .footer-content .sup-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 576px) {
  footer .footer-content .sup-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
  }
  footer .footer-content .sup-container div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media (min-width: 768px) {
  footer .footer-content .sup-container {
    gap: 30px;
  }
}

@media (min-width: 992px) {
  footer .footer-content .sup-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 160px;
  }
}

footer .footer-content p {
  font-family: "Roboto";
  font-weight: 400;
  color: #fff;
  font-size: 16px;
}

@media (min-width: 992px) {
  footer .footer-content p {
    font-size: 17px;
  }
}

@media (min-width: 1200px) {
  footer .footer-content p {
    font-size: 18px;
  }
}

footer .footer-content a {
  color: #fff;
  font-size: 16px;
  font-family: "Roboto";
  font-weight: 400;
}

@media (min-width: 992px) {
  footer .footer-content a {
    font-size: 17px;
  }
}

@media (min-width: 1200px) {
  footer .footer-content a {
    font-size: 18px;
  }
}

footer .footer-content .footer-title {
  color: #b721ff;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  footer .footer-content .footer-title {
    font-size: 16px;
  }
}

@media (min-width: 1200px) {
  footer .footer-content .footer-title {
    font-size: 17px;
  }
}

footer .footer-content .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

footer .footer-content .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Oswald";
  font-weight: 500;
  text-decoration: none;
  color: #6a11cb;
  text-transform: uppercase;
  font-size: 30px;
}

footer .footer-content .logo a span {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 15px;
  display: block;
  padding-top: 15px;
  margin-left: 3px;
}

footer .footer-content .logo a img {
  width: 25px;
  height: 30px;
}

@-webkit-keyframes scaleUp {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scaleUp {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes levitate-animation {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes levitate-animation {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
}

@-webkit-keyframes shadow-animation {
  0% {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateX(-50%) scale(0.8);
    transform: translateX(-50%) scale(0.8);
    opacity: 0.2;
  }
}

@keyframes shadow-animation {
  0% {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateX(-50%) scale(0.8);
    transform: translateX(-50%) scale(0.8);
    opacity: 0.2;
  }
}

.scroll-content {
  -webkit-transform: translateY(20%);
  -ms-transform: translateY(20%);
  transform: translateY(20%);
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  -o-transition: transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
}

.scroll-animation {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  -o-transition: transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
}
