/*
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;
}


/*#endregion Typography*/

section.intro{
    background-image: url(../img/general-contracting-sm.jpg);
}

section.how-it-works h2{
    text-align: center;
}

section.how-it-works .inner-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* #endregion */

/*#region Medium Screen Size (750px-1159px)*/

@media only screen and (min-width: 750px)
{
    section.intro{
        background-image: url(../img/general-contracting-med.jpg);
    }

    section.key-offers .offer-cards{
        justify-content: center;
    }

    section.key-offers .card:first-of-type{
        margin-right: 3.5rem;
    }

    section.how-it-works .step{
        margin: 0rem;
    }
    
    section.how-it-works .steps-container{
        width: 600px;
    }
    
    section.how-it-works .step .step-body{
        padding-bottom: 3rem;
    }

}

/*#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/general-contracting-lg.jpg);
    }

}

/*#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)*/