|
@@ -5629,7 +5629,6 @@
|
|
|
#ai-virtual-star .header .main p {
|
|
|
margin-bottom: 1.5rem;
|
|
|
text-align: center;
|
|
|
- font-weight: bold;
|
|
|
}
|
|
|
@media (max-width: 575px) {
|
|
|
#video-editing .header .main p,
|
|
@@ -5652,7 +5651,7 @@
|
|
|
}
|
|
|
#ai-virtual-star p,
|
|
|
#ai-virtual-star li {
|
|
|
- line-height: 3;
|
|
|
+ line-height: 2.5;
|
|
|
}
|
|
|
#ai-virtual-star .cover-img {
|
|
|
width: 100vw;
|
|
@@ -5665,7 +5664,7 @@
|
|
|
}
|
|
|
#ai-virtual-star h2 {
|
|
|
font-size: 2.75rem;
|
|
|
- line-height: 1.8;
|
|
|
+ line-height: 1.6;
|
|
|
}
|
|
|
@media (max-width: 1200px) {
|
|
|
#ai-virtual-star h2 {
|
|
@@ -5708,7 +5707,7 @@
|
|
|
list-style: none;
|
|
|
}
|
|
|
#ai-virtual-star ul li {
|
|
|
- line-height: 3;
|
|
|
+ line-height: 2.5;
|
|
|
}
|
|
|
#ai-virtual-star small {
|
|
|
font-size: 1rem;
|
|
@@ -5743,7 +5742,7 @@
|
|
|
padding: 2rem 4rem;
|
|
|
display: inline-block;
|
|
|
border-radius: 20px;
|
|
|
- border: 2px solid #3cd3b9;
|
|
|
+ border: 4px solid #3cd3b9;
|
|
|
}
|
|
|
@media (max-width: 575px) {
|
|
|
#ai-virtual-star .info {
|
|
@@ -5776,6 +5775,8 @@
|
|
|
letter-spacing: 1px;
|
|
|
}
|
|
|
#ai-virtual-star .sign-up-btn {
|
|
|
+ width: 365px;
|
|
|
+ text-align: center;
|
|
|
display: block;
|
|
|
margin: 3rem auto;
|
|
|
padding: 1rem 3rem;
|
|
@@ -5790,6 +5791,101 @@
|
|
|
#ai-virtual-star .sign-up-btn:hover {
|
|
|
opacity: 0.8;
|
|
|
}
|
|
|
+@media (max-width: 575px) {
|
|
|
+ #ai-virtual-star .sign-up-btn {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+}
|
|
|
+#ai-virtual-star .activity-info {
|
|
|
+ height: 0;
|
|
|
+ opacity: 0;
|
|
|
+ overflow: hidden;
|
|
|
+ transition: height 1.5s ease, opacity 1.5s ease;
|
|
|
+}
|
|
|
+#ai-virtual-star .activity-info.active {
|
|
|
+ height: auto;
|
|
|
+ opacity: 1;
|
|
|
+}
|
|
|
+#ai-virtual-star .activity-btn {
|
|
|
+ width: 365px;
|
|
|
+ padding: 1rem 3rem;
|
|
|
+ background-color: transparent;
|
|
|
+ border-radius: 5px;
|
|
|
+ border: none;
|
|
|
+ box-shadow: 0px 0px 10px #3cd3b9;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+@media (max-width: 575px) {
|
|
|
+ #ai-virtual-star .activity-btn {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+}
|
|
|
+#ai-virtual-star .activity-btn span {
|
|
|
+ color: #fff;
|
|
|
+ font-size: 1.5rem;
|
|
|
+ font-weight: bold;
|
|
|
+}
|
|
|
+#ai-virtual-star .arrow-wave span {
|
|
|
+ display: block;
|
|
|
+ position: relative;
|
|
|
+ height: 19px;
|
|
|
+ width: 30px;
|
|
|
+ /* background-color: rgba(100, 100, 100, 0.4); */
|
|
|
+ opacity: 0.2;
|
|
|
+}
|
|
|
+#ai-virtual-star .arrow-wave span::before, #ai-virtual-star .arrow-wave span::after {
|
|
|
+ display: block;
|
|
|
+ content: "";
|
|
|
+ position: absolute;
|
|
|
+ height: 4px;
|
|
|
+ width: 23px;
|
|
|
+ background-color: #fff;
|
|
|
+ transition: transform 0.3s ease;
|
|
|
+}
|
|
|
+#ai-virtual-star .arrow-wave span::before {
|
|
|
+ top: -2px;
|
|
|
+ left: 0;
|
|
|
+ transform-origin: left center;
|
|
|
+ transform: rotate(45deg);
|
|
|
+}
|
|
|
+#ai-virtual-star .arrow-wave span::after {
|
|
|
+ top: -2px;
|
|
|
+ right: 0;
|
|
|
+ transform-origin: right center;
|
|
|
+ transform: rotate(-45deg);
|
|
|
+}
|
|
|
+#ai-virtual-star .arrow-wave span:nth-child(1n) {
|
|
|
+ animation: animate-arrow-wave 2s infinite;
|
|
|
+ animation-delay: 0.25s;
|
|
|
+}
|
|
|
+#ai-virtual-star .arrow-wave span:nth-child(2n) {
|
|
|
+ animation: animate-arrow-wave 2s infinite;
|
|
|
+ animation-delay: 0.5s;
|
|
|
+}
|
|
|
+#ai-virtual-star .arrow-wave span:nth-child(3n) {
|
|
|
+ animation: animate-arrow-wave 2s infinite;
|
|
|
+ animation-delay: 0.75s;
|
|
|
+}
|
|
|
+#ai-virtual-star .arrow-wave.active span {
|
|
|
+ bottom: -15px;
|
|
|
+}
|
|
|
+#ai-virtual-star .arrow-wave.active span::before {
|
|
|
+ transform: rotate(-45deg);
|
|
|
+}
|
|
|
+#ai-virtual-star .arrow-wave.active span::after {
|
|
|
+ transform: rotate(45deg);
|
|
|
+}
|
|
|
+@keyframes animate-arrow-wave {
|
|
|
+ 0%, 25%, 50% {
|
|
|
+ opacity: 0.2;
|
|
|
+ }
|
|
|
+ 75% {
|
|
|
+ opacity: 1;
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ opacity: 0.2;
|
|
|
+ }
|
|
|
+}
|
|
|
#ai-virtual-star #form {
|
|
|
margin: 0 0.5rem;
|
|
|
}
|