@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600&display=swap");
/* External fonts load  */
@font-face {
  font-family: "Outfit";
  src: url("/googleFonts/Outfit/Outfit-ExtraLight.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "Outfit";
  src: url("/googleFonts/Outfit/Outfit-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Outfit";
  src: url("/googleFonts/Outfit/Outfit-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Outfit";
  src: url("/googleFonts/Outfit/Outfit-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Outfit";
  src: url("/googleFonts/Outfit/Outfit-Bold.ttf");
  font-weight: 600;
}
html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  background-color: #030303;
  background: #030303;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-family: "Outfit", sans-serif;
}

p {
  line-height: 1.5;
  color: #ffffff;
  letter-spacing: 0.02em;
  font-weight: 200;
}
p:last-child {
  margin-bottom: 0;
}

a {
  font-family: "Outfit", sans-serif;
}
a:visited, a:focus, a:active, a:hover {
  text-decoration: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

.slick-slide:focus {
  outline: none;
}

.header-affix,
.affix {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transition: 0.5s ease-in-out;
  animation: affix_animation 0.6s ease-in-out;
  -webkit-animation: affix_animation 0.6s ease-in-out;
  z-index: 99999;
  margin: 0 !important;
  padding-top: 0em !important;
  background-color: #ffffff;
}
.header-affix .nav-link,
.affix .nav-link {
  color: black;
}
.header-affix .nav-link:hover,
.affix .nav-link:hover {
  color: #fe0078;
}
.header-affix .top-nav,
.affix .top-nav {
  display: none !important;
}
.header-affix .main-nav,
.affix .main-nav {
  margin: 0 !important;
  border-radius: 0 !important;
  padding: 5px 2em;
}

.header-affix {
  background-color: #ffffff !important;
}
@keyframes affix_animation {
  0% {
    margin-top: -7.5rem;
    opacity: 0;
  }
  50% {
    margin-top: -4rem;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
@media (min-width: 576px) and (max-width: 1600px) {
  .container {
    max-width: 85%;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 92%;
    margin: 0 auto;
  }
}
.affix svg line {
  stroke: #000000;
}

.scroll-navigation {
  height: 85px;
  margin-top: -85px;
  z-index: 5;
  display: block;
}

.text-orange {
  color: #f24a55;
}

.text-sm {
  font-size: 90%;
}

.invalid {
  font-size: 0.9em;
  padding-top: 2px;
  color: #f30c0c;
}

.success {
  color: green;
  margin-top: 15px;
}/*# sourceMappingURL=base.css.map */