a{
color: #838ed5;
transition: ease-in-out .2s;
}
a:hover {
color:#38F3E2;
} .contact-form {
width: 100%;
display: flex;
justify-content: center;
}
.contact-form-main {
max-width: 650px;
display: flex;
flex-direction: column;
}
.contact-form-fields {
display: flex;
flex-direction: column;
justify-content: center;
}
.contact-form-fields-top p,
.contact-form-fields-bottom p {
display: flex;
justify-content: center;
gap: 8px;
margin-bottom: 8px;
}
.contact-form-fields-top input,
.contact-form-fields-bottom input {
min-width: 300px;
background-color: rgba(69, 68, 131, 0.2);
pad: 2px;
font-size: 12px;
text-indent: 8px;
} .contact-form-textarea p {
display: flex;
justify-content: center;
width: 100%;
}
.contact-form-textarea span,
.contact-form-textarea textarea {
width: 100%;
}
.contact-form-textarea textarea {
resize: vertical;
height: 100px;
font-size: 12px;
background-color: rgba(69, 68, 131, 0.20);
text-indent: 8px;
} .contact-form-btn {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.contact-form-btn p {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.contact-form input[type="checkbox"] {
filter: sepia(100%) brightness(80%) hue-rotate(170deg) saturate(70%) contrast(300%);
font-size: 12px;
}
.contact-form .wpcf7-list-item-label {
font-size: 12px;
margin-top: 2px;
}
.contact-form-btn .wpcf7-list-item label {
display: flex;
align-items: center;
gap: 5px;
}
.contact-form input[type="submit"] {
padding: 10px 30px;
background-color: rgba(69, 68, 131, 0.20);
text-transform: uppercase;
font-size: 12px;
letter-spacing: normal;
transition: ease-in-out .2s;
}
.contact-form input[type="submit"]:hover {
background-color: rgba(69, 68, 131);
color: #fff;
} .wpcf7-not-valid-tip {
font-size: 12px;
margin-left: 10px;
}
.wpcf7 form.sent .wpcf7-response-output {
color: #46b450;
border-top: none;
border-left: none;
border-right: none;
border-bottom: solid 1px #46b450;
max-width: 650px;
margin: 20px auto;
} @media screen and (max-width: 768px) {
.contact-form-main {
width: 100%;
}
.contact-form-fields-top,
.contact-form-fields-bottom {
width: 100%;
}
.contact-form-fields-top p,
.contact-form-fields-bottom p {
flex-direction: column;
width: 100%;
}
.contact-form-fields-top input,
.contact-form-fields-bottom input {
width: 100%;
padding: 10px;
font-size: 14px;
}
.contact-form-textarea textarea {
font-size: 14px;
padding: 10px;
height: 150px;
}
.contact-form .wpcf7-list-item-label {
font-size: 14px;
margin-top: 2px;
}
.contact-form input[type="submit"] {
padding: 20px 30px;
width: 100%;
background-color: rgba(69, 68, 131, 0.20);
text-transform: uppercase;
font-size: 12px;
letter-spacing: normal;
}
} .gradient-green {
background: linear-gradient(83deg, #1CA3D8 4%, #23FFA2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-size: 200% 200%;
animation: gradientShift 2s infinite linear;
}
@keyframes gradientShift {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.faded-text {
position: relative;
display: inline-block;
}
.faded-text::before {
content: '';
position: absolute;
bottom: -20px;
left: 0;
width: 120%;
height: 210%;
background-color: rgba(89, 131, 252, 0);
background-image: linear-gradient(180deg, rgba(89, 131, 252, 0) 0%, rgba(3, 7, 28, 1) 75%);
pointer-events: none;
z-index: 1;
transform: translateY(var(--background-position-y));
} #loader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #03071C;
display: flex;
justify-content: center;
align-items: center;
z-index: 90000;
}
.loader-content {
text-align: center;
}
.loader-header {
color:#fff;
font-size: 2em;
margin-bottom: 20px;
}
.dots {
display: flex;
justify-content: center;
}
.dot {
width: 10px;
height: 10px;
margin: 0 5px;
background-color: #28F8EE;
border-radius: 50%;
animation: bounce 1.2s infinite;
}
.dot:nth-child(1) {
animation-delay: 0s;
}
.dot:nth-child(2) {
animation-delay: 0.2s;
}
.dot:nth-child(3) {
animation-delay: 0.4s;
}
@keyframes bounce {
0%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(-20px);
}
}
.fade-out {
animation: fadeOut 1s forwards;
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}