@import url("colors/lime-green.css");

@font-face {
    font-family: NetballSans;
    src: url("../fonts/NetballSansLightbeta12.otf") format("opentype");
}
/*-----------------------------

CSS File Contents:

1. General Styles
2. General Typography
3. Navigation
4. Hero (incl sliders and clients)
5. Portfolio/Work Sections
6. Team Section
7. Services Section
8. Blog Section and Pages
9. Pricing Section and pricing table
10. Contact forms (Full plus quick contact)
11. Sliders/Testimonials
12. Footer
13. Etc
14. Animations
15. Media Quieries for Responsive

/*-----------------------------

/*
* === GENERAL STYLES ===
*/
html { height: 100% }
body {
    height: 100%;
    margin: 0;
    background-color: #fff;
    font-family: NetballSans, sans-serif;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}
ul {
    padding-left: 0;
    list-style: none;
}
.button {
    display: inline-block;
    text-align: center;
    padding: 15px 35px 15px 35px;
    border: 0;
    border-radius: 3px;
    color: #fff;
    -webkit-box-shadow: rgba(255, 255, 255, 0.27) 0px 1px 0px 0px inset, rgba(0, 0, 0, 0.2) 0px 0px 6px 0px;
            box-shadow: rgba(255, 255, 255, 0.27) 0px 1px 0px 0px inset, rgba(0, 0, 0, 0.2) 0px 0px 6px 0px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0.35)), to(rgba(0,0,0,0.2)));
    background-image: linear-gradient(rgba(255,255,255,0.35), rgba(0,0,0,0.2));
    background-size: auto 150%;
    background-position: 0 100%;
    font-weight: 400;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    cursor:pointer;
}
.green_button {
    display: inline-block;
    text-align: center;
    padding: 15px 35px 15px 35px;
    border: 0;
    border-radius: 3px;
    color: #fff;
    cursor:pointer;
    -webkit-box-shadow: rgba(255, 255, 255, 0.27) 0px 1px 0px 0px inset, rgba(178,210,53, 0.2) 0px 0px 6px 0px;
            box-shadow: rgba(255, 255, 255, 0.27) 0px 1px 0px 0px inset, rgba(178,210,53, 0.2) 0px 0px 6px 0px;
    background-color:#b2d235;
    background-size: auto 150%;
    background-position: 0 100%;
    font-weight: 400;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
.button:hover, .green_button:hover { opacity: 0.9 !important }
.legend li {
    padding:10px;
}
.legend_icon {
    border-radius:2px;
    width:20px;    margin-right:10px;
    float:left;
    height:20px;
    border:2px solid #fff;
    -webkit-transition:background-color 100ms linear;
    transition:background-color 100ms linear;
}

.legend_icon.bar {
    background-color: #8E9193;
}
.legend_icon.merch {
    background-color: #A4A6A7;
}
.legend_icon.ops {
    background-color: #D2D2D3;
}
.legend_icon.act {
    background-color: #FEFEFE;
}
.legend_icon.vols {
    background-color: #AFB0B1;
}

.legend_icon.bar:hover {
    background-color: #7B9221;
}
.legend_icon.merch:hover {
    background-color: #B1D134;
}
.legend_icon.ops:hover {
    background-color: #E6F0BD;
}
.legend_icon.act:hover {
    background-color: #9FBD2B;
}
.legend_icon.vols:hover {
    background-color: #C7DE6B;
}

input[type="submit"]:disabled.button
{
    background:#999999;
}
.parallax {
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
section {
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
    padding-top: 80px;
   // padding-bottom: 80px;
    background-color: #202328;
    width: 100%;
    background-repeat: no-repeat;
}
section.white { background-color: #f4f8f9 }
section.section-dark { background-color: #16181c }
section.section-upcoming-shifts { background-color: #16181c; }
section.section-portal-home h2 {
    background-color: rgba(255,255,255,0.8);
    border-radius:8px;
    padding:10px;
}
.overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(9,45,61,0.05);
}
.overlay.overlay-light {
    left: 0px;
    top: 0px;
    bottom: 0px;
    background-color: rgba(242, 247, 247, 0.49);
}

.hide {
    display:none;
    opacity:0;
}
.show {
    display:inline;
}

.overlay.overlay-black { background-color: rgba(0, 0, 0, 0.69) }
.container {
    position: relative;
    z-index: 9997;
    display: block;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px 0 20px;
}
.container:before, .container:after {
    content: " ";
    display: table;
}
.container:after { clear: both }
.container .row {
    margin-left: -10px;
    margin-right: -10px;
}
.section-icon.section-dark { background-color: #141a1a }
.section-icon.trans { background-color: transparent }
.center {
    display: block;
    margin-right: auto;
    margin-left: auto;
}
.client_logo {
    background-color: #fff;
    padding:10px;
    border: 20px solid #16181c;
    text-align:center;
    cursor:pointer;
}

.client_logo:hover .client_desc{
    opacity:1;
}
.client_desc {
    opacity:0;
    -webkit-transition: opacity 200ms linear;
    transition: opacity 200ms linear;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: rgba(178,210,53,0.85);
}
.client_desc h2 {
    font-color:#fff;
}
.line-small {
    width: 25%;
    height: 1px;
    margin: 0px auto 30px;
    background-color: rgba(255, 255, 255, 0.1);
}
.line-small.line-dark { background-color: rgba(0, 0, 0, 0.2) }
.center-icon {
    position: relative;
    top: 50%;
    -webkit-transform: translate(0px, -50%);
    transform: translate(0px, -50%);
    color: white;
    font-size: 35px;
    text-align: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-backface-visibility: hidden;
}
.center-icon:hover { opacity: .8 }
.contain { text-align: left }
.strong { font-weight: 700 }
.sec-icon-wrap {
    text-align: center;
    margin-bottom: 5px;
}
.sec-icon-wrap.icon-wrap-dark { background-color: #16181c }
.row { position: relative }

.event_info_box {
    font-family: arial;
    width: 100%;
    float: left;
    margin-bottom: 30px;
    margin-right: 30px;
    text-align: left;
    line-height: 1.3;
    padding: 15px;
    background-color: rgba(30,30,30,0.9);
    color: #fff;
    border-radius: 10px;
}

/*
* === TYPOGRAPHY ===
*/

h1, h2, h3, h4, h5, h6, .button.btn-project, .button .small, .nav-link, .col-services h3, .blog-home-contain h2, .pricing-table h2, .pricing-table h3, .chat p, .chat-box h2, .team-contain h3, .contact-callout h2, .contact-desc li, .footer-bottom, .client-name, .h4-chat { font-family: NetballSans, sans-serif }
h1 {
    color: #111;
    font-size: 29px;
    line-height: 40px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 36px;
    font-weight: 700;
}
h3 {
    margin-top: 20px;
    margin-bottom: 2px;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}
h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    color: white;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}
h5 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
}
h6 {
    font-size: 10px;
    line-height: 18px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
}
h1.main-message span {
    padding-right: 10px;
    padding-left: 10px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.89);
    color: #1c2222;
}

.uni_ladder {
    width:100%;
    color:#000;
    background-color:#fff;
    border-radius:10px;
    overflow:hidden;
}

.uni_ladder li h2 {
    margin-bottom:0px;
    margin-top:0px;
    padding:10px;
    background-color: #EFEFEF;
}

.uni_ladder li::after {
    clear:both;
}

.uni_ladder li div{
    background-color: #EFEFEF;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    white-space:nowrap;
}

.uni_ladder li:nth-child(odd) div {
    background-color: #E6F0B9;

}

.uni_ladder li:hover div{
    background-color: #F5F5F5;
    font-weight:400;
}

.uni_ladder li:nth-child(odd):hover div {
    background-color: #F6FFC9;
}

.uni_ladder li .wide {
    padding:10px;
    float:left;
    width:65%;
}

.uni_ladder li .narrow_col {
    width:15%;
    padding:10px;
    float:left;
}
.uni_ladder li .narrow_col1 {
    width:20%;
    padding:10px;
    float:left;
}




p {
    margin-bottom: 5px;
    color: #242424;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}
a { text-decoration: none }
a:active {
    position: relative;
    top: 1px;
}
.small {
    padding: 10px 20px;
    border-radius: 5px;
    -webkit-box-shadow: rgba(255, 255, 255, 0.27) 0px 1px 0px 0px inset;
            box-shadow: rgba(255, 255, 255, 0.27) 0px 1px 0px 0px inset;
    -webkit-transform: none;
    transform: none;
    font-size: 12px;
}
.button.small {
    padding: 10px 20px;
    border-radius: 3px;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: none;
    transform: none;
    font-size: 15px;
}
.main-quote {
    font-size: 20px;
    line-height: 31px;
}
.main-message {
    text-transform:none;
    max-width:500px;
    letter-spacing: 0px;
    background-color: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 10px;
}
.sub-header {
    margin-bottom: 70px;
    font-family: NetballSans, sans-serif;
    color: #a8bdbd;
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
}
.sub-header.sub-header-dark { color: #242424 }
.sub-header.hero-sub {
    margin-top: 25px;
    margin-bottom: 60px;
    font-family: Merriweather, serif;
    color: #ebeef2;
    font-size: 18px;
}
.our_story_p {
    text-align:center;
    padding:10px;
    background-color: rgba(255,255,255,0.9);
}
.sub-header.sub-white { color: white }
.p-gray {
    color: #a8bdbd;
    font-size: 15px;
}
.form_row {
    width:80%;
    padding:5px 2px;
    float:left;
    color:#111;
}
.form_row.w {
    width:100%;
}

.has_select {
    height: 38px;
}

.has_select select {
    height: inherit;
}

.form_row.w .form_left {
    width:20%;
}
.form_row.w .form_right {
    width:70%;
}
.form_row.w .form_far_right {
    width:10%;
    float:right;
}

.form_left {
    float:left;
    width:30%;
    margin-top:5px;
}

.form_right input.half-line {
    width:50%;
}

.form_right input.half-line:first-child {
    width:48%;
    margin-right:2%;
}

.form_right input.quarter-line {
    width:25%;
}

.form_right input.three-quarter-line {
    width:75%;
}

.form_right input.address-disabled {
    background-color:#eee;
}

#auto_address_helper {
    display:none;
}

.pac-container {
    z-index:10000;
}

.form_right input.three-quarter-line:first-child {
    width:73%;
    margin-right:2%;
}

.form_right {
    float:left;
    width:70%;
}

.rego_heading {
    font-size:15px;
}

.form_right input, .form_right textarea, .form_right select, .feedback_form textarea  {
    width: 100%;
    margin-bottom: 2px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2px 5px;
    min-height: 38px;
    color: #111;
    border: 2px solid #d2d2d2;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
}


.form_right select.bday {
    width:32%;
    margin-right:1%
}

.form_right input[type="checkbox"] {
    height:30px;
    margin-left:20px;
    width:20px;
}

.p-gray.p-left { text-align: left }
.intro {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.27);
    font-size: 21px !important;
    line-height: 35px !important;
}
.h1-white {
    display: block;
    color: white;
}
.i {
    display: block;
    margin-top: 24px;
    font-family: Merriweather, sans-serif;
    color: #adb1b8;
    font-size: 15px;
    font-style: italic;
}
.h1-dark { color: #1c2222 }
.h1-contain { text-align: center }

/*
* === NAVIGATION ===
*/

.logo-contain { margin-top: 0px }
.nav {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 92px;
    margin-top: -3px;
    background-color: dimgray;
    -webkit-box-shadow: none;
            box-shadow: none;
}
.nav-min {
    height:32px;
}

.nav-min .nav-button {
    padding: 5px 12px;
}

.nav.nav-format {
    margin-top: 28px;
    background-color: #ececec;
    border-bottom: 3px solid #123456;
    z-index:9998;
}



.nav.nav-format a.nav-link {
    color: #111;
    margin-left:45px;
}

.nav-link a img, a.nav-link img {
    vertical-align:top;
    margin-top:6px;
    max-height:74px;
}
.nav.nav-format .nav-menu.menu-open {
    width:100%;
    position:absolute;
    text-align:center;
}
.nav.team_leader {
    position:relative;
    height:40px;
}

.selector img {
    opacity:0.5;
    filter:alpha(opacity=50);
    cursor: pointer;
    height:13px;
    width:13px;
    margin-right:1px;
}

.selector img:hover {
    opacity:1;
    filter:alpha(opacity=100);
    -webkit-box-shadow: 0px 0px 19px 0px rgba(255, 255, 42, 0.62);
    box-shadow:         0px 0px 19px 0px rgba(255, 255, 42, 0.62);
}


.staff_list li {
    margin:5px 0px;
    background-color:#efefef;
    padding:10px;
    color:#000;
    -webkit-transition: background-color 150ms linear;
    transition: background-color 150ms linear;
}

.p_signup {
    width:0px;
    background-color: #99ff99;
    overflow:hidden;
    float:left;
    padding: 10px;
    padding-left:5px;
    font-size:12px;
    line-height:1.8;
    position:absolute;
    opacity:0.8;
    text-align:left;
    top:0px;
    opacity:0.8;
    color:#fff;
    font-weight:700;
    left:0px;
    height:auto;
    -webkit-transition: width 200ms linear;
    transition: width 200ms linear;
}

.p_signup.apps_closed {
    background-color: #ff9999;
}

.p_signup div{
    overflow:visible;
    white-space: nowrap;
    width:110px;
    margin-left:10px;
}

.p_signup.apps_closed div{
    overflow:visible;
    width:150px;
    whitespace: nowrap;
}

.portal_event_list li:hover .p_signup, .event_info_box:hover .p_signup {
    width:120px;
    color:#fff;
}

.portal_event_list li.closed:hover .p_signup {
    width:150px;
    color:#272727;
}
.portal_event_list li.reg:hover,  .event_info_box:hover a.slide {
    padding-left:130px;
    -webkit-transition: padding-left 200ms linear;
    transition: padding-left 200ms linear;
}

.portal_event_list::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
.portal_event_list::-webkit-scrollbar-thumb {
    background-color: rgba(200,200,200,0.4);
    box-shadow: inset 1px 1px 0 rgba(255,255,255,0.5), inset 0 -1px 0 rgba(255,255,255,0.5)
}
.portal_event_list::-webkit-scrollbar-button {
    display:none;
    width:0;
    height:0;
}

.staff_list li a {
    color:#000;
}


.staff_list li:hover {
    opacity: 0.85;
    cursor:pointer;
}

.portal_prof_pic {
    margin-top:20px;
    border-radius:5px;
    overflow:hidden;
}

.portal_prof_pic {
    min-width:100%;
    overflow:hidden;
}

.nav-link {
    margin-left: 20px;
    padding: 0px;
    color: white;
    font-size: 11px;
    line-height: 95px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.format_nav_holder .nav-link {
    line-height:70px;
}

.nav-min a.nav-link {
    line-height:15px;
}

.nav-min a.nav-register {
    line-height:32px;
}
.nav.team_leader .nav-link {
    line-height:38px;
}
.nav-link.drop {
    width:100px;
    padding:1px 2px;
    white-space:nowrap;
    line-height:62px;
}

.nav-link.drop ul {
    opacity: 0;
    height:0;
    overflow:hidden;
    position: absolute;
    visibility: hidden;
    background-color:#000;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.nav-link.drop:hover ul{
    opacity: 1;
    height:auto;
    visibility: visible;
}

.nav-link.drop ul li {
    padding:0px 5px;
    height:62px;
    background-color:#ececec;
}

.nav-link.drop:hover ul li {
}

.nav-link.drop a {
    color:#fff;
    -webkit-transition: color 200ms linear;
    transition: color 200ms linear;
}
.nav-link.drop a:hover {
    color:#b2d235;
}

.nav-link.drop ul li a.nav-link {
    margin-left:5px;
}

.nav-link.disabled {
    cursor:pointer;
}
.nav-link.disabled:hover {
    color:#aeaeae;
}

.nav-link.finished {
    background-color:rgba(178,210,53,0.2);
    padding:0px 5px;
}
.nav-link.finished:hover {
    color:#aeaeae;
}

.nav-register {
    background-color: #b2d235;
    color: #fff;
    line-height: 62px;
    padding: 0px 5px;
    -webkit-transition: color 200ms linear;
    transition: color 200ms linear;
}

.nav-register:hover {
    color:#555;
}

/*
* === HERO SECTIONS ===
*/

.hero {
    z-index: 9996;
    height: 900px;
    position: relative;
}
.hero-video {
    background:transparent;
}
.hero-blog {
    z-index: 9996;
    height: 900px;
    height: 550px;
}
.hero.blog.blog-post {
    z-index: 9996;
    height: 100%;
}
.hero.blog._404 {
    height: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
}
.clients {
    position: absolute;
    bottom: 0px;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9996;
}
.clients h6 {
    text-align: center;
    color: #949494;
}
.container.hero-contain {
    position: relative;
    top: 4%;
    -webkit-transform: translate(0px, -40%);
    transform: translate(0px, -40%);
}
.client-contain {
    margin-top: 15px;
    margin-bottom: 10px;
}
.clients img { max-width: 160px }

/* — Hero Slider — */

.slider-wrap {
    height: 900px;
    position: relative;
}
#slider-contain {
    position: absolute;
    bottom: 0;
    width: 100%;
    top: 308px;
}
.our_story_p span {
    background-color: #b2d235;
    padding:5px;
    font-weight:bold;
    border-radius:10px;
    cursor:pointer;
    -webkit-transition:color 200ms linear;
    transition:color 200ms linear;
}
.our_story_p span:hover {
    color:#fff;
}
.hero.hero-slider {
    background-image: none;
    background-position: 0% 0%;
    background-size: auto;
    background-repeat: repeat;
    background-attachment: scroll;
}

.history_cell {
    width:30%;
    float:left;
    padding:10px;
}

.history_cell.narrow {
    width:10%;
}

.wo, .em, .ap, .sm {
    padding:4px;
    margin-bottom:5px;
    bolrder:1px solid #888;
    -webkit-transition:all 200ms linear;
    transition:all 200ms linear;
}

.wo:hover, .em:hover,.ap:hover,.sm:hover {
    background-color:#DDD;
    color:#000;
    -webkit-transform: scale(1.2);
}
.wo:hover a, .em:hover a,.ap:hover a,.sm:hover a,.wo:hover .section-icon, .em:hover .section-icon,.ap:hover .section-icon,.sm:hover .section-icon {
    color:#272727;
}


.wo .section-icon {color: #272727;}
.em { background-color: #a7a7a7;color:#fff;}
.ap { background-color: #272727;color:#fff;}
.sm { background-color: #fefefe;color:#000;}
.blank { background-color: #eeeeee;padding:10px;color:#222}
.wo a, .sm a {
    color:#000;
}
.ap a,.em a {
    color:#fff;
    background-color:transparent;
}
.fade {
    -webkit-transition:opacity 100ms linear;
    transition:opacity 100ms linear;
}

.fade:hover {
    opacity:0.8;
}

.filter_button {
    float: left;
    padding: 10px 0px;
    text-align: center;
    font-weight:bold;
    -webkit-box-shadow: 1px 1px 3px #000;
            box-shadow: 1px 1px 3px #000;
    cursor:pointer;
    -webkit-transition: all 150ms linear;
    transition: all 150ms linear;
    opacity:0.7;
    margin-right:8%;
}

.filter_button .ion {
    font-size:2em;
    margin-right:10px;
}
.fil_button_title {
    display:inline;
    vertical-align:super;
}

.filter_button:hover {
    -webkit-box-shadow: 1px 1px 7px #fff;
            box-shadow: 1px 1px 7px #fff;
    opacity:0.85;
}


/*
* === PORTFOLIO/WORK SECTION ===
*/

.btn-project { margin-top: 15px }
.button.btn-project {
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-top: 15%;
    padding: 8px 15px;
    background-color: white;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(45%, white), to(#ebebeb));
    background-image: linear-gradient(white 45%, #ebebeb);
    -webkit-transform: none;
    transform: none;
    color: #1c2222;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-backface-visibility: hidden;
}
.btn-project .ion {
    padding-left: 10px;
}
.button.btn-project:hover {
    background-color: white;
    opacity: 0.9;
    -webkit-transform: none;
    transform: none;
    color: black;
}
.project-full {
    margin: 15px 0 0 !important;
}
.sub-header.portfolio {
    margin-top: 0px;
    margin-bottom: 50px;
    text-align: center;
}
.portfolio-thumb {
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
}
.thumb-img { -webkit-backface-visibility: hidden }
#project-full-wrap {
    position: relative;
    padding-top: 0;
}
.close-button {
    color: rgba(255,255,255,0.5);
    display: block;
    margin: 0 auto;
    margin-bottom: 15px;
    text-align: center;
}
.close-x:hover { opacity: 0.6 }
.close-button:active {
    -webkit-transform: none;
    transform: none;
    -webkit-transition: none 0ms ease;
    transition: none 0ms ease;
}
.close-x {
    font-size: 37px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.thumb-overlay {
    position: absolute;
    z-index: 9997;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-backface-visibility: hidden;
}
.thumb-description {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 101%;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.78);
    letter-spacing: 1px;
}
.portfolio-row .col { padding: 0 }
#portfolio .button { margin: 55px 0 0 }
.logo-text {
    display: block;
    margin-right: auto;
    margin-left: auto;
    max-height:100%;
}
.nav .container {
    height:100%;
}

.thumb-description p {
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 25px;
}
.slider-work-item {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}
.work-slide {
    overflow-x: hidden;
    overflow-y: hidden;
}
.h4-portfolio {
    margin-top: 0px;
    font-weight: 400;
    text-align: left;
}
.container-project {
    margin-bottom: 50px;
    text-align: left;
}
.container-project h1 {
    text-align: center;
    font-size: 25px;
    line-height: 40px;
}
.project-li {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.h5-portfolio {
    margin-top: 0px;
    margin-bottom: 4px;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 400;
}
.p-small-white {
    color: #d0d3d6;
    font-size: 14px;
    line-height: 24px;
    text-align: left;
}
.breakdown {
    margin-bottom: 25px;
    line-height: 22px;
}
.portfolio-hidden {
    overflow-x: hidden;
    overflow-y: hidden;
    margin-top: 55px;
}
.thumb-description h3 {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 2px;
}
.portal_event_list {
    max-height:300px;
    width:100%;
    overflow-y:auto;
}

.portal_event_list li {
    padding: 10px;
    background-color: rgba(200,200,200,0.7);
    color: #000;
    overflow:hidden;
    position:relative;
}

.portal_event_list li:hover {
    background-color: rgba(150,150,150,0.6);
    color:#ffffff;
    -webkit-transition: background-color 200ms linear,color 300ms linear;
    transition: background-color 200ms linear,color 300ms linear;
}
.portal_event_list li:hover a {
    color:#ffffff;
    -webkit-transition: color 300ms linear;
    transition: color 300ms linear;
}


.portal_event_list li a {
    color:#000;
    margin-left:10px;
    white-space:nowrap;
    overflow:hidden;
}

/*
* === TEAM SECTION ===
*/

.team-contain .overlay {
    background-color: rgba(255, 255, 255, 0.2);
}
.team-circle {
    position: relative;
    z-index: 3;
    overflow: hidden;
    width: 45%;
    margin-top: -80px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 100%;
    -webkit-box-shadow: white 0px 0px 0px 7px, rgba(0, 0, 0, 0.4) 0px -7px 11px 0px, white 0px 0px 0px 1px inset;
            box-shadow: white 0px 0px 0px 7px, rgba(0, 0, 0, 0.4) 0px -7px 11px 0px, white 0px 0px 0px 1px inset;
}
.team-contain h4 {
    margin-top: 0px;
    margin-bottom: 15px;
    font-family: Merriweather, sans-serif;
    color: #b8bbbf;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    line-height: 20px;
}
.team-contain {
    overflow: hidden;
    padding-bottom: 30px;
    border-radius: 5px;
    background-color: white;
    -webkit-box-shadow: rgba(0, 0, 0, 0.03) 0px 0px 10px 1px;
            box-shadow: rgba(0, 0, 0, 0.03) 0px 0px 10px 1px;
    text-align: center;
}
.overlay-team {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-color: rgba(9, 29, 36, 0.56);
}
.team-contain ul, .author-contain ul {
    position: relative;
    z-index: 9997;
    margin-top: 15px;
    text-align: center;
}
.team-custom-img {
    height: 155px;
    background-position: 50% 50%;
    background-size: cover;
}

.team-contain h3 {
    margin-bottom: 0px;
    font-size: 16px;
    letter-spacing: 1px;
    color: #16181c;
    margin-top: 10px;
}
.team-contain p {
    margin-bottom: 25px;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 15px;
    line-height: 25px;
}
.team-contain ul li, .author-contain ul li {
    display: inline-block;
    padding-right: 11px;
    padding-left: 11px;
}
.team-contain ul li a, .author-contain ul li a {
    color: rgba(32, 33, 38, .35);
    font-size: 25px;
}
.team-contain ul li a:hover, .author-contain ul li a:hover { color: rgba(32, 33, 38, 1) }

/*
* === SERVICES SECTION ===
*/

.col-services h3 {
    margin: 6px 0 14px;
    letter-spacing: 2px;
    font-size: 16px;
}
.col-services .line-small { margin: 0px auto 20px }
.col-services {
    text-align: center;
    border-bottom: 1px solid;
}
.section-icon {
    font-size: 2.5em;
}
.section-icon.services-icon {
    font-size: 75px;
}
.col-services {
    margin-bottom: 20px;
    padding: 30px 20px 40px 20px;
    background-color: rgba(0, 0, 0, 0.10);
    border-radius: 5px 5px 0 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.col-services:hover {
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: none;
            box-shadow: none;
}

/*
* === BLOG SECTIONS ===
*/

.overlay.blog-post { opacity: 0.37 }
.container.hero-contain.blog { top: 50% }
.blog-home-contain .sub-header {
    margin-bottom: 0px;
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}
.blog-home-contain.event-box {
    width:100%;
    color:#111;
    background-color:rgba(255,255,255,0.8);
}
.blog .sub-header {
    margin-top: 20px;
    margin-bottom: 0px;
}
.author-contain .team-circle {
    position: static;
    width: 120px;
    margin-top: 0px;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-shadow: white 0px 0px 0px 8px, rgba(0, 0, 0, 0.1) 0px 0px 10px 6px, white 0px 0px 0px 0px inset;
            box-shadow: white 0px 0px 0px 8px, rgba(0, 0, 0, 0.1) 0px 0px 10px 6px, white 0px 0px 0px 0px inset;
}
.sidebar .team-circle {
    width: 75%;
    margin-top: 20px;
    -webkit-box-shadow: white 0px 0px 0px 1px inset;
            box-shadow: white 0px 0px 0px 1px inset;
}
.blog-home-contain p {
    margin-bottom: 24px;
    color: #404040;
    font-size: 15px;
    line-height: 28px;
}
.blog-home-contain {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
    background-color: white;
    -webkit-box-shadow: rgba(0, 0, 0, 0.02) 0px 0px 8px 0px;
            box-shadow: rgba(0, 0, 0, 0.02) 0px 0px 8px 0px;
}
.blogpost p {
    margin-bottom: 30px;
    font-family: NetballSans, sans-serif;
    color: #121212;
    font-size: 15px;
    line-height: 28px;
    text-align: left;
}

.callout p {
    margin-bottom: 0px !important;
    font-family: Merriweather, serif;
    font-size: 23px !important;
    line-height: 36px;
    font-style: italic;
    font-weight: 400;
    text-align: center;
}
.callout.full p {
    color: white;
    font-size: 34px !important;
    line-height: 63px;
    padding: 0;
}
.blog-home-contain h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 23px;
    font-weight: 400;
    color: #16181c;
    line-height: 31px;
}
.blogpost h2 {
    margin-top: 0px;
    font-size: 32px;
    line-height: 41px;
    font-weight: 400;
    color: #16181c;
}
.blog-home {
    height: 100px;
    background-size: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-position: 50% 50%;
    position: relative;
    overflow: hidden;
}
.blog-home img {
    position: relative;
    top: -100%;
}
.blog-home-contain .button {
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 10px 20px 10px 20px;
    font-family: montserrat;
    text-transform: uppercase;
    font-size: 13px;
    background: transparent;
    color: rgba(0,0,0,0.5);
    border: 1px solid rgba(0,0,0,0.15);
}
.overlay-blog {
    background-color: rgba(255,255,255,0.2);
    background-image: none;
}
.blog-home-top {
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    border-bottom: 1px solid #dedede;
}
.post-img {
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    margin-bottom: 0px;
}
.blogpost {
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    text-align: left;
}
.blog-wrap {
    overflow-x: hidden;
    overflow-y: hidden;
    margin-bottom: 20px;
}
.video-blog .video {
    padding-top: 56.27659574468085%;
}
.post-li-link { text-decoration: none }
.post-li-link:hover { text-decoration: underline }
.post-author {
    margin-bottom: 0px;
    font-family: Merriweather, serif;
    color: #5e5e5e;
    font-size: 14px;
    font-weight: 500;
}
.post-author.blog {
    margin-top: 15px;
    color: white;
    font-size: 16px;
}
.post-author.post-author-list { margin-bottom: 15px }
.blk-tr-wrap {
    display: block;
    max-width: 75%;
    margin-right: auto;
    margin-left: auto;
    padding: 25px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.23);
}
.first-ltr {
    display: inline-block;
    margin-top: 23px;
    margin-right: 6px;
    float: left;
    font-size: 3.5em;
    font-weight: 400;
}
.callout {
    max-width: 350px;
    margin-right: 50px;
    padding-left: 20px;
    float: left;
    border-left-style: solid;
    border-left: 5px solid rgba(0,0,0,0.1);
}
.callout.full {
    max-width: 100%;
    border-left-style: none;
    margin: 0;
    padding: 0;
}
.blog-home-bottom {
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    margin-bottom: 30px;
}
.search {
    width: 80%;
    height: 44px;
    margin-bottom: 0px;
    border: 0px solid black;
    border-radius: 5px 0 0 5px;
    background-color: #e6e9ed;
    float: left;
}
.search-submit {
    width: 20% !important;
    height: 44px;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0 3px 3px 0;
    font-size: 17px;
    color: rgba(255,255,255,0.7);
}
.sidebar h3 {
    margin-top: 45px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    color: #141a1a;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    letter-spacing: 2px;
}

.popup_web_dialog_overlay
{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #000000;
    opacity: .35;
    filter: alpha(opacity=15);
    -moz-opacity: .15;
    z-index: 9997;
    display: none;
}
.popup_web_dialog
{
    width:40%;
    top: 15%;
    left: 30%;
    background-color: #272727;
    border-radius: 10px;
    color: #FFFFFF;
    display: none;
    font-size: 20px;
    height: auto;
    padding: 20px;
    opacity:0.98;
    position: fixed;
    z-index: 9999;
    text-align:center;
    overflow:hidden;

}
.popup_web_dialog p {
    color: #fff;
}

.popup_web_dialog .title,.popup_web_dialog .content {
    opacity:1;
}

.popup_web_dialog_title
{
    border-bottom: solid 2px #336699;
    background-color: #336699;
    padding: 4px;
    color: White;
    font-weight:bold;
}
.popup_web_dialog_title a
{
    color: White;
    text-decoration: none;
}
.popup_align_right
{
    text-align: right;
}

.sidebar {
    text-align: left;
}
.sidebar ul li {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #d4d4d4;
}
.sidebar ul li a {
    display: inline-block;
    margin-bottom: 3px;
    font-family: Montserrat, sans-serif;
    color: #2e2e2e;
    font-size: 15px;
    font-weight: 400;
}
.blog-content { -webkit-box-shadow: none; box-shadow: none }
.blog-content .container {
    max-width: 850px;
    text-align: left;
}
.tags { overflow: hidden }
.tags a, .categories a {
    display: inline-block;
    margin-right: 1px;
    margin-bottom: 1px;
    padding: 5px;
    border-radius: 4px;
    float: left;
}
.tags a:hover {opacity:0.8;}
.categories a {
    width: 98%;
    margin-right: 1%;
    margin-bottom: 1%;
    background-color: #e4e8ed;
    color: #1c2222;
    text-align: center;
}
.categories a:hover, .page-numbers li a:hover { background-color: #d0d7df }
.social { float: right }
ul.social li {
    display: inline-block;
    text-decoration: none;
}
ul.social li a {
    margin-left: 10px;
    color: white;
    font-size: 25px;
    font-weight: 400;
    line-height: 65px;
}
.page-numbers {
    float: left;
    display:inline;
    list-type:none;
}
.page-numbers li {
    display: inline-block;
    background-color: #eef1f5;
    text-align: center;
}
.page-numbers li a {
    font-family: Montserrat, sans-serif;
    color: #1f1f1f;
    font-size: 15px;
    line-height: 30px;
    min-width: 40px;
    display: block;
}

.page-numbers.current {
    font-family: Montserrat, sans-serif;
    color: #1f1f1f;
    font-size: 15px;
    line-height: 30px;
    min-width: 40px;
    display: block;
}
.author-contain p {
    color: #757575;
    line-height: 24px;
}
.big-link {
    display: inline-block;
    padding: 20px;
    border-radius: 7px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    font-family: Montserrat, sans-serif;
    color: #454e52;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 45px;
    border: 2px solid rgba(0,0,0,0.09);
}
.scroll-content {
    position: absolute;
    left: 50%;
    bottom: 20px;
    z-index: 9998;
}
.scroll-content a {
    color: #fff;
    font-size: 40px;
}
.author-contain h3 {
    margin-top: 0px;
    margin-bottom: 7px;
    font-size: 16px;
    color: #16181c;
}
.author-contain {
    display: block;
    width: 50%;
    margin-top: 70px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 70px;
    border-top: 1px solid #e3e3e3;
    text-align: center;
}
.blog-content h6 {
    margin-bottom: 30px;
    color: rgba(0, 0, 0, 0.2);
    font-size: 10px;
    letter-spacing: 7px;
    text-align: center;
}
.blog-content p {
    margin-bottom: 30px;
    font-size: 16px;
}
.sidebar h5 {
    font-family: Montserrat, sans-serif;
    color: #4a4a4a;
    font-size: 12px;
    font-weight: 300;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.date-contain {
    position: absolute;
    z-index: 9;
    padding: 5px 15px 10px;
    background-color: #fafafa;
}
.date-contain h3 {
    margin-top: 10px;
    font-family: Montserrat, sans-serif;
    font-size: 47px;
    color: #16181c;
}
.date-contain h5 {
    margin-bottom: 0px;
    padding-top: 5px;
    border-top: 1px solid #e8e8e8;
    font-family: Merriweather, serif;
    font-weight: 400;
    text-align: center;
    color: #16181c;
}

/*
* === PRICING SECTION AND TABLE ===
*/

section.pricing {
    z-index: 9996;
    height:100%;
    background-color:#fff;
    height:auto;

}
.overlay-pricing-image {
    background-repeat: no-repeat;
    background-color: #fff;

}

.pricing-table.small ul li a.ion {
    font-size:25px;
    color:#fff;
    position: absolute;
    top: 15px;
    right: 10px;
}

.pricing-table.small ul li a.ion.uni-face {
    right:40px;
}
.pricing-table {
    padding: 15px;
    border-radius: 7px;
    background-color: rgba(20, 26, 26, 0.8);
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: none;
    transform: none;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.pricing-table:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: none;
    transform: none;
}

.pricing-table.small:hover { -webkit-box-shadow: none; box-shadow: none }
.pricing-table h2 {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 10px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
}
.pricing-table h3 {
    margin-top: 0px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
    letter-spacing: 2px;
}
.pricing-table p {
    color: #b5b5b5;
    font-size: 15px;
    line-height: 21px;
}
.price {
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.price-amount {
    display: block;
    font-size: 69px;
    line-height: 65px;
    font-weight: 300;
}
.dollar {
    position: relative;
    bottom: 29px;
    font-size: 24px;
}
.pm { font-size: 22px }
.pricing-table ul {
    margin-top: 30px;
    margin-bottom: 30px;
}
.pricing-table .button {
    width: 100%;
    text-transform: none;
    font-size: 16px;
}
.pricing-table li {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 15px;
    letter-spacing: 1px;
    position:relative;
}

/*
* === CONTACT SECTIONS AND FORMS ===
*/

.btn-contact { width: 100% }
.section-icon.contact-icon {
    float: left;
    text-align: center;
    width: 25px;
    font-size: 21px;
    line-height: 31px;
}
.contact-callout h2 {
    display: inline-block;
    margin-top: 0px;
    margin-bottom: 70px;
    padding: 20px;
    border-radius: 7px;
    color: #f2f2f2;
    font-size: 27px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-width: 3px;
    border-style: solid;
}
.contact-callout { text-align: center }
#contact_form label {
    min-width: 23%;
    margin-bottom: 0px;
    padding: 10px 0px 10px 10px;
    float: left;
    font-size: 13px;
    text-align: left;
    letter-spacing: 2px;
    text-transform: uppercase;
}
#contact_form .button { line-height: 35px }
#contact_form input[type="text"], #contact_form input[type="email"] {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 18px 15px 18px 15px;
    color: #fff;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
}
#contact_form input[type="text"]:focus, #contact_form input[type="email"]:focus, #contact_form textarea:focus {
    outline: none;
    background-color: rgba(255,255,255,0.1);
}
::-webkit-input-placeholder { color: rgba(255,255,255,0.6) }
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.85) }
:-moz-placeholder { color: rgba(255,255,255,0.6) }
input:-moz-placeholder { color: rgba(255,255,255,0.6) }
input:focus:-moz-placeholder, textarea:focus:-moz-placeholder { color: rgba(255, 255, 255, 0.85) }
::-moz-placeholder { color: rgba(255,255,255,0.6) }
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder { color: rgba(255, 255, 255, 0.85) }
:-ms-input-placeholder { color: rgba(255,255,255,0.6) }
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder { color: rgba(255, 255, 255, 0.85) }

#contact_form textarea{
    height: 150px;
    margin-bottom: 35px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    width: 100%;
    padding: 18px 15px 18px 15px;
    color: #fff;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.select-style {
    border-radius: 3px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}
.select-style:after {
    font-family: "Ionicons";
    position: absolute;
    top: 0;
    content: "\f104";
    right: 28px;
    padding: 18px 0;
    font-size: 19px;
    color: rgba(255,255,255,0.6);
}
.select-style select {
    padding: 18px 15px 18px 15px;
    width: 100%;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
    color: rgba(255,255,255,0.6);
}
.select-style select:focus { outline: none }
.fl {
    width: 48%;
    margin-right: 2%;
    float: left;
}
.fl.fl-last {
    margin-right: 0%;
    margin-left: 2%;
}
.map {
    height: 200px;
    margin-top: 15px;
    margin-bottom: 30px;
}
.contact-desc {
    float: left;
    text-align: left;
}
.contact-desc li {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    width: 100%;
    position: relative;
}
.contact-desc li p {
    margin-top: -1px;
    color: white;
    font-size: 12px;
    line-height: 48px;
    text-align: left;
    position: absolute;
    padding-left: 40px;
}

/* — Quick contact form — */

.chat {
    position: fixed;
    right: 0px;
    bottom: 0px;
    z-index: 9999;
    width: 225px;
    border-top-left-radius: 5px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.74)), to(black));
    background-image: linear-gradient(rgba(0, 0, 0, 0.74), black);
    cursor: pointer;
    border-width: 0 0 3px;
    border-style: solid;
}
.chat:active { background: rgba(0,0,0,0.8) }
.chat p {
    text-align: center;
    margin-bottom: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #d1d1d1;
    font-size: 14px;
    line-height: 31px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.chat-x {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 60px;
    height: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
    background-color: transparent;
}
.chat-box {
    position: fixed;
    right: 0px;
    bottom: 0px;
    z-index: 9998;
    display: none;
    width: 425px;
    padding-bottom: 45px;
    padding-left: 0px;
    border-top-left-radius: 5px;
    background-color: #25272b;
    -webkit-box-shadow: rgba(0, 0, 0, 0.12) 0px 0px 6px 0px;
            box-shadow: rgba(0, 0, 0, 0.12) 0px 0px 6px 0px;
}
.chat-box h2 {
    margin-top: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 15px;
    font-size: 15px;
    line-height: 50px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-top-left-radius: 5px;
}
.chat-box p {
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 20px;
    color: #fff;
    font-size: 15px;
}
.chatbox-form {
    padding-right: 15px;
    padding-left: 15px;
}
.chatbox-form input[type="text"], .chatbox-form input[type="email"], .chatbox-form textarea {
    margin-bottom: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.06) !important;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.09);
    -webkit-box-shadow: rgba(0, 0, 0, 0.36) 0px 0px 2px 1px inset;
            box-shadow: rgba(0, 0, 0, 0.36) 0px 0px 2px 1px inset;
}
.chat-box-top {
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: #141517;
    border-radius: 5px 0;
}
.h4-chat {
    color: rgba(255,255,255,0.9);
    font-size: 20px;
    text-align: center;
    width: 100%;
    height: 100%;
    top: 30%;
    position: absolute;
    cursor: pointer;
}
.h4-chat:active { top: 30% }
.h4-chat:hover { opacity: 0.8 }

/*
* === SLIDERS AND TESTIMONIALS ===
*/
.heading_box {
    background-color: rgba(30,30,30,0.5);
    padding:10px;
    border-radius:10px;
    color:#fff;
}

.main-quote.testimonial {
    margin-top: 0;
    color: #e6e8e8;
    font-size: 23px;
    line-height: 44px;
    font-style: italic;
    font-weight: 400;
    font-family: Muli, sans-serif;
}
.client-name {
    display: block;
    padding-top: 25px;
    font-style: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.slider {
    height: auto;
    background-color: transparent;
}

/*
* === FOOTER SECTION ===
*/

section.section-footer {
    padding-bottom: 120px;
    background-color: #16181c;
    overflow: visible;
}
.to-top {
    position: absolute;
    left: 0px;
    top: -25px;
    right: 0px;
    width: 50px;
    height: 50px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 50%;
    text-align: center;
}
.to-top:active {
    position: absolute;
    top: -25px;
}
.to-top.to-top-inner {
    border: 1px solid rgba(255,255,255,0.5);
    background-color: transparent;
}
.to-top .center-icon {
    font-size: 28px;
    width: 100%;
}
.footer-bottom {
    position: absolute;
    bottom: 0px;
    width: 100%;
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    line-height: 65px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 20px;
}

.section-footer h5 {
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    text-transform: uppercase;
    line-height: 15px;
}
.section-footer .logo-text { margin-bottom: 35px }

/*
* === ETC ITEMS ===
*/
.rotate {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}


.banner .button {
    float: right;
    border-radius: 5px;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translate(0px, 50%);
    transform: translate(0px, 50%);
    margin-right: 150px;
    padding: 15px 55px 15px 55px;
}
.banner.button:hover, .button.small:hover, .search-submit:hover {
    opacity: 0.87;
    background-position: 0 100%;
}
.btn-smaller {
    padding: 10px 20px;
    -webkit-transform: none;
    transform: none;
    font-size: 13px;
}
.vert-center, .contact-desc li p {
    top: 50%;
    -webkit-transform: translate(0px, -50%);
    transform: translate(0px, -50%);
}
.banner {
    position: relative;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 100px;
    background: #ffffff;
}
.jump {
    position: relative;
    left: -50%;
    text-shadow: none;
}
.no-margin { margin: 0 !important }
.banner-text {
    font-size: 22px;
    line-height: 100px;
    color: #333;
    padding-left: 100px;
}
.icon-smaller.color {
    color: rgba(20, 26, 26, 0.69);
    font-size: 23px;
    line-height: 37px;
}
.line-edge {
    position: relative;
    bottom: -24px;
    display: block;
    width: 170px;
    height: 1px;
    margin-right: auto;
    margin-left: auto;
    background-color: rgba(255, 255, 255, 0.15);
}
.line-edge.line-edge-dark { background-color: rgba(0, 0, 0, 0.10) }

/*
* === ANIMATIONS ===
*/

html.l-mod-js *[data-animate="hidden1"] { opacity: 0 }
html.l-mod-js *[data-animate="hidden2"] {
    -webkit-transform: translate(0px, 71px);
    transform: translate(0px, 71px);
}
html.l-mod-js *[data-animate="hidden3"] {
    opacity: 0.28;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
}
html.l-mod-js *[data-animate="portfolio-button"] {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
}
html.l-mod-js.l-mod-no-ios *[data-animate="portfolio-row-load"] {
    opacity: 0;
    -webkit-transform: translate(-500px, 0px);
    transform: translate(-500px, 0px);
}
html.l-mod-js *[data-animate="hidden4"] {
    -webkit-transform: translate(0px, -71px);
    transform: translate(0px, -71px);
}
html.l-mod-js *[data-animate="hidden5"] {
    -webkit-transform: translate(0px, -71px);
    transform: translate(0px, -71px);
}
html.l-mod-js *[data-animate="drop-in-from-top-3"] {
    opacity: 0;
    -webkit-transform: translate(0px, -100px);
    transform: translate(0px, -100px);
}
html.l-mod-js *[data-animate="drop-in-from-top-4"] {
    opacity: 0;
    -webkit-transform: translate(0px, -100px);
    transform: translate(0px, -100px);
}
html.l-mod-js *[data-animate="drop-in-from-top-5"] {
    opacity: 0;
    -webkit-transform: translate(0px, -100px);
    transform: translate(0px, -100px);
}
html.l-mod-js.l-mod-no-ios *[data-animate="pop1"] {
    opacity: 0;
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
}
html.l-mod-js.l-mod-no-ios *[data-animate="pop2"] {
    opacity: 0;
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
}
html.l-mod-js.l-mod-no-ios *[data-animate="pop3"] {
    opacity: 0;
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
}
html.l-mod-js *[data-animate="new-interaction"] {
    opacity: 0;
    -webkit-transform: scale(0.14);
    transform: scale(0.14);
}
html.l-mod-js *[data-animate="new-interaction-2"] {
    display: none;
    -webkit-transform: translate(0px, -100px);
    transform: translate(0px, -100px);
}
html.l-mod-js *[data-animate="chat-box"] {
    display: none;
    -webkit-transform: translate(0px, 1000px);
    transform: translate(0px, 1000px);
}
html.l-mod-js *[data-animate="new-interaction-6"] {
    -webkit-transform: translate(250px, 0px);
    transform: translate(250px, 0px);
}
html.l-mod-js.l-mod-no-ios *[data-animate="slide-up-scroll"] {
    opacity: 0;
    -webkit-transform: translate(0px, 300px) scale(0.88);
    transform: translate(0px, 300px) scale(0.88);
}
html.l-mod-js.l-mod-no-ios *[data-animate="left-in-scroll"] {
    opacity: 0;
    -webkit-transform: translate(-100%, 0px);
    transform: translate(-100%, 0px);
}
html.l-mod-js.l-mod-no-ios *[data-animate="right-in-scroll"] {
    opacity: 0;
    -webkit-transform: translate(100%, 0px);
    transform: translate(100%, 0px);
}
html.l-mod-js *[data-animate="new-interaction-11"] {
    -webkit-transform: translate(-100%, 0px);
    transform: translate(-100%, 0px);
}
html.l-mod-js.l-mod-no-ios *[data-animate="slide-pop-1"] {
    opacity: 0;
    -webkit-transform: scale(0.9) translate(-300px, 0px);
    transform: scale(0.9) translate(-300px, 0px);
}
html.l-mod-js.l-mod-no-ios *[data-animate="slide-pop-2"] {
    opacity: 0;
    -webkit-transform: translate(-300px, 0px);
    transform: translate(-300px, 0px);
}
html.l-mod-js *[data-animate="display-none"] { display: none }
html.l-mod-js *[data-animate="hidden-5"] {
    -webkit-transform: translate(0px, 100%);
    transform: translate(0px, 100%);
}
html.l-mod-js.l-mod-no-ios *[data-animate="slide-pop-3"] {
    opacity: 0;
    -webkit-transform: scale(0.9) translate(-300px, 0px);
    transform: scale(0.9) translate(-300px, 0px);
}

.timesheet_button_holder {
    padding-top:5px;
}
.timesheet_button {
    padding-left:10px;
}

/*
* === MEDIA QUERIES ===
*/

@media screen and (min-width: 1200px) {
    .container { max-width: 1170px }
    .portal_holder {
        margin-bottom:20px;
    }
}
@media (max-width: 991px) {
    h4 { text-align: center }
    .nav-link.drop {
        width:100%;
    }
    .nav-link.drop ul {
        opacity: 1;
        height: auto;
        width: 100%;
        overflow: hidden;
        position: relative;
        visibility: visible;
    }

    .portal_holder {
        margin-bottom:10px;
    }
    .banner .button {
        margin-right: 0;
        padding-right: 20px;
        padding-left: 20px;
        -webkit-transform: translate(0px, 50%);
        transform: translate(0px, 50%);
    }
    .popup_web_dialog
    {
        width:70%;
        height:auto;
        top: 15%;
        left: 15%;
    }
    .nav-link {
        font-size:14px;
    }

    .drop {
        width:70px;
    }
    .hero.blog { -webkit-box-shadow: none; box-shadow: none }
    .hero.blog.blog-post { -webkit-box-shadow: none; box-shadow: none }
    .main-message {
        font-size: 24px;
        line-height:30px;
        text-shadow: none;
    }
    section.pricing {
        height:auto;
    }
    .sub-header{
        font-size:20px;
    }
    .sub-header.hero-sub { font-size: 18px }
    .banner-text {
        font-size: 20px;
        text-align: left;
    }
    .section-icon.contact-icon {
        display: block;
        margin-right: auto;
        float: none;
        width: auto;
    }
    .p-gray.p-left { text-align: center }
    .map { margin-bottom: 50px }
    .contact-desc { margin-top: 20px }
    .contact-desc ul { text-align: center }
    .contact-desc li {
        position: relative;
        display: inline-block;
        width: 33.33%;
        float: left;
    }
    .contact-desc li p {
        display: inline-block;
        position: relative;
        padding: 0;
        margin-top: 24px;
        line-height: 0px;
    }
    .open-close { -webkit-box-shadow: none; box-shadow: none }
    .hide-ph { line-height: 20px }
    #portfolio .button { margin: 25px 0 0; max-width: 75% }
}
@media (max-width: 767px) {
    h1 { font-size: 23px }
    .button.btn-project {
        width: 50%;
        padding-top: 15px;
        padding-bottom: 15px;
        -webkit-transform: none;
        transform: none;
    }
    .button.button-3 {
        -webkit-transform: none;
        transform: none;
    }
    .nav { padding-left: 15px }
    .nav-link {
        height: auto;
        margin-left: 0px;
        padding-left: 20px;
    }
    .nav-link, .nav-link.drop, .nav-link.drop:hover ul li {
        line-height: 32px;
    }
    .nav-link.current {
        -webkit-box-shadow: none;
                box-shadow: none;
        background: rgba(255,255,255,0.05);
    }
    .nav-link.nav-register.current {
        color:#555
    }
    .slider-wrap { height: 600px }
    #slider-contain .hero-contain {
        top: -44px;
    }
    .hero { height: 600px }
    .sub-header.hero-sub {
        margin-bottom: 40px;
    }
    .hero.blog {
        height: 500px;
        -webkit-box-shadow: none;
                box-shadow: none;
    }
    .hero.blog.blog-post { -webkit-box-shadow: none; box-shadow: none }
    .hide-ph { display: none }
    .clients {
        padding-right: 15px;
        padding-left: 15px;
    }
    .main-quote {
        font-size: 16px;
        line-height: 27px;
    }
    .main-quote.testimonial {
        font-size: 19px;
        line-height: 29px;
    }
    .container {
        padding-right: 10px;
        padding-left: 10px;
    }
    .row, .container .row {
        margin-left: 0;
        margin-right: 0;
    }
    .container.hero-contain {
        top: 44%;
        padding-right: 10px;
        padding-left: 10px;
    }
    .banner {
        padding-right: 40px;
        padding-left: 40px;
    }
    .main-message {
        font-size: 32px;
        line-height: 50px;
        text-shadow: none;
    }
    .sub-header {
        font-size: 17px;
        line-height: 30px;
    }
    .portfolio-row { margin-bottom: 0px }
    .img-25 { width: 100% }
    .section-icon.contact-icon { float: none }
    .team-contain { margin-bottom: 20px }
    .pricing-table {
        margin-bottom: 20px;
        -webkit-box-shadow: none;
                box-shadow: none;
        -webkit-transform: none;
        transform: none;
    }
    .pricing-table.small {
        -webkit-box-shadow: none;
                box-shadow: none;
        -webkit-transform: none;
        transform: none;
    }
    .chat-box { -webkit-box-shadow: none; box-shadow: none }
    .contact-desc li p {
        margin-bottom: 15px;
        font-size: 11px;
        line-height: 21px;
        text-align: center;
    }
    .sidebar { margin-top: 30px }
    .page-numbers li {
        width: 50px;
        padding: 5px 10px;
        margin-bottom: 5px;
    }
    .author-contain p {
        font-size: 14px;
        line-height: 21px;
    }
    .pag { text-align: center }
    .page-numbers li a { min-width: 0 }
    .container-project .button.btn-project {
        width: 100%;
        margin: 25px 0 35px !important;
    }
    .owl-theme .owl-controls .owl-buttons div {
        top: 70% !important;
    }
}
@media (max-width: 569px) {
    .nav { height: 45px }
    .nav-min {
        height: 32px;
    }
    .logo-contain { margin-top: 0px;height: 44px; }
    .nav { padding-left: 0 }
    .nav-button { padding: 13px 13px 7px 13px }
}
@media (max-width: 479px) {
    h4 { text-align: center }
    .contact-desc li { width: 100% }
    .h1-contain h1 { line-height: 33px }
    .button.btn-project {
        width: auto;
        padding-top: 10px;
        padding-bottom: 10px;
        -webkit-transform: none;
        transform: none;
        font-size: 12px;
    }
    .timesheet_button {
        padding-left:0px;
        padding-top:10px;
        width:50%;
    }
    .timesheet_button_holder {
        padding-top:10px;
    }
    .popup_web_dialog
    {
        width:90%;
        height:auto;
        top: 15%;
        left: 5%;
    }
    .popup_web_dialog img {
        margin:5px;
    }
    .form_row {
        width:100%;
        margin-bottom:10px;
    }
    .form_row .form_left {
        width:100%;
        font-size:13px;
    }

    .form_row.has_checkbox .form_left {
        width:60%;
        font-size:13px;
    }
    .form_row.has_checkbox .form_right {
        width:40%;
        font-size:13px;
    }

    .form_right input.half-line,.form_right input.quarter-line,.form_right input.three-quarter-line,.form_right input.half-line:first-child,.form_right input.three-quarter-line:first-child,.form_right input.quarter:first-child {
        width:100%;
    }

    .form_row .form_left .button.unlock_address {
        display: inline-block;
        margin: 10px 0px;
        width: initial;
    }

    .form_row {
        padding: 0px 2px;
    }

    .hide-min {
        display:none;
    }

    .form_right {
        width:95%;
    }
    .button { width: 100% }
    .banner .button {
        width: 90%;
        float: none;
    }
    .callout.full p {
        font-size: 26px !important;
        line-height: 40px;
    }
    .chat { display: none !important }
    .slider-wrap { height: 575px }
    .hero { height: 575px }
    .hero.blog {
        height: 450px;
    }
    .hero.blog.blog-post {
        overflow-x: hidden;
        overflow-y: hidden;
        padding: 80px 20px 20px;
    }
    .hero.blog.blog-post.bg2 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .section.section-footer { padding-bottom: 180px }
    .container.hero-contain { top: 41% }
    #slider-contain .hero-contain { top: -62px; }
    .container { max-width: none;margin-bottom:40px; }
    .banner {
        padding-right: 20px;
        padding-left: 20px;
    }
    .main-message {
        font-size: 16px;
        line-height: 20px;
        text-shadow: none;
        text-transform:none;
        max-width:350px;
    }

    section.pricing {
        height:auto;
    }
    .line-small {
        margin:0px;
        height:0px;
    }
    .our_story_p {
        font-size:14px;
        max-width:100%;
    }
    .sub-header {
        font-size: 14px;
        line-height: 26px;
    }
    .sub-header.hero-sub {
        font-size: 16px;
    }
    .team-contain h4 { margin-bottom: 0px }
    .banner-text { display: none }
    .blogpost p {
        font-size: 15px;
        line-height: 28px;
    }
    .pricing-table {
        -webkit-box-shadow: none;
                box-shadow: none;
        -webkit-transform: none;
        transform: none;
    }
    .menu-icon { color: #a1a1a1 }
    .contact-callout h2 {
        display: block;
        margin: 0 auto 50px auto;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 18px;
        letter-spacing: 1px;
    }
    .fl {
        width: 100%;
        margin-right: 0%;
    }
    .fl.fl-last { margin-left: 0% }
    .contact-desc li { width: 100% }
    .section {
        padding-left: 10px;
        padding-right: 10px;
    }
    .footer-bottom {
        font-size: 12px;
        text-align: center;
    }
    .client-name { padding-top: 10px }
    .post-author.blog { margin-bottom: 20px }
    .blk-tr-wrap { max-width: 100% }
    .callout {
        margin-right: 0px;
        margin-bottom: 30px;
    }
    .callout.full { margin-bottom: 0px }
    .heading-span { text-shadow: none }
    .social { float: none }
    .page-numbers li { margin-bottom: 5px }
    .line-edge { width: 175px }
}

.facebook-login {
    position: relative;
    display: block;
    width: 100%;
    margin: 5px;
    padding: 1em 3em;
    font-size: 16px;
    line-height: 1em;
    border-radius: 0.5em;
    color: #fff;
    background-color: #3b5998;
    text-align: center;
}

.facebook-login:hover,
.facebook-login:focus {
    opacity: 0.9;
}

.facebook-login:before {
    position: absolute;
    display: inline-block;
    top: 1em;
    left: 1em;
    width: 1em;
    height: 1em;
    content: '';
    text-align: center;
    background: url('../images/icons/fb_small.png') no-repeat 50% 50%;
}

.login-or {
    padding: 20px 0;
    color: #666;
    text-align: center;
    font-size: 14px;
}

#external_group_list {
    list-style-type: none;
}

#external_group_list li {
    border: 1px solid #ddd;
    padding:5px;
    border-radius:5px;
    margin-bottom:5px;
    float:left;
    width:100%;
}

#add_group_member {
    cursor:pointer;
    transition: all 200ms linear;
}

#external_group_list li .col.col-4 {
    padding-right:5px;
}

#external_group_list li.editing_staff {
    background-color:#ddd;
    border-width: 2px;
}

#add_group_member:hover {
    background-color:#eee;
}

#external_group_list .add_member_button, #external_group_list .cancel_member_button {
    display: inline-block;
    text-align: center;
    padding: 7px 35px 7px 35px;
    border: 0;
    border-radius: 3px;
    margin-top: 5px;
    float: right;
    border: 1px solid #ddd;
    -webkit-box-shadow: rgba(255, 255, 255, 0.27) 0px 1px 0px 0px inset, rgba(0, 0, 0, 0.2) 0px 0px 6px 0px;
    box-shadow: rgba(255, 255, 255, 0.27) 0px 1px 0px 0px inset, rgba(0, 0, 0, 0.2) 0px 0px 6px 0px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0.35)), to(rgba(0,0,0,0.2)));
    background-image: linear-gradient(rgba(255,255,255,0.35), rgba(0,0,0,0.2));
    background-size: auto 150%;
    background-position: 0 100%;
    font-weight: 400;
    cursor:pointer;
}

#external_group_list .cancel_member_button {
    margin-right:10px;
}

.added_staff .edit-staff,.added_staff .remove-staff {
    float:right;
    padding: 0px 5px;
    cursor:pointer;
}

.add_staff span {
    margin:5px;
}

.add_staff .remove-staff:hover {
    color:#dd0000;
    transform: scale(1.2);
}

.row.footer_row1, .row.footer_row2, .row.footer_row3 {
    padding:20px;
}
