@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
    text-decoration: none;
}
html {
    scroll-behavior: smooth;
}
body{
    background-color: #212428;
}
/* ::-webkit-scrollbar {
    width: 10px;
} */
.section{
    width: 100%;
}
.section.header{
    position: sticky;
    top: 0;
}
.section.footer{
    background-color: #2d2a30;
}
.navBar{
    height: 100%;
    background-color: #2d2a30;
}
.Wrapper{
    max-width: 100%;
    margin: auto;
}
.header .Wrapper .logo{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: start;
}
.header .Wrapper .logo img{
    width: 100%;
    height: 100%;
}

/* Body Css Start */
/* .section.home {
    background-color: #fff;
} */
.bodyContent{
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-top: 25px;
    margin-bottom: 30px;
}
.postArea{
    width: 60%;
}
.leftMenu{
    width: 35%;
    gap: 20px;
}
.postArea, .leftMenu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
}

.postTitle h1 {
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 7px;
    color: white;
}

.postControl {
    color: white;
    opacity: 60%;
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: start;
    justify-content: start;
    margin-bottom: 30px;
}
.postImg {
    width: 100%;
    margin-bottom: 35px;
}

.postImg img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 1px solid #9f9f9f;
    object-fit: cover;
}

.postDes {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.postDes p {
    font-size: 18px;
    width: 100%;
    font-weight: 500;
    color: white;
    text-align: justify;
}
.postCategory,
.postDate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.postCategory i,
.postDate i {
    font-size: 14px;
}
.postCategory p,
.postDate p {
    font-size: 14px;
    font-weight: 500;
}
.popularPosts,
.tags,
.social,
.fbAccount {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: start;
    justify-content: start;
    background: #1e2024;
    border-radius: 8px;
    border: 1px solid #9f9f9f;
    color: #fff;
    width: 100%;
    padding: 15px;
}

.text {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #9f9f9f;
    width: 100%;
    padding-bottom: 10px;
}

.text h2 {
    font-size: 20px;
    font-weight: 600;
}

.allPopularPostList {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.allPopularPostList a {
    width: 100%;
    color: #fff;
    padding: 5px;
    border-bottom: 1px solid #9f9f9f;
    transition: .5s all ease;
}
.allPopularPostList a:last-child{
    border-bottom: none;
}
.allPopularPostList a:hover .singlePost {
    transform: translateX(10px);
    transition: .5s all ease;
}
.singlePost {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.singlePost img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #9f9f9f;
}
.singlePost p {
    font-size: 16px;
    font-weight: 500;
}

.allTags,
.allLinks{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    align-items: center;
    justify-content: center;
}

.allTags a,
.allLinks a {
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #9f9f9f;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.allTags a:hover,
.allLinks a:hover{
    background-color: orange;
}

.singleSocialLink {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.singleSocialLink i{
    font-size: 20px;
}

.footerContent {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1%;
    background: #1e1e1e;
    color: #fff;
    padding: 25px 10px;
}


.license {
    width: 30%;
}

.Contact {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 20px;
}

.about {
    width: 40%;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 20px;
}

.name h1 {
    font-size: 50px;
    font-family: cursive;
    margin-bottom: 10px;
}

.name p {
    font-size: 16px;
    font-weight: 500;
}

.name p a{
    color: white;
}

.name p a:hover{
    color: orange;
}

.name h1 samp,
.name p span {
    color: yellow;
}
.singleContact {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 25px;
}

.singleContact i {
    font-size: 16px;
    color: white;
    border: 1px solid white;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
}

.singleContact i:hover{
    color: white;
    background-color: orange;
}

.singleContact p {
    font-size: 16px;
}

.singleContact p a{
    color: white;
}

.singleContact p a:hover{
    color: orange;
}

.about h1 {
    font-size: 25px;
}

.about p {
    font-size: 16px;
    text-transform: capitalize;
    line-height: 20px;
    text-align: justify;
}

.links {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 10px;
}
.links a i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    padding: 10px;
    border-radius: 50%;
    border: 1px solid wheat;
}

.links a i:hover{
    background-color: orange;
}

/* Responsive Blog Post's Page CSS code start */
@media (max-width: 1104px){
    .Wrapper{
        width: 100%;
    }
    .allTags, .allLinks{
        grid-template-columns: repeat(2, 1fr);
    }
    .name h1 {
        font-size: 40px;
    }
    
    .name p {
        font-size: 15px;
    }
    
    .about h1 {
        font-size: 23px;
    }
    
    .about p {
        font-size: 15px;
    }
}
@media (max-width: 947px){
    .Wrapper{
        width: 100%;
    }
    .singleContact {
        gap: 20px;
    }
    
    .about p {
        font-size: 14px;
    }
    
    .name p {
        font-size: 14px;
    }
}
@media (max-width: 850px){
    .Wrapper{
        width: 100%;
    }
    .bodyContent {
        flex-direction: column;
        gap: 30px;
    }
    
    .postArea, .leftMenu {
        width: 100%;
    }
    
    .allTags, .allLinks {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footerContent {
        flex-direction: column;
        gap: 40px;
    }
    
    .license {
        width: 100%;
    }
    
    .Contact {
        width: 100%;
    }
    
    .about {
        width: 100%;
        gap: 15px;
    }
}
@media (max-width: 500px){
    .Wrapper {
        width: 100%;
    }
    
    .allTags, .allLinks {
        grid-template-columns: repeat(2, 1fr);
    }
}