/* UTILITIES START */


a,p{
    font-size: 20px;
}

.sm-img {
    width: 160px;
    height: 90px;
}

.xs-img {
    width: 150px;
    height: 75px;
}

.md-img {
    width: 100%;
    height: 186px;
}

/* UTILITIES ENDS */


body {
    font-family: 'SolaimanLipi';
}

.menuItem{
    border-bottom: 2px solid transparent;
    margin: 1px 0;
    padding: 0 13px;
    transition: all .5s ease;
}
.menuItem:hover{
    background: #000;
    border-bottom: 2px solid #fff;
    cursor: pointer;
}



.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* SOCIAL BACKGROUND COLORS */
.bg-facebook {
    background-color: #3B5998;
}

.bg-youtube {
    background-color: #FF0000;
}

.bg-twitter {
    background-color: #1DA1F2;
}

.bg-insta {
    background-color: #CE2462;
}

/* HEADER STYLE */


/* NAVBAR STYLES */
.navbarMenu {
    position: sticky;
    top: 0;
}

.megaOptions {
    display: none;
    width: 100vw;
    /* background: #000; */
    transition: all .5s ease-in-out;
}

.megaMenu {
    cursor: pointer;
}

.megaMenu:hover .megaOptions {
    transition: all .5s linear;
    display: block;
}

/* NAVBAR STYLES */
.news-card {
    transition: all .5s ease;
}

.news-card:hover {
    color: #032830;
}

.shadowText {
    font-size: 18px;
    padding: 30px 10px 10px;
    background: linear-gradient(to top, #000000 0, #000000c7 33%, #000000c7 33%, #0000007d 66%, #0000007d 66%, #00000000 100%);
}


/* video gallery */
.videoOverlay{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #00000031;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.videoOverlay:hover > .videoIcon{
    transform: scale(1.2);
}
.videoIcon{
    width: 50px;
    height: 50px;
    border: 2px solid #e9e9e9;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s ease;

}









/* MEDIA QUERIES */
@media screen and (max-width: 990px) {

    /* .navbarContainer{
        overflow-x: scroll;
        width: 100%;
    } */
    .navbarMenu {
        position: inherit;
    }

    .header {
        position: sticky;
        top: 0;
        background-color: #fff;
        width: 100%;
        z-index: 999;
    }
}

@media screen and (max-width: 1200px) {
    .navbarContainer {
        overflow-x: scroll;
        overflow-y: hidden;
        width: 100%;
    }

    /* .navbarMenu{
        position: inherit;
    }
    .header{
        position: sticky;
        top: 0;
        background-color: #fff;
        width: 100%;
        z-index: 999;
    } */
}