.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 -1rem;
    background-repeat: no-repeat;
    background-size: cover;
}


.planet{
    background-image: url("../images/planetsurf.webp");
    background-position: bottom -4rem left -4rem;
    background-repeat: no-repeat;
    background-size: 130rem;
}

.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;}
}

.floating{
    animation: float 5s infinite;
    animation-timing-function: linear;
}

@keyframes float{
    0% {translate: 0rem 0rem;}
    50% {translate: 0rem 2rem;}
    100% {translate: 0rem 0rem;}
}

.wave{
    background-color: rgb(0, 0, 0);
    background-image: url(../images/alt-wave.svg);
    background-repeat: no-repeat;
    background-size: 130rem;
    background-position: top -4rem left 0rem;
    height: 25rem;
    width: 100%;
    transform: scaleY(-1);
    z-index: 0;
}

.alt-bg{
    background-color: rgb(0, 0, 0);
}

.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;
}

.call-btn{
    background-image: linear-gradient(to left, #30EAFF, #8300C0);
    border: 1px #CCFF3F;
    position: relative;
    border-radius: 2rem;
}

.btn-secondary{
    border-radius: 2rem;
    padding: 0.5rem;
    position: relative;
    background-image: linear-gradient(to left, #30EAFF, #8300C0) ;
    border: unset;
}

.call-btn:hover, .btn-secondary:hover{
    color: #CCFF3F;
}

@property --angle{
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.btn-secondary:hover:after,.btn-secondary: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: 3rem;
    width: 106%;
    border-radius: 2rem;
    animation: 3s spin linear infinite;
}

.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: 104%;
    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;
    }
}

.pull-forward{
    position: relative;
    z-index: 0;
}

.icon-bg{
    margin-right: 0.75rem; 
    background: 
    linear-gradient(#000000 0 0) padding-box, /*this is your grey background*/
    linear-gradient(to bottom, #269937, #CCFF3F) border-box;
    color: #000000;
    padding: 0.5rem;
    border: 3px solid transparent;
    border-radius: 0.5rem;
    display: inline-block;
}


.emphasize-text{
    font-weight: 500;
    font-family: "Montserrat";
    background-image: linear-gradient( to bottom, #269937, #CCFF3F);
    color: transparent;
    background-clip: text;
}

.outline{
    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;
    padding: 0.5rem;
    border: 1px solid transparent;
    border-radius: 2rem;
    display: inline-block;
}

.outline:hover{
    color: #CCFF3F;
}

.outline:hover:after, .outline: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;
}

.outline::before{
    filter: blur(1.5rem);
    opacity: 0.5;
}


.card-header{
    background-color: #000000;
    border: #CCFF3F 1px solid;
}

.card-header h4{
    font-family: "Montserrat";
}

.alt-header{
    background-image: linear-gradient(to left, #30EAFF, #8300C0);
    border: 1px solid #30EAFF;
    border: unset;
}

.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);
}

.card{
    background-color: #0000009a;
    border: 1px solid #303030;
    position: relative;
    z-index: 1;
}

.card::before, .glass::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);

}

.glass::before{
    border-radius: 3rem;
    border: solid 1px rgba(116, 116, 116, 0.459);
    box-shadow: inset 6px black;
}

.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;
}

#icon-grid{
    margin-top: 7rem;
    margin-bottom: 7rem;
}

.spacer{
    margin-top: 7rem;
}

.offering{
    padding-bottom: 10rem;
    padding-top: 5rem;
}

.pricing-card-title{
    margin-top: 2rem;
}

.secondary, .btn2, .outline{
    margin-top: 3rem;
}


.featurette-divider{
    margin: 5rem 0rem;
}

.pricing-header{
    margin-top: 7rem;
}

.accord{
    padding-bottom: 14rem;
    margin-bottom: 3rem;
}

.marketing{
    overflow: hidden;
}

@media only screen and (max-width: 1325px) {
}

@media only screen and (max-width: 850px) {
}

@media only screen and (max-width: 650px) {
    .icon-bg{
        max-width: 3.75rem;
    }
}

