*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
   /*  font-family: 'Ubuntu', sans-serif; */
}

/* Header */
header{
    background-color: #001d3d;
    position: sticky;
    top: 0;
}
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 980px;
    margin: auto;
}
.logo{
    width: 120px;
}
.menuBtn{
    color: #fff;
    /* background-color: #000000c4; */
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 30px;
    cursor: pointer;
}

/* Menu Display */
.menuClose{
    width: 100%;
    text-align: end;
    margin-top: -10px;
}
.menuCloseIcon{
    color: #fff;
    font-size: 25px;
    padding: 10px 12px;
    cursor: pointer;
}
.menuDisplay{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 10px;
    padding: 30px 20px;
    background-color: #001022;
    width: 0px;
    position: fixed;
    top: 0;
    right: -100px;
    height: 100%;
    overflow: auto;
    overflow-x: hidden;
    z-index: 5;
    transition: 0.5s;
}
.menuDisplayOpened{
    width: 300px;
    right: 0;
    transition: 0.5s;
}

.menuDisplay::-webkit-scrollbar{
    width: 10px;
}
.menuDisplay::-webkit-scrollbar-track {
    background: #aaa;
}
.menuDisplay::-webkit-scrollbar-thumb {
    background: #555;
}
.menuDisplay::-webkit-scrollbar-thumb:hover {
    background: #333;
}

.menuLink{
    display: block;
    background-color: #001d3d;
    color: #fff;
    padding: 5px;
    font-size: 20px;
    text-decoration: none;
    width: 210px;
    text-align: center;
}
.menuLink:hover{
    background-color: #fff;
    color: #001022;
    font-weight: 700;
}


/* Article Section */
.articleSection{
    background-color: #eee;
}
.articleContainer{
    width: 800px;
    padding: 20px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.articleHero{
    text-align: center;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../img/p1.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.articleHeroTitle{
    font-family: 'Ubuntu', sans-serif;
    font-size: 40px;
    max-width: 500px;
    background-color: #ffffffc4;
    padding: 30px;
    margin: 20px;
    border-radius: 20px;
}
.articleInfo{
    background-color: #001d3d;
    color: #fff;
    width: 100%;
    padding: 10px;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    font-weight: 700;
}
.articleTitle{
    font-family: 'Ubuntu', sans-serif;
    font-size: 35px;
    margin-bottom: 10px;
    text-align: center;
}
.articleSubtitle{
    font-style: italic;
    font-weight: 400;
    margin-bottom: 20px;
    width: 90%;
    text-align: center;
}
.articleTopic{
    font-family: 'Ubuntu', sans-serif;
    font-size: 25px;
    margin-bottom: 15px;
    margin-top: 5px;
    text-align: center;
}
.articleTopic i{
    padding-right: 10px;
}
.articleParag{
    font-weight: 400;
    font-size: 20px;
    text-align: justify;
    hyphens: auto;
    margin-bottom: 15px;
}
.articleThumb{
    width: 100%;
    border-radius: 25px;
    margin-bottom: 15px;
}




/* Footer */
footer{
    background-color: #001d3d;
    color: #fff;
}
.footerContainer{
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 30px 30px 30px;
}
.footerLogo{
    width: 150px;
}
.footerContact{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footerPosts{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 10px;
}
.footerPosts h3{
    text-align: center;
    width: 100%;
    margin-bottom: 5px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 22px;
}
.postLink{
    display: block;
    text-decoration: none;
    color: #fff;
    border: solid 3px transparent;
    border-left: solid 3px #aaa;
    padding: 3px 5px;
}
.postLink:hover{
    color: #777;
}
.footerMenu{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 300px;
    justify-content: center;
    align-items: center;
}
.footerLink{
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    background-color: #001022;
    width: 170px;
    text-align: center;
    border: solid 1px #001022;
}
.footerLink:hover{
    background-color: #fff;
    color: #001022;
    font-weight: 700;
}

.copyright{
    text-align: center;
    padding: 15px 10px;
    background-color: #001022;
}

/* Banner Template */
.bannerTemplate{
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
    position: fixed;
    bottom: 10px;
    right: 0;
    left: 0;
    margin: 0 10px;
    border-radius: 10px;
    z-index: 100;
}
.templateText{
    text-align: center;
}
.templateBtn{
    display: block;
    text-decoration: none;
    color: #000;
    background-color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
}


@media (max-width: 980px) {
    .header, .hero {
        width: 100%;
        padding: 20px;
    }
    .postLink{
        text-align: start;
    }
    .footerPosts h3{
        text-align: start;
    }
    .articleContainer{
        width: 100%;
    }
}

@media (max-width: 630px) {
    .header{
        /* background-color: #000000ce; */
        padding: 10px 20px;
    }
    .logo{
        width: 100px;
    }
    .hero{
        padding-top: 40px;
    }
    .footerContainer{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .footerInfo{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .footerInfo .footerLink{
        margin: auto;
    }
    .footerPosts{
        margin-bottom: 20px;
    }
    .footerPosts h3{
        text-align: center;
        margin-top: 20px;
    }
    .footerLink{
        width: fit-content;
    }
}

@media (max-width: 320px) {
}