@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* background-image: url(https://cdn.discordapp.com/attachments/941769043889766431/955109655967838260/giphy.gif); */
}

body {
    background-image: url(https://cdn.discordapp.com/attachments/941769043889766431/955127787256184932/giphy.gif);
}

.hero{
    font-family: 'Poppins', sans-serif;
}

nav{
    width: 84%;
    margin: auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logomain {
    border-radius: 20%;
    height: 250px;
    width: 250px;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
}

.logo{
    width: 150px;
    cursor: pointer;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}
nav ul li a{
    text-decoration: none;
    color: #606163;
}
nav ul li a:hover{
    color: #44cabf;
}
.btn{
    background: #44cabf;
    border-radius: 5px;
    padding: 10px 18px;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}
.btn:hover{
    background: transparent;
    color: #44cabf;
    border: 1px solid #44cabf;
}
.info{
    text-align: center;
    margin-top: 80px;
}
.info h1{
    font-size: 40px;
    color: #c9c9c9;
}
.info h1 span{
   color: #44cabf;
}
.info p{
    color: #c9c9c9;
    line-height: 22px;
    margin-top: 10px;
    margin-bottom: 30px;
}
.img-box{
    width: 45%;
    height: 80%;
    position: absolute;
    bottom: 0;
    right: 100px;
}
.img-box img{
    height: 100%;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: bottom 1s, left 1s;
}
.img-box:hover .back-img{
    bottom: 40px;
}
.img-box:hover .man-img{
    left: 54%;
}
.social{
    text-align: center;
    margin-top: 263px;
}
.social a{
    font-size: 28px;
    color: #c9c9c9;
    margin-right: 20px;
    transition: all 0.5s;
}
.social a:hover{
    color: #44cabf;
}