@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");
.none {
  display: none !important;
}

.flexR {
  display: flex;
  flex-direction: row;
}

.flexC,
.home .page,
body {
  display: flex;
  flex-direction: column;
}

.flexRowC {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.flexColC,
.home .backBg,
.home .page .body .desc,
.home .page .body,
.home .page nav .label,
.home .page nav,
.home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flexRowSB {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.flexColSB {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

html,
body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
  user-select: none;
}
html input,
html button,
html a,
html select,
body input,
body button,
body a,
body select {
  text-decoration: none;
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  color: inherit;
  width: max-content;
}
html button,
body button {
  cursor: pointer;
}
html h1,
html p,
body h1,
body p {
  margin: 0;
  padding: 0;
}

body {
  align-items: center;
}

.home {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
.home .page {
  position: relative;
  box-sizing: border-box;
  z-index: 10;
  min-height: 100%;
  width: 100%;
  max-width: 1290px;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 45px 55px;
  padding-bottom: 0px;
}
.home .page nav {
  width: 100%;
}
.home .page nav .label {
  width: 187.79px;
  height: 43.26px;
  background: #ed1c24;
  color: #ffffff;
  letter-spacing: 0.085em;
  font-weight: 600;
  font-size: 14.6169px;
  line-height: 22px;
  font-family: "Inter", sans-serif;
}
.home .page .body {
  width: 100%;
  gap: 120px;
  justify-content: space-between;
  box-sizing: border-box;
}
.home .page .body .desc {
  text-align: center;
  margin-bottom: 50px;
  gap: 6px;
}
.home .page .body .desc > :nth-child(1) {
  font-weight: 700;
  font-size: clamp(18px, 5vw, 32px);
  color: #ffffff;
}
.home .page .body .desc > :nth-child(2) {
  font-weight: 400;
  font-size: clamp(20px, 5vw, 25px);
  color: rgba(255, 255, 255, 0.61);
}
.home .page .foot {
  padding-bottom: 32px;
}
.home .page .foot span {
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
}
.home .backBg {
  z-index: -1;
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.home .backBg .drop {
  z-index: 1;
  position: absolute;
  width: 100vw;
  height: 105vh;
  background: rgba(76, 76, 102, 0.73);
  backdrop-filter: blur(24px);
}
.home .backBg .drop img {
  position: absolute;
  right: 0px;
  bottom: 0px;
}
@media only screen and (max-width: 768px) {
  .home .backBg .drop img {
    width: 100%;
  }
}
.home .backBg picture img {
  object-fit: cover;
  width: 100vw;
  height: 105vh;
}
