*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: gilroy;
    src: url(Gilroy-Light.ttf);
}
@font-face {
    font-family: gilroy-bold;
    src: url(Gilroy-SemiBold.ttf);
}

html, body{
    height: 100%;
    width: 100%;
}
nav{
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
}
.main{
    position: relative;
    height: 100%;
    width: 100%;
}
.nav-part1{
    display: flex;
    align-items: center;
}
.nav-part1 h2{
    font-size: 16px;
    font-family: gilroy;
    font-weight: 900;
    border: 1.5px solid black;
    padding: 8px 20px;
    border-radius: 50px;
}
.nav-part1 i{
    font-size: 16px;
    font-family: gilroy;
    font-weight: 900;
    border: 1.5px solid black;
    padding: 8px 10px;   
    border-radius: 50px;
}
.nav-part2 h1{
    font-family: gilroy;
    font-weight: bold;
    text-transform: uppercase;
}
.nav-part2{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 12px;
}
.nav-part2 i{
    background-color: orangered;
    color: white;
    padding: 10px 10px;
    border-radius: 50%;
    font-size: 15px;
}
.btn-1{
    padding: 8px 15px;
    border-radius: 50px;
    border: 1.5px solid black;
    background-color: white;
    font-family: gilroy;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
}
.btn-2{
    padding: 8px 15px;
    border-radius: 50px;
    border: none;
    background-color: orangered;
    color: white;
    font-family: gilroy;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
}
.main> h1{
    font-size: 170px;
    font-family: gilroy-bold;
    font-weight: bolder;
    width: 100%;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
img{
    height: 450px;
    width: 350px;
}
.img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: cover;
    border-radius: 20px;
}
.img1{
    transform: translate(-50%, -50%) rotate(-10deg);
}
.img2{
    transform: translate(-50%, -50%) rotate(-15deg);
}
.img3{
    transform: translate(-50%, -50%) rotate(-20deg);
}
.bottom-part h3{
    font-family: gilroy;
    font-size: 15px;
}
/* .social{
    position: absolute;
    right: 30px;
    bottom: 60px;
    font-family: gilroy;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 10px;
} */
.icons{
    font-size: 20px;
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.bottom-part >i{
    font-size: 80px;
    font-weight: 200;
    border: 1px solid black;
    border-radius: 50%;
}
.bottom-part{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    bottom: 0px;
    padding: 0px 18px;
}