@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
@font-face {
  font-family: "Akkurat";
  src: url("/fonts/akkurat.ttf") format("truetype");
}
.none {
  display: none !important;
}

.flexR {
  display: flex;
  flex-direction: row;
}

.flexC, .home .maintenance, body {
  display: flex;
  flex-direction: column;
}

.flexRowC {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.flexColC, .home .backBg, .home .maintenance .body .desc, .home .maintenance .body, .home .maintenance nav .label, .home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flexRowSB, .home .maintenance nav {
  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: "Akkurat", 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 .maintenance {
  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 .maintenance nav {
  width: 100%;
}
.home .maintenance 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 .maintenance .body {
  width: 100%;
  gap: 120px;
  justify-content: space-between;
  box-sizing: border-box;
}
.home .maintenance .body .desc {
  text-align: center;
  gap: 6px;
}
.home .maintenance .body .desc > :nth-child(1) {
  font-weight: 400;
  font-size: clamp(28.2427px, 5vw, 53.6076px);
  color: #ffffff;
}
.home .maintenance .body .desc > :nth-child(2) {
  font-weight: 400;
  font-size: clamp(22.5702px, 5vw, 36.6819px);
  color: rgba(255, 255, 255, 0.61);
}
.home .maintenance .body .ssImg {
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media only screen and (max-width: 1000px) {
  .home .maintenance {
    padding: 45px 25px;
    padding-bottom: 0px;
  }
  .home .maintenance .body {
   /* position: absolute;*/
    height: 100vh;
    justify-content: center;
  }
  .home .maintenance .body .desc {
    position: absolute;
    margin-bottom: 200px;
  }
  .home .maintenance .body .ssImg {
    position: absolute;
    bottom: 0px;
    padding: 0px 20px;
  }
}
@media only screen and (max-width: 680px) {
  .home .maintenance nav {
    flex-direction: column;
    align-items: center;
  }
  .home .maintenance nav .label {
    margin-top: 50px;
  }
}
.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(3, 3, 5, 0.4);
  backdrop-filter: blur(70.5px);
}
@media only screen and (max-width: 768px) {
  .home .backBg .drop {
    background: rgba(3, 3, 5, 0.4);
    backdrop-filter: blur(70.5px);
  }
}
.home .backBg picture img {
  object-fit: cover;
  width: 100vw;
  height: 105vh;
}