@media (min-width: 0) {
  .xs\:d-none {
    display: none !important;
  }
  .xs\:d-inline-block {
    display: inline-block !important;
  }
  .xs\:d-block {
    display: block !important;
  }
  .xs\:d-flex {
    display: flex !important;
  }
}
@media (min-width: 575px) {
  .sm\:d-none {
    display: none !important;
  }
  .sm\:d-inline-block {
    display: inline-block !important;
  }
  .sm\:d-block {
    display: block !important;
  }
  .sm\:d-flex {
    display: flex !important;
  }
}
@media (min-width: 767px) {
  .md\:d-none {
    display: none !important;
  }
  .md\:d-inline-block {
    display: inline-block !important;
  }
  .md\:d-block {
    display: block !important;
  }
  .md\:d-flex {
    display: flex !important;
  }
}
@media (min-width: 991px) {
  .lg\:d-none {
    display: none !important;
  }
  .lg\:d-inline-block {
    display: inline-block !important;
  }
  .lg\:d-block {
    display: block !important;
  }
  .lg\:d-flex {
    display: flex !important;
  }
}
@media (min-width: 1199px) {
  .xl\:d-none {
    display: none !important;
  }
  .xl\:d-inline-block {
    display: inline-block !important;
  }
  .xl\:d-block {
    display: block !important;
  }
  .xl\:d-flex {
    display: flex !important;
  }
}
@media (min-width: 1399px) {
  .xxl\:d-none {
    display: none !important;
  }
  .xxl\:d-inline-block {
    display: inline-block !important;
  }
  .xxl\:d-block {
    display: block !important;
  }
  .xxl\:d-flex {
    display: flex !important;
  }
}
:root {
  --color-white: #FFFFFF;
  --color-black: #000000;
}

:root {
  --content-max-width: 1160px;
  --padding-inline:2rem;
  --color-dark-grey:#282828;
  --color-white:#ffffff;
  --fs-xxl: clamp(3.5rem, 10vw + 1rem, 12rem) ;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--color-dark-grey) !important;
  color: var(--color-white) !important;
}

h1 {
  /*margin-block-start: 0;*/
  /*margin-block-end: 0;*/
  font-size: var(--fs-xxl) !important;
}

.preloader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--color-dark-grey);
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.preloader__wrap {
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 130px;
  border-radius: 30px;
  background-color: #363636;
  box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.0784313725);
  -webkit-animation-name: preloaderWraper;
  animation-name: preloaderWraper;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}
.preloader.-is-hidden {
  opacity: 0;
  pointer-events: none;
}
@-webkit-keyframes preloaderWraper {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: none;
  }
}
@keyframes preloaderWraper {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: none;
  }
}

.section-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.section__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.container-wrapper {
  position: relative;
  width: min(var(--content-max-width), 100% - 2 * var(--padding-inline));
  margin-inline: auto;
}
.container-wrapper .homepage-heading {
  position: relative;
  text-align: center;
  top: 30vh;
  top: 30dvh;
  font-size: xxx-large;
}
@media (min-width: 767px) {
  .container-wrapper .homepage-heading {
    top: 20vh;
    top: 20dvh;
  }
}
@media (min-width: 1399px) {
  .container-wrapper .homepage-heading {
    top: 33vh;
    top: 33dvh;
  }
}

.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}
.position-fixed {
  position: fixed;
}

.text-align-center {
  text-align: center;
}
.text-align-right {
  text-align: right;
}

.center-in-div {
  left: 50%;
  transform: translateX(-50%);
}

.padding-sm {
  padding: 40px 0 40px 0;
}
.padding-md {
  padding: 80px 0 80px 0;
}
.padding-lg {
  padding: 150px 0 150px 0;
}

.justify-between {
  justify-content: space-between !important;
}

:root {
  --bulb-light-top: 45px;
}

@media (max-width: 575px) {
  :root {
    --bulb-light-top: 27px;
  }
}
.lightbulb {
  position: absolute;
  left: clamp(10vw, 10vw + 1rem, 20vw);
  top: 0;
  max-width: 485px;
}
.lightbulb__bulb {
  position: absolute;
  left: -400px;
  top: 0;
  width: 40vw;
}
.lightbulb__light {
  position: absolute;
  left: -400px;
  top: 0;
  width: 40vw;
}

.laptop {
  position: absolute;
  bottom: 20vh;
  max-width: 800px;
  left: 50%;
  transform: translateX(-50%);
}

.clouds-lightning {
  justify-content: center;
  align-content: center;
  text-align: center;
  max-width: 200px;
}

.paragraph-image {
  max-width: 350px;
  filter: saturate(34%) hue-rotate(86deg);
}

.text-10 {
  font-size: 10px;
}

.text-12 {
  font-size: 12px;
}

.text-14 {
  font-size: 14px;
}

.text-16 {
  font-size: 16px;
}

.text-18 {
  font-size: 18px;
}

.text-20 {
  font-size: 20px;
}

.text-22 {
  font-size: 22px;
}

.text-24 {
  font-size: 24px;
}

.text-26 {
  font-size: 26px;
}

.text-28 {
  font-size: 28px;
}

.text-30 {
  font-size: 30px;
}

.text-32 {
  font-size: 32px;
}

.text-34 {
  font-size: 34px;
}

.text-36 {
  font-size: 36px;
}

.text-38 {
  font-size: 38px;
}

.text-40 {
  font-size: 40px;
}

/* Small image size and float for small screens */
.small-inline-image {
  width: 80px;
  height: auto;
}

/* On large screens, reset float and size */
@media (max-width: 575px) and (orientation: portrait) {
  .small-inline-image {
    float: none !important;
  }
  /* Optional: ensure paragraphs have no float wrapping */
  .col-lg-6 p {
    overflow: visible;
  }
}
.bg-black {
  background-color: var(--color-black) !important;
}

/*# sourceMappingURL=public.css.map */
