@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap");

:root {
  --violet: #5320e0;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  font-family: "Roboto", sans-serif;
}

*::selection {
  background: var(--violet);
  color: #fff;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}
html::-webkit-scrollbar {
  width: 0.7rem;
}
html::-webkit-scrollbar-track {
  background: rgb(175, 175, 175);
}
html::-webkit-scrollbar-thumb {
  background: #ff7300;
}

body {
  background: #f9f9f9;
}

section {
  min-height: 100vh;
  padding: 0 7%;
}
.heading {
  font-size: 3.5rem;
  color: rgb(48, 48, 48);
  font-weight: 800;
  font-family: "Nunito", sans-serif;
}
.heading span {
  color: rgb(115, 3, 167);
}

header {
  width: 100%;
  background: rgb(62, 4, 155);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 0.8rem 7%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
header .logo {
  font-size: 2.5rem;
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: 0.2s;
}
header .logo i {
  color: #ffd900;
}
header .logo:hover {
  color: #ffd900;
  transform: scale(1.1);
}
header .navbar ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}
header .navbar ul li {
  margin-left: 2.5rem;
}
header .navbar ul li a {
  text-decoration: none;
  font-size: 2rem;
  color: rgb(255, 255, 255);
}
header .navbar ul li a.active,
header .navbar ul li a:hover {
  color: #ffd900;
  border-bottom: 0.2rem solid #ffd900;
  padding: 0.7rem 0;
}
#menu {
  font-size: 3rem;
  color: #ffd900;
  cursor: pointer;
  display: none;
}
header a.conbtn {
  background: #fff;
  border-radius: 1rem;
  padding: 6px 10px;
  font-size: 1.6rem;
  margin-left: 2rem;
  border-radius: 4px;
  font-weight: 700;
  color: rgb(62, 4, 155);
  text-decoration: none;
  margin-top: 0.3rem;
}
header a.conbtn:hover {
  color: rgb(62, 4, 155);
  background: rgb(255, 230, 0);
}

/* hero */
.home {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  min-height: 100vh;
  align-items: center;
  background: url("../site-img/hero-bg.png") no-repeat;
  background-size: cover;
  scroll-behavior: smooth;
  background-position: center;
}
.home .content {
  flex: 1 1 40rem;
}
.home .image {
  flex: 1 1 40rem;
}
.home .image img {
  width: 90%;
  padding: 1rem;
  animation: float 4s linear infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0rem);
  }
  50% {
    transform: translateY(3rem);
  }
}
.home .content h3 {
  font-size: 5rem;
  font-weight: 800;
  color: #012970;
  font-family: "Nunito", sans-serif;
}
.home .btn {
  font-family: "Nunito", sans-serif;
  line-height: 0;
  padding: 1.7rem 3rem;
  border-radius: 4em;
  transition: 0.5s;
  color: #fff;
  background: #7115eb;
  box-shadow: 0px 5px 15px rgba(109, 39, 238, 0.6);
}
.home .btn span {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
}
.home .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.home .btn:hover i {
  transform: translateX(5px);
}

/* text anim */
#container {
  text-align: left;
  position: relative;
}
#text {
  display: inline-block;
  vertical-align: middle;
  color: orange;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 2.5rem;
  padding: 1rem 0;
  font-family: "Nunito", sans-serif;
  margin-bottom: 2rem;
}

#cursor {
  display: inline-block;
  vertical-align: center;
  width: 3px;
  height: 3rem;
  background-color: orange;
  animation: blink 0.75s step-end infinite;
}

@keyframes blink {
  from,
  to {
    background-color: transparent;
  }
  50% {
    background-color: orange;
  }
}
/* hero end */

/* project section starts */
.project {
  background: #e5ecfb;
}
.project .heading {
  text-align: center;
  padding: 2rem;
  font-weight: 600;
}
.project .box-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.project .box-container .box {
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  margin: 2rem;
  width: 33rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 45rem;
  background: #fff;
}
.project .box-container .box img {
  height: 60%;
  width: 100%;
  object-fit: cover;
  position: relative;
}
.project .box-container .box .content {
  position: relative;
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.project .box-container .box .content h3 {
  font-size: 2.5rem;
  color: #012970;
  padding: 0.2rem 0;
  font-weight: 600;
}
.project .box-container .box .content p {
  font-size: 1.4rem;
  color: rgb(53, 53, 53);
  text-align: left;
  margin-left: 1.5rem;
}
.project .box-container .box:hover {
  transform: translateY(-1rem);
  box-shadow: 0 0.8rem 1.1rem rgba(0, 0, 0, 0.4);
}
.project .btns {
  display: flex;
  padding: 1rem;
  justify-content: space-between;
  align-items: center;
}
.project .btns .btn {
  font-family: "Nunito", sans-serif;
  line-height: 0;
  display: inline;
  padding: 1.2rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  color: #fff;
  background: #4225c7f5;
}
.project .btn:hover {
  background: #6547e9f5;
}
/* project section ends */

/* basic section starts */
.basic {
  background: #e6ddfa;
  padding-bottom: 2rem;
}
.basic .heading {
  text-align: center;
  padding: 2rem;
  font-weight: 600;
}
.basic .box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.basic .box-container .box {
  display: flex;
  flex-direction: row;
  max-width: 80rem;
  min-width: 80rem;
  border-radius: 0.5rem;
  box-shadow: 0.2rem 0.5rem 1rem rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  transition: 7.883s;
  background: rgb(252, 252, 252);
}
.basic .box-container .box:hover {
  transform: scale(1.03);
  box-shadow: 1rem 0.5rem 1.2rem rgba(0, 0, 0, 0.3);
  -ms-transform: scale(1.5); /* IE 9 */
  -webkit-transform: scale(1.5); /* Safari 3-8 */
  transform: scale(1.5); 

}
.basic .box-container .box .content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  flex-wrap: wrap;
  flex: 1 1 60rem;
}
.basic .box-container .box img {
  object-fit: cover;
  position: relative;
  width: 28%;
  height: 18rem;
  flex: 1 1 25rem;
}
.basic .box-container .box .content h3 {
  font-size: 2rem;
  color: #012970;
  padding: 0.2rem 0;
  font-weight: 600;
  text-align: left;
  margin-left: 2rem;
}
.basic .box-container .box .content p {
  font-size: 1.5rem;
  color: rgb(70, 70, 70);
  padding: 0.5rem;
  margin-left: 1.5rem;
  text-align: left;
}
.basic .btns {
  display: flex;
  padding: 1.2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.basic .btns .btn {
  font-family: "Nunito", sans-serif;
  line-height: 0;
  display: inline;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  color: rgb(14, 14, 14);
  margin-right: 2rem;
  border: 2px solid #4225c7f5;
}
.basic .btn:hover {
  background: #4225c7f5;
  color: #fff;
}
/* basic section ends */

/* apibased section starts */
.apibased {
  background: rgb(206, 252, 206);
  min-height: 70vh;
}
.apibased .heading {
  text-align: center;
  padding: 2rem;
  font-weight: 600;
}
.apibased .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem;
}
.apibased .box-container .box {
  flex: 1 1 30rem;
  border-radius: 0.5rem;
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  height: 30rem;
  background: rgb(243, 243, 243);
}
.apibased .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.apibased .box-container .box .content {
  height: 100%;
  width: 100%;
  position: absolute;
  top: -85%;
  left: 0;
  background: rgba(255, 255, 255, 1);
  display: flex;
  flex-direction: column-reverse;
  transition: 0.2s ease-in;
}
.apibased .box-container .box .content .tag {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
  width: 100%;
  padding-left: 1rem;
  background: #ffd900;
}
.apibased .box-container .box .content .tag h3 {
  font-size: 2rem;
  font-weight: 600;
}
.apibased .box-container .box:hover .content {
  top: -40%;
}
.apibased .box-container .box:hover .content .tag {
  display: none;
}
.apibased .desc {
  margin: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.apibased .desc p {
  font-size: 1.5rem;
}
.apibased .desc .btns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 2rem;
}
.apibased .desc .btns .btn {
  line-height: 0;
  display: inline;
  padding: 1.3rem 2.5rem;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  color: #fff;
  background: #4225c7f5;
  margin-right: 2rem;
}
.apibased .desc .btns .btn:hover {
  background: #6547e9f5;
}
/* apibased section ends */

/* media queries */
@media (max-width: 991px) {
  html {
    font-size: 60%;
  }
}
@media (max-width: 768px) {
  #menu {
    display: block;
  }
  header .navbar {
    position: fixed;
    top: 5.3rem;
    right: -120%;
    width: 70%;
    height: 100%;
    text-align: left;
    align-items: flex-start;
    background-color: rgb(32, 32, 32);
  }
  header .navbar ul {
    flex-flow: column;
    padding: 2rem;
  }
  header .navbar ul li {
    text-align: center;
    width: 100%;
    margin: 1rem 0;
    border-bottom: 3px solid #ffd900;
    border-radius: 0.5rem;
    width: 22rem;
  }
  header .navbar ul li a {
    display: block;
    padding: 1rem;
    text-align: left;
  }
  header .navbar ul li a.active,
  header .navbar ul li a:hover {
    padding: 1rem;
    background: var(--violet);
    color: #fff;
    border-radius: 0.5rem;
  }
  .fa-times {
    transform: rotate(180deg);
  }
  header .navbar.nav-toggle {
    right: 0;
  }
  header a.conbtn {
    margin-top: 1rem;
    width: 100%;
    margin-left: -1rem;
    text-align: center;
  }
  .home .content {
    text-align: center;
  }
  .home .image img {
    position: absolute;
    top: 60%;
  }
  .project .heading {
    padding: 0.5rem;
  }
  .project .box-container .box {
    width: 42rem;
    height: 46rem;
    margin: 1rem;
  }
  .project .box-container .box .content p {
    font-size: 1.7rem;
  }
  #container {
    text-align: center;
  }
  .basic .box-container .box {
    min-width: 40rem;
  }
  .basic .box-container .box .content {
    flex: 1 1 30rem;
  }
  .basic .box-container .box img {
    width: 25%;
    height: 18rem;
    flex: 1 1 20rem;
  }
  .basic .box-container .box .content h3 {
    font-size: 1.8rem;
    padding: 0.2rem 0;
    margin-left: 0.2rem;
  }
  .basic .box-container .box .content p {
    font-size: 1.4rem;
    margin: 0;
    padding: 0;
  }
  .basic .btns {
    padding: 0.5rem;
  }
  .basic .btns .btn {
    padding: 0.8rem;
  }
  .apibased {
    margin: 0;
    padding: 0.5rem;
  }
}

@media (max-width: 500px) {
  html {
    font-size: 52%;
  }
  section {
    padding: 0 3%;
    padding-top: 2rem;
  }
}

/* Footer  */
.site-footer {
  background-color: #08142c;
  padding: 30px 0 10px;
  font-size: 15px;
  line-height: 20px;
  color: rgb(209, 203, 203);
}
.site-footer .social-icons {
  text-align: right;
}
.site-footer .social-icons a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 6px;
  margin-right: 0;
  border-radius: 100%;
  background-color: #fdfdfd;
}
.copyright-text {
  margin-top: 10px;
  font-family: "Nunito", sans-serif;
}
@media (max-width: 991px) {
  .site-footer [class^="col-"] {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .site-footer {
    padding-bottom: 0;
  }
  .site-footer .copyright-text,
  .site-footer .social-icons {
    text-align: center;
  }
}
.social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.social-icons li {
  display: inline-block;
  margin-bottom: 14px;
}
.social-icons li.title {
  margin-right: 15px;
  text-transform: uppercase;
  color: #171718;
  font-weight: 700;
  font-size: 18px;
}
.social-icons a {
  background-color: #eceeef;
  color: #1b1b1b;
  font-size: 16px;
  display: inline-block;
  line-height: 44px;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #29aafe;
}
.social-icons.size-sm a {
  line-height: 34px;
  height: 34px;
  width: 34px;
  font-size: 14px;
}
.social-icons a.github:hover {
  background-color: #141414;
}
.social-icons a.twitter:hover {
  background-color: #00aced;
}
.social-icons a.linkedin:hover {
  background-color: #007bb6;
}
.social-icons a.youtube:hover {
  background-color: #e60606;
}
.social-icons a.instagram:hover {
  background-color: #b8046d;
}
@media (max-width: 767px) {
  .social-icons li.title {
    display: block;
    margin-right: 0;
    font-weight: 600;
  }
}
@media (max-width: 450px) {
  .site-footer p span {
    left: 50%;
    top: 120%;
  }
}
/* Footer  */

/* footer made with love */
.site-footer span {
  color: rgb(177, 174, 174);
  font-size: 1.3rem;
  display: block;
  position: absolute;
  left: 80%;
  top: 35%;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
  font-family: "Nunito", sans-serif;
}
.site-footer span a {
  text-decoration: none;
}
.site-footer .fa {
  color: #e90606;
  margin: 0 0.3rem;
  font-size: 1.1rem;
  animation: pound 0.35s infinite alternate;
}
@-webkit-keyframes pound {
  to {
    transform: scale(1.1);
  }
}
@keyframes pound {
  to {
    transform: scale(1.1);
  }
}
/* footer made with love */

/* scroll top starts */
#scroll-top {
  position: fixed;
  top: -140%;
  right: 2rem;
  padding: 1rem 1.5rem;
  font-size: 2rem;
  background: #ffae00;
  color: rgb(13, 0, 44);
  border-radius: 50%;
  transition: 0.5s ease-in;
  z-index: 1000;
  text-decoration: none;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.3);
}
#scroll-top.active {
  top: calc(100% - 12rem);
}
/* scroll top ends */

/* contact section starts */
.contact {
  background: #e5ecfb;
  min-height: 60vh;
}
.contact .container {
  max-width: 1050px;
  width: 100%;
  background: #fff;
  border-radius: 1.5rem;
  margin: 2rem 5rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.contact .container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 2rem;
}
.contact .content .image-box {
  max-width: 60%;
  margin-left: 4rem;
}
.contact .content .image-box img {
  width: 100%;
  height: 40rem;
  position: relative;
}
.contact .content form {
  width: 45%;
  margin-right: 3.5rem;
}
form .form-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-group .field {
  height: 50px;
  display: flex;
  position: relative;
  margin: 1rem;
  width: 100%;
}
form i {
  position: absolute;
  top: 50%;
  left: 18px;
  color: rgb(51, 51, 51);
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}
form .field input,
form .message textarea {
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 16px 0 48px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  border-radius: 5px;
  border: 1px solid rgb(51, 51, 51);
  background: #e5ecfb;
}
.field input::placeholder,
.message textarea::placeholder {
  color: rgb(51, 51, 51);
}
.field input:focus,
.message textarea:focus {
  padding-left: 47px;
  border: 2px solid rgb(115, 3, 167);
}
.field input:focus ~ i,
.message textarea:focus ~ i {
  color: rgb(115, 3, 167);
}
form .message {
  position: relative;
  margin: 1rem;
  width: 100%;
}
form .message i {
  top: 25px;
  font-size: 20px;
  left: 15px;
}
form .message textarea {
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 12px 20px 0 48px;
}
form .message textarea::-webkit-scrollbar {
  width: 0px;
}
form .button-area {
  display: flex;
  float: right;
  flex-direction: row-reverse;
}
.button-area button {
  color: #fff;
  border: none;
  outline: none;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, 0.6);
  transition: 0.3s ease;
  font-family: "Nunito", sans-serif;
}
.button-area button:hover {
  background: #421cecf5;
}
.button-area span {
  font-size: 17px;
  padding: 1rem;
  display: none;
}
.button-area button i {
  position: relative;
  top: 6px;
  left: 2px;
  font-size: 1.5rem;
  transition: 0.3s;
  color: #fff;
}
.button-area button:hover i {
  left: 8px;
}
/* contact section media queries starts */
@media (max-width: 900px) {
  .contact {
    min-height: 70vh;
  }
  .contact .container {
    margin: 3rem 0 2rem 0;
  }
  .contact .container .content {
    padding: 18px 12px;
  }
  .contact .content .image-box {
    display: none;
  }
  .contact .content form {
    width: 100%;
    margin-right: 2rem;
  }
}
/* contact section media queries ends */
/* contact section ends */

/* preloader */
:root {
  --atom-size: 350px;
  /* --atom-color-hex: #0d00ff; */
  --atom-color-hex: #0d00ff;
  --atom-color-rgb: 0,0,0;
  --nucleus-size: calc(var(--atom-size) / 5);
  --electron-color-hex: #36C5F0;
  --electron-size : calc(var(--atom-size) / 25);
  --electron-orbit-size : calc(var(--atom-size) / 2.5);
  --electron-speed : 1.2s;
  --electron-speed-alpha : 1s;
  --electron-speed-omega : .8s;
}

.loader-container {
position: fixed;
top: 0;
left: 0;
background-color: #F5F5F5;
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
z-index: 999999;
}

.preloader-text {
position: fixed;
top: 1.5em;
font-family: Agustina;
font-size: 50px;
}

/* Atom */
.atom {
position: relative;
justify-content: center;
align-items: center;
width: var(--atom-size);
height: var(--atom-size);
animation: 8s atom infinite cubic-bezier(1, .25, 0, .75);
}
@keyframes atom{
0% {    
  transform: rotate(0deg) scale(1); 
}
12.5% { 
  transform: rotate(-45deg) scale(.9); 
}
25% {   
  transform: rotate(-90deg) scale(1); 
}
37.5% { 
  transform: rotate(-135deg) scale(.9); 
}
50% {   
  transform: rotate(-180deg) scale(1); 
}
62.5% { 
  transform: rotate(-225deg) scale(.9); 
}
75% {   
  transform: rotate(-270deg) scale(1); 
}
87.5% { 
  transform: rotate(-315deg) scale(.9); 
}
100% {  
  transform: rotate(-360deg) scale(1); 
}
}

/* Nucleus */
.atom::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--nucleus-size);
  height: var(--nucleus-size);
  margin-top: calc(var(--nucleus-size) / -2);
  margin-left: calc(var(--nucleus-size) / -2);
  background: var(--electron-color-hex); /* var(--atom-color-hex); */
  border-radius: 100%;
  box-shadow: 0 0 3px 0 var(--atom-color-hex);
  animation: 3s nucleus infinite cubic-bezier(.65, 0, .35, 1);
}
@keyframes nucleus {
  0% { transform: scale(1); }
  25% { transform: scale(.9); }
  50% { transform: scale(1); }
  75% { transform: scale(.85); }
  100% { transform: scale(1); }
}

/* Electron Orbit */
.atom > [class^="electron"] {
  border-top: solid rgba(var(--atom-color-rgb), .5) 1px;
  border-right: solid rgba(var(--atom-color-rgb), .35) 2px;
  border-bottom: solid rgba(var(--atom-color-rgb), .2) 4px;
  border-left: solid rgba(var(--atom-color-rgb), 0) 2px;
  border-radius: 100%;
  width: 100%;
  height: var(--electron-orbit-size);
  position: absolute;
  top: 50%;
  margin-top: calc(var(--electron-orbit-size) / -2);
  animation: var(--electron-speed) electron-orbit infinite linear;
}
.atom > .electron-alpha {
  transform: rotate(60deg);
  animation: var(--electron-speed-alpha) electron-orbit infinite linear;
}
.atom > .electron-omega {
  transform: rotate(-60deg);
  animation: var(--electron-speed-omega) electron-orbit infinite linear;
}
@keyframes electron-orbit {
  0% {
      border-top: solid rgba(var(--atom-color-rgb), 1) 5px;
      border-right: solid rgba(var(--atom-color-rgb), 1) 7px;
      border-bottom: solid rgba(var(--atom-color-rgb), .2) 10px;
      border-left: solid rgba(var(--atom-color-rgb), 0) 10px;
  }
  25% {
      border-top: solid rgba(var(--atom-color-rgb), .35) 5px;
      border-right: solid rgba(var(--atom-color-rgb), .2) 7px;
      border-bottom: solid rgba(var(--atom-color-rgb), 0) 10px;
      border-left: solid rgba(var(--atom-color-rgb), .5) 10px;
  }
  50% {
      border-top: solid rgba(var(--atom-color-rgb), .2) 5px;
      border-right: solid rgba(var(--atom-color-rgb), 0) 7px;
      border-bottom: solid rgba(var(--atom-color-rgb), .5) 10px;
      border-left: solid rgba(var(--atom-color-rgb), .35) 10px;
  }
  75% {
      border-top: solid rgba(var(--atom-color-rgb), 0) 5px;
      border-right: solid rgba(var(--atom-color-rgb), .5) 7px;
      border-bottom: solid rgba(var(--atom-color-rgb), .35) 10px;
      border-left: solid rgba(var(--atom-color-rgb), .2) 10px;
  }
  100% {
      border-top: solid rgba(var(--atom-color-rgb), 1) 5px;
      border-right: solid rgba(var(--atom-color-rgb), 1) 7px;
      border-bottom: solid rgba(var(--atom-color-rgb), 1) 10px;
      border-left: solid rgba(var(--atom-color-rgb), 1) 10px;
  }
}

/* Electron Unit */
.atom [class^="electron"]::after {
  content: '';
  display: block;
  width: var(--electron-size);
  height: var(--electron-size);
  /* background: #E01E5A; */
  border-radius: 50%;
  margin-top: calc(var(--electron-size) / -2);
  position: absolute;
  top: 50%;
  left: calc(var(--electron-size) / -1);
  transform: scale(1);
  animation: calc(var(--electron-speed) * 2) electron infinite ease-in-out;
}

.atom .electron::after { background: #ECB22E;}
.atom .electron-alpha::after { 
  animation: calc(var(--electron-speed-alpha) * 2) electron infinite ease-in-out; 
  background: #E01E5A;
}
.atom .electron-omega::after { 
  animation: calc(var(--electron-speed-omega) * 2) electron infinite ease-in-out; 
  background: #2EB67D;
}
@keyframes electron {
  0% {
      left: calc(var(--electron-size) / -1);
      transform: scale(1);
  }
  12.5% {
      top: 100%;
      transform: scale(1.5);
  }
  25% {
      left: 100%;
      transform: scale(1);
  }
  37.5% {
      top: 0%;
      transform: scale(.25);
  }
  50% {
      left: calc(var(--electron-size) / -1);
      transform: scale(1);
  }
  62.5% {
      top: 100%;
      transform: scale(1.5);
  }
  75% {
      left: 100%;
      transform: scale(1);
  }
  87.5% {
      top: 0%;
      transform: scale(.25);
  }
  100% {
      left: calc(var(--electron-size) / -1);
      transform: scale(1);
  }
}

.disappear {
animation: vanish 1s forwards;
}

@keyframes vanish {
100% {
  opacity: 1;
  visibility: hidden;
}
}
