﻿
@import url("framework.css");

/* Page Intro
--------------------------------------------------------------------------------------------------------------- */
#pageintro {
    padding: 250px 0 150px;
}

    #pageintro article {
        display: block;
        max-width: 50%;
    }

        #pageintro article * {
            margin: 0;
        }

        #pageintro article .heading {
            display: block;
            position: relative;
            margin-bottom: 30px;
            padding: 15px 0 20px 20px;
            font-size: 42px;
        }

            #pageintro article .heading::before {
                position: absolute;
                top: 0;
                left: 0;
                width: 5px;
                height: 100%;
                content: "";
            }

            #pageintro article .heading::after {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 50%;
                height: 5px;
                content: "";
            }

        #pageintro article p {
            font-size: 16px;
            line-height: 1.4;
        }

        #pageintro article footer {
            margin-top: 30px;
        }

/* Split Box
--------------------------------------------------------------------------------------------------------------- */
.split .box {
    display: block;
    position: relative;
    float: right;
    width: 40%;
    padding: 100px 0 100px 0;
    min-height:450px;
}

    .split .box::after {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 100%;
        content: "";
    }
.split .box1 {
    display: block;
    position: relative;
    padding: 220px 0 100px 0;
    
}

    .split .box1::after {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 100%;
        content: "";
    }
    .split.box2{
        display:block;
    }
/* Page Intro */
#pageintro article .heading::before, #pageintro article .heading::after {
    background-color: rgba(255,255,255,.5);
}
/* Split Box */
.split .box, .split .box::after {
    color: #FFFFFF;
    background-color: #1D1E1FA6;
}
.split .box2, .split .box2::after {
    display: block;
}
/* Media Queries
--------------------------------------------------------------------------------------------------------------- */
@-ms-viewport {
    width: device-width;
}

/* Max Wrapper Width - Laptop, Desktop etc.
--------------------------------------------------------------------------------------------------------------- */
@media screen and (min-width:978px) {
    .hoc {
        min-height:450px;
    }
}

/* Mobile Devices
--------------------------------------------------------------------------------------------------------------- */

@media screen and (max-width:900px) {
    .hoc {
        max-width: 100%;
        min-height: 450px;
    }
}

@media screen and (max-width:650px) {
    .hoc.split {
        max-width: none;
        width: 100%;
    }

    .split .box {
        float: none;
        width: 100%;
        padding: 10% 5%;
        background-color: #1D1E1F;
    }
    .split .box1 {
        display:none;
    }
    .split .box2 {
        display: block;
    }
}
