@import url('https://fonts.cdnfonts.com/css/gilroy-bold?styles=20876,20877,20878,20879,20880');
@font-face {
    font-family: kajiro;
    src: url(./fonts/Kajiro.ttf);
  }
* {
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
    font-family: "gilroy-regular";
}
html, body{
    height: 100%;
    width: 100%;
}
.main{
    height: 100vh;
    width: 100%;
}
#back{
    height: 100vh;
    width: 100%;
}
#back img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top{
    pointer-events: none;
    position: absolute; 
    left: 0; 
    top: 0; 
    height: 100vh;
    width: 100%;
}
.working-area{
    width: 80%;
    height: 100vh;
    margin: 0 auto;
}
.nav{
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-left{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.nav-left img{
    width: 60px;
}
.nav-left a{
    pointer-events: all;
    text-decoration: none;
    color: #fff; 
    text-transform: uppercase;
    font-family: "Gilroy-medium";
    font-size: 13px;
    letter-spacing: 1px;
}
.nav-right{
    display: flex;
    align-items: center;
    gap: 60px;
}
.nav-right a{
    pointer-events: all;
    text-decoration: none;
    color: #fff; 
    text-transform: uppercase;
    font-family: "Gilroy-medium";
    font-size: 13px;
    letter-spacing: 1px;
}
.hero{
    width: 100%;
    height: calc(100% - 112px);
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.hero-left{
    min-width: 50%;
    height: 100%;

}
.hero-left .elem{
    position: relative;
    height: 9vw;
    overflow: hidden;
}
.hero-left .elem h1:nth-child(1) {
    top: 0;
}
.hero-left .elem h1{
    position: absolute;
    top: 100%;
    left: 0;
    font-family: "kajiro";
    font-size: 11vw;
    line-height: .9;
    color: #fff; 
    font-weight: 100;
}
.hero-left button{
    pointer-events: all;
    cursor: pointer;
    padding: .8vw 3vw;
    font-size: 3vw;
    margin-top: 2vw;
    font-family: "kajiro";
    border: none;
}
.hero-left button:hover{
    background: #000;
    color: #fff; 
    transition: 0.5s all;
}




.hero-right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 17%;
    height: 100%;
    color: #fff; 

}
.hero-right p{
    text-align: end;
    font-size: 13px;
    font-weight: 300;
    
}
.hero-right p:nth-child(3){
    margin-bottom: 30px;
}
.imagediv {
    width: 100%;
    height: 130px;
    margin-top: 20px;
    margin-bottom: 50px;
    background-image: url(./img/imagediv.webp);
    background-size: cover;
    background-position: center;
}