*{
    /* border: 1px solid red; */
    box-sizing: border-box;
    font-weight: 300;
    /* letter-spacing: 1px; */
    font-size: 16px;
    scroll-behavior: smooth;
    font-family: var(--font-family-sans);
}

:root {
    --primary-offset-color: #A5ADC4;
    --primary-color: #D8DEE1;
    --light-primary-color: #FFF;

    --secondary-color: #0B2240;
    --dark-secondary-color: #345DAE;

    --font-family-sans: "Work Sans", serif;
}
/* blogs Intro */

.blogs-intro{
    width: 100%;
    height: auto;
    padding: 60px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
}

.blogs-intro-details{
    width: 70%;
    height: auto;
}

.blogs-intro-details h2, 
.blogs-intro-details p{
    width: 100%;
    text-align: center;
    color: var(--secondary-color);
}


.blogs-intro-overview{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.blogs-intro-overview-card{
    width: 100%;
    margin: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blogs-intro-overview-card i{
    width: 50px;
    height: 50px;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.blogs-intro-overview-card p{
    width: 100%;
    text-align: center;
    color: var(--secondary-color);
}


.blogs-top-bar{
    width: 100%;
    height: auto;
    margin: 30px auto;
}

.blogs-input-block{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-offset-color);
}

.blogs-input-block input{
    width: 100%;
    padding: 16px 16px;
    color: var(--secondary-color);
}

.blogs-input-block button{
    width: 15%;
    padding: 16px 16px;
    background-color: var(--dark-secondary-color);
    color: var(--primary-color);
}

.blogs-input-block button span{
    margin: auto 16px;
}

.blogs-holder{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.blogs-card{
    width: 100%;
    width: 22vw;
    height: auto;
    margin: 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--light-primary-color);
    text-decoration: none;
}

.blogs-card-img-holder{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blogs-card-img{
    width: 100%;
    height: 50vh;
    background-color: var(--dark-secondary-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.blogs-card:hover .blogs-card-img{
    transform: scale(1.2);
}

.blogs-card-name{
    width: 90%;
    height: 15vh;
    margin-bottom: 12px;
    overflow: auto;
    text-align: center;
    padding: 16px 0;
    font-weight: 500;
    color: var(--secondary-color);
}

.blogs-card p{
    width: 90%;
    height: 20vh;
    overflow: auto;
    font-size: 14px;
    text-align: center;
    color: var(--secondary-color);
}

/* Mobile */
@media screen and (max-width: 900px) {
    
    .blogs-intro-details,
    .blogs-intro-overview{
        width: 100%;
    }

    .blogs-intro-details p,
    .blogs-intro-overview-card p{
        font-size: 14px;
    }


    .blogs-input-block button span{
        display: none;
    }
    

    .blogs-holder{
        width: 100%;
        flex-direction: column;
    }

    .blogs-card{
        width: 100%;
        max-width: none;
        margin: 16px auto;
    }

    .blogs p,
    .blogs-topbar a,
    .blogs-card-name{
        font-size: 14px;
    }
}


/* 

BLOG POST

*/

/* blog-post-section */

.blog-post-section{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 16px;
    background-color: var(--primary-color);
}

.blog-post-content{
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--light-primary-color);
}

.blog-post-img{
    width: 96%;
    height: 60vh;
    margin: 16px 16px;
    background-color: var(--accent-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.blog-post-video{
    width: 96%;
    height: 60vh;
    margin: 16px 16px;
    object-fit: cover;
}

.blog-post-content p{
    width: 90%;
    margin: 0px 0px;
    text-align: left;
    line-height: 2;
    color: var(--secondary-color);
}

.blog-post-content p::first-letter{
    font-size: 30px; 
    font-weight: 300;
    line-height: 0;
    font-family: arial;
}


/* Mobile */
@media screen and (max-width: 900px) {
    .blog-post-section{
        flex-direction: column;
    }
    .blog-post-content{
        width: 100%;
    }
    .blog-post-content p{
        font-size: 14px;
    }
    .blog-post-content p::first-letter{
        font-size: 36px;
    }
}

/* Mobile */
@media screen and (max-width: 900px) {
    .blog-packages{
        width: 100%;
        margin: 30px auto;
    }

}

