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

.navbar-container{
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

.navbar-container img{
    margin-left: 80px;
    margin-bottom: 25px;
    height: 40px;
}

.navbar-container>div:nth-child(2){
    flex:.5;
}

.list{
    height: 100px;
    list-style: none;
    display: flex;
    /* justify-content: space-around; */
    align-items: center;

    width: 550px;
    
}

.list li{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Orbitron';
    transition: all .2s ease-in-out;
    width: 150px;
}

.list li:hover::after{
    content: "";
    display: block;
    background-color: black;
    height: 4px;
    width: 50px;
    border-radius: 10px;
}

.list li:hover{

    font-size: 22px;
    font-weight: 700;
}


/* serach  */

.button-group{
    gap: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right:70px;
}

.search-icon svg{
    height: 24px;
    
}


.nav-button{
    text-align: end;
    font-size: 19px;
    padding: 6px 35px;
    padding-bottom: 2px;
    border-radius: 10px;
    border: 2.4px solid #0d0d0c;
    color: #5a5b5b;


}

/* hero section  */

.hero-container{
position: relative;
}


.square{
    position: absolute;
    top: 209px;
    left: 225px;

}

.square > img{
    height: 290px;
}


/* star  */

.star{
    position: absolute;
    top: 30px;
    right: 115px;
}

.star>img{
    height:48px;
}

/* globe */
.globe{
position: absolute;
top:-15px;
left: 52vw;
}

.globe>img{
    height: 53px;
}


.hero-container>div{
/* position: absolute;
top: 20px;
left: 110px; */
/* how to select this div only  */

}

.hero-container>div>img{
    position: absolute;
top: 20px;
left: 110px;
    height: 430px;
}


/* hero-container-right */
.hero-container-right{
    display: flex;
    flex-direction: column;
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 100px;
    width: 60%;
    /* padding: 0px 95px; */
    left: 518px;

}

.hero-heading{
    font-size: 3.2rem;
    letter-spacing: 2px;
    font-weight: 900;
    font-family: 'Orbitron';

}

.hero-description{
    text-align: center;
    padding: 45px 95px;
    padding-bottom: 80px;
    font-size: 0.96rem;
    color: #707170;
    font-family: 'Poppins';
}


/* join and email button */
.button-email{

    font-size: 15px;
    padding: 2.5px 22px;
    margin: 10px 20px;
    border-radius: 8px;
    letter-spacing: 1.3px;
    font-family: 'Orbitron';
    color: #505150;
    font-weight: 600;

}

.button-join{
    border-radius: 8px;
    font-size: 15px;
    font-weight: 430;
    padding: 1.4px 4px;
    letter-spacing: 1.3px;
    background-color: #0a0d0e;
    color:#ffffff;
    font-family: 'Orbitron';

}


/* contact us  */
.contact-heading{
    text-align: center;
    margin-top: 30px;
    font-size: 17px;
    /* letter-spacing: 1.2px; */
    font-family: 'Poppins';
    font-weight: 500;
    color: #505150;
}

.icons{
    margin-top: 12px;
    display: flex;
    gap: 13px;
}

.icons img{
    height: 26px;
}