/*
Copyright Robertson's Plumbing & Gasfitting 2024
Created By Tiger Lily Web Services 2024
Fort Saskatchewan, Alberta, Canada
*/

/*#region Small Screen Size (320px-749px)*/

/*#region Variables*/
:root
{
    --red: #D1332A;
    --dark-grey: #3D3D3D;
    --white: #F8F8F8;
    --med-grey: #D9D9D9;
}
/*#endregion Variables*/

/*#region Typography*/
body, a
{
    font-family: 'Roboto', sans-serif;
    color: black;
}

a
{
    text-decoration: none;
}

button
{
    cursor: pointer;
}

section.cert h2{
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

section.cert p{
    color: white;
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 300;
    margin-bottom: 1rem;
}


/*#endregion Typography*/

section.intro{
    background-image: url(../img/commercial-sm.jpg);
}

section.cert{
    background-color: var(--dark-grey);
}

section.cert .inner-container{
    padding: 1.25rem 1rem;
}

section.cert img{
    width: 75px;
    height: auto;
}

section.cert .cta-button{
    margin-bottom: 2rem;
}

section.cert .cert-logos{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 300px;
}

section.cert .cert-logos .divider{
    height: 75px;
    width: 1px;
    background-color: var(--med-grey);
}

/* #endregion */

/*#region Medium Screen Size (750px-1159px)*/

@media only screen and (min-width: 750px)
{
    section.intro{
        background-image: url(../img/commercial-med.jpg);
    }

    section.cert .inner-container{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem 2rem;
        max-width: 750px;
        margin: auto;
    }

    section.cert .cert-text{
        width: 55%;
    }

    section.cert .cta-button{
        margin-bottom: 0rem;
    }

    section.cert .cert-logos{
        width: 350px;
    }

}

/*#endregion Medium Screen Size (750px-1159px)*/

/*#region Large Screen Size (1160px-1439px)*/

@media only screen and (min-width: 1160px)
{
    section.intro{
        background-image: url(../img/commercial-lg.jpg);
    }

    section.cert .inner-container{
        padding: 2.6875rem 5.8125rem;
        max-width: 935px;
    }

}

/*#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)*/