            * {
                box-sizing: border-box;
                cursor: none !important;
            }
            
            @font-face {
                font-family: "Open Sans";
                src: url(../fonts/OpenSans-VariableFont_wdth\,wght.ttf);
            }
            
            body {
                margin: 0;
                padding: 0;
                background-color: #000;
                font-family: 'Open Sans', sans-serif;
            }
            
            a {
                text-decoration: none;
            }
            
            img {
                display: block;
            }
            
             ::selection {
                background-color: #000000;
                color: #FFC178;
            }
            
             ::-webkit-scrollbar {
                width: 4px;
                height: 0px;
            }
            
             ::-webkit-scrollbar-thumb {
                background: #797979;
            }
            
             ::-webkit-scrollbar-thumb:hover {
                background: #ffffff;
            }
            
             ::-webkit-scrollbar-thumb:active {
                background: #ffffff;
            }
            
            .container__header {
                /* width: 1750px; */
                width: 90vw;
                max-width: 1920px;
                margin: 0 auto;
            }
            
            .container__main {
                width: 1461px;
                margin: -130px auto 0 auto;
            }
            
            .logo a {
                color: #fff;
                font-size: 24px;
                letter-spacing: 1px;
                font-weight: 500;
            }
            
            header {
                height: 1573px;
                background: linear-gradient(330.24deg, rgba(0, 0, 0, 0) 31.06%, #000000 108.93%), url(../img/inner.jpg);
            }
            
            nav {
                display: flex;
                height: 156px;
                flex-direction: row;
                flex-wrap: nowrap;
                align-content: center;
                justify-content: space-between;
                align-items: center;
            }
            
            #navbar {
                position: fixed;
                z-index: 999999;
                top: -100px;
                display: flex;
                width: 100%;
                height: 60px;
                transition: top .7s;
                backdrop-filter: blur(2px);
                background-color: rgba(0, 0, 0, 0.8);
                flex-direction: row;
                flex-wrap: nowrap;
                align-content: center;
                justify-content: space-between;
                align-items: center;
            }
            
            .nav__down {
                display: flex;
                height: 60px;
                transition: top 0.3s;
                flex-direction: row;
                flex-wrap: nowrap;
                align-content: center;
                justify-content: space-between;
                align-items: center;
            }
            
            .nav__link {
                color: #fff;
                font-weight: 500;
                font-size: 18px;
                position: relative;
                margin: 0 26px;
            }
            
            .nav__link:after {
                display: block;
                content: "";
                background-color: #fff;
                height: 1px;
                width: 0;
                top: 112%;
                right: 100%;
                left: -40%;
                position: absolute;
                transition: all .3s ease-in-out;
                transform: translateX(40%);
            }
            
            .nav__link:hover:after {
                width: 100%;
            }
            
            .nav__link::before {
                display: block;
                content: "";
                background-color: #fff;
                height: 1px;
                width: 0;
                top: -12%;
                left: 140%;
                position: absolute;
                transition: all .3s ease-in-out;
                transform: translateX(-140%);
            }
            
            .nav__link:hover::before {
                width: 100%;
            }
            
            .search {
                position: relative;
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                align-content: center;
                justify-content: center;
                align-items: center;
                cursor: pointer;
            }
            
            .search input::placeholder {
                font-size: 17px;
                color: #fff;
                font-weight: 300;
            }
            
            .search input {
                position: relative;
                font-size: 16px;
                color: #fff;
                width: 100px;
                padding-left: 12px;
                background-color: transparent;
                border: none;
                outline: none;
                transition: width .3s;
            }
            
            .search input:focus {
                width: 200px;
            }
            
            .grid__inner {
                display: grid;
                grid-auto-columns: 300px;
                grid-template-columns: 412px 1fr;
                grid-template-rows: 514px;
                gap: 0px 0px;
                grid-template-areas: ". .";
                align-items: center;
                justify-items: start;
            }
            
            .prev__text__line {
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                align-content: center;
                justify-content: flex-start;
                align-items: center;
            }
            
            .prev__text__line span {
                width: 72px;
                height: 2px;
                background-color: #FFC178;
            }
            
            .prev__text__line p {
                font-size: 18px;
                font-weight: 500;
                color: #FFC178;
                text-transform: uppercase;
                margin: 0 32px;
            }
            
            .inner__text {
                color: #fff;
                position: relative;
            }
            
            .inner__text h1 {
                font-size: 96px;
                font-size: 900;
                margin-bottom: 0;
                line-height: 100px;
                margin-top: 20px;
            }
            
            .inner__text span {
                font-size: 88px;
                font-size: 400;
            }
            
            .scroll {
                position: absolute;
                margin-left: 20vw;
                margin-top: 112px;
            }
            
            .scroll__inner {
                font-size: 18px;
                font-weight: 300;
                color: #fff;
                position: relative;
            }
            
            .scroll__inner::after {
                display: block;
                position: absolute;
                content: "\2193";
                color: #fff;
                right: -20px;
                top: 0;
            }
            
            .scroll__inner:hover::after {
                animation: scrolloy .8s infinite linear;
            }
            
            @keyframes scrolloy {
                0% {
                    transform: translateY(0);
                }
                20% {
                    transform: translateY(-4px);
                }
                80% {
                    transform: translateY(4px);
                }
                100% {
                    transform: translateY(0);
                }
            }
            
            .header__contact {
                color: #fff;
                margin-left: -80px;
                user-select: none;
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                align-content: center;
                justify-content: center;
                align-items: center;
                transform: rotate(90deg);
            }
            
            .header__contact img {
                transform: rotate(-90deg);
                transition: all .3s;
            }
            
            .header__contact img:hover {
                transform: rotate(-50deg);
            }
            
            .header__contact a {
                margin: 0 10px;
            }
            
            .inner__shadow__block {
                background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 77.78%);
                height: 358px;
                margin-top: 550px;
            }
            
            .page1 {
                display: grid;
                grid-auto-columns: 300px;
                grid-template-columns: 1fr 632px;
                grid-template-rows: 1fr;
                gap: 0px 0px;
                grid-template-areas: ". .";
                align-items: center;
            }
            
            .page1__img {
                width: 590px;
                overflow: hidden;
                position: relative;
            }
            
            .page1__img img {
                transition: all .3s;
            }
            
            .page1__img img:hover {
                transform: scale(1.03);
            }
            
            .page1__righr h3 {
                font-size: 64px;
                font-weight: 500;
                color: #fff;
                line-height: 87px;
                margin: 10px 0;
            }
            
            .page1__righr p {
                font-size: 18px;
                font-weight: 300;
                line-height: 32px;
                color: rgb(190, 190, 190);
            }
            
            .read__more {
                color: #FBD784;
                font-size: 18px;
                font-weight: 400;
                text-transform: lowercase;
                position: relative;
                transition: all .3s;
            }
            
            .read__more::after {
                display: block;
                position: absolute;
                top: 0;
                opacity: 0;
                right: -20px;
                content: "\2192";
                color: #FBD784;
                transition: all .3s;
            }
            
            .read__more:hover {
                color: #000;
            }
            
            .read__more::before {
                display: block;
                position: absolute;
                top: -14%;
                left: -40%;
                content: "";
                background-color: #FFC178;
                z-index: -1;
                height: 140%;
                width: 0;
                transition: all .3s;
                transform: translateX(10%);
            }
            
            .read__more:hover::before {
                width: 180%;
            }
            
            .read__more:hover::after {
                transform: translatex(14px);
                opacity: 1;
                color: #000;
            }
            
            .slideshow-container {
                margin: 150px 0;
                max-width: 1461px;
                height: 985px;
                position: relative;
                display: flex;
                flex-wrap: nowrap;
                align-content: center;
                justify-content: center;
                align-items: center;
            }
            
            .slideshow-container img {
                width: 100%;
            }
            
            .btn__slide {
                background-color: transparent;
                color: #fff;
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                align-content: center;
                justify-content: space-between;
                align-items: center;
                font-size: 30px;
                z-index: 99;
            }
            
            .next::after {
                content: "\276F";
            }
            
            .next {
                transition: all .3s;
                padding: 40px;
            }
            
            .next:hover {
                transform: translatex(4px);
            }
            
            .prev {
                transition: all .3s;
                padding: 40px;
            }
            
            .prev:hover {
                transform: translatex(-4px);
            }
            
            .prev::after {
                content: "\276E";
            }
            
            .mySlides {
                display: flex;
                align-content: center;
                justify-content: center;
                align-items: center;
            }
            
            .text {
                z-index: 9;
                position: absolute;
                top: 0;
                height: 900px;
                width: calc(100vw - 500px);
                text-align: center;
                display: flex;
                flex-direction: column;
                flex-wrap: nowrap;
                align-content: center;
                justify-content: flex-end;
                color: #fff;
                align-items: center;
            }
            
            .slider {
                background-color: rgb(0, 0, 0);
                width: 1461px;
                padding: 0;
                margin: 200px auto;
            }
            
            .slick-slide {
                margin: 0;
            }
            
            .slick-slide img {
                width: 100%;
            }
            
            .slick-prev,
            .slick-next {
                position: absolute;
                display: flex;
                justify-content: center;
                align-items: center;
                height: 100%;
                width: 100px;
                top: 50%;
                transform: translate(0, -50%);
                z-index: 9;
            }
            
            .slick-prev:before,
            .slick-next:before {
                font-size: 30px;
                color: #fff;
            }
            
            .slick-prev {
                left: 0;
                transition: all .3s;
            }
            
            .slick-prev:hover {
                left: -10px;
            }
            
            .slick-prev:before {
                content: "\276E"
            }
            
            .slick-next {
                right: 0;
                transition: all .3s;
            }
            
            .slick-next:hover {
                right: -10px;
            }
            
            .slick-next:before {
                content: "\276F"
            }
            
            .slick-slider {
                position: relative;
            }
            
            .slick-list {
                overflow: hidden;
                margin: 0;
                padding: 0;
            }
            
            .slick-slider .slick-track,
            .slick-slider .slick-list {
                -webkit-transform: translate3d(0, 0, 0);
                -moz-transform: translate3d(0, 0, 0);
                -ms-transform: translate3d(0, 0, 0);
                -o-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
            }
            
            .slick-track:before,
            .slick-track:after {
                display: table;
                content: '';
            }
            
            .slick-track:after {
                clear: both;
            }
            
            .slick-slide {
                display: none;
                float: left;
                height: 100%;
            }
            
            .slick-slide img {
                display: block;
            }
            
            .slick-slide.slick-loading img {
                display: none;
            }
            
            .slick-slide.dragging img {
                pointer-events: none;
            }
            
            .slick-initialized .slick-slide {
                display: block;
            }
            
            .slick-loading .slick-slide {
                visibility: hidden;
            }
            
            .slick-arrow.slick-hidden {
                display: none;
            }
            
            .text h3 {
                margin: 0;
                font-size: 64px;
                font-weight: 500;
                line-height: 87px;
            }
            
            .text p {
                font-size: 18px;
                line-height: 32px;
                font-weight: 400;
                max-width: 800px;
            }
            
            .text {
                animation-name: textos;
                animation-duration: .8s;
            }
            
            @keyframes textos {
                from {
                    transform: translatex(-19%);
                }
                to {
                    transform: translatex(0);
                }
            }
            
            .page2 {
                display: grid;
                grid-auto-columns: 300px;
                grid-template-columns: 1.6fr 1fr;
                grid-template-rows: 1fr;
                gap: 0px 0px;
                grid-template-areas: ". .";
                align-items: center;
                margin-bottom: 300px;
            }
            
            .page2__inner {
                width: 632px;
            }
            
            .page2__inner h3 {
                font-size: 64px;
                font-weight: 500;
                width: 520px;
                color: #fff;
                margin: 10px 0;
            }
            
            .page2__p {
                font-size: 18px;
                font-weight: 300;
                line-height: 32px;
                color: rgb(190, 190, 190);
            }
            
            footer {
                display: flex;
                flex-direction: column;
            }
            
            .footer__page1 {
                display: flex;
                justify-content: space-between;
                flex-direction: row;
                flex-wrap: nowrap;
                align-content: center;
                align-items: center;
                border-bottom: 1px solid rgb(90, 90, 90);
                padding: 50px 0;
            }
            
            .logo__footer a {
                color: #fff;
                font-size: 48px;
                letter-spacing: 1px;
                font-weight: 700;
            }
            
            .footer__page1 label {
                width: 585px;
                height: 70px;
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                align-content: center;
                align-items: center;
                position: relative;
            }
            
            .footer__page1 input {
                outline: none;
                width: 100%;
                height: 100%;
                background-color: transparent;
                border: none;
                font-size: 22px;
                color: #fff;
                position: relative;
                padding-left: 20px;
                border-radius: 8px;
                transition: .3s all;
            }
            
            .footer__page1 input::placeholder {
                font-size: 20px;
                color: #fff;
                padding-left: 10px;
                font-weight: 300;
                transition: .4s;
            }
            
            .footer__page1 input:focus {
                background-color: #FFA343;
                color: #000;
            }
            
            .footer__page1 input:focus::placeholder {
                color: #000;
            }
            
            .footer__page1 label a {
                background-color: #FFA343;
                color: black;
                font-size: 17px;
                font-weight: 400;
                width: 340px;
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 8px;
                margin-left: 10px;
            }
            
            .footer__section {
                display: grid;
                grid-auto-columns: 300px;
                grid-template-columns: 1fr 270px 270px 270px;
                grid-template-rows: 1fr;
                gap: 0px 0px;
                grid-template-areas: ". . . .";
                margin: 60px 0;
            }
            
            .footer__column {
                display: flex;
                flex-direction: column;
                flex-wrap: nowrap;
                justify-content: flex-start;
                align-items: flex-start;
                color: #fff;
            }
            
            .footer__column b {
                color: #FFD1A0;
                font-size: 20px;
                font-weight: 400;
            }
            
            .footer__column a {
                color: rgb(129, 129, 129);
                font-size: 19px;
                font-weight: 200;
                transition: all .3s;
                margin-top: 12px;
            }
            
            .footer__column a:hover {
                color: #fff;
            }
            
            .footer__input__two {
                display: flex;
                flex-direction: column;
                flex-wrap: nowrap;
                align-items: flex-start;
                color: #fff;
            }
            
            .footer__input__two h4 {
                font-size: 36px;
                font-weight: 500;
                width: 360px;
                margin: 0;
            }
            
            .footer__input__two label {
                width: 400px;
                height: 70px;
                margin-top: 22px;
                display: flex;
                flex-direction: row;
                border-bottom: 1px solid rgb(90, 90, 90);
                align-items: center;
                justify-content: space-between;
            }
            
            .footer__input__two input {
                background-color: transparent;
                color: #fff;
                font-size: 20px;
                outline: none;
                border: none;
            }
            
            .footer__input__two input::placeholder {
                padding-left: 10px;
            }
            
            .footer__input__two label a::after {
                content: "\276F";
                color: #000;
                background-color: #FFA343;
                padding: 18px 28px;
                font-size: 24px;
                border-radius: 8px 8px 0 0;
                transition: .3s all;
            }
            
            .footer__input__two label a:hover::after {
                background-color: #e08a2e;
            }
            
            .scrolltop {
                color: #fff;
                font-size: 24px;
            }
            
            .scrolling {
                transform: rotate(-90deg);
                transition: .3s all;
                padding: 5px;
                position: relative;
            }
            
            .scrolling:hover {
                transform: rotate(-90deg) translatex(4px);
                color: #FFC178;
            }
            
            .footer__page3 {
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                justify-content: space-between;
                align-content: center;
                align-items: center;
            }
            
            .contact__footer {
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                align-content: center;
                justify-content: center;
                align-items: center;
                gap: 30px;
            }
            
            .footer__policy a {
                color: rgb(133, 133, 133);
                font-size: 15px;
                font-weight: 200;
                margin-right: 100px;
                transition: .3s all;
            }
            
            .footer__policy a:hover {
                color: #fff;
            }
            
            .copy {
                width: 100%;
                text-align: center;
                margin: 30px;
                color: rgb(133, 133, 133);
            }
            
            #aura,
            #cursor {
                border-radius: 100%;
                pointer-events: none;
                position: absolute;
                -webkit-transition: opacity .4s cubic-bezier(.75, -1.27, .3, 2.33), -webkit-transform .5s cubic-bezier(.75, -1.27, .3, 2.33);
                transition: opacity .4s cubic-bezier(.75, -1.27, .3, 2.33), -webkit-transform .5s cubic-bezier(.75, -1.27, .3, 2.33);
                -o-transition: transform .5s cubic-bezier(.75, -1.27, .3, 2.33), opacity .2s cubic-bezier(.75, -1.27, .3, 2.33);
                transition: transform .5s cubic-bezier(.75, -1.27, .3, 2.33), opacity .2s cubic-bezier(.75, -1.27, .3, 2.33);
                transition: transform .5s cubic-bezier(.75, -1.27, .3, 2.33), opacity .2s cubic-bezier(.75, -1.27, .3, 2.33), -webkit-transform .5s cubic-bezier(.75, -1.27, .3, 2.33);
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
                z-index: 99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999;
            }
            
            #cursor {
                background-color: rgb(255, 255, 255);
                height: 8px;
                -webkit-transform: scale(1);
                -ms-transform: scale(1);
                transform: scale(1);
                width: 8px;
            }
            
            #cursor.active {
                opacity: 0;
                -webkit-transform: scale(0);
                -ms-transform: scale(0);
                transform: scale(0)
            }
            
            #aura {
                background-color: hsla(0, 0%, 100%, .1);
                border: .2px solid hsla(0, 0%, 100%, .2);
                height: 46px;
                -webkit-transform: translate(5px, 5px);
                -ms-transform: translate(5px, 5px);
                transform: translate(5px, 5px);
                width: 46px;
            }
            
            #aura.active {
                -webkit-transform: scale(4);
                -ms-transform: scale(4);
                transform: scale(4);
            }
            
            #aura.hidden,
            #cursor.hidden {
                transform: scale(.000000000000000001)
            }
            
            @media all and (max-width: 1500px) {
                .container__main {
                    width: 90vw;
                }
                .page1 {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 30px;
                }
                .page2 {
                    display: flex;
                    flex-direction: column-reverse;
                    align-items: flex-start;
                    gap: 30px;
                }
                .footer__section {
                    display: flex;
                    justify-content: space-between;
                    flex-wrap: wrap;
                    gap: 50px;
                }
                .text p {
                    font-size: 16px;
                }
                .text h3 {
                    font-size: 40px;
                    line-height: 50px;
                }
                .text {
                    height: 50vw;
                    width: 70vw;
                }
                .slideshow-container {
                    height: auto;
                }
                .grid__inner {
                    grid-template-columns: 140px 1fr;
                }
                .footer__column {
                    width: 160px;
                    flex-grow: 2;
                }
            }
            
            @media all and (max-width: 960px) {
                * {
                    cursor: auto !important;
                }
                #aura,
                #cursor {
                    display: none;
                }
                .text p {
                    display: none;
                }
                .text h3 {
                    font-size: 26px;
                    line-height: 38px;
                }
                .read__more {
                    margin-top: 10px;
                }
            }
            
            @media all and (max-width: 700px) {
                header {
                    background-size: 240%;
                    background-repeat: no-repeat;
                    height: 140vh;
                }
                .container__main {
                    margin: -30vh auto 100px auto;
                }
                .nav__link {
                    margin: 0;
                }
                .gap {
                    display: flex;
                    gap: 40px
                }
                nav {
                    flex-direction: column;
                    align-items: flex-start;
                    justify-content: space-evenly;
                }
                .search {
                    display: none;
                }
                .header__contact {
                    display: none;
                }
                .grid__inner {
                    display: flex;
                    width: 90%;
                    margin-top: 20vh;
                }
                .footer__page1 label {
                    display: none;
                }
                .footer__page3 {
                    flex-direction: column;
                    gap: 40px;
                    align-items: flex-start;
                }
                h3 {
                    font-size: 34px !important;
                }
                br {
                    display: none;
                }
                p {
                    font-size: 16px !important;
                }
                h4 {
                    font-size: 24px !important;
                }
                h1 {
                    font-size: 50px !important;
                }
                span {
                    font-size: 50px !important;
                }
                .page2__inner h3 {
                    width: auto;
                }
                .page2__inner {
                    width: auto;
                }
                .page1__img {
                    width: 100%;
                }
                .footer__page1 label {
                    width: 100%;
                }
                .copy {
                    margin: 20px auto;
                }
            }
            
            @media all and (max-width: 560px) {
                .slideshow-container {
                    display: none;
                }
                #navbar .gap {
                    display: none;
                }
                .page2 {
                    margin-top: 60px;
                }
                .gap {
                    flex-direction: column;
                    gap: 6px;
                }
                header {
                    background-size: 400%;
                }
                .footer__input__two {
                    display: none;
                }
                .footer {
                    margin: 0;
                }
            }