/***** Body Start ****/
* {
  text-wrap: pretty;
}

.glass-bg {
  background: radial-gradient(circle farthest-corner at center center, #bfbfd9b0 0%, #66789296 100%);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
}
.border-rad-10 {
  border-radius: 10px;
}
.title-torq {
  color: #00D0E0;
}

.border-change {
  background: #3c3c3c69;
  transition: all 0.25s ease-in-out;
  color: #24e0e9 !important;
}
.light .border-change {
  background: #162139;
  transition: all 0.25s 
ease-in-out;
  color: #fff !important;
}

.sandwich {
  position: relative;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #1a2c2f ;
  transition: all 0.25s ease-in-out;
}
.dark .sandwich {
  color: white;
}
.sandwich:before, .sandwich:after {
  width: 220px;
  height: 1px;
  border-top: 4px double #0b6ffd;
  content: "";
  display: block;
  margin: 20px auto;
}

.dark-white {
  color: #fff!important;
  transition: all 0.25s ease-in-out;
}
.light .dark-white {
  color: #222220!important;
  transition: all 0.25s ease-in-out;
}
.pt-3 {
  padding-bottom: 1.25rem;
}
.custom-cursor {
    position: fixed;
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: difference;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #00BCD4;
    transition: transform 350ms ease;
    transform: translate(-50%, -50%) scale(0.3);
    z-index: 1000;
  }
  

.custom-cursor--link {
  transform: translate(-50%, -50%) scale(1.25);
}

a {
    transition: all 0.25s ease-in-out;
  }
  
  .white, a.white {
    color: #efefef;
  }
  
  .black {
    color: #212121;
  }
  
  .pearl, a.pearl {
    color: #fff;
  }
  
  .green, a.green {
    color: #00BCD4;
  }
  
  .pink {
    color: #b73b3b;
  }
  
  .blend {
    mix-blend-mode: difference !important;
    color: #efefef;
    position: relative;
    z-index: 2;
  }
  
  .bg-black {
    background-color: #212121;
  }
  
  .bg-link {
    background-color: #101827;
    transition: all 0.3s ease-in;
  }
  .light .bg-link {
    background-color: #06224f;
    transition: all 0.3s ease-in;
  }

  .title-blend {
    overflow: hidden;
    color: #fff;
    mix-blend-mode: difference;
  }
  .light .title-blend { 
    color: #395983;
  }
  
/***** Body End ******/

/***** Nav Start *****/
.bg-topographic {
    /* background-image: url(https://assets.codepen.io/319606/bg-topographic.svg);
    background-size: 5000px; */
    opacity: 0.1;
    pointer-events: none;
    background-image: url(../img/nav-bg-0.png);
    background-size: cover;
}




  .sticky-nav {
    top: 20px;
    left: 20px;
    position: fixed;
    width: calc(100% - 40px);
    z-index: 999;
  }
  .sticky-nav.difference {
    background-repeat: no-repeat;
    background-size: contain;
    /* mix-blend-mode: difference; */
  }
  .sticky-nav.difference #nav-btn {
    filter: invert(0);
  }
  .sticky-nav #logo {
   
    z-index: 998;
  }
  .sticky-nav #logo .navbar-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(210 226 255 / 65%);
    padding: 0 10px;
    border-radius: 10px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease-in;
    box-shadow: rgba(31, 38, 135, 0.37) 0px 8px 32px 0px;
  }
  .dark .sticky-nav #logo .navbar-brand  {
    background: #0827557a;
    transition: all 0.3s ease-in;
  }
  .sticky-nav #nav-btn {
    width: 60px;
    z-index: 999;
  }
  .sticky-nav #nav-btn .icon {
    position: relative;
    width: 100%;
    height: 100%;
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #fff;
  }
  
  #takeover-nav {
    position: fixed;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    left: 0;
    top: -200%;
    transition: all 0.5s ease-in-out;
    z-index: 996;
  }
  #takeover-nav.shown {
    top: 0;
  }
  #takeover-nav .nav-col {
    min-height: 100vh;
    
  }
  #takeover-nav .nav-col.nav-contact {
    /* padding-left: 0 !important; */
    overflow: hidden;
    background-image: linear-gradient(to right, rgb(55, 65, 81), rgb(17, 24, 39), rgb(0, 0, 0));
    transition: all 0.3s ease-in;
  }
  .light #takeover-nav .nav-col.nav-contact {
    background-image: linear-gradient(to right, rgb(27 68 143), rgb(52 92 156), rgb(78 128 206));
    transition: all 0.3s ease-in;
  }

  #takeover-nav .nav-col a {
    color: #efefef;
  }
  #takeover-nav .nav-col a:hover {
    color: #69a3ff;
  }
  #takeover-nav .nav-contact .content {
    max-width: 700px;
  }
  #takeover-nav .nav-items {
    font-size: 2.5em;
    font-weight: 700;
  }
  #takeover-nav .contact-items {
    font-size: 1.25em;
    font-weight: 700;
  }
  #takeover-nav .contact-items a:hover {
    color: #00BCD4;
  }
  #takeover-nav .social {
    font-size: 0.75em;
  }
  #takeover-nav .social a {
    color: #00D0E0;
  }
  #takeover-nav .social a:hover {
    color: #efefef;
  }
  
  .gradient-overlay {
    bottom: 0;
    height: 50%;
    background: -moz-linear-gradient(top, rgba(33, 33, 33, 0) 0%, #212121 50%);
    background: -webkit-linear-gradient(top, rgba(33, 33, 33, 0) 0%, #212121 50%);
    background: linear-gradient(to bottom, rgba(33, 33, 33, 0) 0%, #212121 50%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00212121", endColorstr="#212121",GradientType=0 );
    z-index: 1;
    border-bottom-right-radius: 15vw;
    pointer-events: none;
  }

  #takeover-nav .nav-menu {
    padding-left: 0 !important;
    overflow: hidden;
  }

  #takeover-nav .nav-menu .nav-items li a {
    padding: 14px 20px;
    padding-left: 75px;
    display: block;
    margin-top: 0px;
    position: relative;
    font-weight: 600;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
    -webkit-transition: 0.5s all;
    font-size: 24px;
  }
  #takeover-nav .nav-menu .nav-items li.active a {
    color: #69a3ff;
  }
  #takeover-nav .nav-menu .nav-items li a:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    height: 1px;
    background: #ccc;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }
  #takeover-nav .nav-menu .nav-items li a:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }

  #takeover-nav .nav-menu .nav-items li.service-li a {
    padding-left: 105px;
  }
  #takeover-nav .nav-menu .nav-items li.service-li a:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 80px;
    height: 1px;
    background: #ccc;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }
  #takeover-nav .nav-menu .nav-items li.service-li a:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 80px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }

  #takeover-nav .nav-menu .nav-items li a:hover {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  #takeover-nav .contact-items p {
    color: #efefef;
    line-height: 18px;
    font-size: 18px;
    font-weight: 700;
  }
  #takeover-nav .contact-items a {
    color: #efefef;
    line-height: 18px;
    font-size: 18px;
    font-weight: 700;
  }

  @media screen and (max-width: 767px) {
    #takeover-nav .nav-menu {
      min-height: 600px;
    }
    #takeover-nav .nav-menu a {
      color: #fff;
    }
    #takeover-nav .nav-menu a:hover {
      color: #efefef;
    }
    #takeover-nav .nav-contact {
      min-height: 600px;
    }
    #takeover-nav .nav-contact .nav-title {
      font-size: 2.5em;
    }
  }
  @media screen and (max-width: 575px) {
    header .swoosh {
      width: 165px;
      height: 35px;
      top: 10px;
    }
    header .sticky-nav {
      top: 10px;
    }
    header .sticky-nav .logo {
      width: 150px;
      height: 35px;
    }
    header .sticky-nav #nav-btn {
      /* width: 40px; */
      margin-right: 0;
    }
    header #takeover-nav .contact-items {
      font-size: 1em;
    }
    .dark .sticky-nav #logo .navbar-brand {
      background: #0000007a;
    }
  
  }

/** SWITCH Dark-light mode start **/
.d-none {
  display: none;
}
.os-theme-change {
  display: flex;
  justify-content: center;
  align-items: center;
}

.switch {
  display: block;
  cursor: pointer;
  user-select: none;
  margin-right: 0.5rem;
  box-sizing: border-box;
    height:50px;
    width: 50px;
    color: white;
    margin-left: 5px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: rgb(255 255 255 / 40%);
  box-shadow: 0 0 10px 1px rgb(0 0 0 / 25%);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease-in;
  z-index: 99;
  position: fixed;
  top: 20px;
  right: 110px;
}
.switch:before {
  background: #e7e7e7 none repeat scroll 0 0;
    content: "";
    height: 30px;
    left: -5px;
    margin-top: -15px;
    position: absolute;
    top: 50%;
    width: 1px;
    opacity: 0;
}
.switch:hover,
.switch:focus {
  background-color: rgb(255 255 255 / 75%);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
}
.switch:hover span,
.switch:focus span {
  color: black;
}

.bx {
  font-family: boxicons !important;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  display: flex;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.bx-sun:before {
  content: "\ec34";
}
.bx-moon:before {
  content: "\eb94";
}

.switch-light, .switch-dark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in;
  display: flex;
}
.switch-light {
  font-size: 28px;
  visibility: visible;
  color: var(--black-300);
}
.light .switch-light {
  color: #080d30;
}
.dark .switch-light {
  font-size: 0rem;
  visibility: hidden;
}
.switch-dark {
  font-size: 0rem;
  visibility: hidden;
  color: var(--white-100);
}
.dark .switch-dark {
  font-size: 28px;
  visibility: visible;
}

.dark .switch-dark .bx-moon {
  box-shadow: inset -44px -3px 14px 13px rgb(105 106 117 / 50%);
  border-radius: 50%;
}
.dark header .header_toggle i.bx-menu:before {
  box-shadow: inset -44px -3px 14px 13px rgb(105 106 117 / 50%);
  border-radius: 50%;
}
/*----*/
@keyframes rotation {
0% {
  transform: rotate(0deg);
}
100% {
  transform: rotate(360deg);
}
}
.switch:hover i {
  animation: rotation 1.5s linear forwards infinite;
}

.fixing .switch {
  top: unset;
  bottom: 80px;
}

@media  only screen and (max-width: 575px) {
  .switch {
    top: 10px;
    right: 90px;
  }
  .sticky-nav #logo {
    width: 120px;
  }
  .sticky-nav #logo .navbar-brand {
    height: 50px;
  }
  .sticky-nav #logo .navbar-brand img {
    width: 100%;
  }
  header:before {
    content: '';
    height: 74px;
    width: 100%;
    background: #00000026;
    z-index: 997;
    position: fixed;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    top: 0;
  }
  .dark header:before {
    background: #6186bf57;
  }
}

/** SWITCH Dark-Light mode end **/


/*Menu icon start*/
.menu.box {
    cursor: pointer;
    display: flex;
    /* position: fixed; */
    position: relative;
    margin-right: 15px;
    /* top: 20px; */
    height: 50px;
    width: 50px;
    /* z-index: 1111; */
    z-index: 99998;
  }


  /* Toggle Menu Icon */

  .menu.box {
    background-color: #245bc4b3;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgb(255 255 255 / 40%);
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 25%);
    backdrop-filter: blur(6px);
    transition: all 0.3s 
ease-in;
  }
  .light .menu.box {
    background: #6982a896;
    transition: all 0.3s 
ease-in;
  }
  .menu.box.toggle {
    background: #0a5de096;
    border-radius: 5px;
}
  .menu.box.toggle:hover,
  .menu.box.toggle:focus {
    background: #656565b3;
    border-radius: 5px;
  }


/*Menu icon end*/  

/***** Nav End *******/

/***** Other Start ***/

/** Btn */
.btn.btn-custom {
  position: relative;
  height: 50px;
  margin: 5px;
  width: 100%;
  min-width: 230px;
  max-width: 270px;
}
.btn.btn-custom a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255,255,255,0.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  border-top: 1px solid #0a5de0;
  border-radius: 30px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
  text-decoration: none;
  overflow: hidden;
  transition: 0.5s;
  backdrop-filter: blur(30px);
  margin: 0 auto !important;
  padding: 0 !important;
}
.btn.btn-custom.mode-toggle a {
  background: rgb(0 0 0 / 35%);
}
.btn.btn-custom:hover a{
  letter-spacing: 3px;
}
.btn.btn-custom a:focus {
  letter-spacing: 3px;
}
.btn.btn-custom a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(255,255,255,0.15), transparent);
  transform: skewX(45deg) translateX(0);
  transition: all 0.3s ease-in;
}
.light .btn.btn-custom a::before {
  background: linear-gradient(to left, rgb(0 0 0 / 15%), transparent);
  transition: all 0.3s ease-in;
}
.btn.btn-custom:hover a::before,
.btn.btn-custom a:focus::before {
  transform: skewX(45deg) translateX(200%);
}
.btn.btn-custom::before{
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 30px;
  height: 10px;
  background: #0a5de0;
  border-radius: 10px;
  transition: 0.5s;
  transition-delay: 0s;
}
.btn.btn-custom:hover::before,
.btn.btn-custom:focus-within::before {
  bottom: 0;
  height: 50%;
  width: 85%;
  border-radius: 30px;
  transition: 0.5s;
}
.btn.btn-custom::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -5px;
  width: 30px;
  height: 10px;
  background: #0a5de0;
  border-radius: 10px;
  transition: 0.5s;
  transition-delay: 0s; 
  /* z-index: -1; */
}
.btn.btn-custom:hover::after,
.btn.btn-custom:focus-within::after {
  bottom: 0;
  top: 5px;
  height: 50%;
  width: 85%;
  border-radius: 30px;
  transition: 0.5s;
}
.btn.btn-custom::before,
.btn.btn-custom::after{
  background: #0a5de0;
  box-shadow: 0 0 5px #0a5de0, 0 0 15px #0a5de0, 0 0 30px #0a5de0, 0 0 60px #0a5de0;
}
.dark .mode-toggle.btn.btn-custom::before ,
.dark .mode-toggle.btn.btn-custom::after {
  background: #ffffff;
  box-shadow: 0 0 5px #6e7d97, 0 0 15px #6e7d97, 0 0 30px #6e7d97, 0 0 60px #6e7d97;
}
.letter span.fal:before {
  margin-right: 5px;
}
.sc-button.wallet span {
  display: block;
  z-index: 2;
}

.btn.btn-custom.style-small {
  width: auto;
  min-width: 0;
  max-width: unset;
  flex: 1 1 auto;
  left: unset;
  position: relative;
  display: flex;
  justify-content: normal;
  align-items: unset;
  flex-wrap: wrap;
  max-width: 250px;
}
.btn.btn-custom.style-small a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.btn.btn-custom.style-small span.fal {
  padding-left: 0;
}

.btn.btn-custom.style-small.style-small-2 {
  max-width: 300px;
}
.btn.btn-custom.style-small.style-small-2 span::before {
  margin-right: 5px;
}

/*Vid start*/
.bg-overlay-1 {
  height: 100%!important;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  overflow: hidden;
  z-index: 0;
}
video#video-bg {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;

  /* mask-mode: match-source;
  mask-image: linear-gradient(to right, transparent 0%, #fff 20%, #fff 80%, transparent 100%), linear-gradient(to bottom, transparent 0%, #fff 10%), radial-gradient(80.35% 93.4% at 50% 0%, #000 80%, #0000 100%);
  -webkit-mask-composite: source-in;
  mask-composite: subtract; */
}
.bg-overlay-1:before {
  position: absolute;
  content: "";
  display: block;
  /* background: #00000066; */
  background: #00000096;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-image: url('../img/patrn-00.png');
    width: 100%;
}
.light .bg-overlay-1:before {
  /* background: #080d305c; */
  background: #434a7a9c;
  background-image: url('../img/patrn-00.png');
  width: 100%;
}
/*Vid end */

.page-header--image {
  height: 100vh;
}
.bg-simple-color-00 {
  background-color: #000d1f;
  background-image: linear-gradient(to right, rgb(15, 23, 42), rgb(8 40 89), rgb(15, 23, 42));
  transition: all 0.3s ease-in;
}
.light .bg-simple-color-00 {
  background-color: #e6edf7;
  background-image: linear-gradient(to right, rgb(194 212 255), rgb(244 249 255), rgb(195 213 255));
  transition: all 0.3s ease-in;
}
.dark [class|="separator-element"] {
  border-top: 1px solid rgb(255 255 255 / 79%);
  transition: all 0.3s ease-in;
}
.light [class|="separator-element"] {
  border-top: 1px solid rgba(34, 34, 34, 0.2);
  transition: all 0.3s ease-in;
}

/** icon element start **/
.dark [class|="icon-element"][class*="-box"][class*="border"] [class|="text"] h6 {
  color: #ffffff;
}
.dark [class|="icon-element"][class*="-box"][class*="border"] [class|="text"] p {
  color: #ffffff;
}
.dark .icon-element--round--box--border a {
  color: #ffffff;
}

.dark [class|="icon-element"][class*="-box"]:hover {
  background-color: #35373a;
}
.dark [class|="icon-element"][class*="-round"] [class|="icon"], 
.dark [class|="icon-element"][class*="-square"] [class|="icon"] {
  background-color: #2660bc;

}
/** icon element end **/

/** img effect start **/
.about__img {
  box-shadow: 0 0 5px 1px white;
  border-radius: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.about__img:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  -webkit-animation: circuit 10s infinite linear;
  animation: circuit 10s infinite linear;

}
.light .about__img:after {
  background-color: #0a5de0;
}
.about__img img {
  border-radius: 50px;
  max-width: 100%;
  height: auto;
}
@keyframes circuit {
  0% {
    top: -10px;
    left: -10px;
  }
  25% {
    top: -10px;
    left: calc(100% - 10px);
  }
  50% {
    top: calc(100% - 10px);
    left: calc(100% - 10px);
  }
  75% {
    top: calc(100% - 10px);
    left: -10px;
  }
  100% {
    top: -10px;
    left: -10px;
  }
}
/** img effect end **/

.arrow--top {
  top: 0;
  left: -5em;
}

.arrow {
  z-index: 1;
  opacity: 0.15;
  position: absolute;
}

.arrow--bottom {
  bottom: 0;
  right: 3em;
}

.draw-in {
  stroke-dasharray: 1000;
  stroke-dashoffset: 10;
  -webkit-animation: draw 15s ease-in-out alternate infinite;
          animation: draw 15s ease-in-out alternate infinite;
}

@-webkit-keyframes draw {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes draw {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.item-to {
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  transform-origin: bottom;
}

.bounce-1 {
  -webkit-animation-name: bounce-1;
          animation-name: bounce-1;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

.bounce-2 {
  -webkit-animation-name: bounce-2;
          animation-name: bounce-2;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

.bounce-3 {
  -webkit-animation-name: bounce-3;
          animation-name: bounce-3;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

@-webkit-keyframes bounce-1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes bounce-1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes bounce-2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounce-2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes bounce-3 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounce-3 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes gradient-fade {
  from {
    transform: translate(10%, -10%) rotate(0deg);
  }
  to {
    transform: translate(50%, -50%) rotate(360deg);
  }
}
@keyframes gradient-fade {
  from {
    transform: translate(10%, -10%) rotate(0deg);
  }
  to {
    transform: translate(50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes gradient-fade-alt {
  from {
    transform: translate(-20%, 20%) rotate(0deg);
  }
  to {
    transform: translate(-60%, 60%) rotate(360deg);
  }
}
@keyframes gradient-fade-alt {
  from {
    transform: translate(-20%, 20%) rotate(0deg);
  }
  to {
    transform: translate(-60%, 60%) rotate(360deg);
  }
}

/** svg pic-1 **/
#circel_element_2 {
  -webkit-animation: spin 50s linear infinite;
  -moz-animation: spin 50s linear infinite;
  animation: spin 50s linear infinite;
  transform-origin: 50% 52.8%;
}
#circel_element_1 {
  -webkit-animation: reverse-spin 50s linear infinite;
  -moz-animation: reverse-spin 50s linear infinite;
  animation: reverse-spin 50s linear infinite;
  transform-origin: 50% 52.8%;
}
.path {
  animation: draw 10s infinite;
  animation-timing-function: linear;
}
.path-01 {
  animation-delay: 0s;
}
@-moz-keyframes draw {
  0% {
    stroke-dashoffset: 0;
    stroke-opacity: 1;
  }
  100% {
  }
}
@-webkit-keyframes draw {
  0% {
    stroke-dashoffset: 0;
    stroke-opacity: 1;
  }
  100% {
  }
}
@keyframes draw {
  0% {
    stroke-dashoffset: 0;
    stroke-opacity: 1;
  }
  100% {
  }
}
@-moz-keyframes reverse-spin {
  from {
    -moz-transform: rotate(360deg);
  }
  to {
    -moz-transform: rotate(0deg);
  }
}
@-webkit-keyframes reverse-spin {
  from {
    -webkit-transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes reverse-spin {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


.light .svg-animated.svg-00-a {
  filter: contrast(0.5) hue-rotate(45deg);
}
/** svg pic-1 end **/

.main:before, .main:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  opacity: 0.5;
}
.main:before {
  right: 0;
  bottom: 0;
  height: 30em;
  width: 30em;
  border-radius: 30em;
  background: linear-gradient(#141d38, #d7e3fe);
  align-self: flex-end;
  -webkit-animation: gradient-fade 8s ease-in-out 3s infinite alternate;
          animation: gradient-fade 8s ease-in-out 3s infinite alternate;
}
.main:after {
  top: 0;
  left: 30;
  height: 10em;
  width: 10em;
  border-radius: 10em;
  background: linear-gradient(#141d38, #d7e3fe);
  -webkit-animation: gradient-fade-alt 6s ease-in-out 3s infinite alternate;
          animation: gradient-fade-alt 6s ease-in-out 3s infinite alternate;
}

.cta-sec {
  background: black;
  position: relative;
  transition: all 0.3s ease-in;
  overflow: hidden;
}
.light .cta-sec {
  background: #7bacff;
  transition: all 0.3s ease-in;
}

@media only screen and (max-width: 767px) {
  .cta-sec .arrow {
    opacity: 0.05;
  }
}

/** Panel list start **/
 .panel__list {
  background: #fff;
  box-shadow: 0 6px 30px 0 rgba(0, 0, 0, .12);
  list-style: none;
  margin: 0;
  text-align: left;
  border-radius: 10px 10px 10px 10px;
  transition: all .3s 
ease;
}
.dark .panel__list {
  background: #142f5f;
}
.panel__list li {
  color: #4e4e4e;
  font-family: 'Roboto';
  font-size: 14px;
  border-bottom: 1px solid #ececec;
  position: relative;
  z-index: 1;
  padding: 28px;
}
.panel__list li {
  padding-left: 70px;
}
.dark .panel__list li {
  color: #ffffff;
}
.panel__list li .line {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 3px;
  height: 40px;
  background: linear-gradient(to bottom, #2775ff, #00d0e0);
  opacity: 0;
  transition: all .3s 
ease;
}
.panel__list li:nth-child(2n) {
  background: #f6f6f6;
  transition: all .3s 
ease;
}
.dark .panel__list li:nth-child(2n) {
  background: #00000099;
}
.panel__list li .icon {
  position: absolute;
    left: 15px;
    margin-bottom: 0;
    top: 50%;
    transform: translate(0, -50%);
  font-size: 36px;
  color: #2775ff;
  opacity: .5;
  transition: all .3s 
ease;
  width: auto !important;
  height: auto !important;
  line-height: normal !important;
  margin-left: 0 !important;
}
.panel__list li:after {
  content: '';
  position: absolute;
  top: -6px;
  left: -15px;
  right: -15px;
  bottom: -6px;
  background: #fff;
  box-shadow: 0 6px 30px 0 rgba(0, 0, 0, .12);
  opacity: 0;
  transition: all .3s 
ease;
  transform: scale(.95);
  z-index: -1;
}
.panel__list li:hover:after {
  transform: scale(1);
    opacity: 1;
}

.panel__list li:hover {
  z-index: 2;
}
.panel__list li:hover .line {
  opacity: 1;
  left: -15px;
  transition-delay: .1s;
}
.panel__list li:last-child {
  border-bottom: 0;
}
.panel__list li:hover .icon {
  opacity: 1;
}

.dark .panel__list li:hover:after {
  background: black;
}
/** Panel list end **/
/** Panel list 2 start **/
.list-inline-4 li {
  display: block;
  text-align: left;
  border: 1px solid #eee;
  border-radius: 50px;
  padding: .875em .875em .875em 3.4375em;
  position: relative;
  z-index: 1;
  background: #92929378;
  transition: all .4s 
ease;
    margin-bottom: 10px;
    margin-top: 10px;
}
.list-inline-4 li>.before {
  top: 50%;
  transform: translateY(-50%);
  left: 1.25em;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  transition: all .4s 
ease;
  background: #2775ff;
}
.list-inline-4 li p {
  font-size: 16px;
}
.dark .list-inline-4 li p {
  color: #fff;
}
.list-inline-4 li:hover>.before {
  background: 0 0;
  width: 14px;
  height: 14px;
}
.list-inline-4 li:hover {
  color: #fff;
  box-shadow: 0 5px 16px 0 rgba(165, 165, 165, .5);
}
.list-inline-4 li>.after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  background: linear-gradient(to right, #2775ff, #105b79);
  z-index: -1;
  transition: all .4s 
ease;
  opacity: 0;
}
.list-inline-4 li:hover>.after {
  opacity: 1;
}
.list-inline-4 li:hover p {
  color: #fff;
}
/** panel list2 end **/


/** svg brain start **/
.svg-animated.svg-00-b {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader-shield {
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader-shield .loader {
  position: relative;
  top: -110px;
  left: 45px;
  border: 10px solid rgb(38 118 255); /* ring */
  border-top: 10px solid rgb(30 32 30); /* moving */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  z-index: 10;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-shield svg {
/* position: absolute; */
/* top: 0px;
left: 0px; */
width: 300px;
height: 300px;
fill: #7994bf;
/* position: relative; */
}


.chart {
  width: 100px;
  height: 150px;
  margin: 30px auto 0 auto;
  display: flex;
  align-items: flex-end;
  position: absolute;
}

.chart .one, .chart .four, .chart .three, .chart .two {
  width: 5em;
  height: 0em;
  background-color: #1DAD9B;
  animation: resize 0.5s infinite alternate ease-in-out;
  border-radius: 5px;
  margin: 0em 0.25em 0em 0.25em;
}

.chart .two {
  animation-duration: 0.75s;
}

.chart .three {
  animation-duration: 0.6s;
}

.chart .four {
  animation-duration: 0.4s;
}

@keyframes resize {
  0% {
    height: 100px;
  }
  100% {
    height: 200px;
  }
}

/** svg brain end **/

/** Cardz 02 start **/
.infograph-card {
  display: flex;
  justify-content: center;
  align-items: center;
}
.we-carousel {
  position: relative;
  display: flex;
  align-items: center;
}

.we-card-container {
  width: 200px;
  height: 200px;
  position: relative;
}

.we-card {
  width: 200px;
  height: 200px;
  background-color: #fff;
  color: #000;
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.5s ease;
  filter: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.we-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
}
.we-small-text .we-card h3 {
  font-size: 1rem;
  font-weight: bold;
}

.we-card p {
  color: #555;
}

.we-card.active {
  opacity: 1;
  z-index: 2;
  transform: translateX(0);
}

.we-card.prev-1,
.we-card.next-1 {
  opacity: 0.5;
  filter: blur(4px);
  z-index: 1;
}

.we-card.prev-2,
.we-card.next-2 {
  opacity: 0.2;
  filter: blur(6px);
  z-index: 1;
}

.we-card.prev-3,
.we-card.next-3 {
  opacity: 0;
}

.we-card.prev-1 {
  transform: translateX(-230px) rotate(-10deg) translateY(20px);
}

.we-card.next-1 {
  transform: translateX(230px) rotate(10deg) translateY(20px);
}

.we-card.prev-2 {
  transform: translateX(-483px) rotate(-20deg) translateY(80px);
}

.we-card.next-2 {
  transform: translateX(483px) rotate(20deg) translateY(80px);
}

.we-card.prev-3 {
  transform: translateX(-697px) rotate(-30deg) translateY(172px);
}

.we-card.next-3 {
  transform: translateX(697px) rotate(30deg) translateY(172px);
}

.we-arrow {
  font-size: 24px;
  cursor: pointer;
  user-select: none;
  color: #000;
  padding: 20px;
  z-index: 20;
  background: #ddedff6b;
  backdrop-filter: blur(8px);
}

.we-arrow:hover {
  color: #555;
}

.services-area .services-items .equal-height {
  display: flex;
}
.img-src-1 {
  background-image: url('../img/crystal-cube-6-2440x1578.jpg');
}
.img-src-2 {
  background-image: url('../img/crystal-cube-18-2440x1578.jpg');
}
.img-src-3 {
  background-image: url('../img/crystal-cube-7-2440x1578.jpg');
}

/** Cardz 02 end **/

.boxers-row  {
  display: flex;
  justify-content: center;
}
.boxers {
  display: flex;
  justify-content: stretch;
  margin-top: 10px;
}
.boxers .info {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.boxers .icon-element--round--box--border {
  width: 100%;
}

.cta-pos {
  display: flex;
    position: relative;
    text-align: center;
    justify-content: center;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 35px;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideIn 0.6s ease forwards;
}

.info-item:nth-child(1) {
  animation-delay: 0.6s;
}

.info-item:nth-child(2) {
  animation-delay: 0.8s;
}

.info-item:nth-child(3) {
  animation-delay: 1s;
}
.info-item:nth-child(4) {
  animation-delay: 1.2s;
}
.info-item:nth-child(5) {
  animation-delay: 1.4s;
}

.number-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3d4a5e 0%, #2a3442 100%);
  box-shadow: -10px -10px 20px rgb(195 195 195 / 90%), 10px 10px 20px rgb(147 182 252), inset -3px -3px 10px rgb(249 251 255 / 30%), inset 3px 3px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  color: #5a6a7f;
  flex-shrink: 0;
}
.dark .number-circle {
  background: linear-gradient(135deg, #14305f 0%, #2a3442 100%);
  box-shadow: -10px -10px 20px rgba(60, 70, 90, 0.9),
    10px 10px 20px rgba(0, 0, 0, 0.7),
    inset -3px -3px 10px rgba(60, 70, 90, 0.3),
    inset 3px 3px 10px rgba(0, 0, 0, 0.3);
}

.info-text {
  color: #718096;
  font-size: 13px;
  line-height: 1.7;
  max-width: 280px;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}


@keyframes documentSlide {
  0% {
    transform: rotate(-5deg) translate3d(-100%, 0, 0);
    opacity: 0;
  }
  25% {
    transform: translate3d(0%, 0, 0);
    opacity: 1;
  }
  75% {
    transform: translate3d(0%, 0, 0);
    opacity: 1;
  }
  100% {
    transform: rotate(5deg) translate3d(100%, 0, 0);
    opacity: 0;
  }
}
@keyframes documentScan {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  25% {
    transform: translate3d(0%, 0, 0);
    opacity: 0;
  }
  30% {
    opacity: 0.6;
  }
  75% {
    transform: translate3d(0%, 153px, 0);
    opacity: 0.6;
  }
  80% {
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 153px, 0);
    opacity: 0;
  }
}
@keyframes documentCheck {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  70% {
    opacity: 0;
    transform: scale(1.1);
  }
  75% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 1;
  }
}
.scan-line {
    animation-name: documentScan;
    animation-direction: forwards;
    animation-timing-function: ease-in-out;
    animation-duration: 2s;
    animation-iteration-count: infinite;
  }
  .scan-doc {
    animation-name: documentSlide;
    animation-direction: forwards;
    animation-timing-function: ease-in-out;
    animation-duration: 2s;
    animation-iteration-count: infinite;
  }
  .scan-check {
    transform-origin: center;
    animation-name: documentCheck;
    animation-direction: forwards;
    animation-timing-function: ease-in-out;
    animation-duration: 2s;
    animation-iteration-count: infinite;
  }



svg#brain {
  width: 30em;
  display: block;
  margin: 0 auto;
  padding-top: 30px;
    filter: grayscale(1);
}
@keyframes pulse {
  0%   { opacity: 0.3; }
  50% { opacity: 0.8; }
  100% { opacity: 0.3; }
}

#brain rect:nth-child(odd) {
  animation: pulse 3s infinite ease;
  position: relative;
}

#brain rect:nth-child(even) {
  animation: pulse 4s infinite ease;
  position: relative;
}

#brain rect:nth-child(3n + 1) {
  animation: pulse 2s infinite ease;
  position: relative;
}

/** OL lister start **/
.ol-lister {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1rem;

  width: min(60rem, calc(100% - 2rem));
  margin-inline: auto;
  padding-block: 1rem;

  list-style: none;
  counter-reset: count;
}

ol.ol-lister > li {
  --card-background-color: #f0f0f0;
  --card-text-color: #0f0f0f;
  --card-border-radius: 0.5rem;
  --card-padding-block: 1.5rem;
  --card-padding-inline: 1rem;

  --outset-size: 0.75rem;
  --outset-background-color: #e5e5e5;

  --number-font-size: 3rem;
  --number-overlap: 0.5rem;
  --number-font-family: "Roboto";
  --number-font-weight: 500;

  margin: var(--outset-size);
  margin-top: calc(var(--number-font-size) - var(--number-overlap));
  border-radius: var(--card-border-radius);
  padding-block: var(--card-padding-block);
  padding-inline: var(--card-padding-inline);

  color: var(--card-text-color);
  background-color: var(--card-background-color);
  box-shadow: inset 1px 1px 0px rgb(255 255 255 / 0.5),
    inset -1px -1px 0px rgb(0 0 0 / 0.25),
    calc(var(--outset-size) * 0.25) calc(var(--outset-size) * 0.25)
      calc(var(--outset-size) * 0.5) rgb(0 0 0 / 0.25);
  position: relative;
  counter-increment: count;
}

ol.ol-lister  > li::after {
  /* content: counter(count, decimal-leading-zero); */
  /* content: " ⛊ "; */
  content:"𖢻";

  position: absolute;

  bottom: calc(100% - var(--number-overlap));
  left: 50%;
  transform: translateX(-50%);

  color: var(--accent-color);
  font-family: var(--number-font-family);
  font-weight: var(--number-font-weight);
  font-size: var(--number-font-size);
  line-height: 1;
  z-index: -1;
}
ol.ol-lister  > li::before {
  content: "";
  position: absolute;
  width: calc(100% + (var(--outset-size) * 2));
  height: 100%;
  bottom: calc(var(--outset-size) * -1);
  left: calc(var(--outset-size) * -1);
  z-index: -1;

  border-bottom-left-radius: calc(
    var(--card-border-radius) + var(--outset-size)
  );
  border-bottom-right-radius: calc(
    var(--card-border-radius) + var(--outset-size)
  );

  background-color: var(--outset-background-color);

  background-image: linear-gradient(
      to left,
      var(--outset-background-color) calc(var(--outset-size) * 2),
      transparent 0
    ),
    linear-gradient(
      135deg,
      var(--accent-color) 80%,
      var(--outset-background-color) 0
    );
}

ol.ol-lister .icon {
  font-size: 2rem;
  text-align: center;
  margin-bottom: calc(var(--card-padding-block) * 0.5);
}
ol.ol-lister .title {
  text-transform: uppercase;
  font-family: "Roboto";
  text-align: center;
  color: var(--accent-color);
}
ol.ol-lister .descr {
  color: var(--text-color);
  font-size: 0.75rem;
  font-family: "Roboto";
  text-align: center;
}

/** OL lister end ****/

/** list3 start **/
ul.has-icon li {
  position: relative;
  padding-left: 40px;
  padding-bottom: 12px;
  margin-bottom: 10px;
}
ul.has-icon li i {
  position: absolute;
  left: 0;
  top: 0px;
  color: #085ce0;
}
.dark ul.has-icon li {
  color: white;
}
.dark ul.has-icon li i {
  color: #fff;
}
/** List 3 end**/

/***** Other End *****/

/**** Contact Start *****/

/* CONTACT FORM START **********/

.error {
  color: red;
  display: none;
}
form {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  flex-direction: column;
}
.recaptch-cover{
border:1px solid #000000 !important;
padding:0px;
position: relative;
background-color:transparent;
/* margin-right: 15px;
  margin-left: 15px; */
  max-width: 1140px;
  width: 100%;
  border-radius: 1.25rem;
}
.recaptch-cover .recaptch-cover-header{
  padding:10px;
  text-align: left;
  display: block;
  border-bottom:1px solid #000000 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.recaptch-cover .recaptch-cover-header button{
  background:#00000000;
  color: #000000;
  border-color:#00000000;
  border-radius:3px;
}
.recaptch-cover .recaptch-cover-header button:active{
   background:transparent;
  border-color:#000000;
}
.recaptch-cover .recaptch-cover-header button:hover{
background:transparent;
  border-color:#000000;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, select:focus, textarea:focus {
border-color: #b7beff;
}
.form-control:focus{
box-shadow: none;
outline: none;
  background-color: #ece4e4 ;
  border-color: #b7beff;
  color:#000000;
}
.loading-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 1111;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  color: #ffffff;
  display: none;
}
form label {
color: #000000;
}
.loading-overlay.active{
display: flex;
}
#refreshCaptcha{
cursor: pointer;
}
.form-control::placeholder {
color:rgba(0, 0, 0,.5);
opacity: 1; /* Firefox */
}
.form-control::-ms-input-placeholder { /* Edge 12 -18 */
 color:rgba(0, 0, 0,.5);
}

.math-captcha {
text-align: center;
}

.math-expression {
font-size:24px;
font-weight: bold;
}

.answer-options {
display: flex;
justify-content: center;
gap: 10px;
margin: 20px 0;
flex-wrap: wrap;
}

.answer-option {
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
font-size:18px;
font-weight: bold;
border:1px solid #000000;
border-radius: 50%;
cursor: pointer;
transition: all 0.2s;
background:#00000000;
color:#000000;
}

.answer-option:hover {
border-color:var(--first-brand-color);
}

.answer-option.selected {
  background: var(--first-brand-color);
  color: white;
  border-color: blue;
}
.btn-cover:hover {
  opacity: 0.9;
}

.error{
color:red;
display:none;
border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgb(255 255 255 / 70%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

#submitBtn:disabled {
opacity: 0.7;
cursor: not-allowed;
}

.jconfirm {
  -webkit-perspective: 400px;
  perspective: 400px;
}
.jconfirm {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999;
  font-family: inherit;
  overflow: hidden;
}
.jconfirm.jconfirm-modern .jconfirm-bg {
  background-color: slategray;
  opacity: .6;
}
.jconfirm .jconfirm-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
}
.jconfirm .jconfirm-scrollpane {
  -webkit-perspective: 500px;
  perspective: 500px;
  -webkit-perspective-origin: center;
  perspective-origin: center;
  display: table;
  width: 100%;
  height: 100%;
}
.jconfirm .jconfirm-row {
  display: table-row;
  width: 100%;
}
.jconfirm .jconfirm-cell {
  display: table-cell;
  vertical-align: middle;
}
.jconfirm .jconfirm-holder {
  max-height: 100%;
  padding: 50px 0;
}
@media (min-width: 992px) {
  .justify-content-lg-center {
      justify-content: center !important;
  }
}
@media screen and (max-width: 820px) {
  form .form-group.col-md-6 {
      width: 100%!important;
  }
  form#contactForm {
      flex: 1 1 100%;
      flex-direction: column;
  }
  
}
@media (min-width: 768px) {
  .justify-content-md-center {
      justify-content: center !important;
  }
}
@media (min-width: 576px) {
  .justify-content-sm-center {
      justify-content: center !important;
  }
}

.jconfirm .jconfirm-box-container.jconfirm-no-transition {
  -webkit-transition: none !important;
  transition: none !important;
}
.jconfirm .jconfirm-box-container {
  -webkit-transition: -webkit-transform;
  transition: -webkit-transform;
  transition: transform;
  transition: transform, -webkit-transform;
}
.jconfirm.jconfirm-modern .jconfirm-box {
  background-color: white;
  -webkit-box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
  padding: 30px 30px 15px;
}
.jconfirm .jconfirm-box.jconfirm-type-red {
  border-top: solid 7px #e74c3c;
  -webkit-animation-name: type-red;
  animation-name: type-red;
}
.jconfirm .jconfirm-box.jconfirm-type-animated {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.jconfirm .jconfirm-box {
  opacity: 1;
  -webkit-transition-property: all;
  transition-property: all;
}
.jconfirm .jconfirm-box {
  background: white;
  border-radius: 4px;
  position: relative;
  outline: 0;
  padding: 15px 15px 0;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-closeIcon {
  color: rgba(0, 0, 0, 0.87);
  top: 15px;
  right: 15px;
}
.jconfirm .jconfirm-box div.jconfirm-closeIcon {
  height: 20px;
  width: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  opacity: .6;
  text-align: center;
  font-size: 27px !important;
  line-height: 14px !important;
  display: none;
  z-index: 1;
}

.jconfirm .jconfirm-box div.jconfirm-title-c {
  display: block;
  font-size: 22px;
  line-height: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  padding-bottom: 15px;
}

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c {
  color: rgba(0, 0, 0, 0.87);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transform: scale(0);
  transform: scale(0);
  display: block;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 10px;
  font-size: 69px;
  color: #f9fafb;
}

.jconfirm.jconfirm-modern.jconfirm-open .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: inherit;
  font-family: inherit;
  display: inline-block;
  vertical-align: middle;
  color: white;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane {
  margin-bottom: 15px;
  height: auto;
  -webkit-transition: height .4s ease-in;
  transition: height .4s ease-in;
  display: inline-block;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}
.jconfirm .jconfirm-box.jconfirm-type-animated {
  background: #1b2035de;
  backdrop-filter: blur(6px);
}

.jconfirm .jconfirm-box div.jconfirm-content-pane.no-scroll {
  overflow-y: hidden;
}
.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content {
  overflow: auto;
}
.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-content {
  text-align: center;
  font-size: 15px;
  color: #dedede;
  margin-bottom: 25px;
}

.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons {
  text-align: center;
}
.jconfirm .jconfirm-box .jconfirm-buttons {
  padding-bottom: 11px;
}
.jconfirm .jconfirm-clear {
  clear: both;
}

.jconfirm .jconfirm-box .jconfirm-buttons button {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 4px;
  min-height: 1em;
  -webkit-transition: opacity .1s ease, background-color .1s ease, color .1s ease, background .1s ease, -webkit-box-shadow .1s ease;
  transition: opacity .1s ease, background-color .1s ease, color .1s ease, background .1s ease, -webkit-box-shadow .1s ease;
  transition: opacity .1s ease, background-color .1s ease, color .1s ease, box-shadow .1s ease, background .1s ease;
  transition: opacity .1s ease, background-color .1s ease, color .1s ease, box-shadow .1s ease, background .1s ease, -webkit-box-shadow .1s ease;
  -webkit-tap-highlight-color: transparent;
  border: 0;
  background-image: none;
}

.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons button {
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: background .1s;
  transition: background .1s;
  padding: 10px 20px;
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default {
  background-color: #ecf0f1;
  color: #000;
  text-shadow: none;
  -webkit-transition: background .2s;
  transition: background .2s;
  border-radius: 50px;
}

.mt-3 {
  margin-top: 1rem !important;
}
.math-captcha {
  text-align: center;
}
.math-captcha p {
  margin: 0 auto;
  display: block;
  text-align: center;
}

.form-section-right form #name, 
.form-section-right form #email, 
.form-section-right form #message {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  margin: 0 auto;
}
.form-section {
  max-width: unset;
}
.form-section-right form {
  padding-left: 10px;
  padding-right: 10px;
}
.btn-cover {
  background: transparent;
}
button#submitBtn {
  background: #2A7FDE;
  background: linear-gradient(to left, rgb(12 94 224), #47455ca3);
  transition: all 0.3s 
ease-in;
  border-radius: 25px;
  padding-right: 20px;
  padding-left: 20px;
  border: none;
}
button#submitBtn:hover,
button#submitBtn:focus {
  background: #ffffff;
  opacity: 1;
}
.light button#submitBtn:hover,
.light button#submitBtn:focus {
  background: #2A7FDE!important;
  opacity: 1;
}
button#submitBtn p {
  color: white;
}
@media screen and (max-width: 480px) {
  .recaptch-cover .recaptch-cover-header {
      flex-direction: column;
      padding-top: 20px;
  }
  .recaptch-cover .recaptch-cover-header button {
    margin-top: 20px;
  }
}

.col-connect-post form:before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: #0a5ddf;
  animation: move-up6 2s ease-in infinite alternate-reverse;
}
.col-connect-post form:after {
  content: "";
  z-index: 0;
  position: absolute;
  vertical-align: bottom;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: #0a9eb4;
  animation: move-up6 2s ease-in infinite alternate-reverse;
}
.light .col-connect-post form:after {
  background: #c6d9f5;
}

.col-connect-post form .wrap-former {
  backdrop-filter: blur(25px);
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.2), -10px -10px 40px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  z-index: 1;
}

.light button#submitBtn.btnx span {
  color: #fff!important;
}
.answer-option {
  background: #fffcfcbf;
}
.answer-option.selected {
  background: #00000085;
}
.recaptch-cover .recaptch-cover-header label {
  font-size: 16px;
  font-family: 'Roboto';
}
.dark .recaptch-cover .recaptch-cover-header label {
  color: white;
}
.dark .recaptch-cover .recaptch-cover-header {
  border-bottom: 1px solid var(--white-100) !important;
}
.dark .recaptch-cover {
  border: 1px solid #ffffff !important;
}
.dark .math-expression {
  color: white;
}
.dark .math-captcha p {
  color: white;
}
.recaptch-cover .recaptch-cover-header button {
  background: #ffffff;
  border-radius: 5px;
  font-size: 16px;
  font-family: 'Roboto';
}

form .form-group {
  padding-left: 0;
  padding-right: 0;
}
form .form-control {
  border: 1px solid #000000;
  border-radius: 1.25rem;
  background-color: transparent;
  color: black;
}
form .form-control:focus {
  background-color: transparent;
  color: black;
}
form .form-control::placeholder {
  color: black;
}
.dark form .form-control {
  border: 1px solid #ffffff;
  
  color: white;
}
.dark form .form-control:focus {
  color: white;
}
.dark form .form-control::placeholder {
  color: white;
}


@keyframes move-up6 {
  to {
        transform: translateY(150px);

  }
}

@media screen and (max-width: 1199px) {
  .col-connect-post .recaptch-cover {
          display: flex;
      flex-direction: column;
      width: 100%;
      margin-bottom: 10px;
  }
  button#submitBtn.btnx { 
      margin-bottom: 20px;
  }
}
/* CONTACT FORM END ************/
.info-contact .contact-desc {
  transition: all 0.3s 
ease-in-out;
  flex-direction: column;
  justify-content: center;
  background: rgb(42 133 255 / 81%);
  border-radius: 10px;
  transition: all 0.3s 
  ease-in-out;
}
.dark .info-contact .contact-desc {
  background: rgb(0 0 0 / 81%);
  transition: all 0.3s 
  ease-in-out;
}

.info-contact .contact-desc p {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 10px;
  color: #222222;
  transition: all 0.3s 
  ease-in-out;
}

.col-connect-post {
  margin-bottom: 20px;
}

.dark .info-contact .contact-desc p {
  color: #b8b8ff;
  transition: all 0.3s 
  ease-in-out;
}
.info-contact .contact-desc p span  {
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
}
.info-contact .contact-desc p a {
  color: #1f1f1f;
  text-decoration: none;
}
.dark .info-contact .contact-desc p a  {
  color: #b8b8ff;
  transition: all 0.3s 
  ease-in-out;
}
.info-contact .contact-desc i {
  box-shadow: rgb(4 207 223 / 59%) 0px 8px 32px 0px;
  margin: 10px auto 0px;
  background-color: #ffffff;
  color: #000;
  font-size: 20px;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  text-align: center;
  line-height: 45px;
  vertical-align: middle;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
}

/**** Contact end ******/

/***** Footer Start **/
footer#footer {
  background-color: rgb(161 175 229);
  border-top: 1px solid white;
    background-image: radial-gradient(circle at 20% 100%, rgba(184, 184, 184, 0.1) 0%, rgba(184, 184, 184, 0.1) 33%, rgba(96, 96, 96, 0.1) 33%, rgba(96, 96, 96, 0.1) 66%, rgba(7, 7, 7, 0.1) 66%, rgba(7, 7, 7, 0.1) 99%), linear-gradient(40deg, #5b6b83, #2f4a79, #1e2a47, #0a182c);
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3s 
ease-in-out;
}
.dark footer#footer {
  background-color: #000;
  border-top: 1px solid white;
  background-image: radial-gradient(circle at 20% 100%, rgba(184, 184, 184, 0.1) 0%, rgba(184, 184, 184, 0.1) 33%, rgba(96, 96, 96, 0.1) 33%, rgba(96, 96, 96, 0.1) 66%, rgba(7, 7, 7, 0.1) 66%, rgba(7, 7, 7, 0.1) 99%), linear-gradient(40deg, #070708, #060d19, #091020, #000000);
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s 
ease-in-out;
}

footer [class*="copyright"][class*="border"], footer [class*="down"][class*="border"], footer [class*="upper"][class*="border"] {
  border-right: none !important;
  border-bottom: none !important;
  border-left: none !important;

}

.footer-list .li-icon svg {
  width: .5em;
}
.footer-list .li-icon {
  margin-right: 10px;
}
footer ul.footer-links li a {
  color: #fff;
}
footer ul.footer-links li {
  margin-bottom: 12px;
  width: 100%;
  margin-left: 20px;
  padding: 0.25em 0;
}
footer ul.footer-links {
  display: grid;
  grid-auto-columns: 50%;
  grid-auto-flow: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  width: 100%;
}
.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

 .footer-title {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.25em;
  color:#8eb7f9;
}
.mb-5, .my-5 {
  margin-bottom: 3rem !important;
}
footer ul.footer-links li:nth-child(n + 4) {
  grid-column: 2;
}

footer ul.footer-links li a:focus, footer ul.footer-links li a:hover {
  color: #8fb7f9;
}


.contact-desc {
  display: flex;
  position: relative;
  justify-content: left;
  align-items: center;
  margin-bottom: 10px;
}
.contact-desc a {
  color: white;
}
.footer-contact i {
  background-color: #536f9e;
  color: #ffffff;
  font-size: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  margin: 10px 15px 0 0;
  vertical-align: middle;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
}
.footer-contact i,
.footer-contact span.flat {
  background-color: #536f9e;
  color: #ffffff;
  font-size: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  margin: 10px 15px 0 0;
  vertical-align: middle;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
}
footer .contact-desc p {
  text-align: left !important;
  margin-bottom: 10px;
  color: white;
}
.contact-desc p span {
  color: #8fb7f9;
  font-weight: 500;
  text-transform: uppercase;
}

footer .image--small {
  width: 200px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(255 255 255 / 91%);
    padding: 0 10px;
    border-radius: 10px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: all 0.3s 
ease-in;
    box-shadow: rgba(31, 38, 135, 0.37) 0px 8px 32px 0px;
}

.logo-footer .image--small {
  width: 100%;
    height: 60px!important;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(255 255 255 / 91%);
    padding: 0 10px;
    border-radius: 10px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: all 0.3s 
ease-in;
    box-shadow: rgba(31, 38, 135, 0.37) 0px 8px 32px 0px;
}
.logo-footer p {
  color: #fff;
}

footer ul.footer-menu {
  text-align: right;
  list-style: none;
  margin: 0;
  padding: 0;
}
footer ul.footer-menu li {
  margin-left: 1em;
  display: inline-block;
  color: white;
}
footer ul.footer-menu li a {
  color: white;
}
footer ul.footer-menu li:first-child {
  margin-left: 0;
}
.copyright.copyright-text {
  color: white;
  padding-bottom: 0;
}
footer .footer-bootom-links {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-bottom-text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
footer .bottom-pad  {
  padding-bottom: 20px;
}
footer span.new-line {
  display: block;
}
@media screen and (max-width: 992px) {
  .mob-top-margin {
    margin-top: 30px;
  }
  .mob-bottom-margin {
    margin-bottom: 30px;
  }
  .logo-footer .image--small {
    height: 45px !important;
  }
  footer ul.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .logo-footer .image--small {
    height: 60px!important;
  }
}
@media screen and (max-width: 575px) {
  footer ul.footer-links {
    display: flex;
    flex-direction: column;
  }
  
}
/***** Footer End ****/