/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Syne", sans-serif;
  color: #000000;
  /* color: #272829; */
}

a {
  color: #0563bb;
  text-decoration: none;
}

a:hover {
  color: #067ded;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

.unselectable {
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0563bb;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #0678e3;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0563bb;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
}
@media (max-width: 992px) {
  #header {
    width: 300px;
    background: #fff;
    border-right: 1px solid #e6e9ec;
    left: -300px;
  }
}

@media (min-width: 992px) {
  #main {
    margin-left: 100px;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.nav-menu {
  padding: 0;
  display: block;
}
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
}
.nav-menu a, .nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #0089ff;
  padding: 10px 16px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 50px;
  border: 2px solid #0089ff;
  background: #000000dd;
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}
.nav-menu a i, .nav-menu a:focus i {
  font-size: 20px;
}
.nav-menu a span, .nav-menu a:focus span {
  padding: 0 5px 0 7px;
  color: #0089ff;
}
@media (min-width: 992px) {
  .nav-menu a, .nav-menu a:focus {
    width: 56px;
  }
  .nav-menu a span, .nav-menu a:focus span {
    display: none;
    color: #fff;
  }
}
.nav-menu a:hover, .nav-menu .active, .nav-menu .active:focus, .nav-menu li:hover > a {
  color: #fff;
  background: #004886;
  box-shadow: 0px 0px 8px #0089ff, inset 0px 0px 8px #0089ff;
}
.nav-menu a:hover span, .nav-menu .active span, .nav-menu .active:focus span, .nav-menu li:hover > a span {
  color: #fff;
}
.nav-menu a:hover, .nav-menu li:hover > a {
  width: 100%;
  color: #fff;
}
.nav-menu a:hover span, .nav-menu li:hover > a span {
  display: block;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 50px;
  padding: 5px;
  color: #0089ff;
}
.mobile-nav-toggle i {
  color: #45505b;
}

.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active #header {
  left: 0;
}
.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  background-color: #0563bb;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h1 {
  font-family: 'Black Ops One';
  font-size: 50px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  background: linear-gradient(0deg, #000000 0%, #0089ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* color: #45505b; */
}
.section-title h1::before {
  content: "";
  position: absolute;
  display: block;
  width: 200px;
  height: 2px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 100px);
}
.section-title h1::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 4px;
  background: #0065ff;
  bottom: 0;
  left: calc(50% - 25px);
}
.section-title p {
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  position: relative;
  width: 100%;
  height: 100%;
  /* background: url("../img/hero-bg.jpg") top right no-repeat;
  background-size: cover; */
}
.swiper-wrapper .content{
  position: relative;
  width: 100vw;
  height: 100vh;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.swiper-wrapper .content.bg1{
  /* background: linear-gradient(0deg, #00000090, #0005, #00000090), url(../img/hero-1.jpg);
  background-size: cover;
  background-position: center; */
}
.swiper-wrapper .content.bg2{
  background: linear-gradient(0deg, #001c59aa, #000c, #001c59aa), url(../img/hero-2.jpg);
  background-size: cover;
  background-position: center;
}
.swiper-wrapper .content.bg3{
  background: linear-gradient(0deg, #001c59aa, #000c, #001c59aa), url(../img/hero-3.jpg);
  background-size: cover;
  background-position: center;
}
#hero .content.bg1 .bgVideo{
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  width: 100vw;
  height: 100vh;
}
#hero .content.bg1 .before{
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #00000040;
  backdrop-filter: blur(7px);
}
#hero .content.bg3 .bgVideo{
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  width: 100vw;
  height: 100vh;
}
#hero .content.bg3 .before{
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #00000040;
  /* backdrop-filter: blur(4px); */
}

#hero h1 {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 1px 1px 2px #000;
}
#hero h2{
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
  font-weight: 100;
  color: #fff;
  text-shadow: none;
}
#hero .hero-name-type span {
  color: #55dfff;
  letter-spacing: 1px;
}

.content.bg1 .hero-name{
  position: relative;
  font-family: 'Black Ops One', sans-serif;
  font-size: 80px;
  line-height: 100%;
  letter-spacing: 1px;
  background: linear-gradient(0deg, #0089ff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.content.bg1 .hero-name-type {
  font-family: "Black Ops One", sans-serif;
  font-size: 22px;
  color: #fff;
  margin: 0;
  transform: translateY(-10px);
}

.content.bg2 .hero-name{
  position: relative;
  font-family: 'Black Ops One', sans-serif;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 1px;
  background: linear-gradient(0deg, #0089ff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.content.bg2 .hero-name-type {
  font-family: "Black Ops One", sans-serif;
  font-size: 18px;
  color: #fff;
  margin: 0;
  transform: translateY(-4px);
}

.content.bg3 .hero-name{
  position: relative;
  font-family: 'Black Ops One', sans-serif;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 1px;
  background: linear-gradient(0deg, #0089ff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.content.bg3 .hero-name-type {
  font-family: "Black Ops One", sans-serif;
  font-size: 18px;
  color: #fff;
  margin: 0;
  transform: translateY(-4px);
}

/* GLITCH */
.line {
  background: linear-gradient(0deg, #0089ff 0%, white 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.line:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}
.line:nth-child(1) {
  -webkit-animation: clip 3000ms -700ms linear infinite, glitch1 500ms -288ms linear infinite;
          animation: clip 3000ms -700ms linear infinite, glitch1 500ms -288ms linear infinite;
}
.line:nth-child(2) {
  -webkit-animation: clip 3000ms -1400ms linear infinite, glitch2 500ms -72ms linear infinite;
          animation: clip 3000ms -1400ms linear infinite, glitch2 500ms -72ms linear infinite;
}
.line:nth-child(3) {
  -webkit-animation: clip 3000ms -2100ms linear infinite, glitch3 500ms -452ms linear infinite;
          animation: clip 3000ms -2100ms linear infinite, glitch3 500ms -452ms linear infinite;
}
.line:nth-child(4) {
  -webkit-animation: clip 3000ms -2800ms linear infinite, glitch4 500ms -638ms linear infinite;
          animation: clip 3000ms -2800ms linear infinite, glitch4 500ms -638ms linear infinite;
}
.line:nth-child(5) {
  -webkit-animation: clip 3000ms -3500ms linear infinite, glitch5 500ms -243ms linear infinite;
          animation: clip 3000ms -3500ms linear infinite, glitch5 500ms -243ms linear infinite;
}
.line:nth-child(6) {
  -webkit-animation: clip 3000ms -4200ms linear infinite, glitch6 500ms -925ms linear infinite;
          animation: clip 3000ms -4200ms linear infinite, glitch6 500ms -925ms linear infinite;
}
.line:nth-child(7) {
  -webkit-animation: clip 3000ms -4900ms linear infinite, glitch7 500ms -347ms linear infinite;
          animation: clip 3000ms -4900ms linear infinite, glitch7 500ms -347ms linear infinite;
}
.line:nth-child(8) {
  -webkit-animation: clip 3000ms -5600ms linear infinite, glitch8 500ms -557ms linear infinite;
          animation: clip 3000ms -5600ms linear infinite, glitch8 500ms -557ms linear infinite;
}
.line:nth-child(9) {
  -webkit-animation: clip 3000ms -6300ms linear infinite, glitch9 500ms -201ms linear infinite;
          animation: clip 3000ms -6300ms linear infinite, glitch9 500ms -201ms linear infinite;
}

@-webkit-keyframes glitch1 {
    0% {
      transform: translateX(0);
    }
    80% {
      transform: translateX(0);
      color: #fff;
    }
    85% {
      transform: translateX(4px);
      color: #4e9a26;
    }
    90% {
      transform: translateX(1px);
      color: #ac1212;
    }
    95% {
      transform: translateX(-4px);
      color: #fff;
    }
    100% {
      transform: translateX(0);
    }
}
@keyframes glitch1 {
    0% {
      transform: translateX(0);
    }
    80% {
      transform: translateX(0);
      color: #fff;
    }
    85% {
      transform: translateX(4px);
      color: #4e9a26;
    }
    90% {
      transform: translateX(1px);
      color: #ac1212;
    }
    95% {
      transform: translateX(-4px);
      color: #fff;
    }
    100% {
      transform: translateX(0);
    }
}

@-webkit-keyframes glitch2 {
    0% {
      transform: translateX(0);
    }
    80% {
      transform: translateX(0);
      color: #fff;
    }
    85% {
      transform: translateX(0px);
      color: #4e9a26;
    }
    90% {
      transform: translateX(5px);
      color: #ac1212;
    }
    95% {
      transform: translateX(-3px);
      color: #fff;
    }
    100% {
      transform: translateX(0);
    }
}
@keyframes glitch2 {
    0% {
      transform: translateX(0);
    }
    80% {
      transform: translateX(0);
      color: #fff;
    }
    85% {
      transform: translateX(0px);
      color: #4e9a26;
    }
    90% {
      transform: translateX(5px);
      color: #ac1212;
    }
    95% {
      transform: translateX(-3px);
      color: #fff;
    }
    100% {
      transform: translateX(0);
    }
}

@-webkit-keyframes glitch3 {
    0% {
      transform: translateX(0);
    }
    80% {
      transform: translateX(0);
      color: #fff;
    }
    85% {
      transform: translateX(5px);
      color: #4e9a26;
    }
    90% {
      transform: translateX(5px);
      color: #ac1212;
    }
    95% {
      transform: translateX(-3px);
      color: #fff;
    }
    100% {
      transform: translateX(0);
    }
}
@keyframes glitch3 {
    0% {
      transform: translateX(0);
    }
    80% {
      transform: translateX(0);
      color: #fff;
    }
    85% {
      transform: translateX(5px);
      color: #4e9a26;
    }
    90% {
      transform: translateX(5px);
      color: #ac1212;
    }
    95% {
      transform: translateX(-3px);
      color: #fff;
    }
    100% {
      transform: translateX(0);
    }
}
  
@-webkit-keyframes glitch4 {
    0% {
      transform: translateX(0);
    }
    80% {
      transform: translateX(0);
      color: #fff;
    }
    85% {
      transform: translateX(3px);
      color: #4e9a26;
    }
    90% {
      transform: translateX(-2px);
      color: #ac1212;
    }
    95% {
      transform: translateX(2px);
      color: #fff;
    }
    100% {
      transform: translateX(0);
    }
}
@keyframes glitch4 {
    0% {
      transform: translateX(0);
    }
    80% {
      transform: translateX(0);
      color: #fff;
    }
    85% {
      transform: translateX(3px);
      color: #4e9a26;
    }
    90% {
      transform: translateX(-2px);
      color: #ac1212;
    }
    95% {
      transform: translateX(2px);
      color: #fff;
    }
    100% {
      transform: translateX(0);
    }
}
  
@-webkit-keyframes glitch5 {
    0% {
      transform: translateX(0);
    }
    80% {
      transform: translateX(0);
      color: #fff;
    }
    85% {
      transform: translateX(-2px);
      color: #4e9a26;
    }
    90% {
      transform: translateX(1px);
      color: #ac1212;
    }
    95% {
      transform: translateX(3px);
      color: #fff;
    }
    100% {
      transform: translateX(0);
    }
}
@keyframes glitch5 {
    0% {
      transform: translateX(0);
    }
    80% {
      transform: translateX(0);
      color: #fff;
    }
    85% {
      transform: translateX(-2px);
      color: #4e9a26;
    }
    90% {
      transform: translateX(1px);
      color: #ac1212;
    }
    95% {
      transform: translateX(3px);
      color: #fff;
    }
    100% {
      transform: translateX(0);
    }
}
  
@-webkit-keyframes glitch6 {
    0% {
      transform: translateX(0);
    }
    80% {
      transform: translateX(0);
      color: #fff;
    }
    85% {
      transform: translateX(-1px);
      color: #4e9a26;
    }
    90% {
      transform: translateX(5px);
      color: #ac1212;
    }
    95% {
      transform: translateX(-1px);
      color: #fff;
    }
    100% {
      transform: translateX(0);
    }
}
@keyframes glitch6 {
    0% {
      transform: translateX(0);
    }
    80% {
      transform: translateX(0);
      color: #fff;
    }
    85% {
      transform: translateX(-1px);
      color: #4e9a26;
    }
    90% {
      transform: translateX(5px);
      color: #ac1212;
    }
    95% {
      transform: translateX(-1px);
      color: #fff;
    }
    100% {
      transform: translateX(0);
    }
}
  
@-webkit-keyframes glitch7 {
    0% {
      transform: translateX(0);
    }
    80% {
      transform: translateX(0);
      color: #fff;
    }
    85% {
      transform: translateX(-1px);
      color: #4e9a26;
    }
    90% {
      transform: translateX(2px);
      color: #ac1212;
    }
    95% {
      transform: translateX(0px);
      color: #fff;
    }
    100% {
      transform: translateX(0);
    }
}
@keyframes glitch7 {
    0% {
      transform: translateX(0);
    }
    80% {
      transform: translateX(0);
      color: #fff;
    }
    85% {
      transform: translateX(-1px);
      color: #4e9a26;
    }
    90% {
      transform: translateX(2px);
      color: #ac1212;
    }
    95% {
      transform: translateX(0px);
      color: #fff;
    }
    100% {
      transform: translateX(0);
    }
}
  
@-webkit-keyframes glitch8 {
    0% {
      transform: translateX(0);
    }
    80% {
      transform: translateX(0);
      color: #fff;
    }
    85% {
      transform: translateX(-2px);
      color: #4e9a26;
    }
    90% {
      transform: translateX(-1px);
      color: #ac1212;
    }
    95% {
      transform: translateX(4px);
      color: #fff;
    }
    100% {
      transform: translateX(0);
    }
}
@keyframes glitch8 {
    0% {
      transform: translateX(0);
    }
    80% {
      transform: translateX(0);
      color: #fff;
    }
    85% {
      transform: translateX(-2px);
      color: #4e9a26;
    }
    90% {
      transform: translateX(-1px);
      color: #ac1212;
    }
    95% {
      transform: translateX(4px);
      color: #fff;
    }
    100% {
      transform: translateX(0);
    }
}
  
@-webkit-keyframes glitch9 {
    0% {
      transform: translateX(0);
    }
    80% {
      transform: translateX(0);
      color: #fff;
    }
    85% {
      transform: translateX(-1px);
      color: #4e9a26;
    }
    90% {
      transform: translateX(4px);
      color: #ac1212;
    }
    95% {
      transform: translateX(-1px);
      color: #fff;
    }
    100% {
      transform: translateX(0);
    }
}
@keyframes glitch9 {
    0% {
      transform: translateX(0);
    }
    80% {
      transform: translateX(0);
      color: #fff;
    }
    85% {
      transform: translateX(-1px);
      color: #4e9a26;
    }
    90% {
      transform: translateX(4px);
      color: #ac1212;
    }
    95% {
      transform: translateX(-1px);
      color: #fff;
    }
    100% {
      transform: translateX(0);
    }
}

@-webkit-keyframes clip {
  0% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 120%, 0 120%);
            clip-path: polygon(0 100%, 100% 100%, 100% 120%, 0 120%);
  }
  100% {
    -webkit-clip-path: polygon(0 -20%, 100% -20%, 100% 0%, 0 0);
            clip-path: polygon(0 -20%, 100% -20%, 100% 0%, 0 0);
  }
}
@keyframes clip {
  0% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 120%, 0 120%);
            clip-path: polygon(0 100%, 100% 100%, 100% 120%, 0 120%);
  }
  100% {
    -webkit-clip-path: polygon(0 -20%, 100% -20%, 100% 0%, 0 0);
            clip-path: polygon(0 -20%, 100% -20%, 100% 0%, 0 0);
  }
}


@media (max-width: 992px) {
  #hero {
    text-align: center;
    padding-left: 160px;
  }
  #hero h1 {
    font-size: 32px;
    line-height: 36px;
  }
  #hero p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }
  .heroname-framing {
    height: 4rem;
    display: flex;
    justify-content: center;
  }
  #hero-name{
    font-size: 4rem !important;
  }
}



/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .about-img {
  display: grid;
  place-items: center;
}

.about .about-desc p {
  font-family: 'Syne', sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.3;
  color: #505050;
}
.about .about-desc span {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  background: linear-gradient(90deg, #005dad 0%, #6100ef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .serv-title {
  transform: translateY(30px)
}
.services .serv-title p{
  font-family: 'Syne';
  font-size: 2rem;
  font-weight: 800;
  line-height: 100%;
  text-align: end;
  background: linear-gradient(0deg, #000000 0%, #0089ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.services .serv-title p > span{
  font-size: 2.5rem;
}
.services .serv-title .dots {
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
}
.services .serv-title .dots.dots-color-1 {
  background-color: #0089ff;
}
.services .serv-title .dots.dots-color-2 {
  background-color: #0020ca;
}
.services .serv-title .dots.dots-color-3 {
  background-color: #5e00ca;
}

.services .shapes {
  width: 100%;
  height: 560px;
  padding: 15px;
  background: linear-gradient(0deg, #00000090, #00000080), url(../img/6985678.jpg);
  background-size: cover;
  background-position: center;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
  border-top: 10px solid #000;
  border-bottom: 10px solid #000;
  box-shadow: 5px 5px 10px #000;
  transition: 0.3s;
}
.services .shapes.dua {
  margin-top: 100px;
}
.services .shapes.tiga {
  margin-top: 200px;
}
.services .shapes h1 {
  font-family: 'Syne';
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(0deg, #fff 0%, #0089ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.services .shapes div img{
  max-width: 68%;
  transition: 0.5s;
  filter: grayscale(1);
  transform: scale(0.9);
}
.services .shapes ul {
  padding-left: 1.5rem !important;
}
.services .shapes ul > li{
  font-family: 'Syne';
  font-weight: 500;
  color: #b4dcff;
}

.services .shapes:hover {
  /* background-color: #002647; */
  border-top: 11px solid #0089ff;
  border-bottom: 11px solid #5800db;
  background: linear-gradient(0deg, #00000080, #00000050), url(../img/6985678.jpg);
  background-size: cover;
  background-position: center;
}
.services .shapes:hover h1 {
  background: linear-gradient(0deg, #00ffe1 0%, #0089ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.services .shapes:hover div img{
  filter: grayscale(0);
  transform: scale(1);
}
.services .shapes:hover ul > li {
  color: #fff;
}

@media (max-width: 992px) {
  .services .serv-title {
    transform: translateY(-30px)
  }
  .services .serv-title p{
    font-family: 'Syne';
    font-size: 1rem;
    font-weight: 800;
    line-height: 100%;
    text-align: end;
    background: linear-gradient(0deg, #000000 0%, #0089ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .services .serv-title p > span{
    font-size: 1.5rem;
  }
  .services .serv-title .dots {
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
  }
  .services .shapes.dua, 
  .services .shapes.tiga 
  {
    margin-top: 50px;
  }
}


/*--------------------------------------------------------------
# Insight
--------------------------------------------------------------*/
.insight .insight-1-title p {
  font-family: 'Syne';
  font-size: 50px;
  font-weight: 700;
  line-height: 100%;
}
.insight .insight-1-title p span{
  position: relative;
  font-size: 60px;
  background: linear-gradient(0deg, #530285 0%, #0089ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.insight .insight-1-title p span::after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 84%;
  left: 0;
  background: url(../img/line.png) no-repeat;
  background-size: 100% 12%;
}


.insight .insight-1-logo{
  animation: insight1-logo 2s linear 0s infinite alternate none;
}
@keyframes insight1-logo {
	0% {
		transform: translateY(20px);
	}

	100% {
		transform: translateY(-20px);
	}
}
.insight .insight-1-content .box .head{
  display: flex;
  align-items: end;
}

.insight .insight-1-content .box:nth-child(1) .head img{
  width: 100px;
}
.insight .insight-1-content .box:nth-child(1) .head h2{
  font-family: 'Syne';
  font-weight: 700;
  font-size: 40px; 
  background: linear-gradient(0deg, #00396a 0%, #0089ff 100%); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
}
.insight .insight-1-content .box .linegrad1{
  width: 55%;
  height: 5px;
  margin-bottom: 12px;
  background: linear-gradient(270deg, #ffffff, #86deff, #0089ff);
  background-size: 400% 400%;

  -webkit-animation: linegrad 1.5s linear infinite alternate;
  animation: linegrad 1.5s linear infinite alternate;
}

.insight .insight-1-content .box:nth-child(2) .head img{
  width: 110px;
}
.insight .insight-1-content .box:nth-child(2) .head h2{
  font-family: 'Syne';
  font-weight: 700;
  font-size: 28px; 
  background: linear-gradient(0deg, #440082 0%, #004bff 100%); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
}
.insight .insight-1-content .box .linegrad2{
  width: 55%;
  height: 5px;
  margin-bottom: 12px;
  background: linear-gradient(270deg, #5500ff, #a27cff, #ffffff);
  background-size: 400% 400%;

  -webkit-animation: linegrad 1.5s linear infinite alternate;
  animation: linegrad 1.5s linear infinite alternate;
}
.insight .insight-1-content .box:nth-child(2) p {
  text-align: right;
}


@-webkit-keyframes linegrad {
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
@keyframes linegrad {
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

.insight .insight-1-content
.box p{
  font-family: 'Syne';
  font-weight: 600;
  color: #444;
  font-size: 1.1rem
}

@media (max-width: 992px) {
  .insight .insight-1-title p {
    font-family: 'Syne';
    font-size: 30px;
    font-weight: 700;
    line-height: 100%;
  }
  .insight .insight-1-title p span{
    position: relative;
    font-size: 50px;
    background: linear-gradient(0deg, #530285 0%, #0089ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .insight .insight-1-content .box p {
    text-align: justify;
  }

  .insight .insight-1-content .box:nth-child(2) p {
    text-align: justify;
  }
  .insight .insight-1-content .box:nth-child(2) .head img{
    width: 90px;
  }
  .insight .insight-1-content .box:nth-child(2) .head h2 {
    font-size: 13px;
  }
}

/* ------------------------------------------ */
.insight-2-box{
  position: relative;
  padding: 25px 20px;
  margin: 150px 0;
  border-radius: 40px;
  box-shadow: inset 0px 0px 60px 100px #fff;
  background: linear-gradient(0deg, #ffffff80, #ffffff80), url(../img/pexels-cloud.jpg);
  background-size: cover;
  background-position: center;
}
.insight-2-box .before{
  position: absolute;
  top: 0px;
  left: 5%;

  font-family: 'Syne';
  font-weight: 800;
  font-size: 40px;
  line-height: 100%;
  background: linear-gradient(90deg, #000000 0%, #007fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.insight-2-box .after{
  position: absolute;
  bottom: 0px;
  right: 5%;

  font-family: 'Syne';
  font-weight: 800;
  font-size: 40px;
  line-height: 100%;
  background: linear-gradient(90deg, #2e00f6 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.insight-2-box .topright{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50%;
  height: 65%;
  border-top-right-radius: 30px;
  border-top: 4px dashed #2e00f6;
  border-right: 4px dashed #0009;
  box-shadow: inset -15px 15px 10px -10px #2e00f6;
}
.insight-2-box .bottomleft{
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 50%;
  height: 65%;
  border-bottom-left-radius: 30px;
  border-bottom: 4px dashed #007fff;
  border-left: 4px dashed #0009;
  box-shadow: inset 15px -15px 10px -10px #007fff;
}

.insight-2-box .content .ct-mid {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0px;
}
.insight-2-box .content .ct-mid.hub::before {
  content: '';
  width: 5px;
  height: 70px;
  position: absolute;
  top: 50%;
  background-color: #0058a3;
}
.insight-2-box .content .ct-mid .shapes{
  position: relative;
  width: 70px;
  height: 70px;
  background-color: #00466b;
  box-shadow: 0px 0px 4px #000, inset 0px 0px 10px #00a4ff;
  transform: rotate(45deg);
  /* margin: 0px 30px; */
}
.insight-2-box .content .ct-mid .shapes ion-icon{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  font-size: 40px;
  color: #fff;
}

.insight-2-box .content .ct-before {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
}
.insight-2-box .content .ct-before .txt-before{
  font-family: 'Syne';
  font-weight: 700;
  font-size: 30px;
  line-height: 100%;
  text-align: right;
  background: linear-gradient(90deg, #000000 0%, #007fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.insight-2-box .content .ct-after {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.insight-2-box .content .ct-after .txt-after{
  font-family: 'Syne';
  font-weight: 700;
  font-size: 30px;
  line-height: 100%;
  background: linear-gradient(90deg, #2e00f6 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ------------------------------------------ */
.insight .insight-3-title p {
  font-family: 'Syne';
  font-size: 50px;
  font-weight: 700;
  line-height: 100%;
}
.insight .insight-3-title p span{
  position: relative;
  font-size: 60px;
  background: linear-gradient(0deg, #530285 0%, #0089ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.insight .insight-3-title p span::after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 84%;
  left: 0;
  background: url(../img/line.png) no-repeat;
  background-size: 100% 12%;
}

.insight .insight-3-content {
  padding: 60px 30px;
  margin: 150px 0;
  border-radius: 20px;
  box-shadow: 0px 0px 10px #0089ff, inset 0px 0px 20px #aad8ff;
  /* background: linear-gradient(10deg, #2750a5, #99d0ff); */
  background: linear-gradient(0deg, #00329b80, #ffffff60), url(../img/pxl-3.jpg);
  background-size: cover;
  background-position: center;
}
.insight .insight-3-content .empty-box {
  position: relative;
  width: 100%;
  height: 100%;
}
.insight .insight-3-content .empty-box .p-absolute{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.insight .insight-3-content .empty-box .p-absolute .square{
  width: 230px;
  height: 230px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color:#002647;
  border: 2px solid #0089ff;
  box-shadow: 0px 0px 7px #0089ff, inset 0px 0px 10px #0089ff;

  display: grid;
  place-items: center;
}
.insight .insight-3-content .empty-box .p-absolute .square .square-content p:nth-child(1){
  font-family: 'Syne';
  font-size: 50px;
  font-weight: 800;
  line-height: 100%;
  text-align: center;
  color: #00efff;
  margin-bottom: 5px;
}
.insight .insight-3-content .empty-box .p-absolute .square .square-content p:nth-child(2){
  font-family: 'Syne';
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  color: #ffffff;
  margin-bottom: 5px;
}

.insight .insight-3-content .desc{
  font-family: 'Syne';
  font-size: 30px;
  font-weight: 700;
  /* color: #000; */
  background: linear-gradient(0deg, #ffffff 0%, #00feff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.insight .insight-3-content .desc span{
  font-family: 'Syne';
  font-size: 33px;
  font-weight: 800;
  background: linear-gradient(0deg, #00e2ff 0%, #0089ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 992px) {
  .insight .insight-3-title p {
    font-size: 24px;
  }
  .insight .insight-3-title p span{
    position: relative;
    font-size: 34px;
    background: linear-gradient(0deg, #530285 0%, #0089ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .insight .insight-3-content {
    padding: 60px 30px;
    margin: 20px 0;
  }
  .insight .insight-3-content .empty-box .p-absolute{
    position: unset;
    transform: translate(0%,0%);
  }
  .insight .insight-3-content .empty-box .p-absolute .square .square-content p:nth-child(1){
    font-size: 40px;
  }
  .insight .insight-3-content .empty-box .p-absolute .square .square-content p:nth-child(2){
    font-size: 16px;
  }
}

/* ------------------------------------------ */
.insight .insight-4-txt p {
  font-family: 'Syne';
  font-size: 30px;
  font-weight: 700;
  color: #222;
}
.insight .insight-4-txt span {
  font-size: 34px;
  font-weight: 800;
  background: linear-gradient(0deg, #530285 0%, #0089ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.insight .insight-4-img {
  position: relative;
  width: 100%;
  height: 100%;
}
.insight .insight-4-img .mock-1{
  position: relative;
  width: 80%;
}
.insight .insight-4-img .mock-1 video {
  position: absolute;
  left: 50%;
  top: 43%;
  object-fit: fill;
  width: 72%;
  height: 76%;
  border-radius: 5px;
  transform: translate(-50%, -50%);
}
.insight .insight-4-img .mock-2 {
  position: absolute;
  top: 58%;
  right: -23%;
  transform: translate(0%, -50%);
  width: 50%;
  height: auto;
}

.insight .insight-5-txt p {
  font-family: 'Syne';
  font-size: 30px;
  font-weight: 700;
  color: #222;
  text-align: right;
}
.insight .insight-5-txt span {
  font-size: 34px;
  font-weight: 800;
  background: linear-gradient(0deg, #530285 0%, #0089ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.insight .insight-5-img {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.insight .insight-5-img .mock-1{
  position: relative;
  width: 34%;
}
.insight .insight-5-img .mock-1 video {
  position: absolute;
  left: 50%;
  top: 50.3%;
  object-fit: fill;
  width: 88.5%;
  height: 89%;
  border-radius: 7px;
  transform: translate(-50%, -50%);
}
.insight .insight-5-img .mock-2 {
  position: absolute;
  top: 56%;
  right: -62%;
  transform: translate(0%, -50%);
  width: 90%;
  height: auto;
}



/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-title p {
  font-family: 'Syne';
  font-size: 50px;
  font-weight: 700;
  line-height: 100%;
}
.portfolio .portfolio-title p span{
  position: relative;
  font-size: 60px;
  background: linear-gradient(0deg, #530285 0%, #0089ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.portfolio .portfolio-title p span::after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 84%;
  left: 0;
  background: url(../img/line.png) no-repeat;
  background-size: 100% 12%;
}
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #272829;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #0563bb;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  position: relative;
  transition: 0.3s;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(0deg, #00526e, #00bfff);
  border-radius: 5px;
  box-shadow: 0px 0px 10px #0005;
}
.portfolio .portfolio-wrap img {
  transition: 0.7s;
  transform: scale(0.94);
  border-radius: 5px;
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #0080ff;
  border-left: 3px solid #0080ff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #0080ff;
  border-right: 3px solid #0080ff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #45505b;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: #45505b;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: #ffffff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #148af9;
}
.portfolio .portfolio-wrap:hover {
  border-radius: 5px;
  box-shadow: 0px 0px 15px #0089ff;
}
.portfolio .portfolio-wrap:hover img {
  transform: scale(1);
}
.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}
.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}
.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

@media (max-width: 992px) {
  .portfolio .portfolio-title p {
    font-size: 24px;
  }
  .portfolio .portfolio-title p span{
    font-size: 34px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0563bb;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0563bb;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(69, 80, 91, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}



/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
}
.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #90c8fc;
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0563bb;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0563bb;
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .contact-title p {
  font-family: 'Syne';
  font-size: 50px;
  font-weight: 700;
  line-height: 100%;
}
.contact .contact-title p span{
  position: relative;
  font-size: 60px;
  background: linear-gradient(0deg, #160099 0%, #0089ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact .contact-title p span::after{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 84%;
  left: 0;
  background: url(../img/line.png) no-repeat;
  background-size: 100% 12%;
}

.contact .info {
  width: 100%;
  background: #fff;
}
.contact .info i {
  font-size: 20px;
  color: #0563bb;
  float: left;
  width: 44px;
  height: 44px;
  background: #eef7ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #45505b;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #728394;
}
.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #0563bb;
  color: #fff;
}
.contact .php-email-form {
  width: 100%;
  background: #fff;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: #0563bb;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #0678e3;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: linear-gradient(0deg, #004988, #ffffff);
  color: #000000;
  font-size: 14px;
  text-align: center;
  padding: 100px 0;
}
#footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
  color: #8d8d8d;
}
#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}
#footer .social-links {
  margin: 0 0 40px 0;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #0563bb;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: #0678e3;
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  margin: 0 0 5px 0;
}
#footer .credits {
  font-size: 13px;
}