
/*Blog*/

      /* blog-year */
#blog-year .year-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
}

.button-year button {
    margin-left: 200px;
    background-color: #0B0046;
    color: white;
    width: 96px;
    height: 18px;
    text-transform: uppercase;
    font-family: Roboto, sans-serif;
}

.year-details {
    display: flex;
    gap: 30px;
    position: relative;
    left: 6%;
}

.year-details h5 {
    color: #170D4F;
    font-weight: 500;
    font-family: Roboto, sans-serif;
    font-size: 16px;
}

/* blog */

#font-writer{
    margin-left:5px;
}


#blog .blog-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

}

.image img {
    width: 168px;
    height: 112px;
}

.blog-box .blog-details {
    display: flex;
}

.blog-content h6 a {
    font-size: 14px;
    color: black;
    text-decoration: underline;
    font-family: Roboto, sans-serif;
}

.blog-content {
    width: 379px;
    height: 185px;
    position: relative;
    left: 3%;
}

.blog-content span {
    color: #BDBDBD;
    font-family: Roboto, sans-serif;
    font-size: 12px;
    position: relative;
    top: 3%;
}

.blog-content p {
    color: #818181;
    margin-top: 22px;
    font-family: Roboto, sans-serif;
    font-size: 13px;
    font-weight: 650;
}

.blog-content h4 {
    text-decoration: underline;
    color: #1E28EE;
    font-size: 12px;
    font-weight: 500;
    font-family: Roboto, sans-serif;
    margin-top: 20px;
}

.blog-content h4:hover {
    color: #5B6CFF;
    transition: all 0.3s ease-in-out;
}

.blog-content h6 a:hover {
    color: #5B6CFF;
    transition: all 0.3s ease-in-out;
}

.space {
    height: 60px;
    color: white;
}

.line .line-1 {
    width: 1080px;
    background-color: #5B6CFF;
    /* background-color: rgb(187, 151, 75); */
    height: 3px;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 13%;
    margin-top: 5px;
}

@media(max-width:768px) {

    #blog-year {
        display: none;
    }

    #blog .blog-container {
        display: block;
    }

    #blog-year .year-container {
        display: block;
    }

    .button-year button {
        display: none;
    }

    .line .line-1 {
        background-color: rgb(187, 151, 75);
        width: 100%;
        left: 0%;
        display: none;
    }
}

@media(min-width:526px) and (max-width:800px) {
    .button-year button {
        display: none;
    }

    .line .line-1 {
        background-color: rgb(187, 151, 75);
        width: 100%;
        left: 0%
    }

    #blog .blog-container {
        display: block;
        position: relative;
        justify-content: center;
        align-items: center;
    }
}

@media(min-width:801px) and (max-width:846px) {
    #blog {
        position: relative;
        left: 22%;
    }
}


@media(min-width:846px) and (max-width:910px) {
    #blog {
        position: relative;
        left: 15%;
    }
}

@media(min-width:910px) and (max-width:1000px) {
    #blog {
        position: relative;
        left: 10%;
    }
}

@media(min-width:1000px) and (max-width:1200px) {
    .line .line-1 {
        width: 100%;
        position: relative;
        left: 0%;
    }

    #blog {
        position: relative;
        left: 5%;
    }
}