@font-face {
  font-family: "SUIT-Regular";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2")
    format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "SUIT-Bold";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Bold.woff2")
    format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "SUIT-Bold";
  src: url(" https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Medium.woff2")
    format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "SUIT-ExtraBold";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-ExtraBold.woff2")
    format("woff2");
  font-weight: normal;
  font-style: normal;
}

.montserrat-bold {
  font-family: "Montserrat", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.montserrat-regular {
  font-family: "Montserrat", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.suit-regular {
  font-family: "SUIT-Regular";
  font-style: normal;
  font-weight: 500;
}

.suit-bold {
  font-family: "SUIT-Bold";
  font-style: normal;
  font-weight: 600;
}
strong {
  font-weight: bold;
}
html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  height: 100dvh;
  background-color: #000;
  font-family: "SUIT-Regular";
}

main {
  height: 100%;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

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

.justify-end {
  justify-content: flex-end;
}

.row-reverse {
  flex-direction: row-reverse;
}

.column {
  flex-direction: column;
}

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

.text-end {
  text-align: end;
}

.grid {
  display: grid;
}

.ml-10 {
  margin-left: 10px;
}
.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}
.cursor {
  cursor: pointer;
}
* {
  box-sizing: border-box;
}

.wrapper {
  margin: 0 auto;
  max-width: 1400px;
  width: 100%;
}

.md-wrapper {
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
}

.text-violet {
  color: #927eff;
}

.text-gray {
  color: #999999;
}

.black__gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 600px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.black__gradient::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.prevent-select {
  user-select: none;
}

.banner__section {
  width: 100%;
  height: 60dvh;
  position: relative;
  color: white;
  padding-top: 100px;
  margin-bottom: 100px;
}

.banner__section .black__gradient::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
}

.banner__section .black__gradient::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
}

.banner__section h1 {
  font-size: 38px;
}
.banner__section p {
  font-size: 17px;
}

@media (max-width: 1439px) {
  .banner__section {
    padding-top: 80px;
    height: 430px !important;
    margin-bottom: 0px;
    padding-bottom: 8dvh !important;
  }

  .banner__section h1 {
    font-size: 28px;
  }

  .banner__section p {
    font-size: 15px;
  }

  .black__gradient::before {
    height: 200px;
  }

  .black__gradient::after {
    height: 200px;
  }
}

.ql-editor pre {
  white-space: pre-wrap;
  line-height: 25px;
}