*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body{
    width: 100%;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}  

#main{
    height: 100%;
    width: 100%;
    /* background-color: red; */
}

#nav{
    width: 100%;
    height: 80px;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
}

#nav h5{
    display: none;
}

#nav-part1{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.gola{
    height: 30px;
    width: 30px;
    background-color: black;
    border-radius: 50%;
}

#nav-part2{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

#nav-part2 h4{
    font-size: 16px;
    font-weight: 600;
    }

#nav-part2 h4 span{
    color: blue;
    margin-left: 25px;
}

#nav2{
    width: 100%;
    height: 70px;
    /* background-color: red; */
    display: flex;
    align-items: center;
    padding: 0 50px;
    gap: 80px;
}

#nav2 h3{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
}

#content{
    height: calc(100% - 150px);
    width: 100%;
    /* background-color: mediumaquamarine; */
}

#text-content{
    height: 40%;
    width: 100%;
    /* background-color: yellow; */
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}

#text-content::-webkit-scrollbar{
    background-color: transparent;
    height: 10px;
}
#text-content::-webkit-scrollbar-thumb{
    background-color: orange;
}

.elem{
    flex-shrink: 0;
    height: 100%;
    width: 70%;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.elem h1{
    font-size: 8vw;
    font-weight: 300;
}

#image-content{
    width: 100%;
    height: 60%;
    /* background-color: red; */
    display: flex;
    overflow-x: auto;
}

#image-content::-webkit-scrollbar{
    display: none;
}

#image-content img{
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width:600px){
    #nav{
        width: 100%;
       padding: 0 25px;
    }
    
    #nav-part1{
        gap: 0px;
    }

    
.gola{
    height: 16px;
    width: 16px;
    background-color: black;
    border-radius: 50%;
}
#nav h5{
    display: initial;
}

#nav h5 i{
    font-size: 20px;
    font-weight: 600;
}

#nav-part2{
    gap: 20px;
}

#nav-part2 h4{
    font-size: 14px;
    display: none;
    font-weight: 600;
    }
#nav-part2 h4:nth-child(1){
    display: initial;
    margin-right: 10px;
}

#nav2{
    width: 100%;
    height: 70px;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    gap: 10px;
}

#nav2 h3{
    font-size: 2.5vw;
    text-transform: uppercase;
    font-weight: 600;
    color: #444;
}

#content{
    height: calc(100% - 140px);
    width: 100%;
    /* background-color: mediumaquamarine; */
}

#text-content{
    height: 30%;
    width: 100%;
    /* background-color: yellow; */
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}

#text-content::-webkit-scrollbar{
    background-color: transparent;
    height: 5px;
}
#text-content::-webkit-scrollbar-thumb{
    background-color: orange;
}

.elem{
    flex-shrink: 0;
    height: 100%;
    width: fit-content;
    margin-right: 20px;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.elem h1{
    font-size: 15vw;
    white-space: nowrap;
    font-weight: 300;
}

#image-content{
    width: 100%;
    height: 65%;
    /* background-color: red; */
    display: flex;
    overflow-x: auto;
}

#image-content::-webkit-scrollbar{
    display: none;
}

#image-content img{
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

}