/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

*, *:before, *:after {
  box-sizing: border-box;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

body {  font-family: 'Roboto', sans-serif; }
 .container {
  max-width: 1750px;
  padding: 0 15px;
  margin: 0 auto;
}

#page { overflow: hidden; }

#main-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
}

#main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  margin: 5px 0 0;
}

#hamburger-menu {
  display: block;
  background: none;
  width: 40px;
  padding: 0;
  border: none;
  outline: none;
  cursor: pointer;
}

#hamburger-menu span {
  display: block;
  height: 3px;
  background-color: #ff5ed2;
  margin: 6px 0;
}

#hamburger-menu::before {
  content: '';
  display: block;
  height: 3px;
  background-color: #fff;
}

#hamburger-menu::after {
  content: '';
  display: block;
  width: 50%;
  height: 3px;
  background-color: #fff;
}

.close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  width: 30px;
  padding: 0;
  border: none;
  outline: none;
  cursor: pointer;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #3be8f8;
  font-size: 20px;
  text-decoration: none;
}

.close-btn svg {
  fill: #3be8f8;
}

.close-btn:hover svg, .close-btn:focus svg {
  fill: #ff5ed2;
}

#main-header .nav-links {
  display: flex;
  align-items: center;
}

#main-header .nav-links a {
  display: block;
  color: #3be8f8;
  font-size: 12px;
  /*padding: 3px 25px;*/
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
}

 #side-menu {
  position: fixed;
  left: 0;
  top: 0;;
  height: 100vh;
  width: 250px;
  padding: 40px 30px;
  background-color: rgba(12,7,29,.7);
  transform: translateX(-100%);
  transition: transform .3s ease-in-out;
  text-align: center;
  z-index: 99999;
}

 #side-menu.active {
  transform: translateX(0);
}



 #side-menu .logo {
  margin-bottom: 30px;
}

 #side-menu .logo a {
  display: inline-block;
}

 #side-menu .nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

 #side-menu .nav-list li {
  font-size: 18px;
  font-weight: 300;
}

 #side-menu .nav-list a {
  display: block;
  text-decoration: none;
  color: #3be8f8;
  padding: .5em 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

#side-menu .nav-list a:hover,
#side-menu .nav-list a:active {
  color: #ff5ed2;
}

#main-header .nav-links .login {
  border-left: 1px dashed #3be8f8;
  padding-right: 0;
}

#main-header .nav-links a > span {
  display: inline-block;
  margin-left: 15px;
}

#main-header .nav-links a svg {
  fill: #3be8f8;
}

#main-header .nav-links a:hover,
#main-header .nav-links a:active {
  color: #ff5ed2;
}

#main-header .nav-links a:hover svg,
#main-header .nav-links a:active svg {
  fill: #ff5ed2;
}

/*#main-footer {
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}*/

#main-footer .social-links a {
  color: #3be8f8;
  display: inline-block;
  margin-right: 30px;
  text-decoration: none;
  width: 22px;
  height: 22px;
}

#main-footer .social-links a svg {
  fill: #3be8f8;
}

#main-footer .social-links a:last-child {
  margin-right: 0;
}

#main-footer .social-links a:hover svg,
#main-footer .social-links a:active svg {
  fill: #ff5ed2;
}

#main-footer .left .copyright {
  font-size: 11px;
  color: #8fc2f5;
}

#main-footer .right {
  display: flex;
  align-items: center;
  position: relative;
}

#main-footer .right .step-indicator {
  font-size: 11px;
  color: #3be8f8;
  text-transform: uppercase;
}

#main-footer .right .step-indicator .step-lines span {
  display: inline-block;
  height: 2px;
  width: 30px;
  background-color: #435363;
  margin: 2px;
  cursor: pointer;
}

#main-footer .right .step-indicator .step-lines span.active {
  height: 3px;
  background-color: #ff5ed2;
}

#main-footer .right .circle-nxt {
  margin-left: 15px;
  display: block;
}

#main-footer .right .circle-nxt svg {
  width: 50px;
  height: 50px;
}

#main-footer .right .circle-nxt .icon {
  fill: rgb(65, 217, 239);
}

#main-footer .right .circle-nxt .icon-m {
  display: none;
}

#main-footer .right .circle-nxt:hover .icon, #main-footer .right .circle-nxt:hover .icon-m,
#main-footer .right .circle-nxt:active .icon, #main-footer .right .circle-nxt:active .icon {
  fill: #ff5ed2;
}

#content {
  flex: 1;
  position: relative;
}

#content .content__item:not(:first-child) { display: none; }

#home-content {
  text-align: center;
  padding-top: 100px;
}

#home-content img {
  max-width: 100%;
}

.form-box {
  max-width: 525px;
  text-align: center;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  position: relative;
}

.form-box .title {
  font-size: 12px;
  font-weight: 300;
  color: #3ae8f8;
  text-transform: uppercase;
  margin: 15px 0 40px;
}

.form-box .form-fields {
  margin-bottom: 10px;
}

.form-box input[type="text"], .form-box input[type="password"], .form-box input[type="email"] {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  height: 44px;
  border: 1px solid rgb(43, 49, 49);
  border-radius: none;
  padding: 1em;
  outline: none;
  box-sizing: border-box;
  color: #fff;
}

.form-box .form-fields button {
  display: block;
  width: 100%;
  height: 50px;
  background-color: #e600b4;
  border: none;
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.6);
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  outline: none;
  cursor: pointer;
  transition: .3s ease-in-out;
}

.form-box .form-fields button:hover,
.form-box .form-fields button:focus {
  background-color: #c720a3;
}

.form-box .pw-option {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  color: #fff;
  font-size: 12px;
  margin-bottom: 10px;
  line-height: 1;
}

.form-box .pw-option > span {
  display: flex;
  align-items: center;
}

.form-box .pw-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

#content .form-box p {
  font-size: 12px;
  color: #fff;
  padding: 10px 0;
}

.form-box p > a {
  color: #3be8f8;
  text-decoration: none;
  border-bottom: 1px solid #3be8f8;
}

.form-box input:focus {
  border-color: #3be8f8;
}

.box_content {
  background-color: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  height: 40%;
    border-radius: 8px;
  /* height: 100%; */
  overflow: auto;

}

/*********************Footer css***************************/

.footer-class .container{
  max-width: 1750px;
}
.ftrinnr{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-class .right{
  display: flex;
    align-items: center;
    position: relative;
}
.footer-class .right .step-indicator {
    font-size: 11px;
    color: #3be8f8;
    text-transform: uppercase;
}
.footer-class .right .step-indicator .step-lines span.active {
    height: 3px;
    background-color: #ff5ed2;
}
.footer-class .right .step-indicator .step-lines span {
    display: inline-block;
    height: 2px;
    width: 30px;
    background-color: #435363;
    margin: 2px;
    cursor: pointer;
}
.footer-class .right .circle-nxt {
    margin-left: 15px;
    display: block;
}
.footer-class .right .circle-nxt svg {
    width: 50px;
    height: 50px;
}

.footer-class .right .circle-nxt .icon {
  fill: rgb(65, 217, 239);
}
.footer-classr .right .circle-nxt:hover .icon, .footer-class .right .circle-nxt:hover .icon-m,
.footer-class .right .circle-nxt:active .icon, .footer-class .right .circle-nxt:active .icon {
  fill: #ff5ed2;
}
.footer-class .right .circle-nxt .icon-m {
  display: none;
}
.footerList li a {
    color: #8fc2f5;
    font-size: 12px;
    text-decoration: none;
    padding: 0 5px;
    transition: all 0.2s linear;
}
.footerList li a:hover{
  text-decoration: underline;
}
.disclaimer p {
    font-size: 11px;
    font-weight: 400;
    color: #8fc2f5;
    margin-bottom: 0;
}
.footerList li a {
    color: #8fc2f5;
    font-size: 12px;
    text-decoration: none;
    padding: 0 5px;
    transition: all 0.2s linear;
}
.footerList li a:hover{
  text-decoration: underline;
}
/*********************Footer css***************************/

@media screen and (max-width: 1024px){
  .box_content{ width: 100%;}
}

#about-content .welcome-n-services-wrapper {
  display: flex;
  margin-bottom: 20px;
}

#about-content .welcome-n-services-wrapper .welcome-text {
  margin-right: 35px;
  flex: 1;
}

.box_content h1 {
  font-size: 23px;
  margin: 0;
  line-height: 1;
  font-weight: 300;
}

.box_content h1 span {
  display: block;
  font-size: 61px;
  font-weight: 900;
  text-transform: uppercase;
}

.box_content p {
  font-weight: 300;
  margin-top: 0;
  font-size: 20px;
  color: #9fa5b3;
}

.box_content .tagline {
  margin: 0 0 30px;
  font-size: 28px;
  color: #fff;
}

#about-content .welcome-n-services-wrapper .services {
  margin-left: 35px;
  flex: 1;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

#about-content .services .service-title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

#about-content .services .service-title .s-img {
  /* width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: #2e3442; */
  margin-right: 15px;
}

#about-content .services .service-title .s-name {
  flex: 1;
  font-size: 24px;
  font-weight: 900;
}

#about-content .services .service-desc p {
  font-size: 14px;
  color: #9fa5b3;
  max-resolution: top 375px;: 0;
}

#about-content .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

#about-content .cards .card-item {
  background-color: #2e3442;
  /* max-height: 200px;
  overflow: hidden; */
}

#about-content .cards .card-item img {
  width: 100%;
}


/* Custom Scrollbars */
/* width */
::-webkit-scrollbar {
  width: 9px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(255,255,255, 0.1);
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  border: 3px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  background-color: #9686ae;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #72618e; 
}


.fw-element img { 
  width: 100%;
  height: auto;
}

#bg-canvas { 
  height: 100%; 
  width: 100%;
  background: #00031f url('../images/main-bg.webp') center no-repeat; 
  background-size: cover; 
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  overflow: hidden;
}
.no-webp #bg-canvas { background-image: url('../images/main-bg.jpg'); }

.smoke {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/smoke.webp') 0 50%/auto 100%;
  animation: smoke 30s infinite;
}
.no-webp .smoke {
  background-image: url('../images/smoke.png');
}

@keyframes smoke {
  from {
    background-position: 0 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

.desktop-canvas {
  display: flex;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: ease opacity 1s;
}

.desktop-canvas.loaded {
  opacity: 1;
}

.desktop-canvas .city {
  align-self: flex-end;
  width: 100%;
  position: relative;
}

#spaceship {
  position: absolute;
  width: 100%;
  animation-name: spaceship;
  animation-duration: 15s;
  animation-fill-mode: forwards;  
  animation-iteration-count: infinite;
}

@keyframes spaceship {
  0% {
    bottom: 0;
    left: -50%;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    bottom: 150%;
    left: 50%;
  }
  100% {
    bottom: 150%;
    left: 50%;
  }
}

#planet {
  position: absolute;
  width: 100%;
  animation-name: planet;
  animation-duration: 30s;
  animation-iteration-count: infinite;
}

@keyframes planet {
  0% {
    top: 100%;
    right: 0;
  }
  50% {
    top: 0;
    right: 50%;
  }
  100% {
    top: 100%;
    right: 100%;
  }
}

#car-1 {
  position: absolute;
  width: 100%;
  animation-name: car1;
  animation-duration: 80s;
  animation-iteration-count: infinite;
}

@keyframes car1 {
  0% {
    bottom: 0;
    right: -5%;
  }
  100% {
    right: 100%;
  }
}

#car-2 {
  position: absolute;
  width: 100%;
  animation-name: car2;
  animation-duration: 80s;
  animation-iteration-count: infinite;
}

@keyframes car2 {
  0% {
    bottom: 0;
    right: -5%;
  }
  100% {
    right: 100%;
  }
}

#car-3 {
  position: absolute;
  width: 100%;
  animation-name: car3;
  animation-duration: 40s;
  animation-iteration-count: infinite;
}

@keyframes car3 {
  0% {
    bottom: 20%;
    left: 0;
  }
  20% {
    bottom: -10%;
  }
  100% {
    bottom: -10%;
    left: 110%;
  }
}

#car-4 {
  position: absolute;
  width: 100%;
  animation-name: car4;
  animation-duration: 100s;
  animation-iteration-count: infinite;
}

@keyframes car4 {
  0% {
    bottom: 0;
    left: 0;
  }
  100% {
    bottom: 0;
    left: 110%;
  }
}

#car-5 {
  position: absolute;
  width: 100%;
  animation-name: car5;
  animation-duration: 80s;
  animation-iteration-count: infinite;
}

@keyframes car5 {
  0% {
    bottom: 0;
    right: -5%;
  }
  100% {
    right: 100%;
  }
}

#car-6 {
  position: absolute;
  width: 100%;
  animation-name: car6;
  animation-duration: 40s;
  animation-iteration-count: infinite;
}

@keyframes car6 {
  0% {
    bottom: 0;
    right: -5%;
  }
  30% {
    right: 0;
  }
  100% {
    right: 100%;
  }
}

#building-back {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

#building {
  position: relative;
}

/* Elements */

#train {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  animation-name: train;
  animation-duration: 40s;
  animation-iteration-count: infinite;
}

@keyframes train {
  0% {
    left: 0;
  }
  40% {
    left: calc(100% - 350px);
  }
  50% {
    left: calc(100% - 350px);
  }
  60% {
    left: 0;
  }
  100% {
    left: 0;
  }
}

/* Stars */
.space {
  position: absolute;
  width: 400vw;
  height: 400vh;
  top: 50%;
  left: 50%;
  margin-top: -200vh;
  margin-left: -200vw;
  -webkit-animation: spin 240s linear infinite;
          animation: spin 240s linear infinite;
  background-size: 240px;
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
  /* Had to base64 SVG background for FF compatibility */
  background-image: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJMYXllcl8yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDI0MCAyNDAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDI0MCAyNDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxyZWN0IHg9IjEwNiIgeT0iOTAiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSIyIiBoZWlnaHQ9IjIiLz48cmVjdCB4PSI3NCIgeT0iNjMiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiLz48cmVjdCB4PSIyMyIgeT0iNjYiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiLz48cmVjdCB4PSI1MCIgeT0iMTEwIiBmaWxsPSIjRkZGRkZGIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIi8+PHJlY3QgeD0iNjMiIHk9IjEyOCIgZmlsbD0iI0ZGRkZGRiIgd2lkdGg9IjEiIGhlaWdodD0iMSIvPjxyZWN0IHg9IjQ1IiB5PSIxNDkiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiLz48cmVjdCB4PSI5MiIgeT0iMTUxIiBmaWxsPSIjRkZGRkZGIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIi8+PHJlY3QgeD0iNTgiIHk9IjgiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiLz48cmVjdCB4PSIxNDciIHk9IjMzIiBmaWxsPSIjRkZGRkZGIiB3aWR0aD0iMiIgaGVpZ2h0PSIyIi8+PHJlY3QgeD0iOTEiIHk9IjQzIiBmaWxsPSIjRkZGRkZGIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIi8+PHJlY3QgeD0iMTY5IiB5PSIyOSIgZmlsbD0iI0ZGRkZGRiIgd2lkdGg9IjEiIGhlaWdodD0iMSIvPjxyZWN0IHg9IjE4MiIgeT0iMTkiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiLz48cmVjdCB4PSIxNjEiIHk9IjU5IiBmaWxsPSIjRkZGRkZGIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIi8+PHJlY3QgeD0iMTM4IiB5PSI5NSIgZmlsbD0iI0ZGRkZGRiIgd2lkdGg9IjEiIGhlaWdodD0iMSIvPjxyZWN0IHg9IjE5OSIgeT0iNzEiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSIzIiBoZWlnaHQ9IjMiLz48cmVjdCB4PSIyMTMiIHk9IjE1MyIgZmlsbD0iI0ZGRkZGRiIgd2lkdGg9IjIiIGhlaWdodD0iMiIvPjxyZWN0IHg9IjEyOCIgeT0iMTYzIiBmaWxsPSIjRkZGRkZGIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIi8+PHJlY3QgeD0iMjA1IiB5PSIxNzQiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiLz48cmVjdCB4PSIxNTIiIHk9IjIwMCIgZmlsbD0iI0ZGRkZGRiIgd2lkdGg9IjEiIGhlaWdodD0iMSIvPjxyZWN0IHg9IjUyIiB5PSIyMTEiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSIyIiBoZWlnaHQ9IjIiLz48cmVjdCB5PSIxOTEiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiLz48cmVjdCB4PSIxMTAiIHk9IjE4NCIgZmlsbD0iI0ZGRkZGRiIgd2lkdGg9IjEiIGhlaWdodD0iMSIvPjwvc3ZnPg==);
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* Rain */
.main-rain { 
  display: block; 
  width: 100%; 
  height: 100%; 
  position: absolute; 
  top: 0; 
  left: 0; 
}

.rain {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.rain.back-row {
  display: none;
  z-index: 1;
  bottom: 60px;
  opacity: 0.5;
}

div.back-row-toggle .rain.back-row {
  display: block;
}

.drop {
  position: absolute;
  bottom: 100%;
  width: 15px;
  height: 120px;
  pointer-events: none;
  animation: drop 0.5s linear infinite;
}

@keyframes drop {
  0% {
    transform: translateY(0vh);
  }
  75% {
    transform: translateY(90vh);
  }
  100% {
    transform: translateY(90vh);
  }
}

.stem {
  width: 1px;
  height: 60%;
  margin-left: 7px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.25));
  animation: stem 0.5s linear infinite;
}

@keyframes stem {
  0% {
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.splat {
  width: 15px;
  height: 10px;
  border-top: 2px dotted rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 1;
  transform: scale(0);
  animation: splat 0.5s linear infinite;
  display: none;
}

div.splat-toggle .splat {
  display: block;
}

@keyframes splat {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  80% {
    opacity: 1;
    transform: scale(0);
  }
  90% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

.toggles {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.toggle {
  position: absolute;
  left: 20px;
  width: 50px;
  height: 50px;
  line-height: 51px;
  box-sizing: border-box;
  text-align: center;
  font-family: sans-serif;
  font-size: 10px;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.2);
  color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.toggle:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.toggle:active {
  background-color: rgba(255, 255, 255, 0.3);
}

.toggle.active {
  background-color: rgba(255, 255, 255, 0.4);
}

.splat-toggle {
  top: 20px;
}

.back-row-toggle {
  top: 90px;
  line-height: 12px;
  padding-top: 14px;
}

.single-toggle {
  top: 160px;
}

div.single-toggle .drop {
  display: none;
}

div.single-toggle .drop:nth-child(10) {
  display: block;
}

@media (max-width: 991px) {

  #home-content {
    padding: 50px;
  }

  #home-content img {
    width: 350px;
  }

  .box_content h1 {
    font-size: 20px;
  }

  .box_content h1 span {
    font-size: 42px;
  }

  .box_content .tagline {
    font-size: 24px;
  }

  .box_content p {
    font-size: 16px;
  }

  #about-content .services .service-title .s-name {
    font-size: 18px;
    line-height: 1.2;
  }

  #about-content .services .service-title .s-img {
    width: 55px;
    height: 55px;
  }
  

}

@media (max-width: 991px) {

  #about-content .welcome-n-services-wrapper {
    flex-direction: column;
  }

  #about-content .welcome-n-services-wrapper .welcome-text {
    margin-right: 0;
  }

  #about-content .welcome-n-services-wrapper .services {
    margin-left: 0;
  }

}

@media (max-width: 767px) {
  .red-bar{display: none;}

  #home-content img {
    width: 290px;
  }

  .box_content {
    padding: 30px 15px;
  }

  #about-content .cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  ::-webkit-scrollbar {
    width: 6px;
  }

  ::-webkit-scrollbar-thumb {
    border: 2px solid rgba(0, 0, 0, 0);
  }
  #main-header .nav-links a{padding: 3px 25px;}
  .disclaimer {
    text-align: center;
}
.disclaimer p {
    font-size: 12px !important;
    color: #fff;
}
  
}

@media screen and (max-width: 576px){
  .ftrinnr{
    flex-direction: column-reverse;
    justify-content: center;
  }
  .footer-class .right .circle-nxt svg {
      width: 26px;
      height: 31px;
  }
  .footer-class .right .circle-nxt .bg, .footer-class .right .circle-nxt .icon {
      display: none;
  }
  .footer-class .right .circle-nxt .icon-m {
      display: inline;
  }
  .footer-class .right .circle-nxt {
      position: absolute;
      top: -8px;
      right: 0;
  }
  .footer-class .right .step-indicator {
      margin-right: 25px;
      text-align: center;
  }
  .disclaimer p{
    display: block!important;
    margin-bottom: 15px;
  }
  .disclaimer p br{
    display: none;
  }
}


@media (max-width: 575px) {


  #main-header {
    height: 70px;
  }


  .box_content h1 {
    font-size: 18px;
    line-height: 1.1;
  }

  .box_content h1 span  {
    font-size: 32px;
  }

  .box_content .tagline {
    font-size: 22px;
  }

  .form-box {

    padding: 50px 15px;
    
  }

  .form-box .title{
    margin: 0 0 15px;
  }

  .form-box .pw-option {
    padding: 10px 0;
  }

  .form-box .pw-option input[type="checkbox"] {
    width: 15px;
    height: 15px;
  }

  .form-box input[type="text"], input[type="password"] {
    height: 40px;
  }

  .form-box .form-fields button {
    height: 44px;
  }

  .form-box p {
    padding: 0;
  }

  #about-content .welcome-n-services-wrapper .services {
    grid-template-columns: 1fr;
  }

  #about-content .services .service-title .s-img {
    width: 75px;
    height: 75px;
  }

  #about-content .services .service-title .s-name {
    font-size: 20px;
  }

  #main-footer {
    flex-direction: column-reverse;
    padding-top: 20px;
  }

  #main-footer .left {
    text-align: center;
  }

  #main-footer .right {
    justify-content: center;
  }

  #main-footer .left .copyright {
    font-size: 12px;
    margin: 5px 0 20px;
  }

  #main-footer .left .copyright br {
    display: none;
  }

  #main-footer .right .step-indicator {
    margin-right: 25px;
    text-align: center;
  }

  #main-footer .right .circle-nxt {
    position: absolute;
    top: -8px;
    right: 0;
  }

  #main-footer .right .circle-nxt svg {
    width: 26px;
    height: 31px;
  }

  #main-footer .right .circle-nxt .bg,
  #main-footer .right .circle-nxt .icon {
    display: none;
  }

  #main-footer .right .circle-nxt .icon-m {
    display: inline;
  }
}



@media (max-width: 768px) {
  .desktop-canvas {
    display: none;
  }
  .mobile-canvas {
    display: flex;
    width: 100%;
    height: 100vh;
    transition: ease opacity 1s;
  }
  
  .mobile-canvas.loaded {
    opacity: 1;
  }
  
  .mobile-canvas .city {
    align-self: flex-end;
    width: 100%;
    position: relative;
  }
  #building-back-m {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  
  #building-m {
    position: relative;
  }
  /* Elements */

  #train-m {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    animation-name: train-m;
    animation-duration: 20s;
    animation-iteration-count: infinite;
  }

  @keyframes train-m {
    0% {
      left: 0;
    }
    40% {
      left: calc(100% - 170px);
    }
    50% {
      left: calc(100% - 170px);
    }
    60% {
      left: 0;
    }
    100% {
      left: 0;
    }
  }

  #planet-m {
    position: absolute;
    width: 100%;
    animation-name: planet-m;
    animation-duration: 30s;
    animation-iteration-count: infinite;
  }
  
  @keyframes planet-m {
    0% {
      top: 50%;
      right: 0;
    }
    50% {
      top: -80%;
      right: 50%;
    }
    100% {
      top: 50%;
      right: 100%;
    }
  }
  #car-1-m {
    position: absolute;
    width: 100%;
    animation-name: car1-m;
    animation-duration: 80s;
    animation-iteration-count: infinite;
  }
  
  @keyframes car1-m {
    0% {
      bottom: 0;
      right: -5%;
    }
    100% {
      right: 100%;
    }
  }
  
  #car-2-m {
    position: absolute;
    width: 100%;
    animation-name: car2-m;
    animation-duration: 80s;
    animation-iteration-count: infinite;
  }
  
  @keyframes car2-m {
    0% {
      bottom: 0;
      right: -5%;
    }
    100% {
      right: 100%;
    }
  }
  
  #car-3-m {
    position: absolute;
    width: 100%;
    animation-name: car3-m;
    animation-duration: 30s;
    animation-iteration-count: infinite;
  }
  
  @keyframes car3-m {
    0% {
      bottom: 0;
      left: 0;
    }
    100% {
      bottom: 0;
      left: -110%;
    }
  }
  
  #car-4-m {
    position: absolute;
    width: 100%;
    animation-name: car4-m;
    animation-duration: 40s;
    animation-iteration-count: infinite;
  }
  
  @keyframes car4-m {
    0% {
      bottom: 20%;
      left: 0;
    }
    20% {
      bottom: -10%;
    }
    100% {
      bottom: -10%;
      left: 110%;
    }
  }

  #spaceship-m {
    position: absolute;
    width: 100%;
    animation-name: spaceship-m;
    animation-duration: 15s;
    animation-fill-mode: forwards;  
    animation-iteration-count: infinite;
  }
  
  @keyframes spaceship-m {
    0% {
      bottom: 0;
      left: -50%;
      opacity: 0;
    }
    12% {
      opacity: 1;
    }
    25% {
      opacity: 0;
    }
    50% {
      bottom: 150%;
      left: 50%;
    }
    100% {
      bottom: 10%;
      left: 50%;
    }
  }

}

.footerModal .modal-body{
    height: 550px;
    overflow-x: scroll;
 }
 @media screen and (max-width: 767px){
    .footerModal .modal-body{
       height: 400px;
    }
    .footerModal .modal-title{
      font-size: 25px;
    }
 }