@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* ====================
Reset Default CSS Start
==================== */

:root {
  --primary-font: "Plus Jakarta Sans";
  --secondary-font: "Mulish";
  --primary-color: #0099ff;
  --secondary-color: #ffffff;
  --ac-20: #e6f5ff;
  --ac-40: #99d6ff;
  --ac-60: #66c2ff;
  --ac-80: #33adff;
  --ac-120: #007acc;
  --ac-140: #005c99;
  --ac-160: #003d66;
  --ac-180: #000f19;
  --ac-ash: #9ca3af;
  --ac-black: #000000;
  --ac-border: #2b343a;
  --ac-BG: #02070a;
  --text-gradient: linear-gradient(91deg, #fff 0.61%, #695b5b 100%);
  --background: linear-gradient(45deg, #fff, #908c9b);
  --box-shadow: 0px 0px 100px 0px rgba(0, 153, 255, 0.2);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--primary-font);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--primary-font);
  margin-top: 0;
}

h6 {
  font-family: var(--secondary-font);
}

a {
  text-decoration: none !important;
}

p {
  color: var(--ac-ash);
  font-family: var(--secondary-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.8px;
}

ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

button {
  border: none;
  outline: none;
}

input {
  outline: none;
}

body {
  background: var(--ac-black) !important;
}

html, body {
  overflow: hidden;
}

.container {
  max-width: 1400px !important;
  margin: auto;
  padding: 0 14px !important;
}

/*====================
Reset Default CSS End
====================*/

/* Webkit Scroll bar */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  transition: 0.3s;
  background: var(--primary-color);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
/* Webkit Scroll bar */


/* Navbar Search bar Full Screen css Start */

#searchResults {
  width: 100%;
  max-height: 200px;
  background-color: var(--ac-160);
  color: var(--secondary-color);
  z-index: 999;
  padding: 20px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: none;
  overflow-y: auto;
}

@keyframes expand-button {
  0% {
    position: fixed;
    transform: scale(1);
  }
  50% {
    transform: scale(15);
  }
  100% {
    transform: scale(100);
  }
}
@keyframes slow-opacity {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes show-input {
  from {
    opacity: 0;
    width: 10%;
  }
  to {
    opacity: 1;
    width: 70%;
  }
}

#header .search_box {
  z-index: 100;
}
#header .search_box .expand {
  position: fixed;
  right: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  animation: expand-button 0.6s ease-in;
  transform: scale(100);
  z-index: 50;
}

#header .search_box .expand i {
  animation: slow-opacity 0.3s;
  opacity: 0;
}

#header .search_box .search {
  text-align: right;
  z-index: 100px;
}

#header .search_box .search .search__input {
  visibility: hidden;
  display: none;
  position: fixed;
}

#header .search_box .search .search__input {
  display: flex;
  gap: 10px;
  padding: 0px 20px;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 50%;
  z-index: 100;
}

#header .search_box .search__input input {
  width: 100% !important;
  border-radius: 6px;
  padding: 12px;
  background: var(--ac-border);
  color: var(--secondary-color);
  font-family: var(--secondary-font);
  font-size: 16px;
  border: 1px solid var(--primary-color);
  font-weight: 500;
}

#header .search_box .search__input .nav_src_btn {
  display: inline-block;
  border-radius: 6px;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--secondary-color);
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 500;
  transition: 0.4s;
}

#header .search_box .search__input .nav_src_btn:hover {
  background: var(--secondary-color);
  color: var(--ac-black);
}

#header .search_box .search .search__input--show {
  visibility: visible;
  opacity: 0;
  animation: show-input 0.3s 0.6s ease-in forwards;
}

#header .search_box .search .search__button {
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  transition: 0.4s;
  -o-transition: 0.4s;
}

#header .search_box .search .search__button.expand {
  background: rgba(0, 0, 0, 0.5);
}

#header .search_box .search .search__button.expand:hover {
  background: rgba(0, 0, 0, 0.5);
}

#header .search_box .search .search__button.expand svg {
  display: none;
}

#header .search_box .search .search__button:hover {
  background: var(--primary-color);
}

#header .search_box .search__button svg,
#header .search_box .search__button svg path {
  transition: 0.4s;
}

#header .search_box .search__button:hover svg path {
  fill: var(--secondary-color);
}

#header .search_box .search__button:hover svg rect {
  stroke: none;
}

#header .search_box .search .search__button svg {
  width: 49px;
  height: 49px;
}

@media screen and (max-width: 768px) {
  #header .search_box .search .search__input {
    gap: 4px;
    padding: 0px;
    width: 90% !important;
  }

  #header .search_box .search__input .nav_src_btn {
    padding: 12px 20px;
  }
}

/* Navbar Search bar Full Screen css End */

/* Back To Top Start */
#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 100;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

#back-to-top:hover linearGradient stop,
#back-to-top:hover svg .dot,
#back-to-top:hover svg .roted {
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

#back-to-top:hover svg .dot,
#back-to-top:hover svg .roted {
  fill: var(--primary-color);
}

#back-to-top:hover linearGradient stop {
  stop-color: var(--primary-color);
}

#back-to-top svg .grouped {
  transition: transform 0.5s ease-in-out;
  transform-origin: center;
}

/* #back-to-top:hover svg .grouped {
  transform: rotateX(180deg) translateY(20px);
  -webkit-transform: rotateX(180deg) translateY(20px);
  -moz-transform: rotateX(180deg) translateY(20px);
  -ms-transform: rotateX(180deg) translateY(20px);
  -o-transform: rotateX(180deg) translateY(20px);
} */

#back-to-top svg {
  width: 80px;
  height: 80px;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}
/* Back To Top End */

/* Hero Start */

#hero {
  position: relative;
  width: 100%;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/home/Hero2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  overflow: hidden;
}

#hero .shape1 {
  position: absolute;
  top: 0px;
  left: 0px;
}

#hero .shape1 svg {
  width: 280px;
  height: 280px;
}

#hero .shape2 {
  position: absolute;
  bottom: -20px;
  right: -20px;
}

#hero .shape2 svg {
  width: 280px;
  height: 280px;
}

#hero .hero-wrap {
  position: relative;
  width: 100%;
  text-align: center;
  z-index: 1;
}

#hero .hero-wrap .title {
  max-width: 800px;
  margin: auto;
  font-size: 48px;
  font-family: var(--primary-font);
  margin-bottom: 20px;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  line-height: 63px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#hero .hero-wrap .breadcrumb {
  display: inline-flex;
  align-items: center;
  background: var(--ac-BG);
  border-radius: 30px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  margin: 0;
  gap: 6px;
}

#hero .hero-wrap .breadcrumb p,
#hero .hero-wrap .breadcrumb a {
  font-size: 18px;
  font-weight: bold;
  display: block;
  text-align: center;
  color: var(--ac-ash);
  font-family: var(--secondary-font);
  border-radius: 30px;
  margin: 0;
}

@media screen and (max-width: 992px) {
  #hero .hero-wrap .title {
    font-size: 34px;
    line-height: 42px !important;
  }

  #hero .hero-wrap {
    text-align: center;
    padding: 50px 0;
  }

  #hero .shape2 svg {
    width: 240px;
    height: 240px;
  }

  #hero {
    min-height: 220px;
    max-height: 390px;
  }
}
/* Hero End */


/* Preloader Start */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100vh;
  background: var(--ac-black);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#wifi-loader {
  --front-color: var(--primary-color);
  --back-color: #c3c8de;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#wifi-loader svg {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

#wifi-loader svg circle {
  position: absolute;
  fill: none;
  stroke-width: 6px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(-100deg);
  transform-origin: center;
}

#wifi-loader svg circle.back {
  stroke: var(--back-color);
}

#wifi-loader svg circle.front {
  stroke: var(--front-color);
}

#wifi-loader svg.circle-outer {
  height: 86px;
  width: 86px;
}

#wifi-loader svg.circle-outer circle {
  stroke-dasharray: 62.75 188.25;
}

#wifi-loader svg.circle-outer circle.back {
  animation: circle-outer135 1.8s ease infinite 0.3s;
}

#wifi-loader svg.circle-outer circle.front {
  animation: circle-outer135 1.8s ease infinite 0.15s;
}

#wifi-loader svg.circle-middle {
  height: 60px;
  width: 60px;
}

#wifi-loader svg.circle-middle circle {
  stroke-dasharray: 42.5 127.5;
}

#wifi-loader svg.circle-middle circle.back {
  animation: circle-middle6123 1.8s ease infinite 0.25s;
}

#wifi-loader svg.circle-middle circle.front {
  animation: circle-middle6123 1.8s ease infinite 0.1s;
}

#wifi-loader svg.circle-inner {
  height: 34px;
  width: 34px;
}

#wifi-loader svg.circle-inner circle {
  stroke-dasharray: 22 66;
}

#wifi-loader svg.circle-inner circle.back {
  animation: circle-inner162 1.8s ease infinite 0.2s;
}

#wifi-loader svg.circle-inner circle.front {
  animation: circle-inner162 1.8s ease infinite 0.05s;
}

@keyframes circle-outer135 {
  0% {
    stroke-dashoffset: 25;
  }

  25% {
    stroke-dashoffset: 0;
  }

  65% {
    stroke-dashoffset: 301;
  }

  80% {
    stroke-dashoffset: 276;
  }

  100% {
    stroke-dashoffset: 276;
  }
}

@keyframes circle-middle6123 {
  0% {
    stroke-dashoffset: 17;
  }

  25% {
    stroke-dashoffset: 0;
  }

  65% {
    stroke-dashoffset: 204;
  }

  80% {
    stroke-dashoffset: 187;
  }

  100% {
    stroke-dashoffset: 187;
  }
}

@keyframes circle-inner162 {
  0% {
    stroke-dashoffset: 9;
  }

  25% {
    stroke-dashoffset: 0;
  }

  65% {
    stroke-dashoffset: 106;
  }

  80% {
    stroke-dashoffset: 97;
  }

  100% {
    stroke-dashoffset: 97;
  }
}
/* Preloader End */
