h1 a,
h1 a:hover {
    color: #fff;
    text-decoration: none;
}

h1 a>span {
    color: var(--primary);
}

.logo {
    width: 180px;
    height: 180px;
    border: 6px solid #fff;
    position: relative;
    margin: auto;
    border-radius: 50%;
}

.circle {
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    margin: auto;
    animation: circle 12s linear infinite;
}

@keyframes circle {
    0% {
        transform: rotate(0deg) translate(-40px) rotate(0deg);

    }

    100% {
        transform: rotate(360deg) translate(-40px) rotate(-360deg);
    }
}
.center {
    text-align: center;
    margin: 0 auto;
} 
.actions {

/* Home Accordian */

}
details summary.no-sym::after  {
    display: none;
}
details.no-hr {
    border-bottom: none;
}
article.accordian > ul > li {
    list-style: none;
}
article.accordian  {
    text-align: left;
}

/* Footer Anima */
.radiating-items {
	position: relative; top:50%; left: 50%;
  transform: translateY(-50%); transform: translateX(-50%);
	height: auto !important; margin: 0 auto;
  display: inline-block;
	background-repeat: no-repeat;
}
.radiating-item {}
.radiating-item .c {
	position: absolute;
	width: 2px;
	height: 2px;
  	border-radius: 500px;
	background-color: var(--primary);
  left:50%; top:50%;
	animation-name: radiating;
    animation-duration: 10.0s;	
    -webkit-animation-name: radiating;
    -webkit-animation-duration: 10.0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}
.radiating-item .pa1 {-webkit-animation-delay: 0s;}
.radiating-item .pa2 {-webkit-animation-delay: 3.33s;}
.radiating-item .pa3 {-webkit-animation-delay: 6.66s;}

/* The animation code */
@-webkit-keyframes radiating { 
    from { -webkit-transform: scale(1.0);
            opacity: 0.15}
    to   { -webkit-transform: scale(200.0);
            opacity: 0.0}
}


/*typing demo*/
.wrapper {

    /*This part is important for centering*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.typing-demo {
    width: 22ch;
    animation: typing 2s steps(22), blink .5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid;
    font-family: monospace;
    font-size: 2em;
}

@keyframes typing {
    from {
        width: 0
    }
}

@keyframes blink {
    50% {
        border-color: transparent
    }
}

/* next */

drop {
    margin: 33px;

}