@font-face {
    font-family: 'Montserrat';
    src: url("./src/Montserrat.ttf")
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Montserrat';
}

html,
body {
    height: 100%;
    width: 100%;
}

#main {
    height: 100%;
    width: 100%;
}

#nav {
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 30px;
}

#nav h5 {
    display: none;
}

#nav-part1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.circle {
    height: 15px;
    width: 15px;
    background-color: black;
    border-radius: 50%;
}

#nav-part2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

#nav-part2 h4 {
    font-size: 12px;
    font-weight: 500;
}

#nav-part2 h4 span {
    color: rgb(128, 128, 128);
    margin: 20px;
}

#nav2 {
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 50px;
}

#nav2 h3 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
}

#content {
    height: calc(100% - 110px);
    width: 100%;
}

#text-content {
    height: 40%;
    width: 100;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}

#text-content::-webkit-scrollbar {
    background-color: transparent;
    height: 7px;
}

#text-content::-webkit-scrollbar-thumb {
    background-color: orange;
}

.elem {
    flex-shrink: 0;
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.elem h1 {
    font-size: 6.5vw;
    font-weight: 300;
}

#image-content {
    height: 60%;
    width: 100%;
    display: flex;
    overflow-x: auto;
}

#image-content img {
    flex-shrink: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#image-content::-webkit-scrollbar {
    display: none;
}

@media (max-width:600px) {
    #nav {
        height: 60px;
        padding: 0px 20px;
    }

    #nav-part1 {
        gap: 2px;
        align-items: center;
    }

    .circle {
        height: 16px;
        width: 16px;
        background-color: black;
        border-radius: 50%;
    }

    #nav h5 {
        display: initial;
    }

    #nav h5 i {
        font-size: 20px;
    }

    #nav-part2 {
        gap: 20px;
    }

    #nav-part2 h4 {
        font-size: 15px;
        font-weight: 500;
        display: none;
    }

    #nav-part2 h4:nth-child(1) {
        display: initial;
        margin-right: 10px;
    }

    #nav-part2 h4 span {
        color: rgb(128, 128, 128);
        /* margin: 20px; */
    }

    #nav2 {
        height: 65px;
        width: 100%;
        justify-content: space-between;
        padding: 0 10px;
        gap: 10px;
    }

    #nav2 h3 {
        font-size: 2.5vw;
        text-transform: uppercase;
        font-weight: 600;
        color: #888888;
    }

    #content {
        height: calc(100% - 115px);
        width: 100%;
    }

    #text-content {
        height: 35%;
        width: 100;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    #text-content::-webkit-scrollbar {
        background-color: transparent;
        height: 4px;
    }

    #text-content::-webkit-scrollbar-thumb {
        background-color: orange;
    }

    .elem {
        flex-shrink: 0;
        width: 100%;
        height: 80%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .elem h1 {
        font-size: 13vw;
        white-space: nowrap;
        font-weight: 500;
    }

    #image-content {
        height: 65%;
        width: 100%;
        display: flex;
        overflow-x: auto;
    }

    #image-content img {
        flex-shrink: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    #image-content::-webkit-scrollbar {
        display: none;
    }

}
