* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    background-color: black;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#minicircle {
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    z-index: 999;
    background-color: #fff;
}

.bounding {
    width: fit-content;
    overflow: hidden;
}

/* .bounding  {
    display: inline-block;
    transform: translateY(100%);
} */

#designer-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}

.smalltext {
    font-size: 1.2vw;
    margin-top: 0.8vw;
    text-transform: uppercase;
    opacity: 0.8;
}


.boundingelem {
    display: inline-block;
    transform: translateY(100%);
}

html.has-scroll-smooth {
    overflow: hidden;
}

[data-scroll-container] {
    min-height: 100vh;
}


#main {
    width: 100%;
}

#hero {
    width: 100%;
    height: 100vh;
}

a {
    text-decoration: none;
    color: white;
}

nav {
    padding: 30px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 999;
}


nav h4 {
    position: relative;
    font-weight: 400;
    overflow: hidden;
}

nav h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

nav h4:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* heading */

#heading {
    padding: 1vw 3vw;
    width: 64%;
}


#heading h1 {

    opacity: .7;
    line-height: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 10vw;
}

#textright {}

#heading h5 {
    display: flex;
    flex-direction: column;
    align-items: end;
    text-transform: uppercase;
    display: flex;
    align-items: end;
    margin-top: 1vw;
    font-family: sans-serif;
    font-size: 1.4vw;
    text-align: right;
}

/* chotiheading */

#chotiheading {
    display: flex;
    flex-direction: column;
    align-items: end;
    font-family: sans-serif;
    font-size: 1.6vw;
    padding: 7vw 3.5vw;
    text-align: right;
    /* background-color: aqua; */
}

/* heroFooter */

#heroFooter {
    padding: 0vw 3vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#heroFooter a h5 {
    font-family: sans-serif;
    font-size: 1.2vw;
    text-transform: uppercase;
}

#heroFooterIcons a i {
    font-size: 1.9vw;
    background-color: rgb(185, 185, 185);
    color: rgb(10, 0, 0);
    border-radius: 100px;
}

/* second */

#second {
    padding-left: 40px;
    padding-right: 140px;
    padding-top: 200px;
    width: 100%;
    min-height: 100vh;
}

.elem:last-child {
    margin-bottom: 10vw;
}

.elem img {
    transform-style: preserve-3d;
    will-change: transform;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    height: 130%;
    z-index: 999;
}


.elem {
    perspective: 900px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3.5vw 3vw;
    padding-right: 0;
    width: 100%;
    border-top: 1px solid #888;
}



.elem h1 {
    opacity: .7;
    text-transform: uppercase;
    font-size: 6.6vw;
    font-weight: 500;
}

.elemlast {
    border-bottom: 1px solid #888;
    /* padding-left: 40px; */
    /* padding-right: 140px; */
}

/* .elem img {
    display: none;
     height: 130%;
    z-index: 999;
    position: absolute;
} */

.elem img {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    height: 130%;
    z-index: 999;
}


/* about */

#about {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 30vw 5vw;
    width: 100%;
    background-color: black;
}

#about h5 {
    font-size: 1.7vw;
}

#about a button {
    margin-top: 10px;
    padding: 10px 15px;
    border-radius: 100px;
    background-color: black;
    color: white;
    border: 2px solid white;
    transition: all ease-in-out 0.5s;
}

#about a button:hover {
    background-color: white;
    color: black;
}

#about img {
    border-radius: 100%;
    width: 20vw;
}

/*  */