.graphic{
    background-image: url("../images/asteroids.webp");
    background-position: top -3rem left -5rem;
    background-repeat: no-repeat;
    background-size: 30rem;
    animation: hover 5s infinite;
    animation-timing-function: linear;
}

@keyframes hover{
    0% {background-position: top -3rem left -5rem;}
    50% {background-position: top -4rem left -5rem;}
}

.space{
    background-image: url("../images/sky.webp");
    background-position: top 0rem left 0rem;
    background-repeat: no-repeat;
    background-size: cover;
}

.spacer{
    margin-top: 7rem;
}

.glass{
    background-color: #00000062;
    border: 1px solid #303030;
    position: relative;
    z-index: 1;
}

.form_field{
    margin-bottom: 1rem;
}

.labs{
    /* all: unset; */
    background-color: rgb(0, 0, 0);
    height: 3rem;
    border-radius: 1rem;
    width: 100%;
    padding-left: 1rem;
    border: solid 2px #CCFF3F;
}

::placeholder {
    color: white;
    opacity: 1; /* Firefox */
}

.drops{
    /* all: unset; */
    background-color: rgb(0, 0, 0);
    border-radius: 1rem;
    border-color: none;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    font-size: large;
    width: 100%;
    padding-left: 1rem;
    border: solid 2px #CCFF3F;
}

.dropdown-form{
    width: 100%;
}

.header-lab{
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: white;
    text-align: center;
    width: 100%;
}
.checkbox label{
    color: white;
}


.call-btn{
    background-image: linear-gradient(to left, #30EAFF, #8300C0);
    border: 1px #CCFF3F;
    position: relative;
    border-radius: 2rem;
}

@property --angle{
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.call-btn:hover:after, .call-btn:hover:before{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: conic-gradient(from var(--angle), transparent 70%, #269937, #CCFF3F);
    top: 50%;
    left: 50%;
    z-index: -1;
    translate: -50% -50%;
    height: 3.3rem;
    width: 102%;
    border-radius: 2rem;
    animation: 3s spin linear infinite;
}

.call-btn::before, .btn-secondary::before{
    filter: blur(1.5rem);
    opacity: 0.5;
}

@keyframes spin{
    0%{
        --angle: 0deg;
    }
    100%{
        --angle: 360deg;
    }
}


.wave-blue{
    background-color: rgb(0, 0, 0);
    background-image: url(../images/wave.svg);
    background-repeat: no-repeat;
    background-size: 130rem;
    background-position: top -4rem left 0rem;
    height: 25rem;
    width: 100%;
    z-index: 0;
}

.accordion-item{
    position: relative;
    z-index: 1;
    background-color: #000000ce;
}

.accordion-item::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: rgba(49, 45, 45, 0.15);  
    backdrop-filter: blur(5px);
}

.form_field{
    width: 100%;
}

.card{
    background-color: #0000009a;
    border: 1px solid #303030;
    position: relative;
    z-index: 1;
}

.btn2:hover:after, .btn2:hover:before{
    width: 102%; 
}

.secondary:hover:after, .secondary:hover:before{
    width: 102%;
}

.accordion-button{
    background-color: #1a1a1a;
}

.accordion-button:not(.collapsed){
    background-image: linear-gradient(to left, #30EAFF, #8300C0);
    color: white;
}

.accordion-button:focus{
    box-shadow: unset;
}

.accord{
    margin-bottom: 5rem;
    margin-top: 8rem;
}

.section{
    margin-top: 9rem;
    margin-bottom: 12rem;
}

.graphic2{
    background-image: url("../images/asteroids.webp");
    background-position: top 3rem right -2rem;
    background-repeat: no-repeat;
    background-size: 30rem;
    animation: hover2 5s infinite;
    animation-timing-function: linear;
}

@keyframes hover2{
    0% {background-position: top 3rem right -2rem;}
    50% {background-position: top 4rem right -2rem;}
}

.feature-icon-small{
    width: max-content;
}

.feature-icon-small{
    position: relative;
    background: 
    linear-gradient(#000000 0 0) padding-box, /*this is your grey background*/
    linear-gradient(to bottom, #269937, #CCFF3F) border-box;
    color: #ffffff;
    border: 4px solid transparent;
    border-radius: 2rem;
    display: inline-block;
}

.icon-btn:hover{
    color: #CCFF3F;
}

.emphasize-text{
    font-weight: 500;
    font-family: "Montserrat";
    background-image: linear-gradient( to bottom, #269937, #CCFF3F);
    color: transparent;
    background-clip: text;
}

