@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

body::-webkit-scrollbar
{
    width: 5px;
    background-color: grey;
}
body::-webkit-scrollbar-thumb
{
    width: 5px;
    background-color: black;
}

*{
    margin: 0px;
}

body{
    font-family: 'Montserrat', sans-serif;
}

html{
    scroll-behavior: smooth;
}
/* NAVBAR STYLE */

.navbar{
    box-sizing: border-box;
    height: 70px;
    background-color: black;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5px;
    font-family: 'Open Sans', sans-serif;
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
}
.menu, .logo, #login{
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    /* padding-left: 30px; */
    /* padding-right: 30px; */
}
.logo{
    width: 15%
}
.logo img{
    width: 90%;
    margin: auto;
    padding-left: 15px;
}
.menu{
    width: 45%;
}
.links > a{
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}
.links > a:hover{
    color: #d1291c;
    text-decoration: none;
}
#login{
    width: 10%;
    color: white;
}
#location > a > img{
    width: 25px;
    height: 17px;
}

#location > a{
    padding-right: 10px;
}

#userLoginIcon{
    display: none;
}

#userLoginIcon a{
    color: #fff;
}

#dropdownMenu{
    display: none;
    font-size: 18px;
    cursor: pointer;
}

.menu-line{
    height: 3px;
    width: 30px;
    margin-top: 5px;
    background-color: white;
}


/* FOOTER PART BEGINS */

footer{
    width: 100%;
}

#footerIconsDiv{
    width: 100%;
    height: 120px;
    background-color: #212121;
    display: flex;
    justify-content: space-evenly;
    /* margin-bottom: 30px; */
}

#footerIconsDiv > div {
    width: 12%;
    height: 100%;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    
}

.footerIcons i{
    font-size: 35px;
    color: grey;
}

.footerIconText{
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
    color: grey;
    cursor: pointer;
}

.footerIconText:hover{
    color: #d1291c;
}


/* FOOTER QUICK LINKS AREA */
#quicklinksArea{
    width:100%;
    background-color: #e5e3e3;
}

#quicklinksArea > div{
    /* border: 1px solid blue; */
    box-sizing: border-box;
    padding: 10px;
    width: 90%;
    margin: auto;
}

#socialmediaLinks{
    text-align: right;
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid grey;
}

#socialmediaLinks i{
    font-size: 24px;
    padding: 20px;
    padding-left: 10px;
}

#socialmediaLinks a, a:hover{
    text-decoration: none;
    color: black;
}

#fb:hover{
    color: #4267B2;
}

#tw:hover{
    color: #1DA1F2;
}

#ytb:hover{
    color: #FF0000;
}

#insta:hover{
    color: #8a3ab9;
}



.footer{
    display: grid;
    grid-template-columns: repeat(7,1fr);
    grid-template-rows: auto;
    padding: 20px 40px;
    background: #e5e3e3;
    border-bottom: 1px solid grey;
}
.footer > div>h3{
    font-size: 20px;
    font-weight: bolder;
    margin: 0 0 15px;
    color: #000;
    
}

ul{
    list-style-type: none;
    line-height: 1.8;
    padding: 0;
    font-size: 14px;
    font-weight: bold;
    color: #212529;
}


.footer ul li{
    cursor: pointer;
}

.footer ul li:hover{
    color: #d1291c;
}


#policySection{
    display: flex;
    justify-content: space-between;
}

#policySection small{
    font-size: 11px;
    font-weight: bold;
}

#policySection a{
    text-decoration: none;
    color: black
}

#policySection a:hover{
    text-decoration: none;
    color: #d1291c;
}








/* MEDIA QUERIES */



/* FOOTER SECTION */
@media (max-width:1115px) and (min-width:767px)
{
    .footer{
                display: grid;
                grid-template-columns: repeat(4,1fr);
                grid-template-rows: auto;
                row-gap: 10px;
        }
}

                
@media (max-width:767px)
{
    #menu{
            visibility: hidden;
    }
    #login{
        width: 150px;
    }
    #logo{
        width: 20%;
    }

    .footer{
        display: grid;
        grid-template-columns: repeat(1,1fr);
        grid-template-rows: auto;
        row-gap: 10px;
    }

    #footerIconsDiv{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-template-rows: auto;
    }

    footer ul li{
        display: none;
    }

    footer h3:hover{
        cursor: pointer;
        color: #d1291c;
    }
}


@media all and (max-width: 400px){
    .navbar{
        justify-content: flex-start;
        flex-direction: column;
        width: 100%;
        height: 60px;
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .navbar-active{
        height: 100vh;
    }

    .logo{
        width: 30%;
        position: absolute;
        top: 15px;
        left: 15px;
        padding: 5px;
    }

    .logo img{
        width: 100%;
    }

    .menu{
        width: 100vw;
        flex-direction: column;
        margin-top: 20%;
        display: none;
    }

    .menu > .links{
        /* width: 110vw; */
        text-align: center;
        padding: 15px;
        border-bottom: 1px solid grey;
    }

    .menu > .links > a{
        color: #ffffff;
        font-size: 12px;
        font-weight: bold;
        text-decoration: none;
    }

    .menu > .links > a:hover{
        color: #d1291c;
        text-decoration: none;
    }


    #login{
        display: none;
    }

    #userLoginIcon{
        display: block;
        position: fixed;
        top: 20px;
        right: 15%;
    }

    #dropdownMenu{
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .active{
        display: block !important;
    }



    /* FOOTER MEDIA QUERIES*/

    #footerIconsDiv{
       display: none;
    }

    #footerIconsDiv > .footerIcons{
        width: 100%;
        cursor: pointer;
    }


    .footerIcons > div{
        height: 50%;
    }

    .footerIcons i{
        font-size: 25px;
        color: grey;
    }
    
    .footerIconText{
        height: 30%;
        font-size: 32px;
        font-weight: bold;
        /* margin-top: 10px; */
        color: grey;
        cursor: pointer;
    }
    
    .footerIconText:hover{
        color: #d1291c;
    }

}

@media all and (min-width: 401px) and (max-width: 800px){
    #footerIconsDiv{
        display: none;
     }
 
}


@media all and (min-width: 401px) and (max-width: 1100px){
    .navbar{
        justify-content: flex-start;
        flex-direction: column;
        width: 100%;
        height: 60px;
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .navbar-active{
        height: 100vh;
    }

    .logo{
        width: 30%;
        position: absolute;
        top: 15px;
        left: 15px;
        padding: 5px;
    }

    .logo img{
        width: 100%;
    }

    .menu{
        width: 100vw;
        flex-direction: column;
        margin-top: 20%;
        display: none;
    }

    .menu > .links{
        /* width: 110vw; */
        text-align: center;
        padding: 15px;
        border-bottom: 1px solid grey;
    }

    .menu > .links > a{
        color: #ffffff;
        font-size: 12px;
        font-weight: bold;
        text-decoration: none;
    }

    .menu > .links > a:hover{
        color: #d1291c;
        text-decoration: none;
    }


    #login{
        display: none;
    }

    #userLoginIcon{
        display: block;
        position: fixed;
        top: 20px;
        right: 15%;
    }

    #dropdownMenu{
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .active{
        display: block !important;
    }
}