body
{
    font-family: 'Heebo', sans-serif;
    font-weight: 400;
    padding-bottom: 5%;
}

a
{
    text-decoration: none;
}

/* navbar styles start */
a.navbar-link
{
    color: white;
    font-size: 20px;
}

#navbar-div
{
    display: flex;
    justify-content: flex-end;
    column-gap: 20px;
    padding: 10px 40px;
    font-weight: 500;
}
/* navbar styles end */

/* backdrop styles start */

#backdrop
{
    display: flex;
    background-color: #192841;
    flex-direction: column-reverse;
    justify-content: space-around;
    column-gap: 25px;
    padding: 3% 8%;
    margin-top: 4%;
    text-align: center;
}

img.dp
{
    width: 200px;
    height: auto;
}

/* #backdrop > div
{
    border: 1px solid red;
} */

/* backdrop left column styles start */

#backdrop-left-column
{
    width: 100%;
    color: #21243D;
}

#backdrop-left-column > h1
{
    font-weight: 700;
    font-size: 32px;
    color: white;
}

#backdrop-left-column > p
{
    font-weight: 400;
    font-size: 16px;
    color: white;
}

#backdrop-left-button
{
    background-color: #FF6464;
    color: white;
    font-weight: 500;
    font-size: 18px;
    padding: 10px 20px;
    border: 0;
}
/* backdrop left column styles end */

#backdrop-right-column
{
    width: 100%;
    text-align: center;
}

@media screen and (min-width:500px)
{
    #backdrop
    {
        flex-direction: row;
        text-align: left;
    }

    #backdrop-left-column
    {
        width: 50%;
    }

    #backdrop-left-column > h1
    {
        font-size: 44px;
    }

    #backdrop-right-column
    {
        width: 45%;
    }

    img.dp
    {
        width: 300px;
    }
}

/* backdrop styles end */

/* recent blogs starts */

#recent-blog-posts-section
{
    background-color: #EDF7FA;
    padding: 5% 2%;
}

#recent-posts-header
{
    display: flex;
    justify-content: space-between;
}

.my-h4
{
    font-weight: 400;
    font-size: 22px;
    color: #21243D;
    margin: 0;
}

#card-container
{
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

div.card
{
    color: #21243D;
    font-weight: 400;
    background-color: white;
    border-radius: 5px;
    padding: 20px 22px;
}

h2.my-h2
{
    color: #c3c5df;
    font-weight: 700;
    font-size: 26px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px 10px;
}

div.card
{
    background-color: #142850;
}

div.card > span
{
    font-size: 18px;
    padding: 5px 10px;
    color: white;
}

div.card > p
{
    margin-left: 10px;
    color: white;
}

@media screen and (min-width:500px)
{
    #recent-blog-posts-section
    {
        background-color: #EDF7FA;
        padding: 1.5% 8%;
    }

    #card-container
    {
        flex-direction: row;
        column-gap: 1%;
    }

    div.card > p
    {
        font-size: 16px;
    }
}

/* recent blogs ends */

/* featured works starts */

section.featured-works
{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    background-color: white;
    padding: 5% 8%;
}

div.horizontal-card
{
    display: flex;
    flex-direction: column;
    column-gap: 3%;
    background-color: rgb(106, 42, 42);
    border-radius: 5px;
}

span.pill
{
    background-color: #142850;
    padding: 1.5px 15px;
    color: white;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
}

span.secondary-text
{
    color: #8695A4;
    font-size: 20px;
    margin-left: 16px;
}

div.horizontal-card > div
{
    padding-left: 10px;
    padding-right: 10px;
}

div.horizontal-card > div > p
{
    color: rgb(222, 194, 194);
    font-size: 16px;
}

div.horizontal-card > img
{
    border-radius: 6px;
}

@media screen and (min-width:500px)
{
    div.horizontal-card
    {
        row-gap: 20px;
        flex-direction: row;
    }

    div.horizontal-card > div
    {
        padding-left: 0px;
        padding-right: 10px;
    }
}

/* featured works ends */

/* social media links starts */

#social-media-links-section
{
    display: flex;
    text-align: center;
    font-size: 30px;
    color: #142850;
    column-gap: 15px;
    justify-content: center;
    align-items: baseline;
}

#social-media-links-section > a
{
    color: white;
}

/* social media links ends */