
@font-face {
    font-family: 'WMA Skyline';
    src: url('../fonts/WMA Skyline.woff2') format('woff2'),
         url('../fonts/WMA Skyline.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'WMA Skyline SVG';
    src: url('../fonts/WMA Skyline-SVG.woff2') format('woff2'),
         url('../fonts/WMA Skyline-SVG.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
html,
body {
	width: 100%;
	height: 100%;
	font-family: sans-serif; 
    width: 100%;
    height: 100%;
    background: #000000;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.width {
	margin: 0 auto;
 	max-width: 1280px;
 	width: 100%;
}
.block-1 {
	height: 1500px;
    background: radial-gradient(at center top, #272762 0%, #000000 100%);
}
.block-2 {
	width: 80%;
    height: 500px;
    background: tomato;
    margin: 20px auto;
    transition: width 0.3s ease;
    position: relative;
}
.block-3 {
	height: 500px;
    background: blue;
}
header {
    height: 100%;
    background: radial-gradient(at center bottom, #272762, #000000);
    position: relative;
}
.header-top {
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
	display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999; 
} 
main {
    width: 100%;
    position: relative;
    z-index: -1; 
}
.header-view {
	display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    height: 100%; 
}
.header-view-text span {
	font-family: 'WMA Skyline', sans-serif; 
	display: inline-block;
    font-size: 22vw;
    color: #fff;
    cursor: context-menu;
    transform-origin: bottom;
    line-height: 1.2;
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}
.header-view-text span.animate {
    transform: scaleY(1);
    opacity: 1;
}
.header-view-text span:hover {
    transform: scaleY(1.2);
}
.header-description {
    color: #d1d1d1;
    font-size: 1.3vw;
    text-align: center;
    line-height: 1.7vw;
    font-family: "Roboto";
}
.header-view-text {
    display: flex;
    gap: 40px;
}
.header-logo img {
    display: block;
    width: 120px;
}
.header-menu {
	color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
	cursor: pointer; 
}
.header-menu-title {
}
.header-menu-line {
    position: relative;
    width: 20px;
    height: 20px;
	display: block; 
}
.header-menu-line:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: #fff;
    right: 0;
    top: 6px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(1deg);
    -webkit-transition: background-color 0.05s ease-in-out, transform 0.2s ease-in-out, top 0.2s ease-in-out;
    transition: background-color 0.05s ease-in-out, transform 0.2s ease-in-out, top 0.2s ease-in-out; 
}
.header-menu-line:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: #fff;
    right: 0;
    bottom: 4px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(1deg);
    -webkit-transition: background-color 0.05s ease-in-out, transform 0.2s ease-in-out, top 0.2s ease-in-out;
    transition: background-color 0.05s ease-in-out, transform 0.2s ease-in-out, top 0.2s ease-in-out; 
}
.header-menu.active .header-menu-line:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
	top: 10px; 
}
.header-menu.active .header-menu-line:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 10px; 
}
.loading-screen {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 0;
    height: 10vh;
    background-color: white;
    transform: translate(-50%, -50%);
    animation: expandWidth 0.8s ease-out forwards, expandFull 0.5s ease-out 1.1s forwards, fadeOut 0.8s ease-out 2.5s forwards;
}
@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 20vw;
    }
}
@keyframes expandFull {
    from {
        width: 20vw;
        height: 10vh;
    }
    to {
        width: 100vw;
        height: 100vh;
    }
}
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
.content {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
 	height: 100%;
}
.menu-block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0c0c0c;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
.menu-block-w.width {
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
}
.menu-block-list ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin: 0;
    height: auto;
	line-height: 100px;  
}
.menu-block-list ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
    font-optical-sizing: auto;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 60px;
	text-align: center; 
    overflow: hidden; 
}
.menu-block-list ul li a.selected span {
    color: #ffffff;
}
.menu-block-list ul li a span {
	position: relative;
    display: block;
    -webkit-transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transform-origin: 100% 0%;
    overflow: hidden;
}
.menu-block-list ul li a span::before {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    content: attr(data-hover);
}
.menu-block-list ul li:hover a span {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    transform-origin: 0% 0%;
    overflow: visible; 
}
.menu-block-list ul:hover li a {
    color: #555555;
}
.menu-block-list ul li a:hover {
    color: #ffffff;
}
.menu-block.active {
    opacity: 1;
    visibility: visible;
}
.menu-block-list ul li {
    opacity: 0;
    transform: translateY(20px);
    margin: 10px 0;
    height: 0;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, height 0.3s ease;
}
.menu-block.active .menu-block-list ul li {
    opacity: 1;
    transform: translateY(0);
    height: auto;
}
.menu-block.hide .menu-block-list ul li {
    opacity: 0;
    transform: translateY(-20px);
    height: 0;
}
.pseudo-text-effect {
    position: relative;
    padding: 0;
    overflow: hidden;
    transition: transform .2s;
    transition-timing-function: cubic-bezier(2.000, 0.000, 0.000, 2.000);
    display: block;
  
  &::after {
    content: attr(data-after);
    display: inline-block;
    transform: translateY(100%);
    position: absolute;
    left: 0;
   	right: 0;
    transition: inherit;
  }
  
  > span {
    display: inline-block;
    transform: translateY(0%);
    transition: inherit;
  }
  
  &:hover {
    > span {
      transform: translateY(-100%);
    }
    &::after {
      transform: translateY(0%);
    }
  }
}



/* Grid */
.grid {
    width: 100%;
    display: grid;
}

.row {
    width: 100%;
    display: flex;
}

.column {
    width: 25%;
    display: grid;
}

.column-inner {
    width: 100%;
    display: grid;
    position: relative;
    justify-content: center;
		align-items: center;
    margin: 48px 0;
}

/* Cursor */
#cursor {
	  position: fixed;
    top: 0;
    left: 0;
	  width: 12px;
	  height: 12px;
	  pointer-events: none;
	  z-index: 9999;
    mix-blend-mode: difference;
}

.cursor-inner {
	  width: 100%;
	  height: 100%;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .1s .1s;
    -moz-transition: all .1s .1s;
    -ms-transition: all .1s .1s;
    -o-transition: all .1s .1s;
    transition: all .1s .1s;
}

.-visible .cursor-inner {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}
	
.ball {
    background-color: #fff;
		width: 100%;
		height: 100%;
		border-radius: 50%;
}

/* Attractor */
.attractive {
		position: relative;
    display: inline-flex;
    justify-content: center;
		align-items: center;
}
	
.attract-area {
    display: inline-flex;
    justify-content: center;
	align-items: center;
	z-index: 10;
    border-radius: 50%;
}

/* Magnet */
.magnetic {
		position: relative;
    display: inline-flex;
    justify-content: center;
		align-items: center;
}

.magnetic-btn {
    width: fit-content;
    min-width: 72px;
		height: 72px;
    border-radius: 144px;
}

.magnetic-img {
    width: 180px;
		height: 180px;
    border-radius: 50%;
}

.magnetic-area {
    display: inline-flex;
    justify-content: center;
		align-items: center;
    width: 100%;
		height: 100%;
    margin: -72px;
    padding: 72px;
}

.magnetic-element {	
		position: relative;
    display: flex;
		justify-content: center;
		align-items: center;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
		width: 100%;
		height: 100%;
		z-index: 10;
    overflow: hidden;
}

.magnetic-btn .magnetic-element {
    border: 2px solid #000;
    border-radius: 36px;
}

.magnetic-img .magnetic-element {
    border-radius: 50%;
}

.magnetic-img .magnetic-area {
    transform: scale(1);
    transition: transform .25s ease-in-out;
}

.magnetic-img .magnetic-area:hover {
    transform: scale(1.25);
}

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

/* Button */
button,input,select,textarea {
    position: relative;
    display: inline-block;
    height: auto;
    margin: 0;
    padding: 0;
    color: inherit;
    background: 0 0;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    outline: 0 !important;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    text-align: inherit;
    text-transform: inherit;
    text-indent: inherit;
    text-decoration: none;
}

[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled) {
    cursor: pointer
}

.btn-title {
	color: #fff;
    text-align: center;
    line-height: 36px;
    font-size: 18px;
    font-family: sans-serif;
    padding: 0px 30px 0px 0px;
}

.btn-text,
.btn-icon {
	color: #fff;
	text-align: center;
	line-height: 36px;
    font-size: 18px;
    font-family: sans-serif;
    -webkit-transition: all .25s;
    -moz-transition: all .25s;
    -ms-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}

.-hover .btn-text,
.-hover .btn-icon {
    color: #fff;
}

.btn-hover {
    position: absolute;
    display: block;
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%);
    transition: width .25s ease-in-out, height .25s ease-in-out;
    z-index: -1;
}

.btn-menu-box {
    position: relative;
    top: -1px;
    display: inline-block;
    width: 25px;
    line-height: 25px;
    vertical-align: middle;
    transition: color .25s
}

.btn-menu-box:before {
    content: "";
    display: block;
    position: absolute;
    top: -20px;
    right: -20px;
    left: -20px;
    bottom: -20px
}

.btn-menu-box span {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    top: 0;
    z-index: 1;
    background: currentColor;
    transition: top .25s .25s, transform .25s;
}

.shooting-star {
     width: 3px;
     height: 100px;
     border-top-left-radius: 50%;
     border-top-right-radius: 50%;
     position: absolute;
     background: linear-gradient(to top, rgba(255, 255, 255, 0), white);
     animation: animShootingStar 3s linear infinite;
}
@keyframes animShootingStar {
     from {
      	transform: translateY(0px) translateX(0px) rotate(-45deg);
      	opacity: 1;
      	height: 5px;
	}
	to {
		transform: translateY(-1000px) translateX(-1000px) rotate(-45deg);
      	opacity: 0;
      	height: 150px;
	}
}
.blob {
	display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 300px;
    border-radius: 100%;
    background-image: linear-gradient(#1100ff 10%, #ff00f2);
    filter: blur(150px);
    transition: all 450ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
}

.text-line {
    display: inline-block;
    position: absolute;
    bottom: 60px;
    left: 25%;
    right: 25%;
}
.text-line span {
    display: inline-block;
    opacity: 1;
    transition: all 0.3s ease;
}




.maid-header {
    margin-top: -80px;
}
.header-view .char {
  display: inline-block;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.header-view .maid-header__description {


}
.header-view .word {
    display: inline-block;
}
.maid-header__title {
    width: 72%;
    margin: 0 auto;
    font-size: clamp(28px, 2.2vw, 36px);
    line-height: 1.3;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    text-align: center;
}
.maid-header__desc {
	font-size: clamp(16px, 1.2vw, 23px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.header-view .maid-header .maid-header__scroll {
    bottom: 20px;
    cursor: pointer;
    position: absolute;
    left: 48%;
    width: 50px;
    height: 80px;
    z-index: 10;
    right: 48%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 60px;
    animation: floatUpDown 1.2s ease-in-out infinite;
	opacity: 0.7;	
}
@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}
.header-view .maid-header__scroll .svg-data {
    height: 24px;
    width: 24px;
    display: block;
}
.header-view .maid-header__scroll .svg-data svg {
    animation: b 1.4s infinite var(--ease-out-cubic);
}
.header-view .svg-data, .svg-data svg {
    height: 100%;
    width: auto;
}
.header-view .maid-header__scroll .svg-data svg path {
    fill: #fff;
}

.nic {
    font-family: Oswald, san-serif;
    font-weight: 200;
    color: #fff;
    letter-spacing: .02em;
    text-transform: uppercase;
    z-index: 999;
    position: relative;
    font-size: 80px;
}
.dword {
    display: flex;
}