@charset "UTF-8";

:root {
  --color-primary: #4a4aeb;
  --color-stuff: #5858e8;
  --color-wow: #6501de;
  --color-blue: #2424d1;

  --color-primary-light-alt: #9d9ff0;
  --color-primary-dark-alt: #7c84e4;
  --color-accent: #b4acf8;
  --color-supporting: #8483e5;
  --color-base-bg: #f4f4fb;
  --color-alt-bg: #d0d4fb;
  --color-accent-a: #b9b9fa;
  --color-accent-b: #cccbfb;
  --color-accent-c: #dcd8ec;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
}

body {
  color: #fff;
  background-color: #0c0c0c;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden !important;
  position: relative;
}

body:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: auto;
  background-repeat: repeat;
  border-radius: 30px 0 0 30px;
  pointer-events: none;
  opacity: 0;
  z-index: -1;
}

h1 {
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}

h1 {
  font-size: 55px;
}

p {
  line-height: 1.75;
  font-size: 15px;
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
  color: #ddd;
  margin: 0;
}

.button {
  border: 1px solid transparent;
  font-family: 'Poppins', sans-serif;
}

.button.button-bord {
  border-color: var(--color-base-bg);
  background: transparent;
  color: var(--color-base-bg);
  transition: all .4s;
}

.button.button-bord:hover {
  background: var(--color-base-bg);
  color: #000;
}

.button.button-md {
  padding: 14px 35px;
}


a, a:hover {
  color: inherit;
}

span {
  display: inline-block;
}

a {
  display: inline-block;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.row > * {
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 0;
}

.main-color {
  color: var(--color-primary) !important;
}

.main-text {
  background-image: linear-gradient(90deg, var(--color-blue) 0%, var(--color-primary) 10%, var(--color-stuff) 50%, var(--color-supporting) 95%);
  color: transparent !important;
  display: inline-block;
  background-color: white;
  background-clip: text;
}

img {
  width: 100%;
  height: auto;
}

.navbar {
  margin: 0;
  width: 100%;
  background: transparent;
  border: 0;
  z-index: 999;
}

.navbar .container {
  display: block !important;
}

.min-sec {
  display: none;
}

.min-sec.current {
  display: block;
}

.hero-min .cont h1 {
  font-size: 85px;
  font-weight: 700;
  line-height: 1.2;
}

.bord-thin-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bord-thin-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.underline a {
  text-decoration: underline !important;
}

.icon-img-70 {
  width: 70px;
}

ul {
  list-style: none;
}
ul li::before {
  content: "•";
  color: white;
  font-weight: bold;
  display: inline-block;
  width: 15px;
}

.fz-13 {
  font-size: 13px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 50px;
  }
  .hero-min .cont h1 {
    font-size: 55px;
  }
}