/*--------------------------------------------------------------
    TABLE OF CONTENTS:
----------------------------------------------------------------

    1.0 - Google Fonts
    2.0 - Font Awesome 4.5.0
    3.0 - Bootstrap Grid System
    4.0 - Reset
    5.0 - Helper Classes
    6.0 - Headings
    7.0 - Main Wrapper
    8.0 - Main Header
    9.0 - Main Navigation
        9.1 - Mobile Navigation
    10.0 - Section
        10.1 - Section title
    11.0 - Contacts Bar
    12.0 - Phone Bar
    14.0 - Call to Action
    16.0 - Warning Sign
    17.0 - Sidebar
    18.0 - Pagination
    19.0 - Social Networks
    20.0 - Form
        20.1 - Custom Checkbox
        20.2 - Custom Dropdown
        20.3 - Form Message
    21.0 - Footer
    24.0 - Elements
        24.1 - Divider
        24.2 - Caption
        24.3 - Toggle
        24.4 - Button
        24.5 - Icon List
    26.0 - Backgrounds
    27.0 - Dark styles
    29.0 - Media Queries

--------------------------------------------------------------*/


/*--------------------------------------------------------------
    1.0 - Google Fonts
--------------------------------------------------------------*/

/* Roboto Condensed */
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:300italic,400italic,700italic,700,300,400);

/* Open Sans */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,700,300,600,800,400);

/*--------------------------------------------------------------
    2.0 - Font Awesome 4.5.0
--------------------------------------------------------------*/

@import url('font-awesome.min.css');

/*--------------------------------------------------------------
    3.0 - Boostrap Grid System
--------------------------------------------------------------*/

@import url('bootstrap.min.css');

/*--------------------------------------------------------------
    4.0 - Reset
--------------------------------------------------------------*/
    
@font-face {
    font-family: 'Impact';
    src: url('../fonts/impact/impact.eot?#iefix') format('embedded-opentype'), 
         url('../fonts/impact/impact.woff') format('woff'), 
         url('../fonts/impact/impact.ttf')  format('truetype'),
         url('../fonts/impact/impact.svg#svgFontName') format('svg');
    }

@font-face {
    font-family: 'Impact2';
    src: url('../fonts/impact/impact2.eot?#iefix') format('embedded-opentype'), 
         url('../fonts/impact/impact2.woff') format('woff'), 
         url('../fonts/impact/impact2.ttf')  format('truetype'),
         url('../fonts/impact/impact2.svg#svgFontName') format('svg');
    }
    
@font-face {
    font-family: 'MAYHEM-Regular';
    src: url('../fonts/mayhem/MAYHEM-Regular.eot?#iefix') format('embedded-opentype'), 
         url('../fonts/mayhem/MAYHEM-Regular.woff') format('woff'), 
         url('../fonts/mayhem/MAYHEM-Regular.ttf')  format('truetype'),
         url('../fonts/mayhem/MAYHEM-Regular.svg#svgFontName') format('svg'),
		 url('../fonts/mayhem/MAYHEM-Regular.otf')  format('truetype');
    }

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
video {
    display: inline-block;
}

html,
button,
input,
select,
textarea {
    color: #404040;
    background: #fff;
}

html,
body {
    height: 100%
}

html {
    background-color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar{width:10px}html ::-webkit-scrollbar-track{width:10px;background-color:#222;}html ::-webkit-scrollbar-thumb{width:10px;background-color:#555}

body {
    font-size: 14px;
    line-height: 1.5;
}

body.open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

textarea {
    resize: vertical;
}

b,
strong {
    color: #161616;
    font-weight: bold;
}

em {
    font-style: italic;
}

p {
    margin: 0 0 20px 0;
}

pre,
dl,
ol,
ul {
    margin: 20px 0;
}

dd {
    margin-left: 40px;
}

ol,
ul {
    padding-left: 40px;
}

q,
blockquote {
    quotes: none;
    margin: 20px 40px 20px 20px;
    padding-left: 20px;
    color: #161616;
    font-size: 16px;
    border-left: 5px solid #BDC3C7;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

code,
kbd,
pre,
samp {
    font-family: monospace, serif;
}

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

small {
    font-size: 80%;
}

a {
    color: #161616;
    text-decoration: none;
    -webkit-transition: background 0.2s, color 0.2s, border-color 0.2s, padding 0.4s;
    -moz-transition: background 0.2s, color 0.2s, border-color 0.2s, padding 0.4s;
    -ms-transition: background 0.2s, color 0.2s, border-color 0.2s, padding 0.4s;
    -o-transition: background 0.2s, color 0.2s, border-color 0.2s, padding 0.4s;
    transition: background 0.2s, color 0.2s, border-color 0.2s, padding 0.4s;
}

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

a,
a:focus,
a:active,
a:hover {
    outline: 0;
}

a i {
    margin-right: 10px;
    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    -ms-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
}

/*--------------------------------------------------------------
    5.0 - Helper Classes
--------------------------------------------------------------*/

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.align-left {
    display: inline-block;
    float: left;
    margin-right: 20px;
}

.align-right {
    display: inline-block;
    float: right;
    margin-left: 20px;
}

.align-center {
    clear: both;
    display: block;
    margin: 0 auto;
}

.rounded {
    border-radius: 50%;
}

.no-margin {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.no-padding {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.clear:before,
.clear:after {
    content: '';
    display: table;
}

.clear:after {
    clear: both;
}

.bold {
	font-weight: bold
}

.center {
	text-align: center;
}

/*--------------------------------------------------------------
    6.0 - Headings
--------------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 20px;
    color: #161616;
    font-family: 'Roboto Condensed', sans-serif;
    /*font-weight: bold;*/
}

h1 {
    font-size: 34px;
    line-height: 1.3;
}

h2 {
    font-size: 28px;
    line-height: 1.4;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span {
    font-weight: 300;
}

h1 i,
h2 i,
h3 i,
h4 i,
h5 i,
h6 i {
    margin-right: 20px;
    color: #BDC3C7;
    font-weight: normal;
}

.focus-title {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 20px 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.focus-title:first-child {
    margin-top: 0;
}

/*--------------------------------------------------------------
    7.0 - Main Wrapper
--------------------------------------------------------------*/

.wrapper {
    height: 100%;
}

/*--------------------------------------------------------------
    8.0 - Main Header
--------------------------------------------------------------*/

#master-header {
    position: relative
	background-repeat: no-repeat;
    text-align: center;
    z-index: 10;
	background: url('../images/th3.jpg') no-repeat center center fixed; 
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
}

#master-header * {
    color: #ffffff;
}

#master-header.full-screen {
    height: 100%
}

.top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    z-index: 10;
}

.sticky .top-header {
    background-color: #000000;
    border: 0;
    box-shadow: 0 3px 3px rgba(0,0,0,0.3);
    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    -o-transition: background 0.4s;
    transition: background 0.4s;
}

.top-header > .container  {
    position: relative;
    height: 120px;
    line-height: 120px;
    -webkit-transition: height 0.6s, line-height 0.6s;
    -moz-transition: height 0.6s, line-height 0.6s;
    -ms-transition: height 0.6s, line-height 0.6s;
    -o-transition: height 0.6s, line-height 0.6s;
    transition: height 0.6s, line-height 0.6s;
}

.sticky .top-header > .container  {
    height: 80px;
    line-height: 80px;
}

#brand {
    position: absolute;
    top: 55%;
    left: 0;
    padding: 40px;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

#logo {
    float: left;
    margin: 30px 0;
    height: 60px;
    line-height: 1;
    -webkit-transition: margin 0.6s, height 0.6s;
    -moz-transition: margin 0.6s, height 0.6s;
    -ms-transition: margin 0.6s, height 0.6s;
    -o-transition: margin 0.6s, height 0.6s;
    transition: margin 0.6s, height 0.6s;
}

.sticky #logo {
    margin: 15px 0;
    height: 50px;
}

.full-screen #logo,
.sticky .full-screen #logo {
    float: none;
    margin: 0;
    height: auto;
}

#logo * {
    height: 100%;
}

.full-screen #logo * {
    height: auto;
}

#brand .info {
    display: inline-block;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

#brand .info > * {
    display: inline-block;
    vertical-align: middle;
}

#brand .info span {
    margin: 0 20px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#page-title {
    margin-bottom: 0;
    padding: 220px 20px 100px 20px;
    font-size: 44px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-repeat: no-repeat;
    background-position: center 160px;
}

.header-meta {
    position: relative;
    top: -50px;
    padding: 50px 20px 0 20px;
    font-size: 20px;
}

.header-meta:before {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -50px;
    width: 100px;
    height: 1px;
    background-color: rgba(255,255,255,0.2);
    content: '';
}

#master-header .btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(50%);
    -moz-transform: translateX(-50%) translateY(50%);
    -ms-transform: translateX(-50%) translateY(50%);
    -o-transform: translateX(-50%) translateY(50%);
    transform: translateX(-50%) translateY(50%);
}

#media-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -101;
}

#video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}

/*--------------------------------------------------------------
    9.0 - Main Navigation
--------------------------------------------------------------*/

#nav-menu {
    float: right;
    text-transform: uppercase;
    -webkit-transition: padding 0.4s;
    -moz-transition: padding 0.4s;
    -ms-transition: padding 0.4s;
    -o-transition: padding 0.4s;
    transition: padding 0.4s;
    -webkit-transform: translateZ(0);
}

.full-screen #nav-menu {
    float: none;
}

#nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#nav-menu li {
    position: relative;
}

#nav-menu > ul > li {
    display: inline-block;
    margin-right: -4px;
}

#nav-menu ul a {
    position: relative;
    display: block;
    padding: 0 20px;
    color: #BDC3C7;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

#nav-menu li.selected > a,
#nav-menu ul a:hover {
    color: #ffffff;
}

#nav-menu > ul > li.selected > a:after,
#nav-menu ul a:hover:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -6px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 6px 6px;
    border-color: transparent;
    content: '';
    z-index: -1;
}

#nav-menu > ul > li.selected > a:after{
    border-bottom-color: #BDC3C7;
}

#nav-menu ul a:hover:after {
   border-bottom-color: #ffffff;
}

#nav-menu ul ul li {
    width: 250px;
}

#nav-menu ul ul a {
    padding: 15px 20px;
    color: #404040;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
}

#nav-menu ul ul a:before {
    margin-right: 10px;
    font-family: 'FontAwesome';
    content: '\f105';
    color: #404040;
}

#nav-menu > ul > li li.selected a,
#nav-menu ul ul a:hover {
    background-color: #161616;
}

#nav-menu ul ul {
    position: absolute;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    -webkit-transition: opacity 0.2s, top 0.4s, visibility 0s linear 0.4s;
    -moz-transition: opacity 0.2s, top 0.4s, visibility 0s linear 0.4s;
    -ms-transition: opacity 0.2s, top 0.4s, visibility 0s linear 0.4s;
    -o-transition: opacity 0.2s, top 0.4s, visibility 0s linear 0.4s;
    transition: opacity 0.2s, top 0.4s, visibility 0s linear 0.4s;
}

#nav-menu li:hover > ul {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.4s, top 0.4s;
    -moz-transition: opacity 0.4s, top 0.4s;
    -ms-transition: opacity 0.4s, top 0.4s;
    -o-transition: opacity 0.4s, top 0.4s;
    transition: opacity 0.4s, top 0.4s;
}

#nav-menu > ul > li > ul {
    top: 75%;
    left: 0;
    background-color: #ffffff;
}

#nav-menu > ul > li:last-child > ul {
    left: auto;
    right: 0;
}

#nav-menu > ul > li:hover > ul {
    top: 90%;
}

#nav-menu ul ul ul {
    top: -20px;
    left: 100%;
    background-color: #BDC3C7;
}

#nav-menu > ul > li:last-child ul ul,
#nav-menu > ul > li:nth-last-child(2) ul ul {
    left: -100%;
}

#nav-menu ul ul li:hover ul {
    top: 0;
}

#nav-menu.mobile ul ul {
    display: none;
}

#nav-menu i {
    color: inherit;
}

#nav-menu > ul > li > a i {
    background-color: #161616;
}

/*--------------------------------------------------------------
    9.1 - Mobile Navigation
--------------------------------------------------------------*/

 #nav-toggle {
    display: none;
    position: fixed;
    top: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    background-color: #111111;
    z-index: 1;
    border-radius: 2px;
    cursor: pointer;
    -webkit-transition: top 0.6s, right 0.4s;
    -moz-transition: top 0.6s, right 0.4s;
    -ms-transition: top 0.6s, right 0.4s;
    -o-transition: top 0.6s, right 0.4s;
    transition: top 0.6s, right 0.4s;
}

.sticky #nav-toggle {
    top: 20px;
}

.open #nav-toggle {
    right: 400px;
    background-color: #161616;
    border-radius: 2px 0 0 2px;
}

#nav-toggle:hover {
    background-color: #161616;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
    display: block;
    position: absolute;
    height: 2px;
    width: 20px;
    background-color: #ffffff;
    content: '';
    cursor: pointer;
}

#nav-toggle span {
    top: 19px;
    left: 10px;
}

#nav-toggle span:before {
    top: -6px;
}

#nav-toggle span:after {
    bottom: -6px;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.open #nav-toggle span {
    background-color: transparent;
}

.open #nav-toggle span:before,
.open #nav-toggle span:after {
    top: 0;
}

.open #nav-toggle span:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.open #nav-toggle span:after {
    top: 5px;
    -webkit-transform: translateY(-5px) rotate(-45deg);
    -moz-transform: translateY(-5px) rotate(-45deg);
    -ms-transform: translateY(-5px) rotate(-45deg);
    -o-transform: translateY(-5px) rotate(-45deg);
    transform: translateY(-5px) rotate(-45deg);
}

/*--------------------------------------------------------------
    10.0 - Section
--------------------------------------------------------------*/

.section {
    padding: 80px 0;
}

/*--------------------------------------------------------------
    10.1 - Section Title
--------------------------------------------------------------*/

.section-title {
    margin: -80px 0 80px 0;
    padding: 80px 0;
    text-align: center;
    text-transform: uppercase;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.section-title h2 {
    margin-bottom: 0;
    padding: 0 20px;
    font-size: 34px;
    letter-spacing: 2px;
    font-weight: 900;
}

.section-title.transparent {
    background-color: transparent !important;
}

/*--------------------------------------------------------------
    11.0 - Contacts Bar
--------------------------------------------------------------*/

#contacts-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    color: #ffffff;
    background-color: #161616;
    overflow: hidden;
    box-shadow: 0 -3px 3px rgba(0,0,0,0.3);
    z-index: 11;
}

.open #contacts-bar {
    z-index: 9;
}

#contacts-bar .other,
#contacts-bar .address {
    padding: 20px 40px;
}

#contacts-bar .address {
    text-align: right;
    background-color: #000000;
}

#contacts-bar .contact {
    margin-left: 20px;
}

#contacts-bar .contact:first-child {
    margin-left: 0;
}

#contacts-bar strong {
    color: #ffffff;
}

#contacts-bar i {
    margin-right: 10px;
}

/*--------------------------------------------------------------
    12.0 - Phone Bar
--------------------------------------------------------------*/

.phone-bar {
    position: relative;
    display: block;
    padding: 60px 20px;
    color: #161616;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 30px;
    letter-spacing: -1px;
    border-top: 1px solid #eeeeee;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    overflow: hidden;
    z-index: 0;
}

.phone-bar.feed-bg {
    background-color: #000000;
    border: 0;
}

.phone-bar.feed-bg:hover,
.phone-bar.feed-bg,
.phone-bar.feed-bg * {
    color: #ffffff;
	text-decoration: none;
}

.phone-bar .pics-container {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    z-index: -100;
}

.phone-bar img {
    position: relative;
    display: block;
    float: left;
    max-height: 100%;
    z-index: -101;
    opacity: 0.4;
    transition: opacity 0.2s;
    -webkit-transform: translateZ(0);
}

.phone-bar img:hover {
    opacity: 0.55;
}

.phone-bar strong {
    font-family: 'Open Sans', 'sans-serif';
    letter-spacing: -1px;
    text-transform: none;
    font-weight: 800;
    color: #80c41c !important;
}

.phone-bar:not(.feed-bg):after,
.phone-bar strong:before {
    margin: 0 13px 0 10px;
    font-family: FontAwesome;
    content: '\f095';
}

.phone-bar:not(.feed-bg):after {
    position: absolute;
    bottom: -90px;
    left: 25%;
    color: #80c41c;
    font-size: 140px;
    z-index: -1;
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -o-transform: rotate(-15deg);
    transform: rotate(-15deg);
    -webkit-transition: color 0.2s, bottom 0.4s;
    -moz-transition: color 0.2s, bottom 0.4s;
    -ms-transition: color 0.2s, bottom 0.4s;
    -o-transition: color 0.2s, bottom 0.4s;
    transition: color 0.2s, bottom 0.4s;
}

.phone-bar:not(.feed-bg):hover {
    color: #161616;
}

.phone-bar:not(.feed-bg):hover:after {
    bottom: -60px;
}

/*--------------------------------------------------------------
    14.0 - Call to Action
--------------------------------------------------------------*/

.cta {
    position: relative;
    padding: 80px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 72px;
    line-height: 1.2;
    font-weight: normal;
}

.cta-info {
    font-size: 20px;
}

.cta .btn {
    margin-top: 40px;
}

.swarm {
	background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/swarm.jpg');
	background-size:cover;
}

.mayhem {
	font-family: 'MAYHEM-Regular';
}

.xl-font {
	font-size: 96px;
}

.l-font {
	font-size: 72px;
}

.m-font {
	font-size: 48px;
}

/*--------------------------------------------------------------
    16.0 - Warning Sign
--------------------------------------------------------------*/

#psa {
	font-family: 'Impact2' !important;
	background: #fff;
	text-align: center;
	color: #231f20;
}
#psa h1 {
	font-family: 'Impact';
	color: #fc1921;
	font-size: 112px;
	float: none;
	line-height: 112px;
	padding: 0;
	margin-bottom: 0px;
	font-weight: normal;
}
#psa h2 {
	font-family: 'Impact2';
	color: #231f20;
	font-size: 60px;
	font-weight: normal;
	line-height: 60px;
	padding: 0;
	margin-bottom: 0px;
}

#psa p {
	margin: 0 0 10px;
	line-height: 18px !important;
}

#psa span {
	color: #231f20;	
}

#psa h5 {
	font-family: 'Impact2' !important;
	color: #fc1921;
	font-size: 32px;
	font-weight: normal;
	line-height: 32px;
	margin-bottom: 10px;
}

.divider2 {
	height:8px;
	background:#231f20;
	margin-left: 20px;
	margin-right: 20px;	
}

.bullets {
	padding: 10px;
	text-align: left;
}

.bullets p {
	font: 12px 'Roboto', Arial, Helvetica, sans-serif !important;
}

.bullets h6 {
	font-family: 'Impact2';
	color: #231f20 !important;
	font-weight: normal;
	margin-bottom: 10px;
}

.error-font {
	font-size: 160px;
}

.img-box {
	border: 2px solid #000;
	border-radius: 10px;
	padding: 10px 10px 0px 10px;
	overflow: auto
}

.psa-img {
	float: right;
}

/*--------------------------------------------------------------
    17.0 - Sidebar
--------------------------------------------------------------*/

.widget {
    margin-bottom: 40px;
}

.widget h3 {
    font-size: 20px;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 20px;
}

.widget li:before {
    position: absolute;
    top: 0;
    left: 0;
    margin-right: 10px;
    width: 20px;
    font-family: 'FontAwesome';
    content: '\f105';
}

ul.tags {
    padding: 0;
    margin: 0;
}

ul.tags li {
    display: inline-block;
    margin: 0 6px 10px 0;
    padding: 0;
}

ul.tags li:before {
    display: none;
}

ul.tags li a {
    display: block;
    padding: 5px 10px;
    background-color: #BDC3C7;
    font-size: 13px;
    border-radius: 2px;
}

ul.tags li a:before {
    margin-right: 5px;
    font-family: 'FontAwesome';
    content: '\f02b';
}

ul.tags li a:hover {
    color: #ffffff;
    background-color: #161616;
}

/*--------------------------------------------------------------
    18.0 - Pagination
--------------------------------------------------------------*/

.pagination {
    float: right;
    list-style: none;
    margin: 40px 0 0;
    padding: 0;
    overflow: hidden;
}

.pagination li {
    float: left;
    margin-right: 5px;
}

.pagination li a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #BDC3C7;
    text-align: center;
    border-radius: 2px;
}
.pagination li a.this,
.pagination li a:hover {
    color: #ffffff;
    background-color: #161616;
}

.pagination a i {
    margin-right: 0;
}

/*--------------------------------------------------------------
    19.0 - Social Networks
--------------------------------------------------------------*/

ul.social-links {
    margin: 0 0 40px 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

ul.social-links li {
    float: left;
    margin: 0 10px 10px 0;
    padding: 0;
}

ul.social-links li:last-child {
    margin-right: 0;
}

ul.social-links li:before {
    display: none;
}

.artist .social-links {
    margin-top: 40px;
}

.artist .social-links li {
    display: inline-block;
    float: none;
    margin: 0 1px 0 5px;
}

.artist.full .social-links li:first-child {
    margin-left: 0;
}

footer ul.social-links {
    margin: 10px 0 0;
}

ul.social-links a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #ffffff;
    font-size: 18px;
    background-color: #BDC3C7;
    text-align: center;
    border-radius: 2px;
}

ul.social-links a:hover {
    background-color: #161616;
}

ul.social-links a i {
    margin-right: 0;
}

/*--------------------------------------------------------------
    20.0 - Form
--------------------------------------------------------------*/

form label,
form .label {
    display: block;
    margin-bottom: 20px;
}

.contact-form label,
.contact-form .label {
	display: block;
    margin-bottom: 20px;
}

input,
textarea,
select {
    margin-top: 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #cccccc;
    outline: none;
    -webkit-transition: border-color 0.2s;
    -moz-transition: border-color 0.2s;
    -ms-transition: border-color 0.2s;
    -o-transition: border-color 0.2s;
    transition: border-color 0.2s;
}

input,
textarea,
select {
    padding: 10px;
    width: 100%;
}

input:focus,
textarea:focus {
    border-color: #161616;
}

input[type="checkbox"] {
    display: none;
}

textarea {
    margin-top: 20px;
    height: 200px;
}

input.submit {
    width: auto;
    line-height: 1.5;
    cursor: pointer;
    border-radius: 2px;
    -webkit-appearance: button;
}

/*--------------------------------------------------------------
    20.1 - Custom Checkbox
--------------------------------------------------------------*/

.checkbox-replacer {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    text-align: center;
    vertical-align: top;
    border: 1px solid #cccccc;
    cursor: pointer;
    color: #80c41c;
}

.checkbox-replacer:before {
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    color: transparent;
    font-family: 'FontAwesome';
    content: '\f00c';
}

.checkbox-replacer:hover:before {
    color: #BDC3C7;
}

input[type=checkbox]:checked + .checkbox-replacer:before {
    color: inherit;
}

/*--------------------------------------------------------------
    20.2 - Custom Dropdown
--------------------------------------------------------------*/

select {
    cursor: pointer;
}

select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #404040;
}

select option { 
  box-shadow: inset 20px 20px #fff;
} 

select option:not(.nohover):hover, select option:not(.nohover):checked {
  box-shadow: inset 20px 20px #80c41c;
  
}


/*--------------------------------------------------------------
    20.3 - Form Message
--------------------------------------------------------------*/

#required-message {
	float: left;
}

#incomplete-message {
	float: right;
	margin-left:20px;
}

/*--------------------------------------------------------------
    21.0 - Footer
--------------------------------------------------------------*/

footer {
    background-color: #121212 !important;
}

footer .row {
    display: table;
}

.footer-col {
    display: table-cell;
    float: none;
    padding: 80px 40px;
    vertical-align: top;
}

.footer-contacts,
.copyright {
    background-color: #000000;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.footer-contacts span {
    font-weight: 600;
}

.footer-contacts strong {
    display: block;
    font-size: 18px;
}

.copyright {
    padding: 20px;
    font-size: 12px;
    text-align: center;
}

/*--------------------------------------------------------------
    24.0 - Elements
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    24.1 - Divider
--------------------------------------------------------------*/

hr {
    display: block;
    margin: 20px 0;
    height: 1px;
    background-color: #eeeeee;
    border: 0;
    clear: both;
}

hr.md-divider {
    margin: 40px 0;
}

hr.lg-divider {
    margin: 80px 0;
}

/*--------------------------------------------------------------
    24.2 - Caption
--------------------------------------------------------------*/

.caption {
    position: relative;
    display: block;
    margin: 20px 0 40px 0;
    padding-top: 20px;
    color: #161616;
    text-align: center;
}

.caption:before {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -40px;
    height: 1px;
    width: 80px;
    background-color: #eeeeee;
    content: '';
}

/*--------------------------------------------------------------
    24.3 - Toggle
--------------------------------------------------------------*/

.toggle {
    margin-bottom: 20px
}

.content-toggle {
    display: none;
    margin: 20px 0 0 40px;
    padding-top: 20px;
    border-top: 1px solid #eeeeee;
}

.title-toggle {
    position: relative;
    display: block;
    padding-left: 40px;
    font-size: 16px;
    font-weight: 600;
}

.title-toggle:before {
    position: absolute;
    top: 4px;
    left: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    color: #ffffff;
    background-color: #fc1921;
    font-weight: bold;
    text-align: center;
    border-radius: 2px;
    content: '\002B';
}

.toggle.open .title-toggle:before {
    content: '\2212';
    background: #80c41c;
}

/*--------------------------------------------------------------
    24.4 - Button
--------------------------------------------------------------*/

.btn {
    display: inline-block;
    color: #ffffff;
    background-color: #80c41c;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

.btn.light,
.btn:hover,
#master-header .btn:hover,
#master-header .btn:hover i {
    color: #161616;
}

.btn.light,
.btn:hover,
#master-header .btn:hover {
    background-color: #C2FF54;
}

.btn.light:hover {
    background-color: #161616;
    color: #ffffff;
}

.btn.xsm {
    padding: 7px 15px;
    font-size: 12px;
}

.btn.sm {
    padding: 10px 20px;
}

.btn.md {
   padding: 20px 30px;
}

.btn.lg {
   padding: 30px 40px;
}

/*--------------------------------------------------------------
    24.5 - Icon List
--------------------------------------------------------------*/

.icon-list {
    padding-left: 20px;
    list-style: none;
}

.icon-list li {
    position: relative;
    margin: 10px 0;
    padding-left: 30px;
}

.icon-list i {
    position: absolute;
    top: 3px;
    left: 0;
    color: #161616;
}

.fa {
	color:#fc1921 !important;
}

.custom-service-icon {
	margin-right: 20px;
	vertical-align: -15%;
}

/*--------------------------------------------------------------
    26.0 - Backgrounds
--------------------------------------------------------------*/

.bg {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 0;
}

.bg.pattern {
   background-repeat: repeat;
}

.plx {
    background-attachment: fixed;
    background-size: cover;
}

.bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    /* default values */
    background-color: #000000;
    opacity: 0.8;
}

.outer_box {
	padding: 10px;
}

.service_box {
	padding: 20px;
	background: #2e2d2a;
	display: table;
	color: rgb(245, 245, 245);
}

/*--------------------------------------------------------------
    27.0 - Dark styles
--------------------------------------------------------------*/

.green {
	color: #80c41c !important;
}

a.green:hover, a.green:hover .fa {
	color: #C2FF54 !important;
}

.white {
	color: #fff !important;
}

a.white:hover, a.white:hover .fa {
	color: #161616 !important;
}

.red {
	color: #ef2929 !important;
}

.red-box {
	-webkit-box-shadow: inset 0px 0px 0px 2px rgba(239,41,41,1);
	-moz-box-shadow: inset 0px 0px 0px 2px rgba(239,41,41,1);
	box-shadow: inset 0px 0px 0px 2px rgba(239,41,41,1);
}

.dark {
    background-color: #202020;
    color: #ECECEC;
}

.dark strong,
.dark a,
.dark i,
.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6,
.dark .artist-role,
.dark.phone-bar:hover,
.dark.phone-bar strong:before,
.dark.phone-bar:after,
.dark .btn i,
.dark .btn.light:hover,
.dark .btn.light:hover i,
.dark .milestone-count,
.dark .work .name,
.dark .event dl.meta dd {
    color: #ffffff;
}

.dark h1 i,
.dark h2 i,
.dark h3 i,
.dark h4 i,
.dark h5 i,
.dark h6 i {
    color: #404040;
}

.dark a:hover ,
.dark .caption {
    color: #ECECEC;
}

.dark .btn:hover,
.dark .btn:hover i,
.dark .btn.light i,
.dark .event .post-title:before,

.dark .title-tab.selected-tab a,
.dark .title-tab.selected-tab a:hover,
.dark .title-tab.selected-tab i {
    color: #161616;
}

.dark .section-title,
.dark ul.social-links a,
.dark .pagination li a,
.dark .title-toggle:before,
.dark .title-tab a,
.dark ul.tags li a,
.dark .info-work  {
    background-color: #161616;
}

.dark ul.social-links a:hover,
.dark .pagination li a.this,
.dark .pagination li a:hover,
.dark ul.tags li a:hover {
    background-color: #000000;
}

.dark hr,
.dark .caption:before {
    background-color: rgba(255,255,255,0.2);
}

.dark .title-tab.selected-tab a,
.dark .title-tab.selected-tab a:hover {
    background-color: #BDC3C7;
}

.dark .section-title,
.dark .content-toggle {
    border-color: #161616;
}

.dark .focus-title,
.dark .post,
.dark .post-content,
.dark .author-box {
    border-color: rgba(255,255,255,0.2);
}

.dark p a,
.dark .widget a:hover {
    border-bottom: 1px dotted #BDC3C7;
}

.dark .info-work,
.dark.phone-bar,
.dark p a:hover,
.dark .widget ul.social-links a:hover,
.dark .widget ul.tags li a:hover {
    border: 0;
}

.dark .event dl.meta dt {
    margin-right: 10px;
    color: #BDC3C7;
}

.dark .post-title a:hover {
    border-bottom: 1px dotted #BDC3C7;
}

.dark .section-title.transparent {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.dark-bar {
	text-align: center;
	margin: 50px 0px 100px 0px !important;
	padding: 20px !important;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #eeeeee;
	color: #ececec;
	background: #202020;
}

/*--------------------------------------------------------------
    29.0 - Media Queries
--------------------------------------------------------------*/

@media only screen and (max-width : 992px) {

    #nav-toggle,
    #nav-menu > ul > li,
    #nav-menu li.parent.show > ul,
    footer .row,
    .footer-col  {
        display: block;
    }

    .open #nav-toggle {
        background-color: #000000;
    }

    #nav-menu {
        position: fixed;
        top: 0;
        right: -400px;
        left: auto;
        padding: 40px;
        height: 100%;
        width: 400px;
        background-color: #000000;
        float: none;
        line-height: 1.5;
        text-align: left;
        overflow: hidden;
        overflow-y: auto;
        visibility: hidden;
        -webkit-transform: translateZ(0);
        -webkit-transition: right 0.4s, visibility 0s linear 0.4s;
        -moz-transition: right 0.4s, visibility 0s linear 0.4s;
        -ms-transition: right 0.4s, visibility 0s linear 0.4s;
        -o-transition: right 0.4s, visibility 0s linear 0.4s;
        transition: right 0.4s, visibility 0s linear 0.4s;
    }

    .open #nav-menu {
        right: 0;
        visibility: visible;
        -webkit-transition: right 0.4s;
        -moz-transition: right 0.4s;
        -ms-transition: right 0.4s;
        -o-transition: right 0.4s;
        transition: right 0.4s;
    }

    #nav-menu ul ul li {
        margin-left: 20px;
    }

    #nav-menu ul ul {
        position: static;
        visibility: visible;
        opacity: 1;
        background-color: transparent !important;
        box-shadow: none;
    }

    #nav-menu ul ul li {
        width: auto;
    }

    #nav-menu li.parent {
        position: relative;
    }

    #nav-menu li.parent:after {
        position: absolute;
        top: 15px;
        right: 10px;
        color: #404040;
        font-family: 'FontAwesome';
        font-size: 9px;
        font-weight: normal;
        content: '\f078';
    }

    #nav-menu li.parent:hover:after,
    #nav-menu li.parent.show > a,
    #nav-menu li.parent.show:after {
        color: #BDC3C7;
    }

    #nav-menu > ul > li.selected > a:after,
    #nav-menu ul a:hover:after {
        display: none;
    }

    #nav-menu ul a,
    #nav-menu ul ul a {
        padding: 15px;
    }

    #nav-menu ul ul a {
        color: #BDC3C7;
    }

    #nav-menu > ul > li.selected > a {
        background-color: #161616;
     }

    #nav-menu ul a:hover,
    #nav-menu ul ul a:hover {
        background: none;
    }

    .secondary {
        margin-top: 80px;
    }

    #contacts-bar .other,
    #contacts-bar .address {
        text-align: center;
    }

    footer .container {
        width: auto;
    }

    .footer-col {
        float: left;
        vertical-align: baseline;
    }

    .footer-contacts {
        text-align: center;
    }

    footer ul.social-links li {
        display: inline-block;
        float: none;
        margin: 10px 1px 0 5px;
    }

    .contact-form:not(.popup) {
        margin-top: 40px;
    }

}

@media only screen and (max-width : 767px) {

    .full-screen .top-header {
        border: 0;
    }

    #contacts-bar {
        display: none !important;
    }

    #page-title {
        font-size: 34px;
    }

    .footer-col {
        float: none;
        padding: 40px;
    }

    .form-msg span {
        padding: 40px;
    }

    .popup {
        padding: 20px;
    }

    .popup h3.focus-title i {
        display: none;
    }

    .popup .head img {
        margin: 0 auto;
    }

    .form-msg.fail span {
        left: 0;
        width: 80%;
        margin: 0 10%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .mfp-inline-holder .mfp-close {
        position: absolute !important;
        right: 20px !important;
    }

}

@media only screen and (max-width : 480px) {

    #nav-menu {
        padding: 80px 40px;
        right: -100%;
        width: 100%;
    }

    .open #nav-toggle {
        top: 20px;
        right: 40px;
        background-color: #111111;
    }

    #brand .info{
        display: none;
    }

    #brand .info span {
        margin: 0;
    }

    #master-header .btn {
        left: 0;
        width: 80%;
        margin: 0 10%;
        -webkit-transform: translateY(50%);
        -moz-transform: translateY(50%);
        -ms-transform: translateY(50%);
        -o-transform: translateY(50%);
        transform: translateY(50%);
    }
}