* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #555;
}

.overallWrapper {
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
    overflow: hidden;
}

header {
    width: 100%;
    height: 80px;
    background-color: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-around;
    
}

header .fa-bars {
    font-size: 24px;
    cursor: pointer;
}

header .fa-times {
    font-size: 28px;
    cursor: pointer;
    display: none;
}

.logoContainer {
    width: 200px;
} 

.logoContainer img {
    width: 100%;
}

.navLinksContainer {
    width: 100%;
    height: 100vh;
    background-color: rgba(255,255,255,0.9);
    position: fixed;
    top: 80px;
    display: flex;
    justify-content: center;
    right: 100%;
    transition: .5s;
    z-index: 2;
}

.showNavLinksContainer {
    right: 0%;
    
}

.navLinksContainer ul li{
    margin-top: 60px;
    list-style: none;
    text-align: center;
    

}

.navLinksContainer ul li a {
    text-decoration: none;
    font-size: 24px;
}

header .fa-search {
    font-size: 24px;
    cursor: pointer;
}

header #closeSearch {
    font-size: 28px;
    display: none;
}

.searchContainer {
    position: fixed;
    top: 80px;
    width: 100%;
    height: 100vh;
    background-color: rgba(255,255,255, 0.9);
    padding: 30px;
    top: 100%;
    transition: .5s;
    z-index: 2;
}

.displaySearchContainer {
    top: 80px;
}

.searchContainer h1 {
    width: 100%;
    text-align: center;
    font-size: 36px;
    margin-top: 50px;
    margin-bottom: 30px;
    line-height: 50px;
    

}

form {
    width: 100%;
}

.searchContainer input {
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
    padding: 0px 20px;
    font-size: 16px;
}

.searchContainer button {
    width: 100%;
    height: 50px;
    font-size: 24px;
    background-color: #ff0000;
    border: none;
    color: #fff;
}

.imageSliderContainer {
    width: 100%;
    height: 250px;
    display: flex;
    position: relative;
    flex-wrap: wrap;
    /* background-color: aqua; */
    
    
}

.imageSliderContainer .fa-arrow-left, .imageSliderContainer .fa-arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.9  );
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1;
}

.imageSliderContainer .fa-arrow-right {
    left: 90%;
}

.sliderContainer {
    width: 100%;
    display: flex;
    
    
    
}

.sliderContainer img {
    width: 100%;
    object-fit: cover;
}

.buttonContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
   
}

.innerButtonContainer {
    width: 25%;
    text-align: center;
    
}


.popularBlogContainer {
    width: 100%;
    padding: 10px;
    margin-top: 40px;
    
}

.blogQuickLinks {
    width: 150%;
    /* overflow: scroll; */
    
}

.blogQuickLinks button {
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: .5s;
}



.hover-state {
    background-color: #ff0000;
    color: #fff;
    
}


.allBtn {
    background-color: #ff0000;
    color: #fff;
    
} 


/* .blogQuickLinks button:nth-child(1) {
    background-color: #ff0000;
    color: #fff;
} */


.blogQuickLinks .fa-caret-down {
    font-size: 16px;
} 

.overlayForMoreBlogQuickLinks {
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.5  );
    position: fixed;
    top: 100%;
    left: 0px;
    transition: .5s;
    z-index: 1;
    
}

.showOverlayForMoreBlogQuickLinks {
    top: 0%;
}

.moreBlogQuickLinks {
    width: 100%;
    background-color: #fff;
    padding: 30px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    position: absolute;
    bottom: 0px;
    /* transition: .5s; */

}

.moreBlogQuickLinks ul li {
    list-style: none;
    margin-bottom: 10px;

}

.moreBlogQuickLinks ul li a {
    text-decoration: none;
    font-size: 18px;
    
}

.popularBlogHeadingWithButtonsContainer {
    width: 200%;
    padding: 10px;
}

.popularBlogHeadingWithButtonsContainer h1 {
    width: 100%;
    font-size: 24px;
    margin: 20px 0px;
}

.popularBlogImageAndContentOverallWrapper {
    width: 100%;
    display: flex;
    
}

.allBlogContainer, .policticsBlogContainer, .musicBlogContainer {
    width: 100%;
    flex-shrink: 0;
    padding: 10px;
    
}



.imageWithTextBoxContainer {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: space-between;
    margin: 20px 0px;
   
}


.imageBox {
    width: 120px;
    height: 120px;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    
}


.imageBox img{
    width: 100%;
    object-fit: cover;
    cursor: pointer;
}

.textBox {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    cursor: pointer;
}

.textBox h3 {
    font-size: 20px;
    line-height: 28px;
    
} 

.textBox .fa-clock {
    font-size: 16px;
    margin-right: 3px;
    color: #838383;
}

.textBox p {
    font-size: 16px;
    color: #838383;
}

