* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: 1s;
}
body {
    font-family: "Cairo", serif;
    overflow-x: hidden;
}
.content {
    width: 100%;
    height: 100%;
    position: relative;
}
.header {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: end;
    color: white;
    padding-right: 100px;
}
li, a {
    list-style: none;
    text-decoration: none;
}
.header div {
    display: inline-block;
    margin-left: 100px;
}
.header div h1{
    font-size: 15px;
}
.header div span{
    color: rgba(255, 255, 255, 0.616);
    font-size: 11px;
}
.head {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 59px 0;
}
.head .logo{
    width: 55px;
}
.head .right {
    width: 188px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.head .right i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    padding: 10px;
    background-color: rgb(37, 37, 37);
    border-radius: 50%;
    border: 1px solid white;
}
.head .right .icon {
    width: 30px;
    flex-wrap: wrap ;
    justify-content: flex-end;
    display: flex;
    cursor: pointer;
    padding: 20px 0;
}
.menu {
    width: 400px;
    height: 100%;
    z-index: 9999999999999;
    position: fixed;
    display: flex;
    flex-direction: column;
    padding: 30px;
    top: 0;
    right: -20px;
    transform: translateX(100%);
    transition: .7s;
    color: white;
    margin: 0;
    overflow-y: scroll;
    background-color:white;
    backdrop-filter: blur(20px);
}
.menu.active {
    transform: translateX(0);
    background-color: rgba(17, 17, 17, 0.452);
    backdrop-filter: blur(20px);
    z-index: 9999999999999;
    overflow-y: scroll;
}
.menu .x {
    left: 20px;
    color: #b7e43b;
    top: 20px;
    font-size: 22px;
    font-weight: 900;
    cursor: pointer;
    margin-bottom: 20px;
}
.menu ul {
    padding: 0;
    margin-top: 10px;
}
.menu ul li {
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.199);
    padding-bottom: 17px;
}
.menu ul li a {
    color: white;
    font-weight: 600;
    font-size: 18px;
}
.head .right .icon span {
    background-color: white;
    margin: 2px 0;
}
.head .right .icon span:first-child {
    width: 100%;
    height: 2px;
}
.head .right .icon span:nth-child(2) {
    width: 70%;
    height: 2px;
    transition: 0.3s;
}
.head .right .icon span:last-child {
    width: 100%;
    height: 2px;
}


.landing-page .container {
    width: 90%;
    margin: auto;
    position: relative;
}
.text {
    position: absolute;
    top: 100px;
    left:-150px;
    color: white;
    font-size: 155px;
    rotate: -90deg;
    font-family: 'Londrina Outline', sans-serif;
}
/* start backgrounds */
.background-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0;
    transition: opacity 1s ease;
}
.nav-buttons {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}
.nav-button {
    width: 30px;
    height: 5px;
    border-radius: 44px;
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    color: #000;
    transition: background-color 0.3s ease;
    margin: 0 4px;
    border: 1px solid white;
    border-top: 0;
}
.nav-button:hover {
    background-color: rgba(255, 255, 255, 0.8);
}
/* end backgrounds */
/* start Navigate between texts */
.text-container {
    width: 470px;
    height: 160px;
    overflow: hidden;
    position: absolute;
    bottom: 60px;
    right: 50px;
    display: flex;
    align-items: end;
    justify-content: end;
} 
.text-box {
    height: 100%;
    width: 90%;
    display: flex;
    flex-direction: column;
    text-align: end;
    align-items: start;
    justify-content: start;
}
.text-box span {
    color: white;
}
.text-item {
    display: none;
    padding: 10px;
    font-size: 14px;
    margin-right: 60px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.705);
}  
.scroll-up,
.scroll-down {
    position: absolute;
    color: rgba(255, 255, 255, 0.699);
    border: none;
    outline: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    background: none;
} 
.scroll-up {
    bottom: 35px;
    right: 0px;
}
.scroll-down {
    bottom: 10px;
    right: 0px;
}
/* end Navigate between texts */
.test-container {
    width: 170px;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 10px;
    right: 118px;
}
.test-container button {
    background-color: rgba(240, 248, 255, 0.185);
    backdrop-filter: blur(1px);
    border: none;
    padding: 10px 15px;
    color: white;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.137);
    font-size: 11px;
    position: relative;
    cursor: pointer;
}
.test-container button::before {
    content: "\2197";
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border: 1px solid rgba(255, 255, 255, 0.137);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(240, 248, 255, 0.185);
    backdrop-filter: blur(1px);
    padding: 10px;
    font-size: 17px;
    
}
@media (max-width: 1000px) {
    .background:nth-child(1) {
        background-image: url('images/background-m1.webp') !important;
    }
    .background:nth-child(2) {
        background-image: url('images/background-m2.webp') !important;
    }
    .background:nth-child(3) {
        background-image: url('images/background-m3.webp') !important;
    }
    .background:nth-child(4) {
        background-image: url('images/background-m4.webp') !important;
    }
    .background:nth-child(5) {
        background-image: url('images/background-m5.webp') !important;
    }
    .header div {
        display: inline-block;
        margin-left: 70px;
    }
    .text {
        top: 50px;
        font-size: 90px;
        left: -100px;
    }
    .text-container {
        width: 366px;
        bottom: 0px;
    }
    .text-container .text-item {
        font-size: 11px;
    }
    .content .test-container button {
        padding: 8px;
    }
    .content .test-container button::before {
        width: 6px;
        height: 6px;
        right: -40px;
    }
    .header div h1 {
        font-size: 11px;
    }
    .header div span {
        font-size: 8px;
    }
    .test-container {
        width: 246px;
        right: 0;
    }
    .head {
        padding: 10px 0 5px 0;
    }
}
@media (max-width: 700px) {
    .landing-page{
        width: 100%;
        height: 100vh;
    }
    .background:nth-child(1) {
        background-image: url('images/background-small1.webp') !important;
    }
    .background:nth-child(2) {
        background-image: url('images/background-small2.webp') !important;
    }
    .background:nth-child(3) {
        background-image: url('images/background-small3.webp') !important;
    }
    .background:nth-child(4) {
        background-image: url('images/background-small4.webp') !important;
    }
    .background:nth-child(5) {
        background-image: url('images/background-small5.webp') !important;
    }
    .head {
        padding: 10px 0 55px 0;
    }
    .head .logo{
        width: 37px;
    }
    .header {
        width: 90%;
        margin: 0 auto;
        padding: 10px;
        align-items: center;
        justify-content:space-between;
    }
    .header div {
        margin: 0 ;
        width: auto;
        text-align: center;
    }
    .header .speed-4 {
        display: none;
    }
    .header div h1 {
        font-size: 14px;
    }
    .header div span {
        font-size: 11px;
    }
    .text {
        top: 90px;
        left: -90px;
        font-size: 76px;
    }
    .text-container {
        width: 270px;
        right: 14px;
        bottom: 110px;
    }
    .text-item {
        font-size: 11px;
        margin-right: 0px;
    }
    .test-container {
        width: 138px;
        bottom: 100px;
        right: 40px;
    }
    .test-container button {
        padding: 7px 11px;
        font-size: 9px;
        cursor: auto;
    }
    .test-container button::before {
        right: -40px;
        width: 7px;
        height: 7px;
        padding: 8px;
        font-size: 14px;
        cursor: auto;
    }
    .nav-buttons button,
    .menu .x,
    .head .right .icon,
    .scroll-up, 
    .scroll-down {
        cursor: auto;
    }
    .menu {
        padding: 40px;
    }
    .text-box {
        width: 270px;
    }
    .scroll-down {
        bottom: -9px;
    }
    .nav-buttons {
        bottom: 60px;
    }
    .scroll-up {
        bottom: 20px;
    }
}








.about {
    width: 100%;
    height: 140vh;
    background-color: black;
}
.about .container {
    width: 80%;
    height: 100%;
    margin: auto;
    position: relative;
}
.about .container .features {
    position: absolute;
    top: 40px;
    width: 100%;
    height: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.about .container .features.animate {
    background-color: rgba(255, 255, 255, 0.11);
}
.about .container .features .circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #000;
    border: 2px solid rgba(255, 255, 255, 0.315);
    position: relative;
    scale: 0;
    opacity: 0;
}
.about .container .features .circle.animate {
    scale: 1;
    opacity: 1;
}
.about .container .features .circle::before {
    content: "Apex supercar";
    position: absolute;
    top: 50px;
    color: rgba(255, 255, 255, 0.445);
    font-size: 14px;
    font-weight: 300;
    width: 200px;
}
.about .container .features .circle2::before {
    content: "Elegance With Aggression";
}
.about .container .features .circle3::before {
    content: "Sharp Handling";
}
.about .container .features .circle4::before {
    content: "Performance";
}
.about .container .features .circle5::before {
    content: "3D View";
}
.about .container .features .small-circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #ff54f170;
    margin-right: -7px;
}

.about .container {
    display: flex;
    align-items: end;
}
.about .container .content  {
    width: 95%;
    height: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.about .container .content .image {
    width: 50%;
    height: 100%;
    position: relative;
}
.about .container .content .image .image-container,
.about .container .content .image .image-container::before {
    width: 290px;
    height: 290px;
    border-radius: 50%;
    border: 2px dashed  rgba(255, 255, 255, 0.315);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.about .container .content .image .image-container::before {
    content: '';
    width: 400px;
    height: 400px;
    border: 1px solid  rgba(255, 255, 255, 0.26);
}


.about .container .content .image .features {
    width: 100%;
    height: 100%;
    top: 0;
    position: relative;
    background-color: transparent;
    scale: 0;
    transition: 1s;
}
.about .container .content .image .features.animate {
    scale: 1;
}

.about .container .content .image .features .circle {
    width: 30px;
    height: 30px;
    position: absolute;
    border: 1px solid  rgba(255, 255, 255, 0.315);
}
.about .container .content .image .features .circle::before {
    font-size: 12.5px;
}
.about .container .content .image .features .circle1 {
    top: -30px;
}
.about .container .content .image .features .circle2 {
    top: -30px;
    right:  0px;
}
.about .container .content .image .features .circle3 {
    bottom: -30px;
}
.about .container .content .image .features .circle4 {
    bottom: -30px;
    right: 0;
}
.about .container .content .image .features .circle5 {
    bottom: -72px;
    right: 42%;
}
.about .container .content .image .features .circle1::before {
    content: 'Aerodynamics';
    top: 0;
    left: -100px;
}
.about .container .content .image .features .circle2::before {
    content: 'Blistering Speed';
    top: 0px;
    left: 50px;
}
.about .container .content .image .features .circle3::before {
    content: 'Intuitive Controls';
    top: 0px;
    right: -20px;
}
.about .container .content .image .features .circle4::before {
    content: 'Hybrid Powertrains';
    top: 0px;
    left: 50px;
}
.about .container .content .image .features .circle5::before {
    content: 'Visual Masterpiece';
    bottom: 0;
}

.about .container .content .image img{
    width: 550px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}
.lighting {
    width: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    opacity: 0;
    transition: 1.1;
    opacity: 0;
}
.lighting.animate {
    animation-name: lighting ;
    animation-duration: 1.4s;
    animation-delay: 1s;
    animation-fill-mode: both   ;
}
@keyframes lighting {
    100% {
        opacity: 1;
    }
}
.about .container .content .information {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
}
.about .container .content .information h1{
    color: rgba(255, 255, 255, 0.692);
    text-align: end;
    font-weight: 300;
    letter-spacing: 8px;
    font-size: 25px;
    margin-bottom: 20px;
}
.about .container .content .information p {
    width: 80%;
    color: rgba(255, 255, 255, 0.568);
    text-align: end;
    line-height: 4ch;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.about .container .content .information .test-container {
    position: relative;
    left: -50px;
    justify-content: end;
}
.about .container .content .information .test-container button{
    color: rgba(255, 255, 255, 0.541);
}



@media (max-width: 1000px) {
    .about {
        height: auto;
    }
    .about .container {
        width: 90%;
    }
    .about .container .content {
        width: 95%;
        height: 100%;
    }
    .about .container .features .circle {
        width: 20px;
        height: 20px;
        border: 1px solid rgba(255, 255, 255, 0.315);
    }
    .about .container .content {
        flex-direction: column;
    }
    .about .container .content .image {
        width: 50%;
        height: 405px;
        position: relative;
        margin-bottom: 40px;
    }
    .about .container .content .image img {
        width: 250px;
    }
    .about .container .content .image .image-container {
        width: 170px;
        height: 170px;
        top: 63%;
    }
    .about .container .features .circle::before {
        top: 30px;
    }
    .about .container .content .image .features .circle::before,
    .about .container .features .circle::before { 
        width: 100px;
        font-size: 10px;
    }
    .about .container .content .image .image-container::before {
        width: 270px;
        height: 270px;
    }
    .about .container .content .information {
        width: 100%;
        height: auto;
    }
    .about .container .content .information h1,
    .about .container .content .information p {
        width: 100%;
        text-align: left;
    }
    .about .container .content .information h1 {
        font-size: 18px;
        letter-spacing: 4px;
    }
    .about .container .content .information .test-container {
        bottom: 0;
    }

    .about .container .content .image .features .circle {
        width: 28px;
        height: 28px;
    }
    .about .container .content .image .features .circle1 {
        left: -40px;
        top: -10px;
    }
    .about .container .content .image .features .circle2 {
        display: block;
        top: -48px;
    }
    .about .container .content .image .features .circle3 {
        bottom: -24px;
        left: -30px;
    }
    .about .container .content .image .features .circle4 {
        left: 60px;
        bottom: -66px;
    }
    .about .container .content .image .features .circle5 {
        right: -30px;
        bottom: -30px;
    }
    .about .container .content .image .features .circle::before {    
        font-size: 7px;
        left: -30px;
        top: -15px;
    }
}


@media (max-width: 600px) {
    .about {
        height: auto;
    }
    .about .container {
        width: 90%;
    }
    .about .container .content {
        width: 95%;
        height: 100%;
    }
    .about .container .features .circle {
        width: 28px;
        height: 28px;
        border: 1px solid rgba(255, 255, 255, 0.315);
    }
    .about .container .content .image .features .circle3 {
        display: block;
    }
    .about .container .content {
        flex-direction: column;
    }
    .about .container .content .image {
        width: 50%;
        height: 520px;
        position: relative;
        margin-bottom: 40px;
    }
    .about .container .content .image img {
        width: 300px;
    }
    .about .container .content .image .image-container {
        width: 200px;
        height: 200px;
        top: 63%;
    }
    .about .container .features .circle2{
        display: none;
    }
    .about .container .features .circle::before {
        top: 30px;
    }
    .about .container .content .image .features .circle::before,
    .about .container .features .circle::before { 
        width: 100px;
        font-size: 12px;
        
    }
    .about .container .content .image .image-container::before {
        width: 310px;
        height: 310px;
    }
    .about .container .content .information {
        width: 100%;
        height: auto;
    }
    .about .container .content .information h1,
    .about .container .content .information p {
        width: 100%;
        text-align: left;
    }
    .about .container .content .information h1 {
        font-size: 18px;
        letter-spacing: 4px;
    }
    .about .container .content .information .test-container {
        bottom: 0;
    }

    .about .container .content .image .features .circle {
        width: 28px;
        height: 28px;
    }
    .about .container .content .image .features .circle1 {
        left: -38px;
    }
    .about .container .content .image .features .circle2 {
        display: block;
        top: -48px;
    }
    .about .container .content .image .features .circle3 {
        bottom: -40px;
        left: -10px;
    }
    .about .container .content .image .features .circle4 {
        left: 90px;
        bottom: -72px;
    }
    .about .container .content .image .features .circle5 {
        right: -30px;
        bottom: -20px;
    }
    .about .container .content .image .features .circle::before {    
        font-size: 11px;
        left: -30px;
        top: -26px;
    }
}






.video-section {
    width: 100%;
    height: auto;
    background-color: #000;
    overflow: hidden;
}
.video-section .container {
    width: 80%;
    margin: auto;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.315);
    position: relative;
    opacity: 0;
    transform: translateY(150px);
    transition: 2s;
}
.video-section .container.animate {
    opacity: 1;
    transform: translateY(0px);
}
.video-section .container .head {
    padding: 20px 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(255, 255, 255, 0.315);
}
.video-section .container .head h1 {
    width: 100%;
    color: rgba(255, 255, 255, 0.692);
    text-align: start;
    font-weight: 300;
    letter-spacing: 8px;
    font-size: 20px;
    margin-bottom: 10px;
}
.video-section .container .head p {
    color: rgba(255, 255, 255, 0.568);
    text-align: start;
    line-height: 3.5ch;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
}
.video-section .container .video-container {
    width: 100%;
    height: 460px;
    overflow: hidden;
    background: url('images/video-back.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}
.video-section .container .video-container i {
    position: absolute;
    right: 20px;
    top: 15px;
    background-color: rgba(255, 255, 255, 0.568);
    color: rgba(255, 255, 255, 0.733);
    border-radius: 50%;
    padding: 16PX;
    width: 25PX;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.815);
    z-index: 9999999999;
    cursor: pointer;
    display: none;
}
.video-section .container .video-container .test-container {
    left: 50%;
    transform: translateX(-50%);
    bottom: 70px;
    z-index: 99999999999999;
}
.video-section .container .video-container .video {
    width: 100%;
    display: none;
}
.video-section .container .video-container .video.block {
    display: block;
}

.video-section .container::before,
.video-section .container::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background-color: #000;
    border-right: 1px solid rgba(255, 255, 255, 0.315);
    rotate: 33deg;
}
.video-section .container::before{
    left: -59px;
    top: -32px;
}
.video-section .container::after{
    right: -58px;
    bottom: -33px;
    border-left: 1px solid rgba(255, 255, 255, 0.315);
    border-right: 0;
    rotate: 34deg;
}





@media (max-width: 1000px) {
    .video-section {
        width: 100%;
        height: auto;
    }
    .video-section .container {
        width: 90%;
    }
    .video-section .container::after {
        width: 0;
        height: 0;
    }
    .video-section .container .video-container {
        width: 100%;
        height: 460px;
        overflow: hidden;
        background: url('images/video-back-mobile.webp');
        background-size: cover;
        background-position: center;
    }
    .video-section .container .head {
        padding: 20px;
    }
    .video-section .container .head h1 {
        font-size: 18px;
        letter-spacing: 4px;
    }
    .video-section .container .head p {
        font-size: 12px;
    }
    .video-section .container h2 {
        letter-spacing: 4px;
    }
    .video-section .container p {
        line-height: 3ch;
        letter-spacing: .5px;
    }
    .video-section .container .video-container {
        width: 100%;
        height: 168px;
    }
    .video-section .container .video-container i {
        width: 18PX;
        height: 18px;
        padding: 10px;
        font-size: 10px;
        right: 10px;
        top: 7px;
    }
    .video-section .container .video-container .test-container {
        left: 50%;
        transform: translateX(-50%);
        bottom: 5px;
        z-index: 99999999999999;
    }
    .video-section .container::before {
        left: 96.2%;
        rotate: -33deg;
        top: -32px;
        border-left: 1px solid rgba(255, 255, 255, 0.315);
        border-right: 0;
    }
}
@media (max-width: 600px) {
    .video-section {
        width: 100%;
        height: auto;
    }
    .video-section .container {
        width: 90%;
    }
    .video-section .container::before {
        left: 90.4%;
        rotate: -33deg;
        top: -32px;
        border-left: 1px solid rgba(255, 255, 255, 0.315);
        border-right: 0;
    }
    .video-section .container::after {
        width: 0;
        height: 0;
    }
    .video-section .container .video-container {
        width: 100%;
        height: 460px;
        overflow: hidden;
        background: url('images/video-back-mobile.webp');
        background-size: cover;
        background-position: center;
    }
    .video-section .container .head {
        padding: 20px;
    }
    .video-section .container .head h1 {
        font-size: 18px;
        letter-spacing: 4px;
    }
    .video-section .container .head p {
        font-size: 12px;
    }
    .video-section .container h2 {
        letter-spacing: 4px;
    }
    .video-section .container p {
        line-height: 3ch;
        letter-spacing: .5px;
    }
    .video-section .container .video-container {
        width: 100%;
        height: 168px;
    }
    .video-section .container .video-container i {
        width: 18PX;
        height: 18px;
        padding: 15px;
        font-size: 10px;
        right: 10px;
        top: 7px;
        cursor: auto;
    }
    .video-section .container .video-container .test-container {
        left: 50%;
        transform: translateX(-50%);
        bottom: 5px;
        z-index: 99999999999999;
    }

}







.features-section {
    width: 100%;
    background-color: #000;
    overflow-x:hidden;
}
.features-section .container {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
.features-section .container .image  {
    width: 34%;
    position: relative;
}
.features-section .container .image1 {
    opacity: 0;
    transform: translateX(-150%);
    filter: blur(20px);
}
.features-section .container .image2 {
    opacity: 0;
    transform: translateX(150%);
    filter: blur(20px);
}

.features-section .container .image1.animate {
    opacity: 1;
    filter: blur(0px);
    transform: translateX(0);
}
.features-section .container .image2.animate {
    opacity: 1;
    filter: blur(0px);
    transform: translateX(0%);
}
.features-section .container .image img {
    width: 100%;
}
.features-section .container .image::before,
.features-section .container .image::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background-color: #000;
    border-right: 0;
    rotate: 33deg;

}
.features-section .container .image::before {
    left: -59px;
    top: -32px;
}
.features-section .container .image::after {
    right: -66px;
    bottom: -20px;
    border-right: 0;
    width: 90px;
    height: 60px;

}


.features-section .container .features-text {
    width: 30%;
    color: white;
    position: relative;
    font-size: 11px;
    border: 1px solid rgba(255, 255, 255, 0.315);
    border-top:0;
    border-image: linear-gradient(to top,  rgba(255, 255, 255, 0.315), black) 1;
    margin-bottom: 9px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    z-index: 99999;
    opacity: 0;
}
.features-section .container .features-text.animate {
    opacity: 1;
}
.features-section .container .features-text .row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.features-section .container .features-text .row h1{
    font-size: 22px;
    color: rgba(255, 255, 255, 0.582);
}
.features-section .container .features-text .row span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.356);
}


@media (max-width: 1000px) {
    .features-section .container .features-text .row {
        margin: 10px 0;
    }
    .features-section .container .features-text .row h1 {
        font-size: 12px;
        text-align: center;
    }
    .features-section .container .features-text .row span {
        text-align: center;
        font-size: 9px;
    }
}

@media (max-width: 600px) {
    .features-section .container {
        flex-direction: column;
        width: 90%;
    }
    .features-section .container .image {
        width: 100%;
    }
    .features-section .container .features-text  {
        width: 100%;
    }
    .features-section .container .features-text .row {
        margin: 10px 0;
    }
    .features-section .container .features-text .row h1{
        font-size: 18px;
    }
}




.community-section {
    width: 100%;
    background-color: #000;
    overflow-x: hidden;
}
.community-section h1 {
    color: rgba(255, 255, 255, 0.11);
    text-align: center;
    font-size: 250px;
    line-height: 2ch;
    position: relative;
    opacity: 0;
    transform: translateY(70px);
    transition: 1.6s;
}
.community-section h1.animate {
    opacity: 1;
    transform: translateY(0);
}
.community-section h1::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 40px;
    background-color: #000;
    bottom: -50px;
    box-shadow: 0px -80px 40px 20px #000;

}
.community-section .container {
    width: 80%;
    margin: auto;
    border-top:0;
    border: 1px solid rgba(255, 255, 255, 0.315);
    border-top:0;
    border-image: linear-gradient(to top,  rgba(255, 255, 255, 0.315), black) 1;
    padding: 20px;
    position: relative;
}
.community-section .container::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background-color: #000;
    border-right: 1px solid rgba(255, 255, 255, 0.315);
    rotate: 33deg;
    right: -58px;
    bottom: -33px;
    border-left: 1px solid rgba(255, 255, 255, 0.315);
    border-right: 0;
    rotate: 34deg;
}
.community-section .container .images {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.community-section .container .images .image {
    width: 32.7%;
    position: relative;
}
.community-section .container .images img {
    width: 100%;
}
.community-section .container .images .image-1,
.community-section .container .images .image-2,
.community-section .container .images .image-3 {
    scale: .8;
    opacity: 0;
}

.community-section .container .images .image-1.animate,
.community-section .container .images .image-2.animate,
.community-section .container .images .image-3.animate {
    scale: 1;
    opacity: 1;
}
.community-section .container .images .image::before {
    content: '↗';
    position: absolute;
    right: 12px;
    bottom: 25px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #000;
    color: rgba(255, 255, 255, 0.575);
    display: flex;
    justify-content: center;
    align-items: center; 
    font-size: 20px;
    z-index: 9999;
    border: 6px solid rgba(255, 255, 255, 0.527);
}
.community-section .container .images .image::after {
    content: 'XC01-REVERB';
    position: absolute;
    right: 66px;
    bottom: 39px;
    color: white;
    font-size: 10px;
    letter-spacing: 2px;
}
.community-section .container .images .image-2::after {
    content: 'IP56-OCULUS';
}
.community-section .container .images .image-3::after {
    content: 'VX-MIRAGE SOLO';
}
.community-section h2 {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.692);
    text-align: start;
    font-weight: 300;
    letter-spacing: 8px;
    margin: 10px 0;
}
.community-section .container p {
    width: 90%;
    color: rgba(255, 255, 255, 0.568);
    text-align: start;
    line-height: 3.5ch;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
}

.community-section .container .test-container {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 20px 0 7px 0;
}
@media (max-width: 900px) {
    .community-section .container {
        width: 90%;
        padding: 0;
    }
    .community-section h1 {
        color: rgba(255, 255, 255, 0.11);
        text-align: center;
        font-size: 70px;
    }
    .community-section h2,
    .community-section p {
        padding: 0 15px;
    }
    .community-section h2 {
        letter-spacing: 4px;
    }
    .community-section .container p {
        line-height: 3ch;
        letter-spacing: .5px;
    }
    .community-section h1::before {
        bottom: -30px;
        box-shadow: 0px -5px 30px 10px #000;

    }
    .community-section .container .images {
        flex-direction: column;
    }
    .community-section .container .images .image {
        width: 100%;
    }
    .community-section .container .images img {
        width: 100%;
        margin: 10px 0;
    }
    .community-section .container .test-container {
        width: 138px;
        bottom: 0;
    }
}


.experience-section {
    width: 100%;
    height: 80vh;
    background: url('images/exp-background.webp');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.experience-section::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background-color: #000;
    border-right: 0;
    rotate: 33deg;
    right: -58px;
    bottom: -33px;
    border-left: 0;
    border-right: 0;
    rotate: 34deg;
}
.experience-section .container {
    width: 80%;
    height: 100%;
    padding: 50px 0px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: rgb(255, 255, 255);
    text-shadow: 1px 1px #000;
    opacity: 0;
}
.experience-section .container.animate {
    opacity: 1;
}
.experience-section .container h1 {
    font-size: 60px;
    line-height: 2.2ch;
    scale: 1.7;
    filter: blur(20px);
}
.experience-section .container h1.animate {
    scale: 1;
    filter: blur(0px);
    -webkit-filter: blur(0px);
}
.experience-section .container p {
    width: 45%;
    color: rgb(255, 255, 255);
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 20px;
}
.experience-section .container .test-container {
    position: relative;
    left: 0;
}




@media (max-width: 900px) {
    .experience-section {
        background: url('images/exp-background-mobile.webp');
        background-size: cover;
        height: auto;
    }
    .experience-section .container h1 {
        font-size: 35px;
        line-height: 2.2ch;
        text-align: center;
        margin-bottom: 30px;
    }
    .experience-section .container p {
        width: 100%;
    }
    .experience-section .container .test-container {
        width: 138px;
        bottom: 0;
    }
}


.footer {
    width: 100%;
    height: auto;
    background-color: #000;
    overflow-x: hidden;
}
.footer .container {
    width: 80%;
    margin: auto;
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
}
.footer .container .col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer .container .col h1 {
    color: white;
    font-size: 55px;
}
.footer .container .col .icons {
    display: flex;
    color: white;
}
.footer .container .col .icons i {
    margin-right: 50px;
    color: rgba(255, 255, 255, 0.596);
    font-size: 18px;
    cursor: pointer;
    transition: .3s;
}
.footer .container .col .icons i:hover {
    color: white;
}
.footer .container .col  span {
    color: rgba(255, 255, 255, 0.562);
    font-weight: 300;
    font-size: 15px;
}
.footer .container .col2 {
    color: white;
    display: flex;
    align-items: end;
}
.footer .container .col2 h1 {
    width: 100%;
    text-align: end;
    width: 100%;
    color: rgba(255, 255, 255, 0.692);
    font-weight: 300;
    letter-spacing: 8px;
    font-size: 20px;
    margin-bottom: 10px;
}
.footer .container .col2 p {
    width: 90%;
    text-align: end;
    color: rgba(255, 255, 255, 0.568);
    line-height: 4ch;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
}
.footer .container .col2 form {
    width: 500px;
    display: flex;
    flex-direction: column;
    text-align: end;
}
.footer .container .col2 form .input {
    width: 100%;
    position: relative;
}
.footer .container .col2 form .input input {
    width: 100%;
    background-color: #000;
    border: 1px solid rgba(255, 255, 255, 0.315);
    margin: 10px 0;
    padding: 15px 10px;
    color: white;
    outline: none;
}
.footer .container .col2 form .input::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: #000;
    border-right: 0;
    rotate: 33deg;
    right: -16px;
    bottom: 2px;
    rotate: 30deg;
    border-left: 1px solid rgba(255, 255, 255, 0.315);
}
.footer .container .col2 form .test-container {
    position: relative;
    bottom: 0;
    left: 74%;
}
div:where(.swal2-container).swal2-center>.swal2-popup {
    
    font-size: 12px;
    background-color: #0000004b;
    backdrop-filter: blur(16px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.315);
}
div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-circular-line-right,
div:where(.swal2-icon).swal2-success .swal2-success-fix ,
div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line][class$=left] {
    display: none;
}

@media (max-width: 900px) {
    .footer .container {
        width: 90%;
        flex-direction: column;
    }
    .footer .container h1 {
        text-align: center;
        margin-bottom: 20px;
    }
    .footer .container .col2 {
        align-items: center;
    }
    .footer .container .col2 form {
        width: 100%;
    }
    .footer .container .col2 form .test-container {
        left: 0;
    }
    .footer .container .col span {
        margin: 30px 0;
    }
    .footer .container .col2 h1 {
        text-align: start;
        margin: 10px 0;
    }
    .footer .container .col2 p {
        width: 100%;
        text-align: start;
    }
}

@media (max-width: 900px) {
    .container {
        width: 90%;
    }
    .test-container button{
        backdrop-filter: blur(7px);
        color: rgb(236, 236, 236);
        font-size: 12px;
    }
}

@media (max-width: 900px) {
    .content .test-container button {
        font-size: 9px;
        color: rgba(255, 255, 255, 0.747);
    }
}


