.col-md-4.aside-right .app img {
  padding: 10px 0;
}
.col-md-8.aside-left img {
  animation: ani-rocket 3s linear infinite;
  transition: 1s ease-in-out;
}
.aside-right img {
  animation: ani-zoom 0.8s linear infinite;
}

h2.header-custom__logo img {
  width: 300px;
}
h2.header-custom__logo {
  margin-bottom: 3rem;
}
header#header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
}
.header-custom--left p{
  text-transform: capitalize;
  font-weight: bold;
}
.header-custom--left {
  text-align: center;
}
.header-custom--left button {
  width: 70%;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 15px;
  background-color: #125798;
  color: #fff;
  font-size: 27px;
  animation: ani-zoom 0.8s linear infinite;
}
.header-custom--top {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.col-md-4.aside-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-group.submit img {
  animation: ani-zoom 0.8s linear infinite;
}
.image-home img {
  height: 800px;
}
a.btn-link {
  background-color: #28A8E0;
  color: #fff;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  width: auto;
  display: inline-block;
  margin-top: 20px;
  animation: ani-zoom 0.8s linear infinite;
  font-size: 25px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
a.btn-link:hover {
  color: #fff;
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(40, 168, 224, 0.3);
  background-color: #28A8E0;
  animation: none;
}
a.btn-link.spinning {
  pointer-events: none;
  position: relative;
  color: transparent !important;
}
a.btn-link.spinning::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spinner 1s ease-in-out infinite;
}
@keyframes spinner {
  to { transform: rotate(360deg); }
}
@keyframes ani-rocket {
  0% {
    transform: translate(0, 3%);
  }
  50% {
    transform: translate(3%, 5%);
  }

  100% {
    transform: translate(0%, 3%);
  }
}
@keyframes ani-zoom {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(0.8);
  }
}
/* CSS for mobile devices */
@media (max-width: 767px) {
  .image-home img {
    height: 100%;
  }
  h2.header-custom__logo img {
    width: 200px;
  }
form {
  flex-direction: column;
  align-items: center;
}
.form-group.name {
  width: 80%;
  padding: 2rem 0;
}
.form-group.name input {
  padding: 10px;
}
.row.content-home .content-main {
  padding: 20px;
}
.row.content-home h2{
  font-size: 24px;
}
.header-custom--left p {
  font-size: 16px;
}
.row.content-home::before {
  width: 200px;
}
.row.content-home::after {
  width: 150px;
  top: 5px;
}
span.form-text {
  font-size: 14px;
}
}
