@import url("https://fonts.googleapis.com/css2?family=Poiret+One&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://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css");

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.9);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow: overlay !important;
  overflow-x: hidden !important;
}

body {
  font-family: Roboto, Poiret !important;
  background-color: #000;
  color: #000;
  overflow: overlay !important;
  overflow-y: auto;
  overflow-x: hidden !important;
  box-sizing: border-box;
}

a:hover {
  text-decoration: none !important;
  color: rgb(214, 214, 214);
}

h1 {
  font-size: 4.375rem;
}

h2 {
  font-size: 3rem;
  line-height: 1;
  font-weight: 400;
}

h3 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
}

p {
  font-size: 1.25rem;
  line-height: 1.2;
}

header {
  z-index: 100;
  position: fixed;
  top: 0;
}

.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  position: absolute;
  top: 0px;
  margin-top: 50vh;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #ededed;
}

.importence-text {
  background-color: #18181a;
}
.image-80-web {
  width: 80%;
}

@media screen and (max-width: 951px) {
  .image-80-web {
    width: 100%;
  }

  .hero-content {
    position: absolute;
    top: 0px;
    margin-top: 40vh;
  }
}

.cta {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 20px;
  transition: all 0.5s;
}

.cta-inverted {
  display: inline-block;
  padding: 10px 20px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 20px;
  transition: all 0.5s;
}

.cta-inverted:hover {
  cursor: pointer;
  transform: scale(1.05);
  color: rgb(39, 39, 39);
}

.cta:hover {
  cursor: pointer;
  transform: scale(1.05);
}
