@font-face {
    font-family: neu;
    src: url(./Accets/Fonts/NeueHaasDisplay-Roman.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: neu;
}

html, body {
    height: 100%;
    width: 100%;
    background-color: #EFEAE3;
}

#main {
    /* background-color: #000; */
    position: relative;
    z-index: 10;
}

#page1 {
    height: 125vh;
    width: 100%;
    position: relative;
    padding: 0 2vw;
}

nav {
    padding: 2vw 0vw;
    width: 100%;
    /* background-color: red; */
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
    justify-content: space-between;
}

#nav-part2 {
    display: flex;
    align-items: center;
    gap: 1vw;
}

#nav-part2 h4 {
    padding: 10px 20px;
    border: 1px solid #0000003c;
    border-radius: 50px;
    font-weight: 500;
    color: #000000bb;
    transition: all ease 0.4s;
    position: relative;
    font-size: 18px;
    overflow: hidden;
}

#nav-part2 h4::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: black;
    left: 0;
    bottom: -100%;
    border-radius: 50%;
    transition: all ease 0.4s;
}

#nav-part2 h4:hover::after {
    bottom: 0;
    border-radius: 0;
}

#nav-part2 h4 a {
    color: #000000bb;
    text-decoration: none;
    position: relative;
    z-index: 9;
}

#nav-part2 h4:hover a {
    color: #fff;
}

.container{
    margin: 5vh;
    display: flex;
    padding-top: 13vh;
}

.container .image img{
    border-radius: 100%;
    height: 70vh;
}

.container .info{
    width: 70vw;
    height: 35vh;
}

.container .info .title{
    z-index: -2;
}

.container .info .title h1{
    padding-left: 10vw;
    font-weight: 900;
    font-size: 16vh;
    line-height: 15vh;
}

.container .info .title h6{
    font-size: 4vh;
    padding-left: 28vw;
}
.container .info .workplace{
    margin-top: 13vh;
    width: 27.8vw;
    height: 20vh;
    margin-left: 8vw;
    z-index: 3;
}
.container .info .workplace h6{
    font-weight: bolder;
    line-height: 7vh;
    font-size: 4vh;
}

#hero1,#hero2{
    top: 40%;
    width: 30vw;
    height: 30vw;
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    background-image: radial-gradient(red,orangered 99%);
    z-index: -1;
    /* z-index: 1; */
}

#hero2{
    animation: round 2s infinite alternate ease;
}

@keyframes round{
    from{
        transform: translate(10%,-10%);
        
    }
    to{
        transform: translate(-10%,10%);
      
    }
 }

