@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    position: relative;
}

.hero{
    height: 100vh;
    width: 100%;
    background: #dedede;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2%;
}

.logo{
    color: #000;
    font-size: 35px;
    letter-spacing: 1px;
    cursor: pointer;
}

nav ul{
    flex: 1;
    text-align: right;
}

nav ul li{
    list-style: none;
    display: inline-block;
    padding: 0 25px;
}

nav ul li a{
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
}

nav ul li a:hover{
    color: #00bf9f;
    transition: .3s;
}

.btn{
    background: transparent;
    border: 2px solid #000;
    padding: 12px 25px;
    color: #000;
    border-radius: 30px;
    text-decoration: none;
    margin-left: 80px;
    font-size: 14px;
    font-weight: bold;
}

.btn:hover{
    background: #000;
    color: #fff;
    transition: .3s;
}

header{
    width: 92%;
    margin: 0 auto;
    padding: 13px 0;
    position: absolute;
    top: 40px;
    left: 30px;
    right: 30px;
    border-radius: 50px;
    z-index: 2;
    background: #e7e7e7;
    box-shadow: 0 0 30px rgb(0 0 0 / 8%);
}

.bg{
    background-image: url(pexels-vijay-sadasivuni-3601491.jpg);
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    overflow: hidden;
}

.content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
}

.content h1{
    font-size: 85px;
    color: #000;
    line-height: 110px;
    margin-bottom: 25px;
}

.content h3{
    color: #00bf9f;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.content p{
    font-size: 14px;
    color: #454545;
    line-height: 28px;
    margin-bottom: 30px;
}

button{
    background: #000;
    border: 2px solid transparent;
    padding: 10px 32px;
    border-radius: 30px;
    outline: none;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
}

button:hover{
    transform: scale(1.2);
    transition: .3s;
    cursor: pointer;
}

.social{
    position: absolute;
    right: 72px;
    bottom: 40px;
}

.social ul li{
    list-style: none;
    text-align: center;
    margin-top: 15px;
}

.social ul li a{
    color: #000;
    display: block;
    font-size: 23px;
}

.social ul li a:hover{
    transform: scale(1.2) translateY(-5px);
    transition: .3s;
    cursor: pointer;
}