* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: gilroy;
    color: #fff;
}
html,
body {
    height: 100%;
    width: 100%;
}
nav{
    position: fixed;
    background-color: #222;
    display: flex;
    align-items: flex-start;
    height: 12vh;
    width: 100%;
    padding: 2vw 10.4vw;
    justify-content: space-between;
    z-index: 10;
}
.nav-part2{
    display: flex;
    gap: 2vw;
    align-items: flex-start;
    padding: 1vh 0;
    position: relative;
    z-index: 10;
}
.nav-part2 h4{
    font-size: 0.73vw;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2vw;
}
.nav-part2 h5{
    margin-bottom: 1vw;
    /* background-color: red; */
    display: none;
}
.nav-part2 h5 span{
    font-size: 0.74vw;
    font-weight: 400;
    transform: translateY(25px);
    display: inline-block;
}

nav button{
    background-color: #0BA34E;
    display: flex;
    align-items: center;
    padding: 12px 12px;
    font-size: 0.85vw;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 50px;
    border: none;
}
#nav-bottom{
    width: 79%;
    height: 0vh;
    position: absolute;
    background-color: #000;
    top: 100%;
    z-index: 9;
    border-bottom: 1px solid #fff;
}

#page1{
    height: 100vh;
    width: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
#page1 h1{
    font-size: 8.5vw;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 8.5vw;
}
#page1 p{
    text-align: center;
    font-weight: 400;
    margin-top: 3vh;
}
#page1-something{
    display: flex;
    align-items: center;
    justify-content: center;
}
#page1-something h4{
    font-weight: 400;
    font-size: 1vw;
    margin-top: 10px;
    padding: 5px 12px;
    border: 1px solid #fff;
    border-radius: 50px;
}
#page1-something h4:nth-last-child(2){
    border: none;
    padding: 5px;
}
#moving-div{
    /* background-color: red; */
    margin-top: 10vh;
    position: absolute;
    bottom: 3%;
    white-space: nowrap;
    padding: 1.2vw;
    overflow: hidden;
    width: 44%;
}
#moving-div .move{
    display: inline-block;
    animation-name: move;
    animation-duration: 9s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
#moving-div .move img{
    height: 1vw;
    margin: 0 1vw;
}
@keyframes move {
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-100%);
    }
}
#blur-left{
    height: 100%;
    width: 20%;
    background: linear-gradient(to left,transparent,#000);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
#blur-right{
    height: 100%;
    width: 20%;
    background: linear-gradient(to right,transparent,#000);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}





#page2{
    height: 100vh;
    width: 100%;
    background-color: #111;
    position: relative;
    padding: 0vw 10.5vw;
    padding-bottom: 8vw;
    display: flex;
    align-items: center;
    border-top: 1px solid #333;
    justify-content: space-between;
}
#page2-left{
    height: 100%;
    width: 40%;
    /* background-color: #333; */
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    padding: 3vw 0;
}
#page2-left p{
    font-size: 0.8vw;
}
#page2-left h5{
    width: 75%;
    font-weight: 400;
    font-size: 1.1vw;
}
#page2-right{
    height: 100%;
    width: 50%;
    /* background-color: #333; */
}
.right-elem{
    position: relative;
    /* background-color: red; */
    padding-top: 2vw;
    padding-bottom: 5vw;
    border-bottom: 1px solid #333;
}
.right-elem h2{
    font-size: 1.4vw;
    font-weight: 400;
}
.right-elem img{
    width: 5vw;
    height: 5vw;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0;
    position: absolute;
    scale: 0;
}




#page3{
    height: 100vh;
    width: 100%;
    background-color: #111;
    position: relative;
    background-image: url(img/coding.jpg);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page3-center{
    /* background-color: red; */
    display: flex;
    align-items: center;
    padding: 1vw;
    flex-direction: column;

}
.page3-center .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.3vw;
    border-radius: 50%;
    background-color: #fff; 
}
.page3-center .icon i{
    color: #000;
    font-size: 2.8vw;
}
.page3-center h5{
    font-size: 0.8vw;
    background-color: #fff;
    color: #000;
    border-radius: 50px;
    padding: 12px 26px 10px 26px;
    margin-top: 0.5vw;
    font-weight: 700;
    opacity: 0;
    transition: all ease 0.5s;
    transform: translateY(16%);
    text-transform: uppercase;
}
.page3-center:hover h5{
    opacity: 1;
    transform: translateY(0%);
}
#page3 video{
    height: 100%;
    width: 100%;
    position: absolute;
    object-fit: cover;
    transform: scaleX(0.7) scaleY(0);
    opacity: 0;
    border-radius: 30px;
    z-index: 99999;
}
#page5{
    min-height: 100vh;
    width: 850vh;
    background-color: #fff;
    position: relative;
    color: #000;
    padding-bottom: 13vh;
}
.section{
    width: 100%;
    height: 72vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13vh 10vw;
    padding-bottom: 0;
}
.sec-left{
    height: 100%;
    width: 25%;
    padding-top: 3vh;
    /* background-color: aqua; */
    border-top: 2px solid #000;
}
.sec-left h2{
    font-size: 2.1vw;
    font-weight: 500;
    color: #000;
}
.sec-left p{
    color: #000;
    margin-top: 10vh;
    font-size: 1.2vw;
    /* width: 80%; */
}
.sec-right{
    height: 100%;
    width: 70%;
    background-color: blanchedalmond;
    position: relative;
}
.sec-right img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.sec-right video{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: 0;
    transition: opacity ease 0.3s;
}
#page6{
    min-height: 100vh;
    background-color: #111;
    width: 100%;
    position: relative;
    padding: 5vh 10vw;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
#page6 button{
    background-color: #0BA34E;
    padding: 0.9vw 2.5vw;
    font-weight: 600;
    font-size: 1vw;
    border-radius: 50px;
    border: none;
    position: sticky;
    top: 15%;
}
#page6-right{
    width: 70%;
}
#page6-right>p{
    font-size: 2.1vw;
}
#page6-right>p span{
    background-color: red;
    width: 20vw;
    display: inline-block;
}
#page6-content{
    width: 100%;
    /* background-color: red; */
    margin-top: 5vh;
    padding: 5vh 0;
}
#page6-content h1{
    font-size: 3vw;
    font-weight: 500;
}
#page6-content #flex{
    display: flex;
    margin-top: 4vh;
    margin-bottom: 4vh;
}
#page6-content #flex h4{
    border-radius: 50px;
    border: 1px solid #fff;
    padding: 10px 20px;
    font-weight: 400;
    font-size: 0.8vw;
}
.page6-elem{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /* background-color: red; */
    /* padding: 2vh 0; */
    padding-top: 3vh;
    padding-bottom: 9vh;
    overflow: hidden;
    border-top: 1px solid #333;
    position: relative;
}
.page6-elem p{
    width: 55%;
    font-size: 0.8vw;
    position: relative;
    z-index: 8;
}
.page6-elem h3{
    font-size: 1.6vw;
    font-weight: 400;
    position: relative;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    z-index: 8;
}
.page6-elem i{
    font-size: 1vw;
    position: relative;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    z-index: 8;
}
.over{
    height: 100%;
    width: 100%;
    background-color: #222;
    position: absolute;
    top: 0;
    transform: translateY(-100%);
    opacity: 0;
    /* display: none; */
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}
.page6-elem:hover h3{
    padding-left: 1vw;
}
.page6-elem:hover i{
    padding-right: 1vw;
}
.page6-elem:hover .over{
    transform: translateY(0);
    opacity: 1;
}
.page6-elem:hover{
    border-top: 2px solid #fff;
}

summary::marker{
    content: "";
}
.uiux{
    border-top: 1px solid #333;
    padding: 3vh 0;
}
.product{
    border-top: 1px solid #333;
    padding: 3vh 0;
}

#page7{
    min-height: 100vh;
    width: 100%;
    background-color: #fff;
    padding: 10vh 10vw;
}
#page7>h1{
    font-size: 5.5vw;
    color: #000;
    /* background-color: red; */
    padding-left: 23vw;
    padding-right: 5vw;
    line-height: 5.8vw;
    padding-bottom: 10vh;
    border-bottom: 1px solid #dadada;
}
#page7-content{
    /* background-color: red; */
    color: #000;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 8vh 0;
}
#page7-content #right-7{
    width: 70%;
}
#page7-content #right-7 p{
    font-size: 1.5vw;
    color: #000;
    margin-bottom: 5vh;
    width: 80%;
}
#blue-btn{
    background-color: #4f5bff;
    width: 15vw;
    height: 3.5vw;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#blue-btn h4{
    position: absolute;
    text-transform: uppercase;
    font-size: 0.8vw;
    font-weight: 600;
}
#blue-btn h4 i{
    font-size: 1vw;
    font-weight: 100;
    margin-top: 0.5vw;
}
#page7-bottom{
    height: 44vh;
    width: 100%;
    /* background-color: red; */
    border-top: 1px solid #dadada;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
#btm7-part1{
    border-right: 1px solid #dadada;
    width: 30%;
    /* background-color: red; */
    height: 100%;
}
#btm7-part2{
    border-right: 1px solid #dadada;
    width: 28%;
    /* background-color: red; */
    height: 100%;
}
#btm7-part3{
    border-right: 1px solid #dadada;
    width: 15%;
    /* background-color: red; */
    height: 100%;
}
#btm7-part4{
    border-right: 1px solid #dadada;
    width: 15%;
    /* background-color: red; */
    height: 100%;
}
#btm7-part5{
    width: 15%;
    /* background-color: red; */
    height: 100%;
}
.btm7-parts{
    padding: 3vh 0.6vw;
}
.btm7-parts h5{
    color: #000;
    font-weight: 500;
    font-size: 0.9vw;
    margin-bottom: 4vh;
}
.btm7-parts h4{
    background-color: #111;
    width: 70%;
    padding: 5px 10px;
    margin-bottom: 0.3vh;
    border-radius: 50px;
    font-size: 0.85vw;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.btm7-parts h4 span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5vw;
    height: 1.5vw;
    background-color: #333;
    padding: 0.5vw;
    border-radius: 50%;
    margin-right: 1vw;
}
#btm7-part2 h4:nth-child(2){
    transform: translateX(0);
}
#btm7-part2 h4:nth-child(3){
    transform: translateX(10%);
}
#btm7-part2 h4:nth-child(4){
    transform: translateX(20%);
}
#btm7-part2 h4:nth-child(5){
    transform: translateX(30%);
}
#btm7-part2 h4:nth-child(6){
    transform: translateX(40%);
}
#btm7-part2 h4:nth-child(7){
    transform: translateX(50%);
}

#page8{
    height: 100vh;
    width: 100%;
}