/* Font */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

/* ====================
  Reset Default CSS Start
  ==================== */
/* TASA Orbiter Deck fonts Font */
@font-face {
  font-family: "TASAOrbiter";
  src: url("..'/assets/fonts/TASAOrbiterText-Bold-BF64891cba00f5b.otf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "TASAOrbiter";
  src: url("../assets/fonts/TASAOrbiterText-Regular-BF64891cba384f3.otf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "TASAOrbiter";
  src: url("../assets/fonts/TASAOrbiterText-Medium-BF64891cb9e8a75.otf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "TASAOrbiter";
  src: url("../assets/fonts/TASAOrbiterText-SemiBold-BF64891cba09cfc.otf")
    format("truetype");
  font-weight: 600;
  font-style: normal;
}
/* TASA Orbiter Deck fonts Font */

:root {
  --primary-font: "TASAOrbiter";
  --secondary-font: "Manrope";
  --primary-color: #1d75fc;
  --secondary-color: #ff8343;
  --border-color: #d0d0d0;
  --black: #040404;
  --bg: #ffffff;
  --main-120: #e8f1ff;
  --main-140: #a5c8fe;
  --main-160: #77acfd;
  --main-180: #4a91fd;
  --sec-20: #ffe6d9;
  --sec-20: #ffcdb4;
  --sec-20: #ffb58e;
  --sec-20: #ff9c69;
  --text-1: #040d12;
  --text-2: #222831;
  --text-3: #ffffff;
  --accent-light-gray: #d0d0d0;
  --accent-white-smoke: #f5f5f5;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--primary-font);
}

h6 {
  font-family: var(--secondary-font);
}

a {
  text-decoration: none;
  font-family: var(--primary-font);
}

p {
  color: var(--text-2);
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 400;
}

ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

button {
  border: none;
  outline: none;
  font-family: var(--primary-font);
}

input {
  outline: none;
  font-family: var(--secondary-font);
}

body {
  background: var(--bg);
}

/*====================
Reset Default CSS End
====================*/

/* Webkit Scroll bar */

::-webkit-scrollbar {
  width: 10px;
}

::-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 */

/* Back to top Start */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
  z-index: 100;
}

#back-to-top svg path {
  fill: var(--primary-color);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

#back-to-top svg .back_arrow {
  stroke: var(--text-3);
  transition: 0.4s;
  -o-transition: 0.4s;
}

#back-to-top:hover svg path {
  fill: var(--secondary-color);
}

#back-to-top:hover svg .back_arrow {
  stroke: var(--text-3);
}

#back-to-top svg {
  width: 60px;
  height: 60px;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}
/* Back to top End */

/* Draw SVG Animation Start */
.drow_svg path {
  stroke-dasharray: 170;
  stroke-dashoffset: 170;
  animation: draw 3s linear infinite;
  -webkit-animation: draw 3s linear infinite;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
/* Draw SVG Animation End */


/* Preloader CSS Start */
.loader_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 1s ease-in-out;
}

.loader {
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  max-width: 35rem;
  height: 30rem;
  margin: 0 auto;
}

.plane {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.plane_img {
  -webkit-animation: spin 2.5s linear infinite;
  -moz-animation: spin 2.5s linear infinite;
  animation: spin 2.5s linear infinite;
  max-width: 230px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@-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);
  }
}

.earth_wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
}

.earth {
  width: 100%;
  height: 100%;
  background: url("../assets/img/home/map-world.webp");
  border-radius: 100%;
  margin-top: -1px;
  background-size: 340px;
  animation: earthAnim 12s infinite linear;
  border: 1px solid rgba(255, 255, 255, 0.336);
  -webkit-animation: earthAnim 12s infinite linear;
}

@keyframes earthAnim {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -340px;
  }
}

body.loading {
  overflow: hidden;
}
/* Preloader CSS End */

