:root {
  --primary-color: #0078D7;
  --primary-color-light: #ECF3FF;
  --secondary-color: #E6E7E9;
  --text-color: #000000;
  --subtext-color: #6D6D6D;
  --primary-bg: #0078D7;
  --secondary-bg: #D5EFFC;
  --ascent-bg: #E6E7E9;
  --btn-color: #0078D7;
  --bg-white: #FFFFFF;
  --green-color: #90CC3D;
  --svg-url-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb%28255, 255, 255%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --btn-close: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}


[data-bs-theme=light] {
  --bs-link-color: #2a2a2a !important;
  --bs-link-hover-color: #6528e0 !important;
}

[data-bs-theme=dark] {
  --bs-link-color: #fff !important;
  --bs-link-hover-color: #6528e0 !important;
}

.bi-whatsappicon {
  background: green;
  color: white;
  padding: 5px 12px;
  border-radius: 50%;
  font-size: xx-large;
  z-index: 1;
  position: fixed;
  bottom: 25px;
  right: 25px;
}

/* @keyframes fadeInUp {
  0% {
      opacity: 0;
      -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
      transform: translateY(80px);
  }

  100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation: fadeInUp;
  animation: fadeInUp 2s all;  
} */

@font-face {
  font-family: Poppins;
  src: url();
}

* {
  margin: 0;
  padding: 0;
  font-family: Poppins;
}

.btn-primary {
  background-color: var(--secondary-bg);
  color: #0078d7;
}

.primary-color {
  color: var(--primary-color);
}

.primar-color-light {
  color: var(--primary-color-light);
}

.primary-bg {
  background-color: var(--primary-bg);
}

.primary-bg-light {
  background-color: var(--primary-color-light);
}

.secondary-color {
  color: var(--secondary-color);
}

.secondary-bg {
  background-color: var(--secondary-bg);
}

.green-color {
  color: var(--green-color);
}

.green-bg {
  background: var(--green-color);
}

/* Top Header */
.navbar {
  --bs-navbar-padding-y: 0.3rem;
}

.navbar-tgger-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.nav-item {
  padding: 2px 3px;
}

.nav-link {
  color: #FFF;
}

.nav-link:hover {
  color: #FFF;
}

.nav-link:focus {
  color: var(--primary-color);
}

.icon-style {
  display: inline-flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 50%;
  color: #000;
  background-color: #FFF;
}

.icon-style:hover,
.fa-brands:hover {
  color: var(--primary-color);
}


/* Header */
.offcanvas.offcanvas-end {
  background: var(--primary-bg);
}

.offcavas-header {
  background: var(--secondary-bg);
}

#navbarNav .nav-link {
  color: var(--bg-white);
  font-size: medium;
  font-weight: 400;
  padding-left: 10px;
}

#navbarNav .nav-link:hover,
.nav-link:active,
.nav-link:focus {
  background: var(--bg-white);
  color: var(--primary-color);
}

.navbar-toggler {
  background: var(--primary-bg);
}

.navbar-toggler-icon {
  background-image: var(--svg-url-icon);
}

.bttn-close {
  background-image: var(--btn-close);
  opacity: 1;
}

@media (min-width: 576px) {
  .bg-md-none {
    background: none;
  }

  #navbarNav .nav-link {
    color: #000000;
    font-size: larger;
    font-weight: 500;
    /* padding: 0; */
  }

  #navbarNav .nav-link:hover,
  .nav-link:active,
  .nav-link:focus {
    color: var(--primary-color);
  }
}



.navbar-brand {
  width: 50%;
}

.navbar-toggler {
  border: var(--bs-border-width) solid #FFF;
}

.qry-btn {
  color: var(--bg-white);
  border: 1px solid white;
  font-weight: 500;
}

.enquiry-btn .btn:hover,
.banner-box .btn:hover {
  color: var(--primary-bg);
  background: var(--bg-white);
}

.dropdown-menu {
  border-radius: 0;
}

.dropdown-menu .dropdown-item {
  border-bottom: 1px dotted;
  padding: 8px 20px 8px 20px;
  font-weight: 500;

}

.dropdown-menu .dropdown-item:hover {
  background: var(--primary-bg);
  color: var(--bg-white);
}

@media (min-width: 576px) {
  .qry-btn {
    color: #000000;
    border: 1px solid var(--primary-color);
    font-weight: 500;
  }

  .enquiry-btn .btn:hover,
  .banner-box .btn:hover {
    color: var(--bg-white);
    background: var(--primary-bg);
  }

  .navbar-brand {
    width: 15%;
  }
}

/* Banner & Services */
.home-banner {
  background-image: url("/../assets/images/banner/home-banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
}

.banner-box {
  padding-left: 10px;
}

@media (min-width: 576px) {
  .banner-box {
    padding-left: none;
  }
}

.animate {
  color: #90CC3D;
  padding-left: 10px;
}

/* Services-List */
.services {
  background-image: url("/../assets/images/p-image/service-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background: linear-gradient(to top, var(--secondary-bg), #FFF); */
}

.service-list {
  padding: 15px;
  margin-bottom: 10px;
  overflow: hidden;
}

.service-list .title {
  text-align: center;
  color: var(--primary-color);
  font-size: x-large;
  padding: 7px 0px 10px 0px;
}

.service-list .icon-box {
  text-align: center;
}

.service-list .description {
  text-align: justify;
  font-size: medium;
}

@media (min-width: 576px) {
  .services .service-list {
    padding: 5px;
    margin-bottom: 20px;
  }

}

.service-box {
  box-sizing: border-box;
  background: #FFFFFF;
  /* border: 1px solid var(--primary-color); */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 2px 3px 4px #BFBFBF;
}

.service-box:hover {
  background: var(--primary-bg);
  color: var(--bg-white);
  transition: .3s;
}

.service-box:hover .title {
  /* background: var(--primary-bg); */
  color: var(--bg-white);
  transition: .3s;
}

.service-box:hover .icon-box i {
  /* background: var(--primary-bg); */
  color: var(--bg-white);
  transition: .3s;
}

.service-box:hover .btn {
  border-color: var(--bg-white);
  color: var(--bg-white);
}

.service-box .btn {
  border-style: dotted;
}

.service-box .btn:hover {
  background: var(--bg-white);
  color: var(--primary-color);
}

.services-head {
  box-sizing: border-box;
}


/* Projects Header */
.projects-header {
  padding: 20px 30px;
  text-align: center;
}

/* Showcase/Projects/Works Filter */
.filters {
  box-sizing: border-box;
}

.filters_item {
  padding: 0px 20px 0px 10px;
  margin-bottom: 10px;
}

.filters__btn {
  background: var(--bg-white);
  color: #000000;
  display: block;
  padding: 15px 20px;
  border: none;
  border-radius: 10px;
  width: 100%;
  text-align: start;
}

.filters__btn:hover {
  background: var(--primary-bg);
  color: var(--bg-white);
}

.gallery-box {
  background: var(--bg-white);
  /* border-radius: 5px; */
}

.gallery_item:hover {
  background: #000;
}

.gallery_box:hover {
  background: #000;
}

/*  These color styles are just for testing */

.gallery__item[data-filter="web"] {
  background: red;
}

.gallery__item[data-filter="app"] {
  background: orange;
}

.gallery__item[data-filter="brand"] {
  background: yellow;
}

.gallery__item[data-filter="others"] {
  background: green;
}

.is-hidden {
  display: none;
  /* transition: linear 3s all; */
}

/*------ Showcase/Projects/Works Filter */

/* About */
.about-me {
  position: relative;
  margin-bottom: 30px;
}

.avatar-box {
  padding: 20px;
}

.about-me::after {
  content: "";
  width: 60px;
  height: 4px;
  position: absolute;
  bottom: -8px;
  left: 0;
  background-color: #00AEEF;
}

.description {
  text-align: justify;
}

.text-justify {
  text-align: justify;
}

.list-icon,
.list-body {
  display: table-cell;
}

.list-icon {
  font-size: larger;
  vertical-align: top;
}

.list-body {
  padding-left: 10px;
}

.keys ul li {
  margin-bottom: 10px;
}

/* Services-Blocks */
.my-skill {
  position: relative;
}

.my-skill::before {
  content: "";
  background: url("/../assets/images/banner/page-banner.jpg");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  opacity: .2;
}

.service-block {
  box-sizing: border-box;
  padding: 10px 15px;
  background: var(--bg-white);
  border-radius: 15px;
}

.service-block:hover {
  background: var(--primary-bg);
}

.service-block .service-icon {
  color: var(--bg-white);
  transition: transform 0.8s;
}

.service-block:hover .service-icon {
  color: var(--bg-white);
  transform: scaleX(-1);
}

.service-block:hover .service-icon,
.service-block:hover .title,
.service-block:hover .description {
  color: var(--bg-white);
}

.service-block .service-icon {
  font-size: x-large;
  text-align: center;
  color: var(--primary-bg);
}

.service-block .title {
  text-align: center;
  color: var(--primary-bg);
  padding: 10px 0px;
}

.service-block .description {
  text-align: left;
}

/* Technologies */
.technologies {
  background: url("/../assets/images/banner/develop-banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.language-icon {
  /* background: rgba(255, 255, 255, 0.668);   */
}

.multiple-items .img-box {
  padding: 10px 20px;
}

.img-box .img-size {
  width: auto;
  height: 100px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.img-box .img-card {
  background: var(--bg-white);
  padding: 8px 12px;
  justify-items: center;
}

.service-block .service-head .description {
  text-align: justify;
}


/* Pricing */
.card ul {
  margin-bottom: 0;
}

.card:hover .card-header {
  background: var(--primary-bg);
  color: var(--bg-white);
}

.card:hover .card-title {
  color: var(--primary-color);
}

.card-title {
  color: #000000;
}

.card .btn {
  border-color: var(--primary-bg);
}

.card .btn:hover {
  background: var(--primary-bg);
  color: var(--bg-white);
}

.card {
  scale: 1;
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}



/* Blogs */
.blog-box {
  /* background-color: #00AEEF; */
  /* padding: 80px 0px; */
}

.testimonials-box {
  background-color: #430505;
  padding: 120px 0;
}

/* Footer Banner */
.footer-banner {
  background: rgba(0, 0, 0, 0.084);
}

/* Contact Us */
.contact-form {
  /* border: 1px solid #00AEEF; */
  /* background: var(--secondary-bg); */
  box-shadow: 0 .5rem 2rem rgba(0, 0, 0, 0.175);
}

.input-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #00AEEF;
  /* -webkit-appearance: none; */
  /* -moz-appearance: none; */
  /* appearance: none;   */
  background-color: #FFF;
  border: 1px solid #86b7fe;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

::placeholder {
  color: var(--subtext-color);
  opacity: .6;
}

.input-control:focus {
  color: var(--subtext-color);
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.10rem #00AEEF;
}

.contact-form .btn {
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  color: var(--primary-color);
  background: var(--bg-white);
}

.contact-form .btn-reset {
  border: 1px solid red;
  border-radius: 10px;
  color: red;
  /* background: var(--subtext-color); */
}

.contact-form .btn:hover {
  background: var(--primary-bg);
  color: var(--bg-white);
}

.contact-form .btn-reset:hover {
  color: #FFF;
  background: red;
  border: 1px solid red;
}

/* Modal Button */
.modal-content {
  /* background: rgba(250, 250, 250, 0.8); */
}

.modal-body .btn {
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  color: var(--primary-color);
  background: var(--bg-white);
}

.modal-body .btn-reset {
  border: 1px solid red;
  border-radius: 10px;
  color: red;
  /* background: var(--subtext-color); */
}

.modal-body .btn:hover {
  background: var(--primary-bg);
  color: var(--bg-white);
}

.modal-body .btn-reset:hover {
  color: #FFF;
  background: red;
  border: 1px solid red;
}

.query-button {
  display: flex;
  justify-content: space-between;
}

/* Temp */
.size {
  scale: 1.3;
  margin-left: 10px;
  margin-top: 10px;
}

.size-2 {
  scale: 1.1;
}

.contct {
  color: #00AEEF;
  position: relative;
}

/* .contct::fter {
  content: "CONTACT";
  position: absolute;
  width: 100%;
  bottom: -20px;
  left: 0;
  color: #FFF;
  font-size: 65px;
  font-weight: bold;
  opacity: .05;

} */

@media (min-width: 576px) {
  /* .contact::after {
    content: "CONTACT";
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
    color: #FFF;
    font-size: 80px;
    font-weight: bold;
    opacity: .05;
  } */
}

.b-divider {
  width: 100%;
  height: .4rem;
  background-color: #00AEEF;
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.about-bottom {
  box-sizing: border-box;
}

.about-bottom .contact-list-icon .bi {
  padding: 5px 8px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  color: var(--primary-color);
}

.about-bottom .contact-list-icon .bi:hover {
  background: var(--primary-bg);
  color: var(--bg-white);
}

.about-bottom .nav-link {
  color: #000;
}

.about-bottom .nav-link:hover {
  color: var(--primary-color);
}

/* .about-bottom .round-circle {
  width: 34px;
  height: 34px;
  border: 1px solid var(--primary-color);    
  text-align: center;
  border-radius: 50%;
  padding: 5px;
} */
/* .about-bottom .round-circle:hover {
  background: var(--primary-bg);
} */
/* .about-bottom .round-circle:hover .icon {
  color: var(--bg-white);
} */

/* .round-circle .icon {
  color: var(--primary-color);
} */

.social-icons-footer .icon-style {
  display: inline-flex;
  width: 33px;
  height: 33px;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 50%;
  background-color: #000;
  color: var(--bg-white);
}

.social-icons-footer .icon-style:hover,
.social-icons-footer .fa-brands:hover {
  color: var(--bg-white);
  background: var(--primary-bg);
}

.vertical-middle {
  vertical-align: middle;
}


/* Footer */
.footer {
  background: url("/../assets/images/banner/footer-banner.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.footer .contact-list-icon .bi {
  padding: 4px 7px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  color: var(--primary-color);
}

.footer .contact-list-icon .bi:hover {
  background: var(--primary-bg);
  color: var(--bg-white);
}

.footer .round-circle {
  width: 25px;
  height: 25px;
  padding: 0;
}

.footer .contact {}

.footer .nav-link {
  color: var(--bg-white);
  font-weight: 300;
}

.footer .nav-link:hover,
.nav-link:focus {
  color: var(--primary-color);
}

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) #00AEEF !important;
}

.footer-link {
  line-height: 2rem;
  text-decoration: none;
  color: var(--bg-white);
  display: inline-block;
  position: relative;
  font-weight: 300;
}

.footer-link:hover,
.footer-link:focus {
  color: var(--primary-color);
}

.footer-link::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.footer-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.copyright {
  color: #FFF;
  text-decoration: none
}

.dev {
  color: #FFF;
}

.copyright:hover,
.dev:hover {
  color: #000000;
}


.breadcrumb-item+.breadcrumb-item::before {
  color: white;
}

.breadcrumb-item a {
  text-decoration: none;
}

.banner-bg {
  background: #000421;
}



/* About */
.about-banner {
  position: relative;
}

.about-banner::before {
  content: "";
  background-image: url("/../assets/images/banner/about-banner.jpg");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  opacity: .2;
}

.features {
  background: #FFFFFF;
}

.modern-number span.mark-text {
  font-size: 180px;
  line-height: 0.8;
  margin: 0 5px -5px -5px;
  color: #d2a98e;
}

.modern-number h2 {
  position: relative;
  font-size: 12px;
  line-height: 2em;
  letter-spacing: 2px;
  color: #ababab;
  text-transform: uppercase;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.image-box {
  margin-top: 30px;
  padding: 98px 35px 88px 35px;
}

.image-box-wrap {
  box-shadow: 0 0 40px 5px rgba(51, 51, 51, 0.1);
  background: #fff;
  border-radius: 5px;
  margin-top: 30px;
  padding: 98px 0 0 0;
}

.box-image {
  position: relative;
  width: 162px;
  height: 162px;
  border-radius: 50%;
  margin: 0 auto 2px;
  text-align: center;
}

.box-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color-light);
  border-radius: 50%;
  transform: translateY(-35px);
}

.default-image {
  position: relative;
  z-index: 2;
}

.discover-click:hover {
  background-color: #0078D7;
  color: #FFFFFF;
}

.discover-click a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: none
}

.discover-click:hover a {
  color: #FFFFFF;
}

.about-resources-bg {
  background: url("/../assets/images/p-image/cyber-security.webp");
  background-position: right;
  background-repeat: no-repeat;
}

.about-resources .btn-left-0 {
  padding-left: 0;
}

.list-item {
  margin-top: 40px;
  position: relative;
  display: flex;
}

.testimonial-box {
  box-shadow: 0 0 40px 5px rgba(51, 51, 51, 0.1);
}

.contact-us-area {
  margin-top: 40px;
  background: #ecf3ff;
  padding-top: 100px;
}

.contact-list-item a {
  text-decoration: none;
}




/* Service Page */
.services-logo {
  background-image: url("/../assets/images/p-image/service-bg-2.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background: linear-gradient(to top, var(--secondary-bg), #FFF); */
}


/* Logo */
.logo-banner {
  position: relative;
}

.logo-banner::before {
  content: "";
  background-image: url("/../assets/images/banner/about-banner.jpg");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  opacity: .2;
}




/* Web Design */
.web-banner {
  position: relative;
}

.web-banner::before {
  content: "";
  background-image: url("/../assets/images/banner/web-banner.jpg");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  opacity: .2;
}


.card-image {
  height: 250px;
  margin-bottom: 30px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card {
  border: none;
  box-shadow: 1px 2px 8px gray;
}


/* Hosting */
.hosting-banner {
  position: relative;
}

.hosting-banner::before {
  content: "";
  background-image: url("/../assets/images/banner/host-banner.png");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  opacity: .2;
}


/* Digital */
.digital-banner {
  position: relative;
}

.digital-banner::before {
  content: "";
  background-image: url("/../assets/images/banner/digital-banner.png");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  opacity: .2;
}



/* Blog */
.blog-banner {
  position: relative;
}

.blog-banner::before {
  content: "";
  background-image: url("/../assets/images/banner/blog-banner.jpg");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  opacity: .2;
}


/* Contact */
.contact-banner {
  position: relative;
}

.contact-banner::before {
  content: "";
  background-image: url("/../assets/images/banner/contact-banner.jpg");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  opacity: .2;
}













/* Animations */
#circular-motion {
  overflow: hidden;
  position: relative;
  /* margin: auto; */
  margin-top: 0px;
  padding: 30px 0 0 30px;
  margin-bottom: 15px;
  display: inline-block;
  width: 600px;
  height: 550px;
  z-index: 1;
}

/* Hover Effects */
#html:hover,
#css:hover,
#js:hover,
#php:hover,
#java:hover,
#bootstrap:hover,
#jquery:hover,
#wordpress:hover,
#laravel:hover,
#photoshop:hover,
#woo:hover {
  animation-play-state: paused;
}

/* LANGUAGE */
#html {
  width: 40px;
  height: 40px;
  position: absolute;
  margin-top: 225px;
  margin-left: 225px;
  border-radius: 50%;
  /* background: linear-gradient(#7d7d7d, #cccccc); */
  /*	background: -moz-linear-gradient(#7d7d7d, #cccccc);*/
  /* background: -webkit-linear-gradient(#7d7d7d, #cccccc); */
  animation: html_eclipse 15s linear infinite;
  -webkit-animation: html_eclipse 15s linear infinite;
}

#css {
  width: 40px;
  height: 40px;
  position: absolute;
  margin-top: 225px;
  margin-left: 225px;
  border-radius: 50%;
  /* background-image: url("/images/logo/css.png"); */
  /* background: linear-gradient(#436247, #73AD7A); */
  /*	background: -moz-linear-gradient(#7d7d7d, #cccccc);*/
  /* background: -webkit-linear-gradient(#436247, #73AD7A); */

  animation: css_eclipse 15s linear infinite;
  -webkit-animation: css_eclipse 15s linear infinite;
}

#js {
  width: 40px;
  height: 40px;
  position: absolute;
  margin-top: 225px;
  margin-left: 225px;

  border-radius: 50%;

  /* background: linear-gradient(#232B5B, #5166EA); */
  /*	background: -moz-linear-gradient(#7d7d7d, #cccccc);*/
  /* background: -webkit-linear-gradient(#232B5B, #5166EA); */

  animation: js_eclipse 15s linear infinite;
  -webkit-animation: js_eclipse 15s linear infinite;
}

#php {
  width: 50px;
  height: 50px;
  position: absolute;
  margin-top: 225px;
  margin-left: 225px;
  border-radius: 50%;

  /* background: linear-gradient(#a99fa6, #D75412); */
  /*	background: -moz-linear-gradient(#7d7d7d, #cccccc);*/
  /* background: -webkit-linear-gradient(#b9b9b9, #D75412); */

  animation: php_eclipse 20s linear infinite;
  -webkit-animation: php_eclipse 20s linear infinite;
}

#java {
  width: 60px;
  height: 60px;
  position: absolute;
  margin-top: 215px;
  margin-left: 215px;

  border-radius: 50%;

  /* background: linear-gradient(#2c000f, #140e55); */
  /*	background: -moz-linear-gradient(#7d7d7d, #cccccc);*/
  /* background: -webkit-linear-gradient(#070f51, #000658); */

  animation: java_eclipse 20s linear infinite;
  -webkit-animation: java_eclipse 20s linear infinite;
}

#bootstrap {
  width: 55px;
  height: 55px;
  position: absolute;
  margin-top: 225px;
  margin-left: 225px;

  border-radius: 50%;

  /* background: linear-gradient(#590777, #DFB009); */
  /*	background: -moz-linear-gradient(#7d7d7d, #cccccc);*/
  /* background: -webkit-linear-gradient(#38035c, #bfbcb0); */

  animation: bootstrap_eclipse 20s linear infinite;
  -webkit-animation: bootstrap_eclipse 20s linear infinite;
}

#jquery {
  width: 100px;
  height: auto;
  position: absolute;
  margin-top: 220px;
  margin-left: 220px;

  border-radius: 50%;

  /* background: linear-gradient(#14130f, #090579); */
  /*	background: -moz-linear-gradient(#7d7d7d, #cccccc);*/
  /* background: -webkit-linear-gradient(#775F07, #DFB009); */

  animation: jquery_eclipse 25s linear infinite;
  -webkit-animation: jquery_eclipse 25s linear infinite;
}

#wordpress {
  width: 55px;
  height: 55px;
  position: absolute;
  margin-top: 225px;
  margin-left: 225px;

  border-radius: 50%;

  /* background: linear-gradient(#775F07, #DFB009); */
  /*	background: -moz-linear-gradient(#7d7d7d, #cccccc);*/
  /* background: -webkit-linear-gradient(#775F07, #DFB009); */

  animation: wordpress_eclipse 25s linear infinite;
  -webkit-animation: wordpress_eclipse 25s linear infinite;
}

#laravel {
  width: 70px;
  height: auto;
  position: absolute;
  margin-top: 215px;
  margin-left: 215px;

  border-radius: 50%;

  /* background: linear-gradient(#775F07, #DFB009); */
  /*	background: -moz-linear-gradient(#7d7d7d, #cccccc);*/
  /* background: -webkit-linear-gradient(#775F07, #DFB009); */

  animation: laravel_eclipse 25s linear infinite;
  -webkit-animation: laravel_eclipse 25s linear infinite;
}

#woo {
  width: 80px;
  height: auto;
  position: absolute;
  margin-top: 225px;
  margin-left: 225px;
  border-radius: 50%;

  /* background: linear-gradient(#775F07, #DFB009); */
  /*	background: -moz-linear-gradient(#7d7d7d, #cccccc);*/
  /* background: -webkit-linear-gradient(#775F07, #DFB009); */

  animation: woo_eclipse 25s linear infinite;
  -webkit-animation: woo_eclipse 25s linear infinite;
}

#photoshop {
  width: 60px;
  height: 60px;
  position: absolute;
  margin-top: 225px;
  margin-left: 225px;

  border-radius: 50%;

  /* background: linear-gradient(#775F07, #DFB009); */
  /*	background: -moz-linear-gradient(#7d7d7d, #cccccc);*/
  /* background: -webkit-linear-gradient(#775F07, #DFB009); */

  animation: photoshop_eclipse 25s linear infinite;
  -webkit-animation: photoshop_eclipse 25s linear infinite;
}


/* ORBITS */

#orbit-1 {
  position: absolute;
  margin-top: 160px;
  margin-left: 160px;

  border: 1px solid gray;
  width: 180px;
  height: 180px;
  border-radius: 50%;
}

#orbit-2 {
  position: absolute;
  margin-top: 90px;
  margin-left: 90px;

  border: 1px solid gray;
  width: 320px;
  height: 320px;
  border-radius: 50%;
}

#orbit-3 {
  position: absolute;
  margin-top: 20px;
  margin-left: 20px;

  border: 1px solid gray;
  width: 460px;
  height: 460px;
  border-radius: 50%;
}


/* ANIMATIONS */

@keyframes html_eclipse {
  0% {
    transform: rotate(0deg) translateY(-90px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateY(-90px) rotate(-360deg);
  }
}

@-webkit-keyframes html_eclipse {
  from {
    transform: rotate(0deg) translateY(-90px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateY(-90px) rotate(-360deg);
  }
}

@keyframes css_eclipse {
  from {
    transform: rotate(-120deg) translateY(-90px) rotate(120deg);
  }

  to {
    transform: rotate(240deg) translateY(-90px) rotate(-240deg);
  }
}

@-webkit-keyframes css_eclipse {
  from {
    transform: rotate(-120deg) translateY(-90px) rotate(120deg);
  }

  to {
    transform: rotate(240deg) translateY(-90px) rotate(-240deg);
  }
}

@keyframes js_eclipse {
  from {
    transform: rotate(-230deg) translateY(-90px) rotate(230deg);
  }

  to {
    transform: rotate(130deg) translateY(-90px) rotate(-130deg);
  }
}

@-webkit-keyframes js_eclipse {
  from {
    transform: rotate(-230deg) translateY(-90px) rotate(230deg);
  }

  to {
    transform: rotate(130deg) translateY(-90px) rotate(-130deg);
  }
}

/* 2nd Circle */
@keyframes php_eclipse {
  from {
    transform: rotate(-280deg) translateY(-160px) rotate(280deg);
  }

  to {
    transform: rotate(80deg) translateY(-160px) rotate(-80deg);
  }
}

@-webkit-keyframes php_eclipse {
  from {
    transform: rotate(190deg) translateY(-160px) rotate(-190deg);
  }

  to {
    transform: rotate(-170deg) translateY(-160px) rotate(170deg);
  }
}

@keyframes java_eclipse {
  from {
    transform: rotate(-180deg) translateY(-160px) rotate(180deg);
  }

  to {
    transform: rotate(180deg) translateY(-160px) rotate(-180deg);
  }
}

@-webkit-keyframes java_eclipse {
  from {
    transform: rotate(-180deg) translateY(-160px) rotate(180deg);
  }

  to {
    transform: rotate(180deg) translateY(-160px) rotate(-180deg);
  }
}

@keyframes bootstrap_eclipse {
  from {
    transform: rotate(-80deg) translateY(-160px) rotate(80deg);
  }

  to {
    transform: rotate(280deg) translateY(-160px) rotate(-280deg);
  }
}

@-webkit-keyframes bootstrap_eclipse {
  from {
    transform: rotate(-275deg) translateY(-160px) rotate(275deg);
  }

  to {
    transform: rotate(85deg) translateY(-160px) rotate(-85deg);
  }
}

/* 3rd Circle */
@keyframes jquery_eclipse {
  from {
    transform: rotate(-130deg) translateY(-230px) rotate(130deg);
  }

  to {
    transform: rotate(230deg) translateY(-230px) rotate(-230deg);
  }
}

@-webkit-keyframes jquery_eclipse {
  from {
    transform: rotate(-130deg) translateY(-230px) rotate(130deg);
  }

  to {
    transform: rotate(230deg) translateY(-230px) rotate(-230deg);
  }
}

@keyframes wordpress_eclipse {
  from {
    transform: rotate(-210deg) translateY(-230px) rotate(210deg);
  }

  to {
    transform: rotate(150deg) translateY(-230px) rotate(-150deg);
  }
}

@-webkit-keyframes wordpress_eclipse {
  from {
    transform: rotate(-210deg) translateY(-230px) rotate(210deg);
  }

  to {
    transform: rotate(150deg) translateY(-230px) rotate(-150deg);
  }
}

@keyframes laravel_eclipse {
  from {
    transform: rotate(0deg) translateY(-230px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateY(-230px) rotate(-360deg);
  }
}

@-webkit-keyframes laravel_eclipse {
  from {
    transform: rotate(0deg) translateY(-230px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateY(-230px) rotate(-360deg);
  }
}

@keyframes woo_eclipse {
  from {
    transform: rotate(-270deg) translateY(-230px) rotate(270deg);
  }

  to {
    transform: rotate(90deg) translateY(-230px) rotate(-90deg);
  }
}

@-webkit-keyframes woo_eclipse {
  from {
    transform: rotate(-270deg) translateY(-230px) rotate(270deg);
  }

  to {
    transform: rotate(90deg) translateY(-230px) rotate(-90deg);
  }
}

@keyframes photoshop_eclipse {
  from {
    transform: rotate(-40deg) translateY(-230px) rotate(40deg);
  }

  to {
    transform: rotate(320deg) translateY(-230px) rotate(-320deg);
  }
}

@-webkit-keyframes photoshop_eclipse {
  from {
    transform: rotate(-40deg) translateY(-230px) rotate(40deg);
  }

  to {
    transform: rotate(320deg) translateY(-230px) rotate(-320deg);
  }
}


/* Sm-Animation */
/* Small circular-motion */
#sm-circular-motion {
  overflow: hidden;
  position: relative;
  /* margin: auto; */
  margin-top: 0px;
  padding: 25px;
  margin-bottom: 15px;
  display: inline-block;
  width: 320px;
  height: 320px;
  z-index: 1;
}

/* Hover Effects */
#html:hover,
#css:hover,
#js:hover,
#php:hover,
#java:hover,
#bootstrap:hover,
#jquery:hover,
#wordpress:hover,
#laravel:hover,
#photoshop:hover,
#woo:hover {
  animation-play-state: paused;
}

/* LANGUAGE */
#sm-html {
  width: 25px;
  height: 25px;
  position: absolute;
  margin-top: 120px;
  margin-left: 120px;
  border-radius: 50%;
  /* background: linear-gradient(#7d7d7d, #cccccc); */
  /*	background: -moz-linear-gradient(#7d7d7d, #cccccc);*/
  /* background: -webkit-linear-gradient(#7d7d7d, #cccccc); */
  animation: sm-html_eclipse 15s linear infinite;
  -webkit-animation: sm-html_eclipse 15s linear infinite;
}

#sm-css {
  width: 25px;
  height: 25px;
  position: absolute;
  margin-top: 120px;
  margin-left: 120px;
  border-radius: 50%;
  /* background-image: url("/images/logo/css.png"); */
  /* background: linear-gradient(#436247, #73AD7A); */
  /*	background: -moz-linear-gradient(#7d7d7d, #cccccc);*/
  /* background: -webkit-linear-gradient(#436247, #73AD7A); */

  animation: sm-css_eclipse 15s linear infinite;
  -webkit-animation: sm-css_eclipse 15s linear infinite;
}

#sm-js {
  width: 20px;
  height: 20px;
  position: absolute;
  margin-top: 120px;
  margin-left: 120px;

  border-radius: 50%;

  /* background: linear-gradient(#232B5B, #5166EA); */
  /*	background: -moz-linear-gradient(#7d7d7d, #cccccc);*/
  /* background: -webkit-linear-gradient(#232B5B, #5166EA); */

  animation: sm-js_eclipse 15s linear infinite;
  -webkit-animation: sm-js_eclipse 15s linear infinite;
}

#sm-php {
  width: 40px;
  height: auto;
  position: absolute;
  margin-top: 115px;
  margin-left: 115px;
  border-radius: 50%;

  /* background: linear-gradient(#a99fa6, #D75412); */
  /*	background: -moz-linear-gradient(#7d7d7d, #cccccc);*/
  /* background: -webkit-linear-gradient(#b9b9b9, #D75412); */

  animation: sm-php_eclipse 20s linear infinite;
  -webkit-animation: sm-php_eclipse 20s linear infinite;
}

#sm-java {
  width: 45px;
  height: auto;
  position: absolute;
  margin-top: 115px;
  margin-left: 115px;

  border-radius: 50%;

  /* background: linear-gradient(#2c000f, #140e55); */
  /*	background: -moz-linear-gradient(#7d7d7d, #cccccc);*/
  /* background: -webkit-linear-gradient(#070f51, #000658); */

  animation: sm-java_eclipse 20s linear infinite;
  -webkit-animation: sm-java_eclipse 20s linear infinite;
}

#sm-bootstrap {
  width: 35px;
  height: auto;
  position: absolute;
  margin-top: 115px;
  margin-left: 115px;

  border-radius: 50%;

  /* background: linear-gradient(#590777, #DFB009); */
  /*	background: -moz-linear-gradient(#7d7d7d, #cccccc);*/
  /* background: -webkit-linear-gradient(#38035c, #bfbcb0); */

  animation: sm-bootstrap_eclipse 20s linear infinite;
  -webkit-animation: sm-bootstrap_eclipse 20s linear infinite;
}

#sm-jquery {
  width: 45px;
  height: auto;
  position: absolute;
  margin-top: 110px;
  margin-left: 110px;
  border-radius: 50%;

  /* background: linear-gradient(#14130f, #090579); */
  /*	background: -moz-linear-gradient(#7d7d7d, #cccccc);*/
  /* background: -webkit-linear-gradient(#775F07, #DFB009); */

  animation: sm-jquery_eclipse 25s linear infinite;
  -webkit-animation: sm-jquery_eclipse 25s linear infinite;
}

#sm-wordpress {
  width: 30px;
  height: 30px;
  position: absolute;
  margin-top: 110px;
  margin-left: 110px;

  border-radius: 50%;

  /* background: linear-gradient(#775F07, #DFB009); */
  /*	background: -moz-linear-gradient(#7d7d7d, #cccccc);*/
  /* background: -webkit-linear-gradient(#775F07, #DFB009); */

  animation: sm-wordpress_eclipse 25s linear infinite;
  -webkit-animation: sm-wordpress_eclipse 25s linear infinite;
}

#sm-laravel {
  width: 60px;
  height: auto;
  position: absolute;
  margin-top: 110px;
  margin-left: 110px;

  border-radius: 50%;

  /* background: linear-gradient(#775F07, #DFB009); */
  /*	background: -moz-linear-gradient(#7d7d7d, #cccccc);*/
  /* background: -webkit-linear-gradient(#775F07, #DFB009); */

  animation: sm-laravel_eclipse 25s linear infinite;
  -webkit-animation: sm-laravel_eclipse 25s linear infinite;
}

#sm-woo {
  width: 60px;
  height: auto;
  position: absolute;
  margin-top: 110px;
  margin-left: 110px;
  border-radius: 50%;

  /* background: linear-gradient(#775F07, #DFB009); */
  /*	background: -moz-linear-gradient(#7d7d7d, #cccccc);*/
  /* background: -webkit-linear-gradient(#775F07, #DFB009); */

  animation: sm-woo_eclipse 25s linear infinite;
  -webkit-animation: sm-woo_eclipse 25s linear infinite;
}

#sm-photoshop {
  width: 40px;
  height: auto;
  position: absolute;
  margin-top: 110px;
  margin-left: 110px;

  border-radius: 50%;

  /* background: linear-gradient(#775F07, #DFB009); */
  /*	background: -moz-linear-gradient(#7d7d7d, #cccccc);*/
  /* background: -webkit-linear-gradient(#775F07, #DFB009); */

  animation: sm-photoshop_eclipse 25s linear infinite;
  -webkit-animation: sm-photoshop_eclipse 25s linear infinite;
}

/* Image Size*/
.img-size {
  width: 60px;
  height: auto;
}

.img-size-2 {
  width: 100px;
  height: auto;
}

/* ORBITS */

#sm-orbit-1 {
  position: absolute;
  margin-top: 90px;
  margin-left: 90px;

  border: 1px solid gray;
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

#sm-orbit-2 {
  position: absolute;
  margin-top: 50px;
  margin-left: 50px;

  border: 1px solid gray;
  width: 170px;
  height: 170px;
  border-radius: 50%;
}

#sm-orbit-3 {
  position: absolute;
  margin-top: 10px;
  margin-left: 10px;

  border: 1px solid gray;
  width: 250px;
  height: 250px;
  border-radius: 50%;
}


/* ANIMATIONS */

@keyframes sm-html_eclipse {
  0% {
    transform: rotate(0deg) translateY(-50px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateY(-50px) rotate(-360deg);
  }
}

@-webkit-keyframes sm-html_eclipse {
  from {
    transform: rotate(0deg) translateY(-50px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateY(-50px) rotate(-360deg);
  }
}

@keyframes sm-css_eclipse {
  from {
    transform: rotate(-120deg) translateY(-50px) rotate(120deg);
  }

  to {
    transform: rotate(240deg) translateY(-50px) rotate(-240deg);
  }
}

@-webkit-keyframes sm-css_eclipse {
  from {
    transform: rotate(-120deg) translateY(-50px) rotate(120deg);
  }

  to {
    transform: rotate(240deg) translateY(-50px) rotate(-240deg);
  }
}

@keyframes sm-js_eclipse {
  from {
    transform: rotate(-230deg) translateY(-50px) rotate(230deg);
  }

  to {
    transform: rotate(130deg) translateY(-50px) rotate(-130deg);
  }
}

@-webkit-keyframes sm-js_eclipse {
  from {
    transform: rotate(-230deg) translateY(-50px) rotate(230deg);
  }

  to {
    transform: rotate(130deg) translateY(-50px) rotate(-130deg);
  }
}

/* 2nd Circle */
@keyframes sm-php_eclipse {
  from {
    transform: rotate(-280deg) translateY(-80px) rotate(280deg);
  }

  to {
    transform: rotate(80deg) translateY(-80px) rotate(-80deg);
  }
}

@-webkit-keyframes sm-php_eclipse {
  from {
    transform: rotate(190deg) translateY(-80px) rotate(-190deg);
  }

  to {
    transform: rotate(-170deg) translateY(-80px) rotate(170deg);
  }
}

@keyframes sm-java_eclipse {
  from {
    transform: rotate(-180deg) translateY(-80px) rotate(180deg);
  }

  to {
    transform: rotate(180deg) translateY(-80px) rotate(-180deg);
  }
}

@-webkit-keyframes sm-java_eclipse {
  from {
    transform: rotate(-180deg) translateY(-80px) rotate(180deg);
  }

  to {
    transform: rotate(180deg) translateY(-80px) rotate(-180deg);
  }
}

@keyframes sm-bootstrap_eclipse {
  from {
    transform: rotate(-80deg) translateY(-80px) rotate(80deg);
  }

  to {
    transform: rotate(280deg) translateY(-80px) rotate(-280deg);
  }
}

@-webkit-keyframes sm-bootstrap_eclipse {
  from {
    transform: rotate(-275deg) translateY(-80px) rotate(275deg);
  }

  to {
    transform: rotate(85deg) translateY(-80px) rotate(-85deg);
  }
}

/* 3rd Circle */
@keyframes sm-jquery_eclipse {
  from {
    transform: rotate(-130deg) translateY(-125px) rotate(130deg);
  }

  to {
    transform: rotate(230deg) translateY(-125px) rotate(-230deg);
  }
}

@-webkit-keyframes sm-jquery_eclipse {
  from {
    transform: rotate(-130deg) translateY(-125px) rotate(130deg);
  }

  to {
    transform: rotate(230deg) translateY(-125px) rotate(-230deg);
  }
}

@keyframes sm-wordpress_eclipse {
  from {
    transform: rotate(-210deg) translateY(-125px) rotate(210deg);
  }

  to {
    transform: rotate(150deg) translateY(-125px) rotate(-150deg);
  }
}

@-webkit-keyframes sm-wordpress_eclipse {
  from {
    transform: rotate(-210deg) translateY(-125px) rotate(210deg);
  }

  to {
    transform: rotate(150deg) translateY(-125px) rotate(-150deg);
  }
}

@keyframes sm-laravel_eclipse {
  from {
    transform: rotate(0deg) translateY(-125px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateY(-125px) rotate(-360deg);
  }
}

@-webkit-keyframes sm-laravel_eclipse {
  from {
    transform: rotate(0deg) translateY(-125px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateY(-125px) rotate(-360deg);
  }
}

@keyframes sm-woo_eclipse {
  from {
    transform: rotate(-270deg) translateY(-125px) rotate(270deg);
  }

  to {
    transform: rotate(90deg) translateY(-125px) rotate(-90deg);
  }
}

@-webkit-keyframes sm-woo_eclipse {
  from {
    transform: rotate(-270deg) translateY(-125px) rotate(270deg);
  }

  to {
    transform: rotate(90deg) translateY(-125px) rotate(-90deg);
  }
}

@keyframes sm-photoshop_eclipse {
  from {
    transform: rotate(-40deg) translateY(-125px) rotate(40deg);
  }

  to {
    transform: rotate(320deg) translateY(-125px) rotate(-320deg);
  }
}

@-webkit-keyframes sm-photoshop_eclipse {
  from {
    transform: rotate(-40deg) translateY(-125px) rotate(40deg);
  }

  to {
    transform: rotate(320deg) translateY(-125px) rotate(-320deg);
  }
}