@import url('https://fonts.googleapis.com/css2?family=Aldrich&family=Barlow: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,600;1,700;1,800;1,900&family=Oswald:wght@200..700&display=swap');

:root
{
    --myFont: "Aldrich", sans-serif;
    --myfontColor: #B7B7B7;
}


*
{
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: var(--myFont);
    text-transform: uppercase;
    border: none;
}

.main-cont
{
    height: 100vh;
    width: 100vw;
    background-color: #ffff;
    overflow-x: hidden;
}

/* Navbar */
.top
{
    width: 100%;
    height: 70px;
    position: fixed;
    background-color: #ffff;
    top: 0;
    z-index: 1;
}

.top-text-bar{
    width: 90%;
    height: 30px;
    text-align: center;
    position: relative;
    list-style: none;
}

.top-text-bar h1 {
    font-size: 18px;
    color: rgb(54, 54, 54);
    letter-spacing: 3px;
    font-weight: 800;
    padding-top: 10px;
}

.right ul
{
    gap: 50px;
    padding-top: 20px;
    list-style: none;
}

.right ul li
{
    font-size: 12px;
    font-weight: 600;
    padding-left: 5px;
    padding-right: 5px;
    color: var(--myfontColor);
    transition: 0.5s;
}

.right ul li:hover
{
    font-weight: bold;
    cursor: pointer;
    background: var(--myfontColor);
    border-radius: 5px;
    color: white;
}

.active
{
    border-bottom: 1px solid var(--myfontColor);
    border-radius: 5px;   
}

.left
{
    gap: 10px;
    cursor: pointer;
}

.right
{
    gap: 20px;
    position: absolute;
    right: 0;
}

.right-icons{
    width: 100px;
    gap: 10px;
}
/* Navbar */
/* Hero */

.center-hero
{
    width: 100%;
    padding-bottom: 70px;
    padding-top: 70px;
}

.heading-hero
{
    padding-top: 80px;
    text-align:center;
    padding-right: 10px;
    padding-left: 10px;
    height: auto;
    max-width: 100%;
    width: 65%;
}

.heading-hero h1
{
    color: rgba(0, 0, 0, 0.755);
    font-size: 35px;
    font-weight:300;
    line-height: 1.6;
}

.hero-item-bars
{
    height: auto;
    width: 100%;
}

.hero-item-bars ul
{
    padding-top: 100px;
    gap: 50px;
    list-style: disc;
    padding-right: 10px;
    padding-left: 10px;
}

.hero-item-bars ul li {
    list-style: disc;
    font-weight: lighter;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--myfontColor);
    transition: 0.5s;
}

.hero-item-bars ul li:hover {
    font-weight: bold;
    cursor: pointer;
    background: var(--myfontColor);
    border-radius: 5px;
    color: white;
}

.flex-boxes
{
    height: auto;
    margin-top: 20px;
    padding: 0 5px;
    gap: 10px;
    width: 100%;
}

.column-boxes
{
    width: 100%;
}

.row-boxes
{
    height: 100%;
    gap: 10px;
}

.gallery-img{
    height: 200px;
    width: 300px;
    border: none !important;
    position: relative;
    transition: transform .2s;
    cursor: pointer;
}

.gallery-img:active 
{
    transform: scale(1.5);
    display: block;
}


button
{
    background: transparent;
    color: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    transition: 2s ease;
}

button:hover
{
    color: white;
    background-color: rgba(0, 0, 0, 0.393);
    
}

button h2
{
    font-size: 10px;
    padding-left: 5px;
    padding-bottom: 5px;
}

button h1
{
    font-size: 20px;
    padding-left: 5px;
    padding-bottom: 5px;
}

.loading-bar
{
    margin-top: 10px;
    width: 100%;
    height: 80px;
}

.footer-box
{
    width: 100%;
    height: 25.2%;
    overflow-x: hidden;
}

.footer-content
{
    background-color: #222222;
    width: 100%;
    height: 100px;
}

.footer-logo
{
    padding-left: 20px;
}

.footer-para
{
    width: 50%;
    font-family: sans-serif;
    font-weight: lighter;
    color: var(--myfontColor);
    text-align: center;
}

.footer-icons
{
    padding-right: 20px;
    gap: 30px;
}


@media screen and (max-width:831px){
    .right ul li {
        display: none;
        }
}

@media screen and (max-width:653px) {

    .footer-para
    {
        display: none;
    }
    
}

@media screen and (max-width:930px){

    .heading-hero
    {
        width: 100%;
    }


    .gallery-img
    {
        width: 45%;
    }

}

@media screen and (max-width:514px) {
    .heading-hero
    {
        width: 100%;
        text-align:center;
    }

    .gallery-img
    {
        width: 100%;
    }
    
}

@media only screen and (max-width:1240px) and (min-width:930px)  {
    .gallery-img
    {
        width: 20%;
    }
    
}

/* after 2k */
@media screen and (min-width:2000px) {

    .gallery-img
    {
        width: 20%;
        height: 500px;
    }

    
}


