*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
    scroll-behavior: smooth;
    font-optical-sizing: auto;
    font-style: normal;
}

/* navbar */
.navbar{
    position: fixed;
    width: 100%;
    z-index: 999;
}
.navbar .container{
    margin: 0;
    margin-inline: auto;
    background-color: #001F55;
    padding: 5px;
}
.navbar .box-navbar{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px;
    background-color: #001F55;
} 
.navbar .box-navbar .logo{
    max-width: 180px;
    min-width: 40px;
    height: auto;
    display: inline-block;
}
.navbar .box-navbar .logo img{
    max-width: 100%;
}
.navbar .box-navbar ul{
    display: flex;
    column-gap: 40px;
    align-items: center;
    gap: 2px;
}
.navbar .box-navbar ul li{
    list-style-type: none;
}
.navbar .box-navbar ul li a{
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    padding: 10px 12px;
}
.navbar .box-navbar ul li a:hover{
    color: #EF4128;
}
.navbar .box-navbar li a.button-link{
    border: 1.5px solid #ffffff;
    border-radius: 45px;
    transition: background-color 0.3s, color 0.3s;
}
.navbar .box-navbar li a.button-link:hover{
    background-color: #EF4128;
    border-color: #EF4128;
    color: #ffffff;
}
.menu-bar{
    display: none;
    color: #ffffff;
    font-size: 28px;
}
@media only screen and (max-width: 768px) {
    .navbar .box-navbar{
        flex-wrap: wrap;
        width: 100%;
    }
    .navbar .box-navbar ul{
        flex-direction: column;
        width: 100%;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    .navbar .box-navbar ul li{
        padding: 18px;
    }
    .navbar .box-navbar ul a{
        text-decoration: none;
        list-style-type: none;
        color: inherit;
        font-size: 18px;
    }
    .navbar .box-navbar .hidden{
        display: none;
    }
    .menu-bar{
        display: flex;
        align-items: center;
    }
}





/* hero banner */
.hero{
    background-image: url("assets/hero-banner.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero .container{
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    align-content: center;
    padding: 120px;
}
.hero .box-hero{
    justify-content: left;
    text-align: left;
    max-width: 600px;
}
.hero .box-hero h1{
    color: #ffffff;
    font-size: 52px;
    padding: 10px;
    width: 100%;
}
.hero .box-hero p{
    color: #ffffff;
    font-size: 28px;
    padding: 10px;
    width: 100%;
}
.container .hero-image{
    max-width: 500px;
}
.container .hero-image img{
    width: 100%;
}
@media (max-width: 1200px) {
}
/* mengubah susunan flex */
@media (max-width: 992px) {
    .hero .container{
        display: flex;
        flex-direction: column;
    }
    .hero .box-hero{
        text-align: center;
        max-width: 700px;
    }
}
/* penyesuaian font */
@media (max-width: 768px) {  
    .hero .box-hero h1{
        font-size: 42px;
    }
    .hero .box-hero p{
        font-size: 24px;
    }
}
/* penyesuain font dan padding di mobile */
@media (max-width: 480px) {
    .hero .container{
        padding: 100px 10px 100px 10px;
    }
    .hero .box-hero h1{
        font-size: 32px;
    }
    .hero .box-hero p{
        font-size: 22px;
    }
    .container .hero-image img{
        width: 80%;
    }
}





/* stats */
.stats .container{
    width: 100%;
    background-color: #121212;
    padding: 40px;
}
.stats .box-stats .stats-title{
    color: #ffffff;
    font-size: 20px;
    justify-content: center;
    text-align: center;
}
.stats .box-stats .box-items{
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    text-align: center;
    justify-content: space-around;
    gap: 24px;
    justify-content: center;
}
.stats .box-stats .box-verse img{
    margin: 20px;
}
.stats .box-stats .box-verse{
    border-radius: 30px;
    max-width: 360px;
    height: auto;
    padding: 40px;
    align-content: center;
    display: inline-block;
    justify-content: center;
    flex-shrink: 0;
}
.stats .box-stats .box-verse img{
    max-width: 30%;
}
.stats .box-stats .box-verse h3{
    font-size: 26px;
    color: #ffffff;
}
.stats .box-stats .box-verse p{
    font-size: 20px;
    color: #ffffff;
}
@media (max-width: 1200px){
    .stats .box-stats .box-items{
        gap: 16px;
    } 
}
@media (max-width: 992px){
    .stats .box-stats .box-items{
        gap: 2px;
    }
    .stats .box-stats .box-verse{
        padding: 40px;
    }
}
@media (max-width: 768px){
    .stats .box-stats .stats-title{
        font-size: 20px;
    }
    .stats .box-stats .box-verse{
        padding: 20px 40px;
    }
}
@media (max-width: 480px){
    .stats .box-stats .stats-title{
        font-size: 16px;
    }
    .stats .box-stats .box-verse{
        padding: 20px 40px;
    }
}





/* about */
.about-vanatama .container{
    background-color: #FFFFFF;
}
.about-vanatama .box-about{
    margin: 0;
    padding: 80px;
    display: flex;
    width: 100%;
    gap: 40px;
    align-content: center;
    align-items: center;
    justify-content: center
}
.image-vanatama, .description-vanatama{
    flex: 1;
    padding: 10px;
}
.about-vanatama .image-vanatama{
    max-width: 600px;
}
.about-vanatama .image-vanatama img{
    width: 100%;
    border-radius: 36px;
    height: auto;
}
.about-vanatama .description-vanatama{
    max-width: 700px;
}
.about-vanatama .description-vanatama h2{
    color: #121212;
    font-size: 32px;
    padding-bottom: 18px;
    width: 100%;
}
.about-vanatama .description-vanatama p{
    color: #121212;
    font-size: 20px;
    width: 100%;
}
@media (max-width: 1200px){
}
@media (max-width: 992px){
    .about-vanatama .box-about{
        flex-direction: column;
        padding: 40px;
        gap: 20px;
    }
    .about-vanatama .description-vanatama{
        max-width: 600px;
    }
}
@media (max-width: 768px){
    .about-vanatama .description-vanatama h2{
        font-size: 28px;
    }
    .about-vanatama .description-vanatama p{
        font-size: 18px;
    }
}
@media (max-width: 480px){
    .about-vanatama .description-vanatama h2{
        font-size: 24px;
    }
    .about-vanatama .description-vanatama p{
        font-size: 16px;
    }
}





/* operations */
.operations{
    background-color: #ffffff;
    padding: 20px;
}
.operations .box-operations{
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
}
.operations .operations-title h2{
    font-size: 32px;
}
.swiper-wrapper .swiper-slide{
    display: flex;
    justify-content: space-around;
    width: 100%;
    align-items: center;
    align-content: center;
    padding: 50px 15% 60px 15%;
}
.text, .photos-carousel{
    flex: 1;
}
.swiper-wrapper .swiper-slide img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}
.swiper-wrapper .swiper-slide .text h2{
   font-size: 28px;
   text-align: left;
}
.swiper-wrapper .swiper-slide .text p{
    font-size: 20px;
    text-align: left;
}
@media (max-width: 1200px) {
    
}
@media (max-width: 992px) {
    
}
@media (max-width: 768px) {
    .swiper-wrapper .swiper-slide{
        flex-direction: column-reverse;
    }
    .swiper-wrapper .swiper-slide .text h2{
        font-size: 28px;
        text-align: center;
     }
    .swiper-wrapper .swiper-slide .text p{
        font-size: 18px;
        text-align: center;
    }
}
@media (max-width: 480px){ 
    .swiper-wrapper .swiper-slide .text h2{
        font-size: 24px;
        text-align: center;
     }
    .swiper-wrapper .swiper-slide .text p{
        font-size: 16px;
        text-align: center;
    } 
}




/* market */
.market .container{
    background-color: #FFFFFF;
}
.market .box-market{
    margin: 0;
    padding: 80px;
    display: flex;
    width: 100%;
    gap: 40px;
    align-content: center;
    align-items: center;
    justify-content: center;
}
.image-market, .description-market{
    flex: 1;
    padding: 10px;
}
.market .image-market{
    max-width: 600px;
}
.market .image-market img{
    width: 100%;
    height: auto;
}
.market .description-market{
    max-width: 700px;
}
.market .description-market h2{
    color: #121212;
    font-size: 32px;
    padding-bottom: 18px;
    width: 100%;
}
.market .description-market p{
    color: #121212;
    font-size: 20px;
    width: 100%;
}
@media (max-width: 1200px){
}
@media (max-width: 992px){
    .market .box-market{
        flex-direction: column;
        padding: 40px;
        gap: 20px;
    }
    .market .description-market{
        max-width: 600px;
    }
}
@media (max-width: 768px){
    .market .description-market h2{
        font-size: 28px;
    }
    .market .description-market p{
        font-size: 18px;
    }
}
@media (max-width: 480px){
    .market .description-market h2{
        font-size: 24px;
    }
    .market .description-market p{
        font-size: 16px;
    }
}




/* products */
.products{
    background-image: url("assets/back-product.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.products .container{
    padding: 80px;
}
.products .box-products{
    padding: 0px 0px 20px 0px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
.products .box-products .title{
    color: #121212;
    padding-bottom: 10px;
    max-width: 600px;
}
.box-products .title h2{
    font-size: 32px;
    width: 100%;
}
.products .box-products .desc{
    color: #121212;
    max-width: 600px;
}
.box-products .desc p{
    font-size: 20px;
    width: 100%;
}
.products .container-card{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.products .card{
    position: relative; 
    max-width: 280px;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease;
    margin: 20px;
    background-color: #ffffff;
    padding: 20px;
}
.products .card img{
    width: 100%;
    display: block;
    border-radius: 16px;
}
.products .card .text{
    color: #121212;
    box-sizing: border-box;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: opacity 0.3s ease;
}
.products .card .text h3{
    margin-top: 10px;
    font-size: 24px;
    transition: opacity 0.5s;
    z-index: 1;
}
.products .card .text p{
    margin-top: 10px;
    font-size: 16px;
    text-align: left;
    transition: opacity 0.5s, visibility 0.5s;
}
.products .card:hover{
    transform: scale(1.05);
}
@media (max-width: 1200px){ 
}
@media (max-width: 992px){
    .products .container{
        padding: 40px;
    }
}
@media (max-width: 768px){
    .box-products .title h2{
        font-size: 28px;
    }
    .box-products .desc p{
        font-size: 18px;
    }
}
@media (max-width: 480px){
    .box-products .title h2{
        font-size: 24px;
    }
    .box-products .desc p{
        font-size: 16px;
    }
}





/* contact us */
.contact{
    background-color: #F4FAFF;
    padding: 80px;
}
.contact .box-contact{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}
.contact .box-contact .contact-title{
    color: #121212;
    max-width: 500px;
}
.contact .box-contact .contact-title p{
    font-size: 32px;
    width: 100%;
}
.contact .box-contact .contact-title h3{
    font-size: 58px;
    width: 100%;
}
.contact .box-contact .contact-title img{
    padding-top: 20px;
    width: 80%;
}
.contact .contact-form{
    max-width: 700px;
    text-align: center;
}
.input-container {
    margin-bottom: 15px;
}

.input-container input,
.input-container textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc80;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}
.contact-form .input-container:nth-child(4){
    display: flex;
    gap: 15px
}
.input-container textarea {
    resize: none;
    height: 100px;
}
button{
    width: 50%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 36px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}
@media (max-width: 1200px){
}
@media (max-width: 992px){
    .contact .box-contact{
        gap: 20px;
    }
    .contact .box-contact .contact-title{
        max-width: 400px;
    }
    .contact .box-contact .contact-title p{
        font-size: 28px;
        width: 70%;
    }
    .contact .box-contact .contact-title h3{
        font-size: 36px;
        width: 70%;
    }
    .contact .box-contact .contact-title img{
        padding-top: 20px;
        width: 70%;
    }
}
@media (max-width: 768px){
    .contact .box-contact .contact-title{
        max-width: 300px;
    }
    .contact .box-contact .contact-title p{
        font-size: 20px;
        width: 70%;
    }
    .contact .box-contact .contact-title h3{
        font-size: 30px;
        width: 70%;
    }
    .contact .box-contact .contact-title img{
        padding-top: 20px;
        width: 80%;
    }
}
@media (max-width: 686px){
    .contact{
        padding: 40px 20px;
    }
    .contact .box-contact{
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .contact .box-contact .contact-title{
        max-width: 300px;
    }
    .contact .box-contact .contact-title p{
        font-size: 20px;
        width: 100%;
    }
    .contact .box-contact .contact-title h3{
        font-size: 28px;
        width: 100%;
    }
    .contact .box-contact .contact-title img{
        padding-top: 20px;
        width: 80%;
    }
}




/* footer */
.footer {
    background-color: #2a2a2a;
    width: 100%;
    padding: 80px 100px;
}
.footer .box-footer{    
    display: flex;
    justify-content: space-between;
}
.footer .company{
    display: flex;
    max-width: 400px;
    flex-direction: column;
    gap: 20px;
}
.footer .company img{
    width: 80%;
}
.footer .company h3{
    font-size: 24px;
    font-weight: 600;
    color: #Ffffff;
}
.footer .company p{
    font-size: 16px;
    color: #c8c8c8;
}
.footer .company p span{
    color: #Ffffff;
}
.footer .box-menu{
    display: flex;
    max-width: 700px;
    gap: 80px;
    color: #ffffff;
}
.footer .box-menu h3{
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 30px;
}
.footer .box-menu li{
    list-style-type: none;
    padding-bottom: 20px;
}
.footer .box-menu ul a{
    text-decoration: none;
    color: inherit;
    font-size: 18px;
}
.footer .contact-footer div{
    display: flex;
    gap: 10px;
    padding-bottom: 20px;
    align-items: center;

}
.copyright{
    color: #b2b2b2;
    padding: 20px;
    text-align: center;
    background-color: #000000;
}
@media (max-width: 1200px){
}
@media (max-width: 992px){
    .footer .company{
        max-width: 320px;
    }
    .footer .box-menu{
        display: flex;
        max-width: 700px;
        gap: 30px;
        color: #ffffff;
    }
}
@media (max-width: 889px){
    .footer {
        background-color: #2a2a2a;
        width: 100%;
        padding: 40px;
    }
    .footer .box-footer{    
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center ;
    }
    .footer .company{
        max-width: 400px;
        padding-bottom: 40px;
        text-align: center;
    }
    .footer .company img{
        width: 220px;
    }
    .footer .company h3{
        font-size: 20px;
    }
    .footer .company p{
        font-size: 18px;
    }
    .footer .box-menu h3{
        font-size: 20px;
    }
    .footer .box-menu ul a{
        text-decoration: none;
        color: inherit;
        font-size: 18px;
    }
    .footer .contact-footer div{
        display: flex;
        gap: 10px;
        padding-bottom: 20px;
        align-items: center;
    }
}
@media (max-width: 480px){
    .footer .box-menu{
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}





/* gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    grid-gap: 10px;
    padding: 120px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Different size variations for grid items */
.gallery-item.wide {
    grid-column: span 2;
}
.gallery-item.tall {
    grid-row: span 2;
}

/* Modal styling for image preview */
.modal{
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal-content{
    max-width: 90%;
    padding: 60px;
    max-height: 90%;
}

.close{
    position: absolute;
    top: 80px;
    right: 30px;
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    z-index: 999;
    transition: 0.5s;
}

.close:hover,
.close:focus {
    color: #ccc;
    text-decoration: none;
    cursor: pointer;
    z-index: 999;
}

/* Responsive design */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .gallery-item {
        grid-auto-rows: 150px;
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .gallery-item {
        grid-auto-rows: 100px;
    }
}





/* 404 not foound */
.not-found-container{
    padding: 120px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    align-content: center;
}
.not-found-container .not-found-box{
    /* display: flex; */
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.not-found-box .image-not-found{
    max-width: 700px;
}
.not-found-box img{
    width: 100%;
}
.not-found-box h2{
    font-size: 42px;
}
.not-found-box p{
    font-size: 32px;
    color: rgba(0, 0, 0, 0.5);
}




/* Blog */
/* headline */
.body-content-home{
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-width: 984px;
    background-color: #Ffffff;
    margin: 0 auto;
    padding: 100px 0;
}
/* .main{
    max-width: 624px;
} */
.headline{
    margin-bottom: 42px;
    position: relative; 
    display: inline-block;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    z-index: 1;
    border-radius: 20px;
}
.headline img{
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}
.headline .metadata{
    position: absolute;
    bottom: 30px;
    padding: 0 50px 0 30px;
    color: #ffffff;
    z-index: 2;
}
.headline h2{
    font-size: 36px;
}
/* for you */
.container-for-you .list-content{
    background-color: #ffffff;
    border: 1px solid #D7CCCC;
    border-radius: 20px;
}
.content-item{
    padding: 20px;
}
.content-item a{
    text-decoration: none;
    color: inherit;
}
.container-for-you .card-item{
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    overflow: hidden;
    gap: 24px;
    letter-spacing: -0.30px;
}
.container-for-you .card-item .thumbnail{
    display: flex;
    overflow: hidden;
    aspect-ratio: 3/2;
    max-width: 200px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    align-content: center;
    margin: 0;
}
.container-for-you .card-item .thumbnail img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-item .info h5{
    color: #1F4C92;
    font-size: 16px;
    padding-bottom: 2px;
}
.card-item .info h3{
    font-size: 20px;
    padding-bottom: 2px;
}
.card-item .info p{
    color: #7c7c7c;
    font-size: 16px;
}
hr{
    margin: 0 20px;
    border: 0.5px solid #D7CCCC;
}
@media (max-width: 992px){
    .body-content-home{
        flex-direction: column;
        padding: 72px 28px 28px;
    }
    .main{
        margin: 0 auto;
    }
}
@media (max-width: 480px){
    .headline{
        border-radius: 12px;
        margin-bottom: 42px;
    }
    .headline img{
        border-radius: 12px 12px 0 0;
    }
    .headline .metadata{
        bottom: 20px;
        padding: 0 20px 0 20px;
    }
    .headline h2{
        font-size: 18px;
    }
    .card-item .info{
        max-width: 150px;
    }
    .card-item .info h5{
        font-size: 13px;
    }
    .card-item .info h3{
        font-size: 15px;
    }
    .card-item .info p{
        font-size: 13px;
    }
    .container-for-you .card-item .thumbnail{
        max-width: 100px;
        border-radius: 6px;
        aspect-ratio: 1/1;
    }
}



/* Detail article */
.body-content{
    display: flex;
    flex-direction: row;
    padding-top: 120px;
    max-width: 984px;
    justify-content: space-between;
    margin: 0 auto;
}
.article{
    display: flex;
    max-width: 624px;
    flex-direction: column;
}
.article .title{
    padding-bottom: 20px;
}
.article .title h1{
    letter-spacing: -0.30px;
}
/* styling attribute */
.article .attribute{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.article .remarks{
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    align-content: center;
}
.remarks .avatar{
    max-width: 36px;
}
.remarks .avatar img{
    width: 100%;
}
.remarks .author p{
    letter-spacing: -0.30px;
}
.remarks .timestamp{
    color: #7c7c7c;
    letter-spacing: -0.30px;
}
.article .share{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.article .share div{
    display: flex;
}
.share a:hover, .share button:hover{
    color: #ffffff;
    background-color: #EF4128;
    border: 1px solid #EF4128;
}
.share a, .share button{
    display: inline-flex;
    text-decoration: none;
    border: none;
    background-color: #ffffff;
    color: #001F55;
    border: 1px solid #001F55;
    border-radius: 100vw;
    width: 40px;
    height: 40px;
    font-size: 20px;
    padding: 10px;
    transition: background-color 0.3s ease;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
}
.article .share button:hover{
    color: #ffffff;
}
.copied-msg {
    display: none;
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.5s ease, bottom 0.5s ease;
}
.show-toast {
    display: block;
    opacity: 1;
    bottom: 40px;
}
/* styling photo */
.article .photo{
    padding-top: 20px;
}
.article .photo img{
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}
.article .photo p{
    font-size: 16px;
    color: #7c7c7c;
}
/* styling body article */
.article .body-article p{
    padding-top: 20px;
    padding-bottom: 120px;
    font-size: 20px;
}
.article .body-article span{
    font-size: 24px;
    font-weight: 700;
}
.article .body-article .bold{
    font-size: 20px;
    font-weight: 700;
}
/* styling aside */
.aside{
    display: flex;
    max-width: 320px;
    flex-direction: column;
}
.aside .container{
    padding-bottom: 42px;
}
.section-name{
    padding-bottom: 20px;
    letter-spacing: -0.30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}
.section-name .block{
    width: 6px;
    height: 48px;
    background-color: #EF4128;
    border-radius: 0 100vw 100vw 0;
}
.section-name .title{
    color: #001F55;
}
/* content list news */
.aside .section-content{
    background-color: #e3ecfc;
    padding: 20px;
    border-radius: 20px;
}
.aside .list-news{
    padding-bottom: 24px;
}
.aside .list-news:nth-child(:last-child){
    padding-bottom: 0px;
}
.aside .list-news a{
    color: inherit;
    text-decoration: none;
}
.aside .list-news a h5{
    color: #753522;
    font-size: 14px;
    padding-bottom: 4px;
}
.aside .list-news h3{
    font-size: 17px;
    letter-spacing: -0.30px;
    padding-bottom: 4px;
}
.aside .list-news p{
    font-size: 14px;
    letter-spacing: -0.30px;
    color: #7c7c7c;
}
@media (max-width: 992px){
    .body-content{
        flex-direction: column;
    }
    .article{
        margin: 0 auto;
    }
    .article .body-article p{
        padding-bottom: 20px;
    }
    .aside{
        margin: 0 auto;
        max-width: 624px;
    }
}
@media (max-width: 624px){
    .body-content{
        padding: 80px 28px 0;
    }
}
@media (max-width: 480px){
    .article .title h1{
        font-size: 24px;
    }
    .article .attribute{
        flex-direction: column;
        gap: 12px;
    }
    .article .share{
        gap: 12px;
    }
    .share a, .share button{
        width: 24px;
        height: 24px;
        font-size: 16px;
        padding: 14px;
    }
    .remarks p{
        font-size: 14px;
    }
    .article .body-article p{
        font-size: 16px;
    }
    .article .body-article span{
        font-size: 24px;
        font-weight: 700;
    }
    .article .body-article .bold{
        font-size: 16px;
        font-weight: 700;
    }
    .aside .list-news a h5{
        font-size: 12px;
    }
    .aside .list-news h3{
        font-size: 15px;
    }
    .aside .list-news p{
        font-size: 12px;
    }
    .section-name h2{
        font-size: 20px;
    }
}