/*
Copyright JoySpring Midwifery 2024

*/

/*#region Variables*/
:root
{
    --dark-blue: #2C3E50;
    --teal: #01828D;
    --dark-teal: #4C6971;
    --pink: #d81d5d;
    --grey-blue: #819596;
}
/*#endregion Variables*/

/*#region Typography*/

.about-section h1{
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.5rem;
    width: 97%;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    padding-bottom: 0.75rem;
}

/*#endregion Typography*/

/*#region Small Screen Size (320px-749px)*/

.about-section .inner-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-section .main-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
}

.about-section .jess-image{
    background-image: url(../img/Jess.JPG);
    width: 12rem;
    height: 15rem;
    background-size: cover;
    background-position: center;
    margin-bottom: 1rem;
}

.about-section p{
    margin-bottom: 1rem;
    font-size: 1.15rem;
    line-height: 1.3rem;
    letter-spacing: 0.6px;
}

/*#endregion Small Screen Size (320px-749px)*/

/*#region Medium Screen Size (750px-1159px)*/

@media only screen and (min-width: 750px)
{
    .about-section .main-content{
        overflow: hidden;
        display: initial;
    }

    .about-section .jess-image{
        float: right;
        margin: 0rem 0rem 1rem 1rem;
    }

    .about-section h1{
        font-size: 1.75rem;
        text-align: left;
    }

    .about-section p{
        font-size: 1rem;
    }

}

/*#endregion Medium Screen Size (750px-1159px)*/

/*#region Large Screen Size (1160px-1439px)*/

@media only screen and (min-width: 1160px)
{

}

/*#endregion Large Screen Size (1190px-1439px)*/

/*#region Extra Large Screen Size (1440px)*/

@media only screen and (min-width: 1440px)
{

}

/*#endregion Extra Large Screen Size (1440px)*/