/* CSS Transitions */
/** {
     -webkit-transition: .25s ease-in-out;
     -moz-transition: .25s ease-in-out;
     -o-transition: .25s ease-in-out;
     transition: .25s ease-in-out;
}*/


/* Global CSS */
html, body {
    height: 100%;
    width: 100%;
    font-family: "Arial", "Helvetica Neue", sans-serif;
    margin: 0 auto;
    background-color: #3c3c3b;
    word-wrap: break-word; /* If content is too large, it will create line break rather than extend outside of container */
}

h1 {
    font-size: 50pt;
    font-weight: 600;
}

h2 {
    font-size: 30pt;
    font-weight: 600;
    line-height: 50px;
}

p {
    font-size: 17pt;
    font-weight: 300;
}

a {
    font-size: 17pt;
    font-weight: 300;
}

a:hover {
    color: #f39200;
}
/* END:- Global CSS */



/* Header Content */
#headerContainer {
    width: 100%;
    min-height: 250px;
    background-color: #3c3c3b;
    /* Vertically align content in flexbox */
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

#headerPhoneContainer {
    width: 33.33%;
    height: 50px;
    margin: 0 auto;
    text-align: center;
    color: #f39200;
    font-size: 14pt;
    display: flex;
    justify-content: center;
    align-items: center;
}

#headerPhoneContainer a {
    color: #f39200;
    font-weight: 800;
    font-size: 14pt;
}

 #headerLogoContainer {
     width: 33.33%;
     height: 120px;
     margin: 0 auto;
     text-align: center;
     display: flex;
     justify-content: center;
     align-items: center;
}

 #headerLogoContainer img {
     width: 75%;
     display: flex;
     justify-content: center;
     align-items: center;
}

#headerSocialContainer {
     width: 33.33%;
     height: 50px;
     display: flex;
     justify-content: center;
     align-items: center;
     margin: 0 auto;
     text-align: center;
     color: #f39200;
     font-size: 14pt;
}

.headerSocialLogo {
    background-color: #f39200;
    width: 90px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    border-radius: 12px;
}

.headerSocialLogo img {
    height: 40px;
}

.headerSocialLogo:hover {
    opacity: 0.7;
}
/* END:- Header Content */



/* Navigation Bar */
.toggle, [id^=drop] {
     display: none;
}

/* Giving a background-color to the nav container */
nav {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #f39200;
    margin-bottom: 0px;
}

/* Since "ul li" is "float: left", adding a clear after the container */
nav: after {
    content: "";
    display: table;
    clear: both;
}

/* Removing padding, margin and "list-style" from the "ul", and adding "position: relative" */
nav ul {
    text-align: center;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

/* Positioning the navigation items inline */
nav ul li {
    margin: 0px;
    display: inline-block;
    background-color: #f39200;
    text-align: center;
    position: relative;
    /*z-index: 50;*/ /*Link items will stay above all other content, e.g. Maps */
}

/* Styling the links */
nav a {
    display: block;
    padding: 14px 20px;
    color: #FFFFFF;
    font-size: 15pt;
    text-decoration: none;
    text-align: center;
    min-width: 130px; /* Ensures that text inside of navigation doesn't go outside of container */
}

/* Background colour change on hover */
nav a:hover {
    background-color: #3c3c3b;
    text-decoration: underline;
}

nav ul li ul li:hover {
    /*background: #f39200;*/
    /*background-color: #fab617;*/
}

/* Hide dropdowns by default and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
}

/* Display dropdowns on hover */
nav ul li:hover > ul, nav ul li:focus > ul {
    display: inherit;
}

/* First Tier Dropdowns */
nav ul ul li {
    float: none;
    display: list-item;
    position: relative;
    text-align: center;
    z-index: 100;
    background-color: #fab617;
}

/* Second, Third and more Tier Dropdowns */
/* Move the 2nd and 3rd etc tier dropdowns to the left by the amount of the width of the first tier */
nav ul ul ul li {
    position: relative;
    left: 200px;
}

/* Change ' +' in order to change the dropdown symbol */
li > a:after {
    content: ' +';
}

li > a:only-child:after {
    content: '';
}
/* END:- Navigation Bar */



/* Page Content */
.pageContainer {
    width: 100%;
    text-align: center;
    padding-bottom: 120px;
}

.moduleContainer {
    margin: 0 auto;
    width: 80%;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.titleContainer {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 50px;
    background-color: #f39200;
    color: #FFFFFF;
    text-align: center;
}

.singleColumnContainer {
    width: 100%;
    overflow: auto; /* Makes sure that the div extends to fit the content inside it */
    margin: 0 auto;
    box-sizing: border-box;
    padding: 20px;
    background-color: #FFFFFF;
    line-height: 40px;
}

.singleColumnImage {
    width: 100%;
}

.singleColumnImage img {
    width: 75%;
    margin: 15px;
    border-radius: 20px;
}

.dualColumnContainer {
    width: 100%;
    margin: 0 auto;
    /*display: table;*/
    display: flex;
    font-size: 16pt;
    box-sizing: border-box;
    background-color: #FFFFFF;
}

.textColumn {
    /*display: table-cell;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    background-color: #FFFFFF;
    color: #000000;
    box-sizing: border-box;
    padding: 50px;
    /*vertical-align: middle;*/
    line-height: 40px;
}

.imageColumn {
    /*display: table-cell;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    background-color: #FFFFFF;
    box-sizing: border-box;
    padding: 50px;
    vertical-align: middle;
}

.imageColumn img {
    display: flex;
    justify-content: center; /* align horizontal */
    align-items: center;
    width: 100%;
    border-radius: 10px;
}

/* Youtube */
.youTubeContainer iframe {
    width: 100%;
    height: 700px;
}

.socialContainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.socialLogo {
    background-color: #f39200;
    width: 90px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    border-radius: 12px;
}

.socialLogo img {
    height: 40px;
}

.socialLogo:hover {
    opacity: 0.7;
}

.contentImageContainer {
    width: 100%;
}

.contentImageContainer img {
    width: 25%;
}

.contentImageContainer img:hover {
    opacity: 0.7;
}

.contentImageContainerLink {
    width: 100%;
    display: flex;
    justify-content: center; /* align horizontal */
    align-items: center;
}

.contentImageContainerLink img {
    width: 100%;
}

.contentImageContainerLink a {
    width: 50%;
    display: flex;
    justify-content: center; /* align horizontal */
    align-items: center;
}

.contentImageContainerLink img:hover {
    opacity: 0.7;
}

.eventsScreenshotContainer {
    width: 100%;
    display: flex;
    justify-content: center; /* align horizontal */
    align-items: center;
}

.eventsScreenshotContainer img {
    width: 100%;
}

.eventsScreenshotContainer img:hover {
    opacity: 0.7;
}
/* END:- Page Content */



/* Twitter */
/*#twitterContainer {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

#twitter-widget-0 {
    height: 800px !important;
}*/
/* END:- Twitter */



/* Forms */
form {
    width: 50%;
}

.form-control {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

input[type=submit] {
    width: 80%;
    background-color: #f39200;
    color: white;
    padding: 14px 20px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    font-size: 15pt;
}
/* END:- Forms */



/* Website Embed */
/*.websiteEmbedContainer iframe{
    width: 100%;
    height: 700px;
    border: 0; /* Remove border */
    /*padding-bottom: 20px;
}*/

.singleColumnContainer button {
    font-size: 15pt;
    background-color: #f39200;
    color: white;
    padding: 14px 20px;
    border: none;
    cursor: pointer;
}
/* END:- Website Embed */



/* Partner Pages */
.partnerImageContainer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    max-height: 650px; /* Fluid design - allows images to scale depending on browser size but never go over a certain amount */
}

.partnerImageContainer img {
    max-width: 100%;
}

.partnerDescriptionContainer {
    padding-left: 150px;
    padding-right: 150px;
}

.partnerGalleryContainer {
    width: 90%;
}
/* END:- Partner Pages */



/* Footer Content */
footer {
    width: 100%;
    height: 120px;
    position: fixed;
    bottom: 0;
    background-color: #f39200;
    margin: 0 auto;
    z-index: 200;
}
/* END:- Footer Content */























/* Media Queries */
/* Device = Desktops. Screen = 1281px to higher resolution desktops */
/*@media (min-width: 1281px) {
}*/




/* Device = Large Tablets (iPad Pro, etc) = B/w 1281px to 1400 */
@media (min-width: 1281px) and (max-width: 1400px) {
    /* Global CSS */
    h1 {
        font-size: 40pt;
    }
    
    p {
        font-size: 16pt;
    }
    
    a {
        font-size: 16pt;
    }
    /* END:- Global CSS */
    
    
    
    /* Header Content */
    #headerContainer {
        padding: 0;
        box-sizing: border-box;
    }
    
    #headerPhoneContainer {
        width: 100%;
        font-size: 12pt;
    }
    
    #headerLogoContainer {
        width: 70%;
        margin-top: 20px;
    }
    
    #headerSocialContainer {
        width: 100%;
        height: auto;
        font-size: 12pt;
    }
    
    .headerSocialLogo {
        width: 60px;
        height: 50px;
        margin: 15px;
        border-radius: 12px;
    }

    .headerSocialLogo img {
        height: 30px;
    }
    
    #headerLogoContainer img {
        box-sizing: border-box;
        padding: 10px;
        width: 100%;
    }
    /* END:- Header Content */
    
    
    
    /* Page Content */
    .pageContainer {
        padding-bottom: 200px;
    }
    
    .moduleContainer {
        width: 90%;
        border-radius: 10px;
    }
    
    .titleContainer {
        padding: 20px;
    }
    
    .dualColumnContainer {
        /*display: block;*/
        flex-direction: column;
        width: 100%;
    }
    
    .textColumn {
        /*display: inline-block;*/
        width: 100%;
        order: 1;
        padding: 25px;
    }
    
    .imageColumn {
        /*display: inline-block;*/
        width: 100%;
        order: 2;
        padding: 10px;
    }
    
    .imageColumn img {
        width: 50%;
    }
    
    /* Youtube */
    .youTubeContainer iframe {
        width: 100%;
        height: 500px;
    }
    /* END:- Page Content */
    
    
    
    /* Twitter */
    /*#twitterContainer {
        width: 90%;
    }
    
    #twitter-widget-0 {
        height: 350px !important;
    }*/
    /* END:- Twitter */
    
    
    
    /* Forms */
    form {
        width: 100%;
    }
    /* END:- Forms */
    
    
    
    /* Footer Content */
    footer {
        height: 200px;
    }
    /* END:- Footer Content */
    
    
    
    /* Partner Pages*/
    .partnerImageContainer {
        max-height: 450px; /* Fluid design - allows images to scale depending on browser size but never go over a certain amount */
    }
    
    .partnerDescriptionContainer {
        padding-left: 0px;
        padding-right: 0px;
    }
    /* END:- Partner Pages */
    
    
}



/* Device = Laptops, Desktops. Screen = B/w 1025px to 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    /* Global CSS */
    h1 {
        font-size: 35pt;
    }
    
    p {
        font-size: 15pt;
    }
    
    a {
        font-size: 15pt;
    }
    /* END:- Global CSS */
    
    
    
    /* Header Content */
    #headerContainer {
        padding: 0;
        box-sizing: border-box;
    }
    
    #headerPhoneContainer {
        width: 100%;
        font-size: 12pt;
    }
    
    #headerLogoContainer {
        width: 70%;
        margin-top: 20px;
    }
    
    #headerSocialContainer {
        width: 100%;
        height: auto;
        font-size: 12pt;
    }
    
    .headerSocialLogo {
        width: 60px;
        height: 50px;
        margin: 15px;
        border-radius: 12px;
    }

    .headerSocialLogo img {
        height: 30px;
    }
    
    #headerLogoContainer img {
        box-sizing: border-box;
        padding: 10px;
        width: 100%;
    }
    /* END:- Header Content */
    
    
    
    /* Page Content */
    .pageContainer {
        padding-bottom: 150px;
    }
    
    .moduleContainer {
        width: 90%;
        border-radius: 10px;
    }
    
    .titleContainer {
        padding: 20px;
    }
    
    .dualColumnContainer {
        /*display: block;*/
        flex-direction: column;
        width: 100%;
    }
    
    .textColumn {
        /*display: inline-block;*/
        width: 100%;
        order: 1;
        padding: 10px;
    }
    
    .imageColumn {
        /*display: inline-block;*/
        width: 100%;
        order: 2;
        padding: 10px;
    }
    
    /* Youtube */
    .youTubeContainer iframe {
        width: 100%;
        height: 500px;
    }
    
    .socialLogo {
        width: 90px;
        height: 75px;
        margin: 10px;
    }

    .socialLogo img {
        height: 40px;
    }
    
    .contentImageContainer img {
        width: 50%;
    }
    /* END:- Page Content */
    
    
    
    /* Twitter */
    /*#twitterContainer {
        width: 90%;
    }
    
    #twitter-widget-0 {
        height: 350px !important;
    }*/
    /* END:- Twitter */
    
    
    
    /* Forms */
    form {
        width: 100%;
    }
    /* END:- Forms */
    
    
    
    /* Footer Content */
    footer {
        height: 150px;
    }
    /* END:- Footer Content */
    
    
    
    /* Partner Pages*/
    .partnerImageContainer {
        max-height: 450px; /* Fluid design - allows images to scale depending on browser size but never go over a certain amount */
    }
    
    .partnerDescriptionContainer {
        padding-left: 0px;
        padding-right: 0px;
    }
    /* END:- Partner Pages */
    
    
}

/* Device = Tablets, Ipads (portrait). Screen = B/w 768px to 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Global CSS*/
    h1 {
        font-size: 35pt;
    }
    
    h2 {
        font-size: 20pt;
        line-height: 35px;
    }
     
    p {
        font-size: 15pt;
    }
    
    a {
        font-size: 15pt;
    }
    /* END:- Global CSS */
     
    
    
    /* Header Content */     
    #headerContainer {
        min-height: auto;
        margin-top: 20px;
    }
     
    #headerPhoneContainer {
        width: 100%;
        font-size: 10pt;
    }
     
    #headerLogoContainer {
        width: 90%;
    }
     
    #headerSocialContainer {
        width: 100%;
        height: auto;
    }
    
    .headerSocialLogo {
        width: 50px;
        height: 40px;
        margin: 10px;
        border-radius: 12px;
    }

    .headerSocialLogo img {
        height: 20px;
    }
     
    #headerLogoContainer img {
        box-sizing: border-box;
        padding: 10px;
        width: 100%;
    }
    /* END:- Header Content */
    
    
    
    /* Navigation Bar */
    nav {
        margin: 0;
    }
    
    /* Hide the navigation menu by default */
    .toggle + a, .menu {
        display: none;
    }
     
    /* Styling the toggle label */
    .toggle {
        display: block;
        padding: 14px 20px;
        color: #FFFFFF;
        font-size: 13pt;
        text-decoration: none;
        border: none;
        text-align: center;
        background-color: #f39200;
    }
    
    .toggle:hover {
        background-color: #3c3c3b;
        text-decoration: underline;
    }
     
    /* Display Dropdown when clicked on Parent label */
    [id^=drop]:checked + ul {
        display: block;
    }
     
    /* Change menu items width to 100% */
    nav ul li {
        display: block;
        width: 100%;
    }
     
    nav ul ul .toggle, nav ul ul a {
        padding: 0 40px;
    }
     
    nav ul ul ul a {
        padding: 0 80px;
    }
     
    nav a {
        font-size: 13pt;
    }
     
    nav a:hover, nav ul ul ul a {
        /*background-color: #3c3c3b;*/
    }
     
    nav ul li ul li .toggle, nav ul ul a, nav ul ul ul a {
        padding: 14px 20px;
        color: #FFFFFF;
    }
     
    nav ul li ul li .toggle, nav ul ul a {
        background-color: #fab617;
    }
     
    /* Hide Dropdowns by default */
    nav ul ul {
        float: none;
        position: static;
        color: #FFFFFF;
    }
     
    /* Hide menus on hover */
    nav ul ul li:hover > ul, nav ul li:hover > ul {
        display: none;
    }
     
    /* First Tier Dropdown */
    nav ul ul li {
        display: block;
        width: 100%;
    }
     
    nav ul ul ul li {
        position: static;
    }
    /* END:- Navigation Bar */
    
    
    
    /* Page Content */
    .pageContainer {
        padding-bottom: 100px;
    }
    
    .moduleContainer {
        width: 90%;
        border-radius: 10px;
    }
    
    .titleContainer {
        padding: 20px;
    }
    
    .singleColumnContainer {
        line-height: 25px;
    }
     
    .dualColumnContainer {
        /*display: block;*/
        flex-direction: column;
        width: 100%;
    }
     
    .textColumn {
        /*display: inline-block;*/
        width: 100%;
        order: 1;
        padding: 10px;
        line-height: 25px;
    }
     
    .imageColumn {
        /*display: inline-block;*/
        width: 100%;
        order: 2;
        padding: 10px;
    }
    
    .imageColumn img {
        width: 95%;
    }
    
    /* Youtube */
    .youTubeContainer iframe {
        width: 100%;
        height: 400px;
    }
    
    .socialLogo {
        width: 90px;
        height: 75px;
        margin: 10px;
    }

    .socialLogo img {
        height: 40px;
    }
    
    .contentImageContainer img {
        width: 50%;
    }
    /* END:- Page Content */
    
    
    
    /* Partner Pages */
    .partnerImageContainer {
        max-height: 450px; /* Fluid design - allows images to scale depending on browser size but never go over a certain amount */
    }
     
    .partnerDescriptionContainer {
        padding-left: 0px;
        padding-right: 0px;
    }
    /* END:- Partner Pages */
    
    
    
    /* Forms */ 
    form {
        width: 75%;
    }
    /* END:- Forms */
    
    
    
    /* Twitter */
    /*#twitterContainer {
        width: 90%;
    }
     
    #twitter-widget-0 {
        height: 350px !important;
    }*/
    /* END:- Twitter */
    
    
    
    /* Footer */
    footer {
        height: 100px;
    }
    /* END:- Footer */
}


/* Device = Tablets, Ipads (landscape). Screen = B/w 768px to 1024px */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    /* Global CSS */
    h1 {
        font-size: 25pt;
    }
    
    h2 {
        font-size: 20pt;
        line-height: 35px;
    }
     
    p {
        font-size: 14pt;
    }
    
    a {
        font-size: 14pt;
    }
    /* END:- Global CSS */
    
    
    
    /* Header Content */    
    #headerContainer {
        min-height: auto;
        margin-top: 20px;
    }
     
    #headerPhoneContainer {
        width: 100%;
        font-size: 12pt;
    }
     
    #headerLogoContainer {
        width: 90%;
    }
     
    #headerSocialContainer {
        width: 100%;
        height: auto;
    }
    
    .headerSocialLogo {
        width: 60px;
        height: 50px;
        margin: 15px;
        border-radius: 12px;
    }

    .headerSocialLogo img {
        height: 30px;
    }
     
    #headerLogoContainer img {
        box-sizing: border-box;
        padding: 10px;
        width: 100%;
    }
    /* END:- Header Content */
    
    
    /* Navigation Bar */
    nav {
        margin: 0;
    }
    
    /* Hide the navigation menu by default */
    .toggle + a, .menu {
        display: none;
    }
     
    /* Styling the toggle label */
    .toggle {
        display: block;
        padding: 14px 20px;
        color: #FFFFFF;
        font-size: 13pt;
        text-decoration: none;
        border: none;
        text-align: center;
        background-color: #f39200;
    }
    
    .toggle:hover {
        background-color: #3c3c3b;
        text-decoration: underline;
    }
     
    /* Display Dropdown when clicked on Parent label */
    [id^=drop]:checked + ul {
        display: block;
    }
     
    /* Change menu items width to 100% */
    nav ul li {
        display: block;
        width: 100%;
    }
     
    nav ul ul .toggle, nav ul ul a {
        padding: 0 40px;
    }
     
    nav ul ul ul a {
        padding: 0 80px;
    }
     
    nav a {
        font-size: 13pt;
    }
     
    nav a:hover, nav ul ul ul a {
        /*background-color: #3c3c3b;*/
    }
     
    nav ul li ul li .toggle, nav ul ul a, nav ul ul ul a {
        padding: 14px 20px;
        color: #FFFFFF;
    }
     
    nav ul li ul li .toggle, nav ul ul a {
        background-color: #fab617;
    }
     
    /* Hide Dropdowns by default */
    nav ul ul {
        float: none;
        position: static;
        color: #FFFFFF;
    }
     
    /* Hide menus on hover */
    nav ul ul li:hover > ul, nav ul li:hover > ul {
        display: none;
    }
     
    /* First Tier Dropdown */
    nav ul ul li {
        display: block;
        width: 100%;
    }
     
    nav ul ul ul li {
        position: static;
    }
    /* END:- Navigation Bar */
    
    
    
    /* Page Content */
    .pageContainer {
        padding-bottom: 100px;
    }
    
    .moduleContainer {
        width: 90%;
        border-radius: 10px;
    }
    
    .titleContainer {
        padding: 20px;
    }
    
    .singleColumnContainer {
        line-height: 25px;
    }
     
    .dualColumnContainer {
        /*display: block;*/
        flex-direction: column;
        width: 100%;
    }
     
    .textColumn {
        /*display: inline-block;*/
        width: 100%;
        order: 1;
        padding: 20px;
        line-height: 25px;
    }
     
    .imageColumn {
        /*display: inline-block;*/
        width: 100%;
        order: 2;
        padding: 10px;
    }
    
    .imageColumn img {
        width: 50%;
    }
    
    /* Youtube */
    .youTubeContainer iframe {
        width: 100%;
        height: 550px;
    }
    
    .socialLogo {
        width: 90px;
        height: 75px;
        margin: 15px;
    }

    .socialLogo img {
        height: 40px;
    }
    
    .contentImageContainer img {
        width: 40%;
    }
    /* END:- Page Content */
    
    
    
    /* Partner Pages */
    .partnerImageContainer {
        max-height: 450px; /* Fluid design - allows images to scale depending on browser size but never go over a certain amount */
    }
     
    .partnerDescriptionContainer {
        padding-left: 0px;
        padding-right: 0px;
    }
    /* END:- Partner Pages */
    
    
    
    /* Forms */
    form {
        width: 60%;
    }
    /* END:- Forms */
     
    
    
    /* Twitter */
    /*#twitterContainer {
        width: 90%;
    }
     
    #twitter-widget-0 {
        height: 350px !important;
    }*/
    /* END:- Twitter */
    
    
    
    /* Footer */
    footer {
        height: 100px;
    }
    /* END:- Footer */
}

/* Device = Low Resolution Tablets, Mobiles (Landscape). Screen = B/w 481px to 767px */
@media (min-width: 481px) and (max-width: 767px) {
    /* Global CSS */
    h1 {
        font-size: 25pt;
    }
    
    h2 {
        line-height: 30px;
    }
     
    p {
        font-size: 12pt;
    }
    
    a {
        font-size: 12pt;
    }
    /* END:- Global CSS */
     
    
    
    /* Header Content */
    #headerContainer {
        flex-direction: column;
        padding: 0;
        box-sizing: border-box;
        min-height: 130px;
    }
     
    #headerPhoneContainer {
        width: 100%;
        height: 30px;
        font-size: 10pt;
        order: 2;
    }
    
    #headerLogoContainer {
        width: 50%;
        height: 100px;
        order: 1;
    }
     
    #headerSocialContainer {
        width: 100%;
        height: 65px;
        font-size: 12pt;
        order: 3;
    }
    
    .headerSocialLogo {
        width: 60px;
        height: 50px;
        margin-left: 5px;
        margin-right: 5px;
        border-radius: 12px;
    }

    .headerSocialLogo img {
        height: 30px;
    }
     
    #headerLogoContainer img {
        box-sizing: border-box;
        padding: 10px;
        width: 100%;
    }
    /* END:- Header Content */
    
    
    
    /* Navigation Bar */
    nav {
        margin: 0;
    }
    
    /* Hide the navigation menu by default */
    .toggle + a, .menu {
        display: none;
    }
     
    /* Styling the toggle label */
    .toggle {
        display: block;
        padding: 14px 20px;
        color: #FFFFFF;
        font-size: 13pt;
        text-decoration: none;
        border: none;
        text-align: center;
        background-color: #f39200;
    }
    
    .toggle:hover {
        background-color: #3c3c3b;
        text-decoration: underline;
    }
     
    /* Display Dropdown when clicked on Parent label */
    [id^=drop]:checked + ul {
        display: block;
    }
     
    /* Change menu items width to 100% */
    nav ul li {
        display: block;
        width: 100%;
    }
     
    nav ul ul .toggle, nav ul ul a {
        padding: 0 40px;
    }
     
    nav ul ul ul a {
        padding: 0 80px;
    }
     
    nav a {
        font-size: 13pt;
    }
     
    nav a:hover, nav ul ul ul a {
        /*background-color: #3c3c3b;*/
    }
     
    nav ul li ul li .toggle, nav ul ul a, nav ul ul ul a {
        padding: 14px 20px;
        color: #FFFFFF;
    }
     
    nav ul li ul li .toggle, nav ul ul a {
        background-color: #fab617;
    }
     
    /* Hide Dropdowns by default */
    nav ul ul {
        float: none;
        position: static;
        color: #FFFFFF;
    }
     
    /* Hide menus on hover */
    nav ul ul li:hover > ul, nav ul li:hover > ul {
        display: none;
    }
     
    /* First Tier Dropdown */
    nav ul ul li {
        display: block;
        width: 100%;
    }
     
    nav ul ul ul li {
        position: static;
    }
    /* END:- Navigation Bar */
    
    
    
    /* Page Content */
    .pageContainer {
        padding-bottom: 70px;
    }
    
    .moduleContainer {
        width: 90%;
        border-radius: 10px;
    }
    
    .titleContainer {
        padding: 20px;
    }
    
    .singleColumnContainer {
        line-height: 25px;
    }
     
    .dualColumnContainer {
        /*display: block;*/
        flex-direction: column;
        width: 100%;
    }
     
    .textColumn {
        /*display: inline-block;*/
        width: 100%;
        order: 1;
        padding: 10px;
        line-height: 25px;
    }
     
    .imageColumn {
        /*display: inline-block;*/
        width: 100%;
        order: 2;
        padding: 10px;
    }
    
    /* Youtube */
    .youTubeContainer iframe {
        width: 100%;
        height: 250px;
    }
    
    .socialLogo {
        width: 90px;
        height: 75px;
        margin: 10px;
    }

    .socialLogo img {
        height: 40px;
    }
    
    .contentImageContainer img {
        width: 40%;
    }
    /* END:- Page Content */
    
    
    
    /* Partner Pages */
    .partnerImageContainer {
        max-height: 250px; /* Fluid design - allows images to scale depending on browser size but never go over a certain amount */
    }
     
    .partnerDescriptionContainer {
        padding-left: 0px;
        padding-right: 0px;
    }
    /* END:- Partner Pages */
    
    
    
    /* Forms */
    form {
        width: 100%;
    }
    /* END:- Forms */
    
    
    
    /* Twitter */
    /*#twitterContainer {
        width: 90%;
    }
     
    #twitter-widget-0 {
        height: 350px !important;
    }*/
    /* END:- Twitter */
    
    
    
    /* Footer */
    footer {
        height: 70px;
    }
    /* END:- Footer */
}

/* Device = Most of the Smartphones Mobiles (Portrait). Screen = B/w 320px to 479px */
@media (min-width: 320px) and (max-width: 480px) {
    /* Global CSS */
    h1 {
        font-size: 20pt;
    }
    
    h2 {
        font-size: 17pt;
        line-height: 30px;
    }
     
    p {
        font-size: 12pt;
    }
    
    a {
        font-size: 12pt;
    }
    /* END:- Global CSS */
    
    
    
    /* Header Content */     
    #headerContainer {
        flex-direction: column;
        padding: 0;
        box-sizing: border-box;
        min-height: 150px;
    }
     
    #headerPhoneContainer {
        width: 100%;
        height: auto;
        font-size: 12pt;
        order: 2;
    }
     
    #headerLogoContainer {
        width: 80%;
        height: auto;
        order: 1;
    }
    
    #headerSocialContainer {
        width: 100%;
        height: auto;
        font-size: 12pt;
        order: 3;
    }
    
    .headerSocialLogo {
        width: 60px;
        height: 50px;
        margin: 15px;
        border-radius: 12px;
    }

    .headerSocialLogo img {
        height: 30px;
    }
     
    #headerLogoContainer img {
        box-sizing: border-box;
        padding: 10px;
        width: 100%;
    }
    /* END:- Header Content */
    
    
    
    /* Navigation Bar */
    nav {
        margin: 0;
    }
    
    /* Hide the navigation menu by default */
    .toggle + a, .menu {
        display: none;
    }
     
    /* Styling the toggle label */
    .toggle {
        display: block;
        padding: 14px 20px;
        color: #FFFFFF;
        font-size: 13pt;
        text-decoration: none;
        border: none;
        text-align: center;
        background-color: #f39200;
    }
    
    .toggle:hover {
        background-color: #3c3c3b;
        text-decoration: underline;
    }
     
    /* Display Dropdown when clicked on Parent label */
    [id^=drop]:checked + ul {
        display: block;
    }
     
    /* Change menu items width to 100% */
    nav ul li {
        display: block;
        width: 100%;
    }
     
    nav ul ul .toggle, nav ul ul a {
        padding: 0 40px;
    }
     
    nav ul ul ul a {
        padding: 0 80px;
    }
     
    nav a {
        font-size: 13pt;
    }
     
    nav a:hover, nav ul ul ul a {
        /*background-color: #3c3c3b;*/
    }
     
    nav ul li ul li .toggle, nav ul ul a, nav ul ul ul a {
        padding: 14px 20px;
        color: #FFFFFF;
    }
     
    nav ul li ul li .toggle, nav ul ul a {
        background-color: #fab617;
    }
     
    /* Hide Dropdowns by default */
    nav ul ul {
        float: none;
        position: static;
        color: #FFFFFF;
    }
     
    /* Hide menus on hover */
    nav ul ul li:hover > ul, nav ul li:hover > ul {
        display: none;
    }
     
    /* First Tier Dropdown */
    nav ul ul li {
        display: block;
        width: 100%;
    }
     
    nav ul ul ul li {
        position: static;
    }
    /* END:- Navigation Bar */
    
    
    
    /* Page Content */
    .pageContainer {
        padding-bottom: 80px;
    }
    
    .moduleContainer {
        width: 90%;
        border-radius: 10px;
    }
    
    .titleContainer {
        padding: 20px;
    }
    
    .singleColumnContainer {
        line-height: 25px;
    }
     
    .dualColumnContainer {
        /*display: block;*/
        flex-direction: column;
        width: 100%;
    }
     
    .textColumn {
        /*display: inline-block;*/
        width: 100%;
        order: 1;
        padding: 10px;
        line-height: 25px;
    }
     
    .imageColumn {
        /*display: inline-block;*/
        width: 100%;
        order: 2;
        padding: 10px;
    }
    
    /* Youtube */
    .youTubeContainer iframe {
        width: 100%;
        height: 150px;
    }

    .socialLogo {
        width: 80px;
        height: 75px;
        margin: 5px;
    }

    .socialLogo img {
        height: 40px;
    }
    
    .singleColumnImage img {
        width: 90%;
        border-radius: 20px;
    }
    
    .contentImageContainer img {
        width: 80%;
    }

    .contentImageContainerLink img {
        width: 75%;
    }

    .contentImageContainerLink a {
        width: 90%;
    }

    .contentImageContainerLink img:hover {
        opacity: 0.7;
    }
    
    /* Website Embed */
    .websiteEmbedContainer iframe{
        width: 100%;
        height: 490px;
        border: 0; /* Remove border */
        padding-bottom: 20px;
    }
    
    /* END:- Page Content */
    
    
    
    /* Partner Pages */
    .partnerImageContainer {
        max-height: 650px; /* Fluid design - allows images to scale depending on browser size but never go over a certain amount */
    }
    
    .partnerDescriptionContainer {
        padding-left: 0px;
        padding-right: 0px;
    }
    /* END:- Partner Pages */
    
    
    
    /* Forms */
    form {
        width: 100%;
    }
    /* END:- Forms */
    
    
    
    /* Twitter */ 
    /*#twitterContainer {
        width: 90%;
    }
     
    #twitter-widget-0 {
        height: 350px !important;
    }*/
    /* END:- Twitter */
    
    
    
    /* Footer */
    footer {
        height: 80px;
    }
    /* END:- Footer */
}