/* 
    Created on : May 30, 2019, 9:35:44 AM
    Author     : Dasun Senanayake
*/
:root {
  --gap: 1rem;
  --cols: 4;
  --card-min: 180px;
  --radius: 12px;
  --skeleton-bg: #e6e8eb;
  --skeleton-fg: #f5f6f7;
}
html {
  scroll-behavior: smooth;
}

a:hover {
  text-decoration: none;
}

.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.25);
}

body {
  background-color: #0f1830;
  font-family: "Montserrat", sans-serif;
}

.menu-ico {
  font-size: 2.5rem;
  color: #fff;
}

/*--------Full screen Menu----------------------------------------------------*/
.main-menu {
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}

.nav-open .main-menu {
  opacity: 1;
  visibility: visible;
  /*background: rgba(0, 0, 0, 0.92);*/
  background: rgba(15, 24, 48, 0.95);
  z-index: 1000;
}

.main-menu .nav li a {
  color: #fff;
  font-size: 4.5vh;
  font-weight: 600;
  text-transform: uppercase;
}

.main-menu .nav li {
  opacity: 0;
  -webkit-transform: translateY(-40px);
  transform: translateY(-40px);
  -webkit-animation-timing-function: cubic-bezier(0.45, 0.005, 0, 1);
  -moz-animation-timing-function: cubic-bezier(0.45, 0.005, 0, 1);
  -o-animation-timing-function: cubic-bezier(0.45, 0.005, 0, 1);
  animation-timing-function: cubic-bezier(0.45, 0.005, 0, 1);
}

.nav-open .main-menu .nav li {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s;
}

.main-menu .nav li.delay-1 {
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -ms-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.main-menu .nav li.delay-2 {
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -ms-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.main-menu .nav li.delay-3 {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -ms-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.main-menu .nav li.delay-4 {
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  -ms-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.main-menu .nav li.delay-5 {
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  -ms-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.main-menu .nav li.delay-6 {
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  -ms-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.main-menu .nav li.delay-7 {
  -webkit-transition-delay: 0.7s;
  -moz-transition-delay: 0.7s;
  -ms-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.main-menu .nav li.delay-8 {
  -webkit-transition-delay: 0.8s;
  -moz-transition-delay: 0.8s;
  -ms-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.main-menu .nav li.delay-9 {
  -webkit-transition-delay: 0.9s;
  -moz-transition-delay: 0.9s;
  -ms-transition-delay: 0.9s;
  -o-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

.nav-button {
  position: relative;
  z-index: 1111;
  border: solid 0px #f8f8f8;
  height: 42px;
  display: block;
  width: 50px;
  padding: 12px;
}

.nav-button #nav-icon3 {
  width: 24px;
  height: 22px;
  display: inline-block;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.nav-button #nav-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.nav-button #nav-icon3 span:nth-child(1) {
  top: 0;
}

.nav-button #nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 7px;
}

.nav-button #nav-icon3 span:nth-child(4) {
  top: 14px;
}

.nav-open #nav-icon3 span:nth-child(1) {
  top: 9px;
  width: 0;
  left: 50%;
}

.nav-open #nav-icon3 span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-open #nav-icon3 span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav-open #nav-icon3 span:nth-child(4) {
  top: 9px;
  width: 0;
  left: 50%;
}

.flex-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

/*--------Full screen Menu----------------------------------------------------*/

.navbar-theme {
  background-color: rgba(15, 24, 48, 0.95);
}

.sec {
  position: relative;
  padding: 25% 0 0 0;
}

.sec h2 {
  color: #fff;
  font-weight: 500;
  font-size: 2rem;
  margin-top: 5%;
  text-transform: uppercase;
  margin-bottom: 2%;
}

.sec h4 {
  margin-bottom: 4%;
  font-size: 1.2rem;
}

.slider {
  background-image: url(../img/starsbg.jpg);
}

.slider h1 {
  color: #fff;
  font-weight: bold;
  font-size: 2.2rem;
  margin-top: 50%;
}

.slider a {
  color: #fff;
}

.readmore-btn-cont {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 999;
}

/* ---- map ---- */
#kgmapmob {
  display: block;
}

#kgmap {
  display: none;
}

.map-sec {
  padding: 5%;
  background-image: url(../img/mapbotbg.jpg);
  background-repeat: repeat-x;
  background-position: bottom;
  position: relative;
}

.pointer1 {
  position: absolute;
  bottom: 68.2%;
  left: 30.4%;
  width: 2%;
}

.popup {
  -webkit-animation: popup 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse
    both;
  animation: popup 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both;
}

@-webkit-keyframes popup {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}

@keyframes popup {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}

.pointer2 {
  position: absolute;
  bottom: 39.9%;
  right: 36%;
  width: 2%;
}

.pointer3 {
  position: absolute;
  bottom: 60.8%;
  right: 25.9%;
  width: 2%;
}

/* ---- reset ---- */

/*body {
  margin: 0;
  font:normal 75% Arial, Helvetica, sans-serif;
}*/

canvas {
  display: block;
  vertical-align: bottom;
  z-index: 1;
  width: 100%;
  height: 100%;
}

/* ---- particles.js container ---- */

#particles-js {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
}

#particles-js,
#particles-js canvas {
  height: 100vh;
}

/* ---- stats.js ---- */

.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13e8e9;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles {
  font-size: 1.1em;
}

#stats,
.count-particles {
  -webkit-user-select: none;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles {
  border-radius: 0 0 3px 3px;
}

/*-------------------------------------------------------------------------------*/
#layout {
  color: #fff;
  width: 100%;
  height: 100%;
}

.stars {
  z-index: 0;
  transform: translate3D(0em, 0em, 0);
  animation: stars 21s ease;
  transform-style: preserve-3d;
}

.starsbg {
  background-image: url(../img/starsbg.jpg);
  position: relative;
}

.btn-group-lg > .btn,
.btn-lg {
  border-radius: 0.05rem;
}

.btn-theme {
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid #00fae7;
  padding-bottom: 0.5rem;
  transition: 0.3s;
  font-size: 1.1rem;
  /*color: #fff;
    background-color: transparent;
    border-color: #ccc;
    text-transform: uppercase;
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 10px #9ecaed;*/
}

.btn-theme:hover {
  color: #fff;
  border-bottom: 1px solid #a252ff;
}

/*Owl Carousel Clients-----------------------------------------------------------*/

.owl-carousel-clients .owl-nav {
  position: absolute;
  top: 25%;
  bottom: 25%;
  width: 100%;
}

.owl-carousel-clients .owl-nav .owl-prev {
  position: absolute;
  text-align: right;
  left: -25px;
}

.owl-carousel-clients .owl-nav .owl-next {
  position: absolute;
  text-align: right;
  right: -25px;
}

.owl-carousel-clients .owl-nav button.owl-next,
.owl-carousel-clients .owl-nav button.owl-prev {
  color: rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 1.6rem;
}

.owl-carousel-clients .owl-nav button.owl-next:hover,
.owl-carousel-clients .owl-nav button.owl-prev:hover {
  text-shadow: 0 0 6px #9ecaed;
}

.owl-carousel-clients {
  .owl-stage {
    .owl-item {
      .item {
        padding: 0.5rem;
      }
    }
  }
}

/* Animate entire stage for smooth continuous scroll */
.owl-carousel-achievement .owl-stage {
  display: flex;
  animation: scrollLeft 60s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/*Aurora Sky--------------------------------------------------------------------*/
.aurora-sky {
  background-image: url(../img/aurora-sky-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  padding: 15% 0 20% 0;
}

.aurora-sky h2 {
  margin-bottom: 10%;
}

.aurora-sky h5 {
  font-size: 1rem;
}

.aurora-sky .owl-carousel-clients {
  margin-bottom: 10%;
}

/*Footer------------------------------------------------------------------------*/
footer {
  background-image: url(../img/footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6% 0 2% 0;
  text-align: center;
  z-index: 9;
  margin-top: -12%;
  position: relative;
}

footer small {
  color: #999;
}

footer .social-ico {
  margin: 2%;
}

footer .social-ico i {
  color: #02f1e1;
  margin: 0 3%;
}

footer .social-ico i:hover {
  color: #fff;
}

/*Inner------------------------------------------------------------------------*/
.starsinnerbg {
  background-image: url(../img/starsbg.jpg);
  position: relative;
  color: #fff;
  padding-top: 25%;
  /* text-align: center; */

  .contact-info-itm {
    a {
      color: #fff;
    }
  }
}

.starsinnerbg h1 {
  text-transform: uppercase;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.starsinnerbg h3 {
  color: #fff;
  font-weight: bold;
  margin-top: 20%;
  text-transform: uppercase;
  margin-bottom: 3%;
}

.starsinnerbg hr {
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
  border: 0;
  border-top: 1px solid rgba(199, 199, 199, 0.1);
}

.secin {
  position: relative;
  margin-bottom: 5%;
}

.secin h2 {
  color: #fff;
  font-weight: bold;
  font-size: 2.5rem;
  margin-top: 20%;
  text-transform: uppercase;
  margin-bottom: 3%;
}

.secin h4 {
  margin-bottom: 4%;
  font-size: 1.2rem;
}

.breadcrumb {
  background-color: transparent;
  justify-content: center;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.breadcrumb a {
  color: #a252ff;
}

.breadcrumb-item.active {
  color: #00fae7;
}

/*About us - what we do------------------------------------------------------------------------*/
.wwd-itm {
  padding: 2rem 2rem;
}

.wwd-itm h5 {
  text-transform: uppercase;
}

.wwd-itm p {
  font-size: 0.94rem;
  color: #999;
}

/*Contact us -----------------------------------------------------------------*/
.contact-info-itm {
  padding: 1rem 0;
}

.contact-info-itm p {
  line-height: 1.8rem;
}

.contact-info-itm span {
  color: #999;
}

/*Home page what we do------------------------------------------------------------------------*/

.services3dcont {
  overflow: hidden;
  padding: 60% 0;
  position: relative;
  width: 100%;
  height: 100%;
}

.services3dcont .bee3D--inner p {
  text-transform: uppercase;
}

/*.bee3D--parent {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}*/
.bee3D--effect__coverflow {
  background: transparent;
}

.bee3D--effect__coverflow .bee3D--inner {
  background: transparent;
}

.bee3D--effect__coverflow a {
  color: #2aceb9;
}

.bee3D--effect__coverflow .bee3D--inner {
  text-align: center;
}

.navbar-brand {
  width: 65%;
}

.nav-button {
  margin-right: 0rem !important;
}

/*Case study------------------------------------------------------------------------*/
.modal-body {
  .row {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
.cs-hp-itm {
  position: relative;
  padding: 2rem;
}

.cs-hp-itm a {
  color: #fff;
}

.cs-hp-itm-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  text-align: center;
  transition: 0.5s;
  padding: 2rem;
}

.cs-hp-itm:hover .cs-hp-itm-overlay {
  opacity: 0.9;
  cursor: pointer;
}

.cs-hp-txtitm-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: 0.5s;
  padding: 25%;
  opacity: 0.9;
}

.cs-hp-txtitm-overlay p {
  text-transform: uppercase;
}

.cs-hp-txtitm-overlay p strong {
  font-size: 1.8rem;
}

.cs-hp-logoitm-overlay {
  position: absolute;
  top: 0px;
  left: 10%;
  right: 10%;
  width: 80%;
  height: 80%;
  opacity: 0;
  text-align: center;
  transition: 0.5s;
}

.cs-hp-itm:hover .cs-hp-logoitm-overlay {
  opacity: 0.9;
}

.cs-hp-itm:hover .cs-hp-txtitm-overlay {
  opacity: 0;
}

.skeleton-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;

  /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03); */
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.card .media {
  aspect-ratio: 16/9;
  background: #ddd;
}

/* Skeleton */
.skeleton {
  position: relative;
  overflow: hidden;
  background: var(--skeleton-bg);
  border-radius: 8px;
}

.skeleton.media {
  border-radius: 10px;
  height: 200px;
  width: 220px;
}

/* Shimmer */
.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    transparent,
    var(--skeleton-fg),
    transparent
  );
  animation: shimmer 1.25s infinite;
}
@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .skeleton::after {
    animation: none;
  }
}

.cs-itm {
  position: relative;
  margin-bottom: 2rem;
}

.cs-itm:hover {
  cursor: pointer;
}

.cs-itm-overlay {
  background-color: #004771;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  text-align: center;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-itm-overlay img {
  width: 50%;
  margin-bottom: 0.5rem;
}

.cs-itm-overlay p {
  color: #f8f8f8;
  font-size: 0.9rem;
}

.cs-itm-overlay:hover {
  background-color: #004771;
  opacity: 0.6;
  cursor: pointer;
}

.cs-itm-overlay span {
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid #00fae7;
  padding-bottom: 0.5rem;
  font-size: 0.8rem;
}

.cs-post {
  padding-top: 15px;
  padding-bottom: 15px;
}

.cs-links {
  color: #fff;
  text-transform: uppercase;
}

.cs-links:hover {
  color: #fff;
  font-weight: 500;
}

.adp-cont img {
  margin-bottom: 1rem;
}

.cs-cont {
  ul {
    margin: 0 0 2rem 0;
    padding: 0 0 0 1.5rem;

    li {
      margin-bottom: 1rem;
    }
  }
}

.cs-stat-cont {
  margin: 3.3rem 0;
}

.cs-stat-cont p {
  margin-bottom: 0.1rem;
  text-transform: uppercase;
}

.cs-stat-cont h1 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

.cs-stat-cont hr {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
}

.cs-stat-cont h2 {
  text-transform: uppercase;
  font-weight: 400;
}

.ourwork {
  justify-content: center;
}

.ourwork .nav-tabs {
  border-bottom: 0px solid #dee2e6;
  margin-bottom: 1rem;
  justify-content: center;
}

.ourwork .nav-tabs .nav-item .tabnav-link {
  font-size: 0.9rem;
  margin-right: 1rem;
  color: #a252ff;
  border-bottom: 1px solid #a252ff;
}

.ourwork .nav-tabs .nav-item .active {
  border-bottom: 1px solid #00fae7;
  color: #fff;
}

.design-itm-cont {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cs-post-cont {
    padding: 0 5rem;
  }
}

@media (min-width: 992px) {
  .navbar-brand {
    width: auto;
  }

  .nav-button {
    margin-right: 1.5rem !important;
  }

  .slider h1 {
    font-size: 2.9rem;
    margin-top: 30%;
  }

  .sec {
    padding: 10% 0 0 0;
  }

  .owl-carousel-clients .owl-nav {
    position: absolute;
    top: 35%;
    width: 100%;
  }

  .owl-carousel-clients .owl-nav .owl-prev {
    left: -30px;
  }

  .owl-carousel-clients .owl-nav .owl-next {
    right: -30px;
  }

  .services3dcont {
    padding: 15% 0;
  }

  #kgmapmob {
    display: none;
  }

  #kgmap {
    display: block;
  }

  .starsinnerbg {
    padding-top: 11%;
  }

  .main-menu .nav li a {
    font-size: 5vh;
  }
}

@media (min-width: 1200px) {
  .services3dcont {
    padding: 17% 0;
  }

  .slider h1 {
    font-size: 2.9rem;
    margin-top: 25%;
  }
}

@media (min-width: 1400px) {
  .services3dcont {
    padding: 15% 0;
  }

  .slider h1 {
    font-size: 2.9rem;
    margin-top: 20%;
  }
}
