/* ##### DEFAULT CSS ##### */
html {
    height: 100%;
    opacity: 0;
}
body {
    min-height: 100%;
    font-family: "Helvetica", sans-serif;
    background: #FFFFFF no-repeat center center;
    position: relative;
}

/* ##### LOAD FONTS ##### */
@font-face {
    font-family: 'Helvetica';
    src: url('Helvetica.eot'); /* IE9 Compat Modes */
    src: url('Helvetica.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('Helvetica.woff') format('woff'), /* Pretty Modern Browsers */
    url('Helvetica.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('Helvetica.svg#LDFComicSans') format('svg'); /* Legacy iOS */
}

@font-face {
    font-family: 'Helvetica-Bold';
    src: url('Helvetica-Bold.eot'); /* IE9 Compat Modes */
    src: url('Helvetica-Bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('Helvetica-Bold.woff') format('woff'), /* Pretty Modern Browsers */
    url('Helvetica-Bold.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('Helvetica-Bold.svg#LDFComicSans') format('svg'); /* Legacy iOS */
}

a,
a:hover,
a:focus,
a:active,
a.active {
    outline: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

a:hover {
    color: #F12A00;
    text-decoration: none;
}

strong { font-family: "Helvetica-Bold", sans-serif; font-weight: normal; }

h1, h2, h3, h4, h5, h6 {
    font-family: "Helvetica-Bold", sans-serif;
    font-weight: normal;
    text-transform: uppercase;

}

h1 { font-size: 4em; }
h2 { font-size: 3em; }
h3 { font-size: 2em; }

p, li, label {
    color: #666666;
    font-size: 1em;
}

.clearfix:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

.button {
    background: #2BB1E4 no-repeat center center;
    text-transform: uppercase;
    padding: 10px;
    color: #FFFFFF;
    font-family: "Helvetica-Bold", sans-serif;
    font-size: 1em;
    border: 1px solid #FFFFFF;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    text-shadow: 1px 1px 1px #666666;
}
.button:hover {
    background: #FFFFFF no-repeat center center;
    color: #F12A00;
    text-decoration: none;
    border: 1px solid #F12A00;
}
.button.button-danger {
    background: #F12A00 no-repeat center center;
    border: 1px solid #F12A00;
}
.button.button-danger:hover {
    background: #C12800 no-repeat center center;
    border: 1px solid #C12800;
    color: #FFFFFF;
}
.button.button-success {
    background: #86C542 no-repeat center center;
    border: 1px solid #86C542;
}
.button.button-success:hover {
    background: #63BF43 no-repeat center center;
    border: 1px solid #63BF43;
    color: #FFFFFF;
}
.button-sm {
    font-size: .8em;
    padding: 2px 5px 3px 5px;
}
.large-button {
    font-size: 2em;
}

.transistion {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.center { text-align: center; width: 100%; }
.none { min-height: 0; height: 0; opacity: 0; }
.d-none { display: none; }
.align-left { float: left; }
.align-right { float: right; }
.no-display { display: none; opacity: 0; }
.error { color: #F12A00; display: block; width: 100%; border-radius: 5px; background: rgba(255, 0, 0, 0.2); padding: 10px; }
.success { color: #63BF43; display: block; width: 100%; border-radius: 5px; background: rgba(0, 255, 0, 0.2); padding: 10px; }

.mr-1 { margin-right: 10px; }
.mt-5 { margin-top: 30px; }

/* ##### INPUT FIELDS ##### */
input[type="text"], textarea { border: 1px solid #212121; color: #666666; padding: 10px; width: 100%; font-size: 1em; margin-bottom: 10px; -webkit-border-radius: 3px;  -moz-border-radius: 3px;  -o-border-radius: 3px; border-radius: 3px; }
input[type="radio"] { margin-right: 10px; }
textarea { min-height: 100px; }
input:focus, textarea:focus { outline: #2BB1E4; }
.input-empty { border: 1px solid #F12A00 !important; }
.checkbox-input { margin-right: 10px !important; }

/* ##### HEADER ##### */
header { margin-top: 42px; }
.header-large { box-shadow: inset 0 -5px 10px #666666; width: 100%; height: 100vh; background: url(../images/banner.jpg) no-repeat center center; background-size: 100% 100%; }
.small-window { box-shadow: inset 0 -5px 10px #666666; width: 100%; height: 75vh; background: url(../images/banner-small.jpg) no-repeat center center; background-size: 100% 100%; }
.logo { width: 40px; }

/* ##### NAVIGATION ##### */
nav { background: #FFFFFF; border-top: 2px solid #F12A00; box-shadow: 0 0 10px #666666; position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 50; }
nav .list { list-style: none; display: block; flex-direction: row; align-self: flex-end; justify-content: flex-start; width: 100%; padding: 0; margin: 0; }
nav .nav-button { display: none; }
nav .nav-button a { font-size: 2em; color: #666666; padding: 5px 0; }
nav .nav-button a i { cursor: pointer; }
nav .list li { display: inline-block; }
nav .list li:after { content: "|"; display: inline-block; }
nav .list li:first-child:after, nav .list li:last-child:after { content: ""; }
nav .list a { display: inline-block; margin-top: 8px; text-align: center; color: #666666; text-transform: uppercase; font-size: 1em; font-family: "Helvetica-Bold", sans-serif; padding: 10px 20px; }
nav .list a.active { color: #F12A00; }
nav .list a:hover, nav .list a.active { color: #F12A00; text-decoration: none; }
nav .list a.no-margin { margin-top: 0; }

/* ##### PAD BUTTONS ##### */
.pad-button { position: relative; color: #666666; display: block; width: 100%; font-size: 1.2em; padding: 10px 25% 10px 10px; background-image: url('../images/signpost.png'); background-size: 100% 100%; background-repeat: no-repeat; }
.pad-button i { color: #2BB1E4; font-size: 3em; text-shadow: 1px 1px 1px #666666; transition: color 0.2s ease-in-out; }
.pad-button span { display: block; padding-top: 10px; white-space: nowrap; }
.pad-button:hover, .pad-button:hover i { color: #F12A00; }

/* ##### PAD MENU ##### */
ul.pad-menu { list-style: none; padding-left: 0; }
ul.pad-menu li a.button { display: block; border-radius: 0; -moz-border-radius: 0; -o-border-radius: 0; -webkit-border-radius: 0; width: 100%; }
ul.pad-menu li a.button i { float: left; font-size: 1.5em; width: 15%; }
ul.pad-menu li a.button span { float: left; font-size: 1em; width: 85%; }

/* #### SORTABLE LIST ##### */
.drag-head { width: 100%; border-bottom: 2px solid #F12A00; padding: 10px 0; margin-bottom: 10px; }
.drag-head span { width: 34%; display: block; float: left; }
.drag-head span:first-child { width: 32%; }
ul.sortable { list-style: none; padding-left: 0; }
ul.sortable li { padding: 10px; cursor: all-scroll; width: 100%; background: #FFFFFF; border: 1px solid #666666; margin-bottom: 10px; }
ul.sortable li i { font-size: 2em; float: left; width: 5%; color: #2BB1E4; text-shadow: 1px 1px 1px #666666; text-align: center; }
ul.sortable li span.item-name { width: 25%; float: left; line-height: 2em; }
ul.sortable li span.mob-perc { width: 12.5%; float: left; line-height: 2em; font-weight: bold; text-align: center; }
ul.sortable li .skill-shortcode { width: 30%; float: left; margin-top: 5px; }

/* ##### CONTACT PAGE ##### */
.main { background: #FFFFFF no-repeat center center; width: 100%; padding: 10px 0 335px 0; height: 100%; }
.main .row { margin-bottom: 30px; }
.main ul.contact-list { list-style: none; color: #757575; margin-top: 3em; padding-left: 0; }
.main .google-maps { border: 0; margin-top: 2em; }
.main .plan textarea { min-height: 200px; }

/* ##### RANGE SLIDER ##### */
.main .slider-container { width: 100%; padding: 10px; margin-bottom: 10px; }
.main .slider-container i { text-align: center; text-shadow: 1px 1px 1px #666666; font-size: 3em; color: #2BB1E4; width: 10%; float: left; }
.main .slider-container .range-slider { margin-top: 15px; width: 80%; float: left; }
.main .slider-container .range-slider .ui-slider-tip { display: none; }

/* ##### PROGRESS BAR ##### */
.skill { padding-bottom: 0; }
.skill p { margin-bottom:7px; }
.progress {
    overflow: visible;
    height: 20px;
    margin-bottom: 0;
    background-color: #666666;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.progress-bar {
    background: #F12A00;
    float: left;
    height: 100%;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: width 0.6s ease;
    transition: width 0.6s ease;
    position:relative;
}
.progress-bar-span {
    opacity:1;
    position:absolute;
    top:-5px;
    background:#2BB1E4;
    padding:3px 10px;
    color:#FFF;
    border-radius: 0px;
    right:0px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.skill:hover .progress-bar-span {
    opacity:1;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

/* ##### JQUERY DIALOG ##### */
.ui-dialog-titlebar-close:after {
    content: "\f00d";
    color: #666666;
    font-family: 'FontAwesome';
    display: block;
    margin-top: -3px;
}

/* ##### iframe ##### */
.iframe-view { width: calc(100% + 50px); height: 100vh; margin-left: -25px; border: none; margin-right: -25px; }
.iframe-view iframe { width: 100%; height: 100vh; border: none; }

/* ##### FOOTER ##### */
footer { width: 100%; position: absolute; bottom: 0; left: 0; }
footer .footer-header { background: #FFFFFF url('footer.png') no-repeat center center; background-size: 100% 200px; display: block; width: 100%; height: 200px; }
footer .top-footer { background: #86C542 no-repeat center center; padding: 10px; }
footer .top-footer a, footer .top-footer span { color: #FFFFFF; line-height: 45px; }
footer .top-footer a:hover, footer .copyright a:hover { color: #F12A00; }
footer .top-footer a img.small { height: 30px; }
footer .top-footer .powered-by { float: right; }
footer .top-footer .powered-by img { padding-right: 10px; height: 3em; }
footer .copyright { background: #63BF43 no-repeat center center; padding-top: 10px; }
footer .copyright p, footer .copyright a { color: #FFFFFF; }

/* ##### DESKTOP SECTION ##### */
@media (min-width: 1200px) {
    .text-left-lg {
        text-align: left !important;
    }
    .text-right-lg {
        text-align: right !important;
    }
}

/* ##### TABLET/PHONE SECTION ##### */
@media (max-width: 1200px) {
    .mt-lg-5 { margin-top: 30px; }

    nav .list a { padding: 10px 10px; }
}

/* ##### TABLET SECTION ##### */
@media only screen and (max-width: 1023px){
    /* ##### HEADER ##### */
    header .leftContent .logo, header .leftContent .title .title-inner h1, header .rightContent .title h1 { font-size: 3em; }
    header .leftContent a.button, header .rightContent a { font-size: 1em; }
    header .leftContent .title .title-inner strong, header .rightContent .title strong { font-size: 1.5em; }
    header .leftContent .title span { height: 64px; margin: 4px 10px 0 0; }

    /* ##### PAD BUTTONS ##### */
    .row .col-md-3 { padding-bottom: 15px; }
    .row .col-md-3:last-child { padding-bottom: 0; }
    .main .row { margin-bottom: 15px; }
    .main form input.align-right { float: left; }
}

/* ##### PHONE SECTION ##### */
@media (max-width: 991px) {
    .main {
        padding: 10px 0 350px 0 !important;
    }
    .text-left-md {
        text-align: left;
    }
    .mt-md-5 { margin-top: 30px; }

    /* ##### NAVIGATION ##### */
    nav .nav-button { display: block; }
    nav .list { display: none; }
    nav .list li { display: block; width: 100%; }
    nav .list li:after { display: none; }
    nav .list li a { width: 100%; text-align: center; display: block; }

    /* ### BOOTSTRAP FIXES ### */
    .col-md-4 { padding-top: 10px; }
    .row .col-md-4:first-child { padding-top: 0; }
}
@media only screen and (max-width: 768px){
    /* ##### HEADER ##### */
    .header-large { box-shadow: inset 0 -5px 10px #666666; width: 100%; height: 50vh; background: url(../images/banner.jpg) no-repeat center center; background-size: 100% 100%; }
    .small-window { box-shadow: inset 0 -5px 10px #666666; width: 100%; height: 25vh; background: url(../images/banner-small.jpg) no-repeat center center; background-size: 100% 100%; }

    /* ##### CONTACT PAGE ##### */
    h2 { font-size: 2em; }
    h3 { font-size: 1.5em; }
    .large-button { font-size: 1em; }

    /* ##### RANGE SLIDER ##### */
    .main { padding-bottom: 385px; }
    .main .slider-container i { width: 20%; float: left; }
    .main .slider-container .range-slider { margin-top: 15px; width: 60%; float: left; }
    .main a.align-right { float: left; margin-top: 10px; display: block; }

    /* #### SORTABLE LIST ##### */
    ul.sortable li span.item-name { width: 45%; }
    ul.sortable li .skill-shortcode { display: none; }
    ul.sortable li i { width: 10%; }
    ul.sortable li span.mob-perc { display: block; opacity: 1; }

    /* ##### FOOTER ##### */
    footer .top-footer .powered-by img { height: 2em; }
    .main {
        padding: 10px 0 380px 0 !important;
    }

    .text-left-sm {
        text-align: left;
    }
    .mt-sm-5 { margin-top: 30px; }
}

@media only screen and (max-width: 479px){
    /* ##### CONTACT PAGE ##### */
    h1 { font-size: 2.5em; }
    h2 { font-size: 2em; }
    .main a.align-right { float: left; margin-top: 10px; display: block; }

    /* ##### FOOTER ##### */
    footer .top-footer .powered-by { float: left; }
    .main {
        padding: 10px 0 410px 0 !important;
    }
}

/* ##### BOOTSTRAP EXTRA ##### */
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-5ths {
    width: 20%;
}

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
    }
}

@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
    }
}

@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
    }
}
