:root {
  --primary: #095589;
  --secondary: #999;
  --light: #f2f8fe;
  --dark: #111;
  --background-color: #fff;
  --default-color: #444;
  --accent-color: #c6e9f8;
}

.back-to-top {
  z-index: 99;
  display: none;
  position: fixed;
  bottom: 60px;
  right: 30px;
}

h1 {
  color: #262524;
  letter-spacing: 2px;
  font-size: 35px;
  font-weight: 400;
  font-family: Anton SC, sans-serif !important;
}

h2 {
  color: #262524;
  letter-spacing: 2px;
  text-transform: capitalize;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  font-family: Anton SC, sans-serif !important;
}

h4, h5, h6, .h4, .h5, .h6 {
  font-weight: 500 !important;
}

#spinner {
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
}

#spinner.show {
  visibility: visible;
  opacity: 1;
  transition: opacity .5s ease-out, visibility linear;
}

.btn {
  font-weight: 500;
  transition: all .5s;
}

.btn-theme {
  color: #16d5ff;
  background-color: #fff;
}

.btn-theme:hover {
  color: #f2f8fe;
  background-color: #16d5ff;
}

.btn.btn-primary {
  color: #fff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square, .btn-sm-square, .btn-lg-square {
  justify-content: center;
  align-items: center;
  padding: 0;
  font-weight: normal;
  display: flex;
}

.navbar.sticky-top {
  transition: all .5s;
  top: -100px;
}

.navbar .navbar-brand {
  height: 95px;
}

.navbar .navbar-nav .nav-link {
  color: var(--dark);
  outline: none;
  margin-right: 30px;
  padding: 25px 0;
  font-size: 18px;
  font-weight: 700;
}

.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle:after {
  content: "";
  vertical-align: middle;
  border: none;
  margin-left: 8px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

@media (width <= 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eee;
  }
}

@media (width >= 992px) {
  .navbar .nav-item .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    border: none;
    margin-top: 0;
    transition: all .5s;
    display: block;
    top: 150%;
  }

  .navbar .nav-item:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transition: all .5s;
    top: 100%;
  }
}

.navbar .btn:hover {
  color: #fff !important;
  background: var(--primary) !important;
}

.hero-header .breadcrumb-item + .breadcrumb-item:before {
  color: var(--secondary);
}

.service-item {
  position: relative;
  overflow: hidden;
}

.service-item:after {
  content: "";
  opacity: 1;
  border: 80px solid;
  width: 0;
  height: 0;
  transition: all .5s;
  position: absolute;
  top: -80px;
  right: -80px;
  transform: rotate(45deg);
}

.service-item.bg-white:after {
  border-color: transparent transparent var(--light) transparent;
}

.service-item.bg-light:after {
  border-color: #0000 #0000 #fff;
}

.service-item:hover:after {
  opacity: 0;
}

.main .heading h1 {
  color: #262524;
  letter-spacing: 1px;
  margin-bottom: 5px;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  font-family: Anton SC, sans-serif !important;
}

.main .heading span {
  color: red;
}

.main .content h3 {
  color: #262524;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  font-family: sans-serif !important;
}

.main .content p {
  color: #000;
  font-size: larger;
}

.analytics.heading h3 {
  color: #262524;
  margin-bottom: 5px;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  font-family: sans-serif !important;
}

.analytics .content .card {
  background: #f0f8fe;
  border-radius: 6px;
  min-height: 280px;
  box-shadow: 5px 5px 10px #a6a5b0, -5px -5px 10px #fff;
}

.analytics .content .card p {
  color: #000;
  margin-top: 10px;
  font-weight: 500;
  line-height: 25px;
}

.analytics .content .card h5 {
  font-size: 20px;
}

.get-p-button {
  --color: #0d4258;
  cursor: pointer;
  text-transform: uppercase;
  color: var(--color);
  z-index: 1;
  background: #f5f5f5;
  border: 1px solid;
  border-radius: .4rem;
  padding: 10px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  transition: all .5s;
  position: relative;
  overflow: hidden;
}

.get-p-button:before, .get-p-button:after {
  content: "";
  color: #f5f5f5;
  z-index: -1;
  background-color: #2771b2c5;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  transition: all 1s;
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
}

.get-p-button:before {
  top: -1em;
  left: -1em;
}

.get-p-button:after {
  top: calc(100% + 1em);
  left: calc(100% + 1em);
}

.get-p-button:hover:before, .get-p-button:hover:after {
  width: 410px;
  height: 410px;
}

.get-p-button:hover {
  color: #dee9ed;
}

.get-p-button:active {
  filter: brightness(.8);
}

.button {
  --color: #0d4258;
  cursor: pointer;
  text-transform: uppercase;
  color: var(--color);
  z-index: 1;
  background: #c6e9f8;
  border: 1px solid;
  border-radius: 2.3em;
  padding: 10px 30px;
  font-family: inherit;
  font-size: 19px;
  font-weight: 400;
  transition: all .5s;
  position: relative;
  overflow: hidden;
}

.button:before, .button:after {
  content: "";
  color: #f5f5f5;
  z-index: -1;
  background-color: #2093ce;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  transition: all 1s;
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
}

.button:before {
  top: -1em;
  left: -1em;
}

.button:after {
  top: calc(100% + 1em);
  left: calc(100% + 1em);
}

.button:hover:before, .button:hover:after {
  width: 410px;
  height: 410px;
}

.button:hover {
  color: #dee9ed;
}

.button:active {
  filter: brightness(.8);
}

@media (width <= 425px) {
  .custom .content .card {
    background: #f0f8fe;
    border-radius: 6px;
    min-height: 200px;
    box-shadow: 5px 5px 10px #a6a5b0, -5px -5px 10px #fff;
  }

  .main .heading h1 {
    font-size: 23px;
  }

  .main .content h3 {
    font-size: 20px;
  }

  .main .content p {
    color: #000;
    font-size: 18px;
  }

  .analytics .content .card {
    background: #f0f8fe;
    border-radius: 6px;
    min-height: 200px;
    box-shadow: 5px 5px 10px #a6a5b0, -5px -5px 10px #fff;
  }
}

.roadmap-carousel {
  position: relative;
}

.roadmap-carousel:before {
  content: "";
  border-top: 2px dashed var(--secondary);
  width: 100%;
  height: 0;
  position: absolute;
  top: 20px;
  left: 0;
}

.roadmap-carousel .roadmap-item .roadmap-point {
  border: 2px solid var(--primary);
  background: #fff;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-left: -15px;
  display: flex;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: rotate(45deg);
}

.roadmap-carousel .roadmap-item .roadmap-point span {
  background: var(--primary);
  width: 18px;
  height: 18px;
  display: block;
}

.roadmap-carousel .roadmap-item {
  text-align: center;
  padding-top: 150px;
  position: relative;
}

.roadmap-carousel .roadmap-item:before {
  content: "";
  border-right: 2px dashed var(--secondary);
  width: 0;
  height: 115px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.roadmap-carousel .roadmap-item:after {
  content: "";
  background: var(--primary);
  width: 14px;
  height: 14px;
  margin-left: -7px;
  position: absolute;
  top: 111px;
  left: 50%;
  transform: rotate(45deg);
}

.roadmap-carousel .owl-nav {
  justify-content: center;
  margin-top: 40px;
  display: flex;
}

.roadmap-carousel .owl-nav .owl-prev, .roadmap-carousel .owl-nav .owl-next {
  color: var(--light);
  background: var(--primary);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin: 0 12px;
  font-size: 22px;
  transition: all .5s;
  display: flex;
}

.roadmap-carousel .owl-nav .owl-prev:hover, .roadmap-carousel .owl-nav .owl-next:hover {
  color: var(--primary);
  background: var(--dark);
}

.shop_section {
  background-image: url("background_banner.28358cf6.jpg");
  background-size: cover;
  width: 100%;
  height: auto;
  margin-top: 90px;
  padding: 90px 0;
}

.shop_section .shop_taital {
  float: left;
  text-align: center;
  color: #f8f8f8;
  width: 100%;
  font-size: 40px;
}

.shop_section .shop_text {
  float: left;
  text-align: center;
  color: #f8f8f8;
  width: 100%;
  margin: 0 0 40px;
  font-size: 16px;
}

@media (width <= 390px) {
  .shop_section .shop_taital {
    font-size: 33px;
  }
}

.footer .btn.btn-link {
  text-align: left;
  color: #2d2d2d;
  text-transform: capitalize;
  margin-bottom: 5px;
  padding: 0;
  font-weight: normal;
  transition: all .3s;
  display: block;
}

.footer .btn.btn-link:before {
  content: "";
  color: var(--secondary);
  margin-right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: relative;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .btn.btn-square {
  color: var(--primary);
  border: 1px solid var(--primary);
}

.footer .btn.btn-square:hover {
  color: #fff;
  background: var(--primary);
}

.footer .copyright {
  border-top: 1px solid #1111111a;
  padding: 25px 0;
}

.footer .copyright a {
  color: var(--primary);
}

.footer .copyright a:hover {
  color: var(--dark);
}

.footer p, .footer .foot-span {
  color: #2d2d2d;
}
/*# sourceMappingURL=index.0e0ac3d1.css.map */
