@font-face {
    font-family: neu-light;
    src: url(NeueHaasDisplayThin.ttf);
}

@font-face {
    font-family: neu-mid;
    src: url(NeueHaasDisplayMediu.ttf);

}

@font-face {
    font-family: neu-thin;
    src: url(NeueHaasDisplayRoman.ttf);

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html,
body {
    width: 100%;
    height: 100%;
}

.header {
    z-index: 10;
    position: relative;
}

nav {
    background-color: #EFEAE3;
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.2vw 2.2vw;
    font-family: neu-light;
}

.navp1 {
    display: flex;
    gap: .5vw;
    margin-right: .1vw;
}

.navp1 h1 {
    border: 1px solid rgb(190, 189, 189);
    border-radius: 40px;
    font-size: 1.1vw;
    padding: .8vw 1.6vw;
    position: relative;
    overflow: hidden;
    z-index: 9;
}

.navp1 h1 a {
    letter-spacing: .1vw;
    color: black;
    position: relative;
}

.navp1 h1::after {
    content: "";
    width: 100%;
    height: 100%;
    bottom: -100%;
    left: 0;
    background-color: black;
    position: absolute;
    border-radius: 100%;
    transition: all .2s ease-in-out;
}

.navp1 h1:hover::after {
    bottom: 0;
    border-radius: 0;

}

.navp1 h1 a:hover {
    color: #EFEAE3;
    z-index: 9;
    position: relative;
}

.page1 {
    background-color: #EFEAE3;
    width: 100%;
    min-height: calc(100vh - 130px);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 4.5vw 2.2vw;
}

.page1 .pleft {
    width: 28.5%;
    font-size: 1.3vw;
    font-family: neu-mid;
    letter-spacing: 1;
    line-height: 1;
}

.page1 .pright {
    width: 45%;
    font-size: 5.5vw;
    line-height: .8;
    letter-spacing: 1;
    font-family: neu-mid;
    margin-right: 0;
    text-align: end;
}

.border1 {
    border-top: 1px solid red;
    margin: 0 2vw;
    background: #EFEAE3;
    padding: 0 10vw;
}

.page2 {
    width: 100%;
    min-height: 300vh;
    background-color: #EFEAE3;

}

.page2 video {
    margin-top: 5vw;
    width: 94%;
    height: 100%;
    margin-left: 3%;
    border-radius: 10px;
    
}

.slider {
    white-space: nowrap;
    overflow-x: scroll;

}

.slider::-webkit-scrollbar {
    display: none;
}

.slider1 {
    padding: 0 3vw;
    margin-top: 8vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: neu-mid;
    gap: 5vw;
    font-size: 5vw;
    animation: golaAnimation 10s linear infinite ;
    white-space: nowrap;
}


.slider h1 {
        display: inline-block;
}

.gola {
    width: 4vw;
    height: 4vw;
    border-radius: 50%;
    background-color: red;
}

@keyframes golaAnimation {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-100%);
    }
}

.p2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    margin-top: 5vw;
    padding: 0 6.5vw;
}

.p2left {
    width: 66%;
    font-size: 2.35vw;
    letter-spacing: .1;
    line-height: 1.05;
    font-family: neu-mid;
}

.p2right {
    width: 25%;
    margin-top: 17vw;
    font-family: neu-light;
    font-weight: 700;
}

.p2right img {
    border-radius: 10px;
    width: 100%;
}

.p2right p {
    margin-top: 3vw;
}

.page3 {
    width: 100%;
    min-height: 100vh;
    background: #EFEAE3;
}

.p3 {
    font-family: neu-mid;
    width: 100%;
    height: 8vw;
    border-bottom: 1px solid #C1BCB6;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.p3 h1 {
    padding: 0 2.5vw;
    font-size: 4vw;
    z-index: 9;
}

.p3::after {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: -100%;
    background-color: #FF9831;
    position: absolute;
    transition: all .2s ease-in-out;
}

.p3:hover::after {
    top: 0;
}

.image1 {
width: 25vw;
height: 60vh;
background-color: #FF3309;
border-radius: 10px;
position: fixed;
left: 50vw;
top: 10vw;
z-index: 11;
display: none;
background-position: center;
background-size: cover;
}

.allProducts {
    display: inline-flex;
    align-items: center;
    border: 1px solid #C1BCB6;
    margin: 5vw 2vw;
    border-radius: 50px;
    padding: .5vw 1.5vw;
    font-family: neu-light;
    font-weight: 100;
    font-size: 1vw;
    gap: 1vw;
    position: relative;
    overflow: hidden;
}

.allProducts img {
    width: 2vw;
}

.allProducts::after {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: -100%;
    position: absolute;
    background-color: black;
    transition: all .2s linear;
    border-radius: 100%;
}

.allProducts:hover::after {
    bottom: 0;
    border-radius: 0;
}

.cards {
    max-width: 100vw;
    height: 100vh;
    background-color: black;
    margin: 2vw;
    margin-top: 5vw;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    font-family: neu-mid;
    font: bold;
    /* padding: 5vw; */
}

.cleft {
    width: 42%;
    color: #EFEAE3;
    padding-left: 11vw;
    padding-top: 13vw;
    line-height: 1;

}

.cleft h1 {
    font-size: 5vw;
}

.cleft p {
    margin-top: 3vw;
    font-size: 1.2vw;
    line-height: 1.2;
    font-family: neu-thin;
}

.cright {
    width: 100%;
    position: relative;

}

.cright img {
    position: absolute;
    right: 0;
    width: 80.5%;
    /* border-radius: 15px; */
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 9px;
    border-bottom-right-radius: 9px;

}


.swiper {
    width: 100%;
    height: 50vh;
}

.swiper-slide {
    padding: 0 8vw;
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid black;
    background: #EFEAE3;
}


.swiper-slide img {
    display: block;
    object-fit: cover;
    margin-top: 2vw;
    margin-bottom: 2vw;
}

.swiper-slide h3 {
    font-family: neu-thin;
    width: 21%;
    font-size: 1.2vw;
    text-align: left;
    font-weight: 100;
}


.stext {
    font-family: neu-light;
    display: flex;
    align-items: center;
    gap: 1vw;
    padding: 10vw 6.5vw;
}

.stext h4 {
    font-size: 1vw;
    letter-spacing: .1vw;
}

.stext .spoint {
    width: .6vw;
    height: .6vw;
    border-radius: 50%;
    background-color: #FE330A;
}

.test {
    width: 100%;
    height: 100vh;
    background: black;
}


.backsundown {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 9;
    font-family: neu-mid;
}

.backsundown h1 {
    color: #EFEAE3;
    margin-bottom: 3vw;
    font-size: 23vw;
    bottom: 0;
    position: absolute;
    width: 90vw;
    margin-left: 2vw;
}

.backsundown .bs1 {
    font-size: 1.5vw;
}

.bsr input {
    border: none;
    border-bottom: 1px solid #ff6948;
    width: 23vw;
    height: 5vh;
    background: #FF3309;
    position: absolute;
    padding: 1.5vw 0;
}

.bsr input::placeholder {
    color: #ff9090;
    font-family: neu-light;
    font-weight: bold;
    font-size: 1.1vw;
    letter-spacing: .1vw;

}

.bsr {
    position: relative;
    width: 25%;
    margin-right: 1.5vw;
    margin-bottom: 3vw;
    font-size: 1.5vw;
    font-family: neu-light;
    z-index: 11;
}

.bsr p {
    margin-bottom: 2vw;
}

.bsr img {
    width: 3vw;
    filter: invert(1);
    position: absolute;
    margin: .5vw 20vw;
}

.bsall {
    color: white;
    width: 100%;
    height: 30vh;
    padding: 0 6.5vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.bsborder .bsb1 {
    width: 90%;
    margin-left: 5%;
    border-bottom: 1px solid white;
    position: relative;
    padding: 200px;
}

.bsl .bs1 {
    position: relative;
    z-index: 11;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2vw 2.3vw;

}

.footer h4 {
    color: white;
    font-family: neu-light;
    letter-spacing: .1vw;

}

.backsundown .gooye1 {
    position: absolute;
    background-color: #FF3309;
    width: 80vw;
    height: 80vw;
    border-radius: 50%;
    filter: blur(50px);
    margin: -60vw -30vw;
    z-index: 10;

}

.backsundown .gooye2 {
    position: absolute;
    background-color: #FF3309;
    width: 90vw;
    height: 90vw;
    border-radius: 50%;
    margin: -50vw 60vw;
    filter: blur(50px);
    z-index: 10;

}


@keyframes gooye1 {}