/****************
-- Table Of Contents
1.0 Layout + style guide
	1.01 Fonts
	1.1 Buttons
	1.2 Alerts
	1.3 FW Video 
	1.4 Custom Classes
	1.5 Pagination
	1.6 Forms
	1.7 Flex Row Mods
    1.8 AFC Master Layout
3.0 Footer
2.0 Header
4.0 Column Layouts
5.0 Post Templates
6.0 Sidebars
7.0 Page Templates
8.0 Owl Carousels
9.0 Modals
10.0 Forms
****************/

/****************
1.0 Layout
****************/
html {
    min-height: 100%;
    padding: 0px;
    margin: 0px;
    font-size: 62.5%;
}

@media (max-width : 767px) {
html {
    font-size: 56%;
}
}
body {
    background: #fff;
    padding-top: 0px;
    font-family:'AvenirNextLTW01-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    color: #231f20;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
@media (max-width : 767px) {
	body {
		padding-top: 75px;
	}
}

a {
    color: #7acdee;
    text-decoration: none;
}
a, a:hover {
	text-decoration: none !important;
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
*:focus {
    outline: none !important;
}
h1, .h1 {
	text-transform: uppercase;
	font-size: 30px;
	letter-spacing: 8px;
	font-family:'AvenirNextLTW01-Regular';
	margin: 20px 0px;
}
h2, .h2 {
	text-transform: uppercase;
	font-size: 30px;
	letter-spacing: 6px;
	font-family:'Avenir Next LT W04 Bold';
	margin: 20px 0px;
}
h3, .h3 {
	text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 4px;
	font-family:'AvenirNextLTW01-Medium';
	margin: 20px 0px;
}
.h3-lg {
	font-size: 24px;
}
p + h1,
p + h2,
p + h3 {
	margin-top: 40px;
}
h4, .h4 {
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 3px;
	font-family:'Avenir Next LT W04 Bold';
	margin: 20px 0px;
	line-height: 1.4;
}
h5, .h5 {
	font-size: 20px;
	font-family:'AvenirNextLTW01-Regular';
	margin: 20px 0px;
	line-height: 1.5;
}
p {
	margin: 20px 0px;
}

section {
	text-align: center;
}
img {
	max-width: 100%;
	height: auto;
}
.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
/* fw column */
.fw-column {
    display: block;
    clear: both;
    width: 100%;
}
.fw-column:before, .fw-column:after {
    content: " ";
    display: table;
}
.fw-column:after {
    clear: both;
}
/****************
1.1 Buttons
****************/

/****************
1.2 ALERTS
****************/

/****************
1.3 FW Video 
****************/
.content-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    margin-bottom: 30px;
    height: 0;
}
.content-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/************
1.4 CUSTOM CLASSES
*************/


/****************
1.5 PAGINATION 
****************/
.tx-pagination {
    text-align: center;
    width: 100%;
    margin: 60px 0px 0px;
    background-color: #e5e5e5;
    position: relative;
}
.tx-pagination ol {
    margin: 0px;
}
.tx-pagination .pagination {
    justify-content: center;
}
.tx-pagination .pagination span, .tx-pagination .pagination a {
    color: #000;
    border-radius: 0px 0px !important;
    text-transform: uppercase;
    font-family: 'Avenir LT W01_95 Black1475556';
    letter-spacing: 1px;
    font-size: 12px;
    background-color: transparent;
    border: 0px;
    padding: 10px 14px;
}
.tx-pagination .pagination a:hover {
    color: #ff636f;
}
.tx-pagination .pagination .page-item {
    position: relative;
}
/* separating character */
.tx-pagination .pagination .page-item .page:before {
    position: absolute;
    content: '';
    right: 0;
    top: 50%;
    height: 14px;
    margin-top: -7px;
    border-right: 1px solid #ff636f;
}
/* remove separator for last number */
.tx-pagination .pagination .page-item:nth-last-child(2) .page:before {
    display: none !important;
}
/* pages text items */
.tx-pagination .pagination .page-item:first-child, .tx-pagination .pagination .page-item:last-child {
    position: absolute;
    top: 0;
}
.tx-pagination .pagination .page-item:first-child {
    left: 0;
}
.tx-pagination .pagination .page-item:last-child {
    right: 0;
}
.tx-pagination .pagination .page-item .page.current, .tx-pagination .pagination .page-item:first-child span {
    pointer-events: none;
}
.tx-pagination .pagination .page-item:first-child span, .tx-pagination .pagination .page-item:last-child a {
    background-color: #000;
    color: #fff;
    padding: 0px 20px;
    height: 35px;
    line-height: 35px;
    min-width: 90px;
    text-align: center;
}
.tx-pagination .pagination .page-item:last-child a {
    font-size: 16px;
}
.tx-pagination .pagination .page-item:last-child a:hover {
    color: #ff636f;
}
/****************
1.6 FORMS 
****************/


/****************
1.7 Flex Row Mods
****************/
.row.flex-vert {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

/************
1.8 ACF Master Layout
*************/
/***** ACF Master Layout **/
.fullpage {
    height: 100vh;
}
.section-hide {
    display: none;
}
.container.no-cont-gutter {
    padding:0px 0px;
}
.col-bg-image {
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.col-hide {
    display: none;
}
.row-height-auto {
    height: auto;
}
.row-height-33 {
    height: 33.334vh;
}
.row-height-66 {
    height: 66.667vh;
}
.row-height-100 {
    height: 100vh;
}
.align-center {
    display: block;
    margin: 0 auto;
    text-align: center;
}
.align-left {
    float: left;
}
.align-right {
    float: right;
}

/* ANIMATIONS */
.animate-up {
    transform: translateY(100px);
    opacity: 0;
}
.animate-stagger .col {
    opacity: 0;
    transform: translateY(30px);
}
.animate-up.in-view, 
.animate-stagger .col.in-view {
    transform: translateY(0px);
    opacity: 1;
}
.animate-delay-10 {
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -ms-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.animate-delay-15 {
    -webkit-transition-delay: 0.15s;
    -moz-transition-delay: 0.15s;
    -ms-transition-delay: 0.15s;
    -o-transition-delay: 0.15s;
    transition-delay: 0.15s;
}
.animate-delay-20 {
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.contrast-dark {
    color: white;
}

/* Video Backgrounds */
.videobg {
  position: relative;
  width: 100%; /* Set video container element width here */
  height: 100%; /* Set video container element height here */
  overflow: hidden;
  background: #111; /* bg color, if video is not high enough */
}

/* horizontally center the video */
.videobg-width {
  position: absolute;
  width: 100%; /* Change width value to cover more area*/
  height: 100%;
  left: -9999px;
  right: -9999px;
  margin: auto;
}

/* set video aspect ratio and vertically center */
.videobg-aspect {
  position: absolute;
  width: 100%;
  height: 0;
  top: -9999px;
  bottom: -9999px;
  margin: auto;
  padding-bottom: 56.25%; /* 16:9 ratio */
  overflow: hidden;
  
}

.videobg-make-height {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
}

.videobg-hide-controls {
  box-sizing: content-box;
  position: relative;
  height: 100%;
  width: 100%;
  /* Vimeo timeline and play button are ~55px high */
  padding: 55px 97.7777px; /* 16:9 ratio */
  top: -55px; 
  left: -97.7777px; /* 16:9 ratio */
}

.videobg iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 0 none;
}
.videotextoverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}
@media(max-width:767px){
    .master-layout div[class^="col-"] {
        padding-left:15px;
        padding-right:15px;
    }
    .master-layout .col-inner {
        padding-left:0px !important;
        padding-right:0px !important;
    }
}

/***** style guide dark **/
.contrast-dark p {
    color:#fff;
}
.contrast-dark a {
    color:#fff;
}
.contrast-dark a:hover,
.contrast-dark a:focus {
    color:#ff636f;
}
.contrast-dark h1 {
    color:#fff;
}
.contrast-dark h2 {
    color:#fff;
}
.contrast-dark h3 {
    color:#fff;
}
.contrast-dark h4 {
    color:#fff;
}
.contrast-dark h5 {
    color: #aaa;
}
.contrast-dark h6 {
    color: #aaa;
}

/****************
2.0 Header
****************/

/****************
3.0 Footer
****************/

/****************
4.0 Column Layouts
****************/
.page-template .column-layouts {
    min-height: 400px;
}
.main-content {
    min-height: 400px;
}
.column-layouts {
    overflow: hidden;
}
/* video mod */
.column-layout-row .content-video {
    margin: 0px 0px;
}
/** blue bar  */
.column-layout-row.bluebar-column {
    background-color: #009BDF;
    text-align: center;
}
.column-layout-row.bluebar-column h3 {
    color: #fff;
    font-size: 25px;
}
.column-layout-row.bluebar-column p {
    color: #fff;
    font-size: 18px;
}
/****************
5.0 Post Templates
/****************

/****************
6.0 Sidebars
/****************

/****************
7.0 Page Templates
/****************

/****************
8.0 Owl Carousels
****************/
/* owl nav */
.owl-nav .owl-prev {
    font-family: 'FontAwesome';
    color: #fff;
    position: absolute;
    top: 50%;
    margin-top: -20px;
    left: 20px;
    width: 30px;
    font-size: 40px;
    line-height: 1;
    text-align: left;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.owl-nav .owl-prev:hover {
    left: 10px;
    color: #ddd;
}
.owl-nav .owl-next {
    font-family: 'FontAwesome';
    color: #fff;
    position: absolute;
    top: 50%;
    margin-top: -20px;
    right: 20px;
    width: 30px;
    font-size: 40px;
    line-height: 1;
    text-align: right;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.owl-nav .owl-next:hover {
    right: 10px;
    color: #ddd;
}
.owl-carousel.flan-carousel .owl-dots.disabled, .owl-carousel.flan-carousel .owl-nav.disabled {
    display: block;
}
/** owl dots */
.owl-carousel .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    margin-top: 8px;
}
.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
 *display: inline;
}
.owl-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    border-radius: 30px;
}
.owl-carousel .owl-dots .owl-dot.active span, .owl-carousel .owl-dots .owl-dot:hover span {
    background: #869791;
}
/** 
* owl thumbs
*/
.owl-thumbs {
    margin-top: 8px;
}
.owl-thumbs .owl-thumb-item {
    width: 20%;
    float: left;
    padding: 0px;
    margin: 0px;
    border: 0px;
    position: relative;
    z-index: 0;
}
.owl-thumbs .owl-thumb-item:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 2;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.owl-thumbs .owl-thumb-item.active:before, .owl-thumbs .owl-thumb-item:hover:before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0);
    z-index: 2;
}
/*****************
9.0 Modals
*****************/


/****************
10.0 Forms 
****************/
.gform_wrapper {
    text-align: left;
}
.gform_body ul {
    padding: 0 !important;
}
.gform_wrapper {
    margin: 0 0 20px;
}
.gform_wrapper ul {
    list-style: none;
}
.gfield_radio input, .gfield_checkbox input {
    vertical-align: 0;
}
.gfield_radio label, .gfield_checkbox label {
    display: inline-block;
    margin-left: 8px;
}
.gform_description {
    margin-bottom: 15px;
    display: block;
}
.gform_wrapper .gfield_required {
    padding-left: 1px;
}


/**** gravity forms spinner***/
.gform_ajax_spinner {
  margin-left: 20px;        
  border: 4px solid rgba(255, 255, 255, 0.3); 
  border-left: 4px solid #000;
  animation: spinner 1.1s infinite linear;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/***** validation ****/
.gform_validation_error {
  margin:0px 0px;
}
.gform_validation_error .mc-form {
  padding:0px 0px;
}
.gform_validation_error div.validation_error {
  color: #777;
  text-align: left;
  border-color: #777;
  border-top: 0px;
}
.gform_validation_error .gfield {
  background-color: transparent !important;
  border: 0px !important;
}
.gform_validation_error li.gfield.gfield_error input {
  border: 0px !important;
  border-bottom: 1px solid #777 !important;
}
.gform_validation_error li.gfield.gfield_error .gfield_description.validation_message {
  color: #777;
}

/*.gfield_error label {
    color: #0e2f5b !important;
    opacity: 1;
}*/
/*
.ginput_left {
	width: 48%;
	margin-right: 2%;
	float: left;
}
.ginput_right {
	width: 50%;
	float: left;
}
.ginput_left label,  .ginput_right label {
	font-size: 0.8rem;
}
*/
.gfield {
    margin-bottom: 10px;
}
.gfield_label {
    margin: 0;
}
.ginput_container {
    margin-bottom: 7px;
}
select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
    width: 100%;
    min-height: 40px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 0;
    padding: 8px 12px;
}
textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .uneditable-input:focus {
    outline: none;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAFCAYAAAB8ZH1oAAABS2lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPgogPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIi8+CiA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgo8P3hwYWNrZXQgZW5kPSJyIj8+LUNEtwAAAEVJREFUCJl9yrERgCAURMEVLIASDKjD1KIcsl+XtkaijoH4opu5nfKyBXb/RU6lHpixjhBaTqXCOcCBBjf8wg9yHe/aYOs0ngmdLMUdWAAAAABJRU5ErkJggg==');
    background-repeat: no-repeat;
    background-position: 98% center;
}
.ginput_container_multiselect select {
    background-image: none;
}
.gform_hidden {
    display: none;
}
.gform_button {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #000;
    background-color: #000;
    color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
}
.gform_button:hover {
    background-color: #222;
    border-color: #222;
    color: #fff;
}
.ginput_complex, .clear-multi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}
.ginput_complex > span, .clear-multi > div, .clear-multi > div * {
    -ms-flex-preferred-size: 0;
    flex-basis: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.ginput_complex.ginput_container_name > span, .ginput_complex .ginput_left, .ginput_complex .ginput_right {
    max-width: 49%;
}
.ginput_full {
    width: 100%;
}
.gf_clear_complex {
    display: none;
}
.ginput_complex span label,
.clear-multi > div > label {
    font-size: 80%;
}
.clear-multi > div > i {
	font-style: normal;
}
.gfield_list {
    width: 100%;
}
.gfield_list_cell {
    width: 85%;
}
.gfield_list_icons {
    width: auto;
    text-align: center;
}
.clear-multi > div input {
    width: 80%;
}
.gfield_time_hour, .gfield_time_minute {
    flex-grow: 3 !important;
}
.gform_wrapper form, .gform_fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.gform_heading, .gform_body, .gform_footer, .gfield {
    -ms-flex-preferred-size: 0;
    flex-basis: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    /*max-width: 100%;*/
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.ui-datepicker {
    width: 216px;
    height: auto;
    margin: 5px auto 0;
    font: 9pt Arial, sans-serif;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
    -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
    box-shadow: 0 0 10px 0 rgba(0,0,0,.5)
}
.ui-datepicker a {
    text-decoration: none
}
.ui-datepicker table {
    width: 100%;
    border-collapse: collapse
}
.ui-datepicker-header {
    background-color: #666;
    color: #e0e0e0;
    font-weight: 700;
    -webkit-box-shadow: inset 0 1px 1px 0 rgba(250,250,250,.2);
    -moz-box-shadow: inset 0 1px 1px 0 rgba(250,250,250,.2);
    box-shadow: inset 0 1px 1px 0 rgba(250,250,250,.2);
    text-shadow: 1px -1px 0 #000;
    filter: dropshadow(color=#000, offx=1, offy=-1);
    line-height: 30px;
    min-height: 30px!important;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: #666
}
.ui-datepicker tbody tr, .ui-datepicker thead {
    border-bottom: 1px solid #bbb
}
.ui-datepicker-title {
    text-align: center
}
.ui-datepicker-title select {
    margin-top: 0;
    width: auto;
    /* background-image: none; */
    border: none;
    border-collapse: collapse;
    padding: 0px 15px;
    max-height: 40px;
    min-height: 30px;

}
.ui-datepicker-next, .ui-datepicker-prev {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    cursor: pointer;
    background-image: url(../images/datepicker/arrow.png);
    background-repeat: no-repeat;
    line-height: 600%;
    overflow: hidden
}
.ui-datepicker-prev {
    float: left;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAKCAYAAAB8OZQwAAAACXBIWXMAAAsTAAALEwEAmpwYAAAE9WlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0ZURhdGU9IjIwMTgtMDItMTJUMjA6MTk6MjArMTE6MDAiIHhtcDpNb2RpZnlEYXRlPSIyMDE4LTAyLTEyVDIwOjE5OjUzKzExOjAwIiB4bXA6TWV0YWRhdGFEYXRlPSIyMDE4LTAyLTEyVDIwOjE5OjUzKzExOjAwIiBkYzpmb3JtYXQ9ImltYWdlL3BuZyIgcGhvdG9zaG9wOkNvbG9yTW9kZT0iMyIgcGhvdG9zaG9wOklDQ1Byb2ZpbGU9InNSR0IgSUVDNjE5NjYtMi4xIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjVhNmZkMWNjLTQ0NzctNDM1Yi1iZjkzLTJlNDY4ZmJkZGIwNCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1YTZmZDFjYy00NDc3LTQzNWItYmY5My0yZTQ2OGZiZGRiMDQiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo1YTZmZDFjYy00NDc3LTQzNWItYmY5My0yZTQ2OGZiZGRiMDQiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDo1YTZmZDFjYy00NDc3LTQzNWItYmY5My0yZTQ2OGZiZGRiMDQiIHN0RXZ0OndoZW49IjIwMTgtMDItMTJUMjA6MTk6NTMrMTE6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5tj38NAAAAQ0lEQVQImV3KsRVAQBBF0WtWAUoQqEOqKDL60pponZ354X1/auuh7IkCN84ocEFU6JhgfKa1WLYXM/YRIYWOKYz4hw/SmgmfcuLLNgAAAABJRU5ErkJggg==');
    background-position: 50% 50%
}
.ui-datepicker-next {
    float: right;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAKCAYAAAB8OZQwAAAACXBIWXMAAAsTAAALEwEAmpwYAAAF0GlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0ZURhdGU9IjIwMTgtMDItMTJUMjA6MTk6MjArMTE6MDAiIHhtcDpNb2RpZnlEYXRlPSIyMDE4LTAyLTEyVDIwOjIwOjA5KzExOjAwIiB4bXA6TWV0YWRhdGFEYXRlPSIyMDE4LTAyLTEyVDIwOjIwOjA5KzExOjAwIiBkYzpmb3JtYXQ9ImltYWdlL3BuZyIgcGhvdG9zaG9wOkNvbG9yTW9kZT0iMyIgcGhvdG9zaG9wOklDQ1Byb2ZpbGU9InNSR0IgSUVDNjE5NjYtMi4xIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjQyYWFjZmMyLThlMWEtNDNlNC05MWZmLTliMDBkN2YyMzhiNiIgeG1wTU06RG9jdW1lbnRJRD0iYWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjVjOGU0Yjg3LWEzNTEtN2U0Mi05ZTdiLWU3NDM5NjM5NmNkZiIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjVhNmZkMWNjLTQ0NzctNDM1Yi1iZjkzLTJlNDY4ZmJkZGIwNCI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOjVhNmZkMWNjLTQ0NzctNDM1Yi1iZjkzLTJlNDY4ZmJkZGIwNCIgc3RFdnQ6d2hlbj0iMjAxOC0wMi0xMlQyMDoxOTo1MysxMTowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiBzdEV2dDpjaGFuZ2VkPSIvIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDo0MmFhY2ZjMi04ZTFhLTQzZTQtOTFmZi05YjAwZDdmMjM4YjYiIHN0RXZ0OndoZW49IjIwMTgtMDItMTJUMjA6MjA6MDkrMTE6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4V1tBZAAAASElEQVQImV2OsRHAIBDDlAf6jEDBLlkKKpgrrEYDHFiN72QXflz8KlA4cPamH/BAX9JmZqCqvArPTdblRmUDiqk4l1usn0HPD1nNCW4HwYY9AAAAAElFTkSuQmCC');
    background-position: 50% 50%
}
.ui-datepicker thead {
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y3ZjdmNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMWYxZjEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #f7f7f7 0, #f1f1f1 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f7f7f7), color-stop(100%, #f1f1f1));
    background: -webkit-linear-gradient(top, #f7f7f7 0, #f1f1f1 100%);
    background: -o-linear-gradient(top, #f7f7f7 0, #f1f1f1 100%);
    background: -ms-linear-gradient(top, #f7f7f7 0, #f1f1f1 100%);
    background: linear-gradient(to bottom, #f7f7f7 0, #f1f1f1 100%);
filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#f1f1f1', GradientType=0 )
}
.ui-datepicker th {
    text-transform: uppercase;
    text-align: center;
    font-size: 6pt;
    padding: 5px 0;
    color: #666;
    text-shadow: 1px 0 0 #fff;
    filter: dropshadow(color=#fff, offx=1, offy=0)
}
.ui-datepicker tbody td {
    padding: 0;
    border-top: 1px solid #bbb;
    border-right: 1px solid #bbb
}
.ui-datepicker tbody td:last-child {
    border-right: 0
}
.ui-datepicker tbody tr:last-child {
    border-bottom: 0
}
.ui-datepicker td a, .ui-datepicker td span {
    display: inline-block;
    font-weight: 700;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #666;
    text-shadow: 1px 1px 0 #fff;
    filter: dropshadow(color=#fff, offx=1, offy=1)
}
.ui-datepicker-calendar .ui-state-default {
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VkZWRlZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkZWRlZGUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #ededed 0, #dedede 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ededed), color-stop(100%, #dedede));
    background: -webkit-linear-gradient(top, #ededed 0, #dedede 100%);
    background: -o-linear-gradient(top, #ededed 0, #dedede 100%);
    background: -ms-linear-gradient(top, #ededed 0, #dedede 100%);
    background: linear-gradient(to bottom, #ededed 0, #dedede 100%);
filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#dedede', GradientType=0 );
    -webkit-box-shadow: inset 1px 1px 0 0 rgba(250,250,250,.5);
    -moz-box-shadow: inset 1px 1px 0 0 rgba(250,250,250,.5);
    box-shadow: inset 1px 1px 0 0 rgba(250,250,250,.5);
}
.ui-datepicker-calendar .ui-state-hover {
    background: #f7f7f7;
}
.ui-datepicker-calendar .ui-state-active {
    background: #FFF2AA;
    border: 1px solid #c19163;
    color: #666;
    -webkit-box-shadow: inset 0 0 10px 0 rgba(0,0,0,.1);
    -moz-box-shadow: inset 0 0 10px 0 rgba(0,0,0,.1);
    box-shadow: inset 0 0 10px 0 rgba(0,0,0,.1);
    text-shadow: 0 1px 0 #FFF;
    filter: dropshadow(color=#FFF, offx=0, offy=1);
    position: relative;
    margin: -1px
}
.ui-datepicker-unselectable .ui-state-default {
    background: #f4f4f4;
    color: #b4b3b3
}
.ui-datepicker-calendar td:first-child .ui-state-active {
    width: 29px;
    margin-left: 0
}
.ui-datepicker-calendar td:last-child .ui-state-active {
    width: 29px;
    margin-right: 0
}
.ui-datepicker-calendar tr:last-child .ui-state-active {
    height: 29px;
    margin-bottom: 0
}
td.ui-datepicker-unselectable.ui-state-disabled {
    background-color: #d7d7d7
}
table.ui-datepicker-calendar {
    margin: 0!important
}
body div#ui-datepicker-div[style] {
    z-index: 9999!important
}
.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-state-hover,
.ui-datepicker-calendar .ui-state-default:hover {
	-webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}

/**/


.section-dark {
	background: url('../images/bullerx-dark-bg.jpg') 50% 0 no-repeat #231f20;
	background-size: cover;
	color: #fff;
	padding: 60px 0px;
}
.section-green {
	background: url('../images/bullerx-green-bg.jpg') 50% 50% no-repeat #a0aa0a;
	background-size: cover;
	color: #000;
	padding: 60px 0px;
}
.section-blue {
	background: url('../images/bullerx-blue-bg.jpg') 50% 50% no-repeat #7acdee;
	background-size: cover;
	color: #000;
	padding: 60px 0px;
}
.section-light {
	background: url('../images/snow-white-bg.jpg') 50% 50% no-repeat #fff;
	background-size: cover;
	padding: 60px 0px;
}
.section-white {
	background-color: #fff;
	padding: 60px 0px;
}
.section-top {
	margin-top: 100px;
}
.section-title {
    padding-top: 130px;
}
.aligncenter {
	display: block;
	margin: 0 auto;
}
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.video-16-9 {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	margin-bottom: 30px;
	height: 0;
}
.video-16-9 iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.text-red {
	color: #da262e;
}
.text-white {
	color: #fff;
}
.text-green {
	color: #c7d400;
}
.text-blue {
	color: #7acdee;
}
.text-black {
	color: #000;
}
.btn {
    border-radius: 0px;
    padding: 8px 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
	font-size: 16px;
	font-family:'AvenirNextLTW01-Medium';
}
.btn-custom-red {
	background-color: #da262e;
    color: #fff;
}
.btn-custom-white {
	background-color: #fff;
    color: #da262e;
}
.btn-custom-clear {
	background-color: transparent;
    color: #231f20;
	border: 1px solid #231f20;
}
.section-dark .btn-custom-clear {
	background-color: transparent;
    color: #fff;
	border: 1px solid #fff;
}
.btn-white-o {
	border:1px solid #fff;
	color:#fff;
	width:200px;
	padding:10px 0px;
}
.btn-white-o:hover,
.btn-white-o:focus,
.btn-white-o:active,
.btn-white-o.active {
	border:1px solid #7acdee;
	color:#7acdee;
}

.col-1-3 {
	width: 33.33333333%;
	position: relative;
	float: left;
}
.block-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.col-img-1-3 {
	max-width: 180px;
	margin: auto;
}

.vert {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.vert * {
	margin-top: 0px;
}

.block-overlay.hover .btn {
	opacity: 0;
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.block-overlay.hover h2 {
	margin-top: 25px;
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.block-overlay.hover:hover {
	background-color: rgba(0,0,0,0.3);
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.block-overlay.hover:hover .btn {
	opacity: 1;
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.block-overlay.hover:hover h2 {
	margin-top: 0px;
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.box-pad-30 {
	padding: 30px 0px;
}

@media (max-width : 767px) {
	.col-1-3 {
		width: 100%;
	}
	.section-title {
		padding-top: inherit;
	}
}

.split-block {
	margin: 40px 0px;
}
.split-block:after {
	content: '';
	display: table;
	clear: both;
}
.sb-left {
	float: left;
	position: relative;
	width: 50%;
}
.sb-right {
	float: right;
	position: relative;
	width: 50%;
}
@media (max-width : 767px) {
	.sb-right,
	.sb-left {
		width: 100%;
	}
}

.pricing-block {}
.col-price {
	background-color: #fff;
	padding: 0px 10px 20px;
	position: relative;
}
.col-price h3 {
	background-color: #dadfe2;
    position: relative;
    padding: 30px 10px 100px;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 0; 
	font-size: 30px;
	font-family: serif;
    font-style: italic;
    font-weight: bold;
	text-transform: none;
	letter-spacing: 0;
}
.col-price ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.col-price li {
	padding: 4px 0px;
	margin: 4px 0px;
	border-bottom: 1px solid #b4b6b8;
}	
.price {
    width: 130px;
    height: 130px;
    background-color: #eef3f6;
    position: relative;
    top: -70px;
    margin: 0 auto -70px;
    border-radius: 70px;
    font-family: serif;
    font-style: italic;
    font-weight: bold;
    font-size: 30px;
}


@media (min-width : 768px) {
	.col-price-center {
		top: -30px;
		padding-bottom: 64px;
	}
	.col-price-center h3,
	.col-price-center .price {
		font-size: 34px;
	}
	.col-price-center ul,
	.col-price-center .btn {
		font-size: 18px;
	}
	.col-price-left {
		margin-left: 15px;
	}
	.col-price-right {
		margin-right: 15px;
	}
}

.vert-outer {
	display: table;
	height:100%;
	width:100%;
}
.vert-inner {
	display: table-cell;
	vertical-align:middle;
	height:100%;
	width:100%;
}

/******************
****  HEADER
****
******************/
header {
	position: fixed;
	top: 0px;
	width: 100%;
	z-index: 999;
}
#tps-header {
	background-color: #7acdee;
	height: 76px;
	padding: 25px 40px;
}
#tps-header h5 {
	opacity: 0;
	color: #000;
	font-family:'Avenir Next LT W04 Bold';
	font-size: 16px;
	letter-spacing: 1.2px;
	line-height: 26px;
	margin: 0px;
	position: absolute;
    top: 25px;
    left: 40px;
	right: 100px;
	white-space: nowrap;
	overflow: hidden;
	
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}
#tps-header img {
    position: absolute;
    top: 10px;
    left: 30px;
	opacity: 1;
	
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}
.home #tps-header img {
	opacity: 0;
}
.home #tps-header h5 {
	opacity: 1;
}
#tps-header.tps_logo img {
	opacity: 1;
	
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}
#tps-header.tps_logo h5 {
	opacity: 0;
	
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
} 
#tps-header button {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	border-left: 1px solid #696667;
	height: 76px;
	width: 100px;
	background: none;
	outline: none;
	z-index: 999;
}
#tps-header button.active {
	display: block;
}
.icon-bar {
    width: 26px;
    height: 3px;
    background-color: #000;
    display: block;
	margin: auto;
}
#tps_menu_open .icon-bar {
    margin-bottom: 4px;
}
#tps_menu_close .icon-bar:first-child {
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);   
}
#tps_menu_close .icon-bar:last-child {
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
	position: relative;
    top: -3px;
}

.tps_menu_container {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: #7acdee;
	border-top: 1px solid #696667;
}
.tps_menu_container.active {
	display: block;
}
.tps_menu_top {
	padding: 25px 40px;
	color: #fff;
}
.tps_menu_top ul {
	margin: 15px 0px;
	padding: 0;
	list-style: none;
	text-align: center;
}
.tps_menu_top ul li a {
	color: #000;
	font-size: 20px;
	font-family:'AvenirNextLTW01-Medium';
	letter-spacing: 4px;
	display: block;
	padding: 10px 0px;
}
.tps_menu_top ul li a:hover {
	color: #fff;
}
.tps_menu_bottom {
	padding: 25px 40px;
	background-color: #000;
	color: #fff;
}
.tps_menu_bottom_table {
	display: table;
	width: 100%;
}
.tps_menu_bottom_table_cell {
	display: table-cell;
	vertical-align: bottom;
	width: 50%;
}
.tps_menu_bottom ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.tps_menu_bottom ul li {
	clear: both;
	margin-bottom: 4px;
}
.tps_menu_bottom ul li i {
	height: 26px;
	vertical-align: middle;
	color: #fff;
	font-size: 20px;
	margin-right: 20px;
    float: left;
    clear: both;
    width: 15px;
}
.tps_menu_bottom ul li a {
	color: #fff;
}
.tps_menu_bottom_table_cell .gform_wrapper {
    margin-bottom: 8px;
}
.tps_menu_bottom_table_cell #gform_1 {
    display: block;
}
.tps_menu_bottom_table_cell #gform_1 .gfield {
    margin-bottom: 0px;
}
.tps_menu_bottom_table_cell #gform_1 .gform_body, #gform_2 .gform_footer {
    display: block;
}
.tps_menu_bottom_table_cell #gform_1 .gform_footer .gform_button {
	display: block;
	width: 100%;
	margin-left: 0px;
	background-color: #7acdee;
	color: #000;
	border: none;
}
.tps_menu_bottom_table_cell #gform_1 .gform_body input {
    border-color: #7acdee;
}
@media (max-width : 767px) {
	.tps_menu_bottom_table,
	.tps_menu_bottom_table_cell {
		display: block;
		width: 100%;
	}
	.tps_menu_bottom_table_cell .gform_wrapper {
		margin-top: 15px;
	}
	#tps-header h5 {
		opacity: 0 !important;
	}
	#tps-header img {
		opacity: 1 !important;
	}
	.tps_menu_top ul li a {
		font-size: 18px;
		letter-spacing: 3px;
		padding: 8px 0px;
	}
	header {
		position: absolute;
	}
	#tps-header img {
		left: 8px;
	}
}
@media (max-width : 350px) {
	.tps_menu_bottom {
		padding: 25px 20px;
	}
}

/* Home Blog section */
.home-blog.section-dark {
    padding: 40px 0px;
}
.home-blog .loop-single {
    margin: 30px 0px !important;
}



/******************
****  ASIDE : WEATHER
****
******************/
.home #weather {
	display: block;
}
#weather {
	position: fixed;
	right: 0;
	top: 200px;
	z-index: 999;
	display: none;
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#weather.inactive {
	right: -167px;
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.weather-container {
	position: relative;
}
.weather-widget {
    display: none;
    position: absolute;
    top: 6px;
    right: 150px;
    background-color: #fff;
    padding: 10px 15px;
    border: 1px solid #231f20;
}
/*#weather.inactive .weather-widget {
    display: none !important;
}*/
#weather button {
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
}
@media (max-width : 767px) {
	#weather {
		display: none;
	}
	.weather-widget {
		top: -1px;
		right: 40px;
	}
}



/******************
****  PAGE : LANDING
****
******************/
.page-template-page-landing header {
	height: 620px;
	background: url('../images/tps_landing_top.jpg') 50% 50% no-repeat;
}
.page-template-page-landing header .header-title {
	display: block;
	padding: 25px 40px;
	margin: 0px auto;
	width: 100%;
	max-width: 818px;
	background-color: #231f20;
	text-align: center;
}
.page-template-page-landing header .header-title h5 {
	color: #fff;
	font-family:'AvenirNextLTW01-Medium';
	font-size: 18px;
	letter-spacing: 3px;
}
.page-template-page-landing main {
	padding: 40px 15px;
	background-color: #da262e;
	color:#fff;
	text-align: center;
	font-size: 20px;
    letter-spacing: 20px;
}
.page-template-page-landing footer {
	padding: 60px 15px;
	background: url('../images/tps_landing_bottom.jpg') 50% 0% no-repeat #232122;
	background-size: cover;
	color:#fff;
}
.page-template-page-landing footer .footer-contact,
.page-template-page-landing footer .footer-subscribe {
	letter-spacing: 1px;
	padding: 20px 40px;
}
.page-template-page-landing footer .footer-contact i {
	margin-right: 20px;
	font-size: 24px;
}
.page-template-page-landing footer a {
	color: #fff;
}
.page-template-page-landing footer a:hover {
	color: #da262e;
}
.page-template-page-landing footer .footer-subscribe h6 {
	letter-spacing: 6px;
    font-size: 15px;
}
.page-template-page-landing footer .footer-powered p {
	margin: 40px 0px;
	text-align: center;
	font-size: 12px;
	letter-spacing: 2px;
}
.page-template-page-landing footer .footer-powered p img {
	margin: 20px 0px;
}
.page-template-page-landing footer .form-control {
    background-color: transparent;
    border-radius: 0px;
}
.page-template-page-landing footer .btn {
    border-radius: 0px;
	padding: 6px 20px;
	font-family:'AvenirNextLTW01-Medium';
}

#gform_1 label {
	display: none;
}
#gform_1 {
	position: relative;
    display: table;
    border-collapse: separate;
}
#gform_1 .gform_body,
#gform_1 .gform_footer {
	position: relative;
    display: table-cell;
    border-collapse: separate;
}
#gform_1 .gform_body {
	position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0;
}
#gform_1 .gform_body input {
	background-color: transparent;
	min-height: 32px;
	height: 34px;
    padding: 6px 12px;
	color: #fff;
	border: 1px solid #7acdee;
	border-radius: 0px !important;
}
#gform_1 .gform_footer {
	width: 1%;
    white-space: nowrap;
    vertical-align: middle;
	position: relative;
    font-size: 0;
}
#gform_1 .gform_footer .gform_button {
	z-index: 2;
    margin-left: -1px;
    display: inline-block;
    padding: 6px 20px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #7acdee;
    border: 1px solid #7acdee;
    color: #000;
	font-family: 'Avenir Next LT W04 Bold';
	border-radius: 0px;
}
#gform_1 ul {
	margin: 0px;
}
.validation_error {
    display: block;
    text-align: center;
}
#gform_1 .gfield_error input[type=email] {
	border-color: #da262e;
}
@media (min-width : 768px) and (max-width : 991px) {
	.page-template-page-landing footer .footer-contact, 
	.page-template-page-landing footer .footer-subscribe {
		letter-spacing: 1px;
		padding: 5px 40px;
	}
}
@media (max-width : 767px) {
	.page-template-page-landing {
		text-align: center;
	}
	.page-template-page-landing header .header-title {
		display: none;
	}
	.page-template-page-landing footer .footer-contact,
	.page-template-page-landing footer .footer-subscribe {
		padding: 5px 15px;
	}
	.page-template-page-landing footer .footer-contact i {
		display: none;
	}
	.page-template-page-landing header {
		height: 320px;
		background-size: cover;
	}
	.page-template-page-landing main {
		letter-spacing: 6px;
		font-size: 16px;
	}
	.page-template-page-landing footer {
		padding: 20px 15px;
	}
	.page-template-page-landing footer .footer-subscribe h6 {
		letter-spacing: 2px;
	}
	.page-template-page-landing footer p {
		font-size: 11px;
	}
}


/******************
****  PAGE : TITLE
****
******************/
.section-title h1 {
	text-transform: uppercase;
	font-size: 40px;
	letter-spacing: 8px;
	font-family:'Avenir Next LT W04 Bold';
	margin: 20px 0px;
}
.section-title p {
	letter-spacing: 2px;
	line-height: 1.5;
}

/******************
****  PAGE : HOME
****
******************/
body.home {
	padding-top: 0px !important; 
}
.section-home-dark {
	height: 720px;
	/*background: url('../images/bullerx-top-dark-bg.jpg') 50% 100% no-repeat;*/
	background: url('../images/bullerx-top-grey-bg.jpg') 50% 100% no-repeat;
}
.section-home-green {
	padding: 34px 0px;
	background: url('../images/bullerx-top-green-bg.jpg') 50% 0% no-repeat;
}
.section-home-green h5 {
	color: #fff;
	font-family:'AvenirNextLTW01-Medium';
	text-transform: uppercase;
	letter-spacing: 1.2px;
}
.section-home-blue {
	padding: 34px 0px;
	background: url('../images/bullerx-top-blue-bg.jpg') 50% 0% no-repeat #72bde3;
}
.section-home-blue h5 {
	color: #fff;
	font-family:'AvenirNextLTW01-Medium';
	text-transform: uppercase;
	letter-spacing: 1.2px;
}
.brought {
	text-align: center;
	letter-spacing: 4px;
	color: #000;
	margin-top: 30px;
	text-transform: uppercase;
	font-size: 11px;
	font-family:'AvenirNextLTW01-Medium';
}

.registration-process {
	text-align: center;
	text-transform: uppercase;
	max-width: 550px;
	margin: auto;
}
.registration-step {
	padding: 25px 0px;
	border-bottom: 3px solid #7acdee;
	text-align: left;
}
.registration-step * {
	margin: 0px;
}
.registration-step-no {
	color: #7acdee;
    font-size: 60px;
    font-family: 'Avenir Next LT W04 Bold';
    float: left;
    width: 120px;
    text-align: center;
    line-height: 1;
}
.registration-step-detail {
	color: #fff;
	margin-left: 120px;
	position: relative;
}
.registration-step-detail p strong {
	color: #fff;
	font-family:'AvenirNextLTW01-Medium';
	font-size: 24px;
}
.registration-step-detail p {
	color: #fff;
	font-family:'AvenirNextLTW01-Medium';
	font-size: 18px;
}
.note-voting {
	color: #7acdee;
	position: absolute;
	top: 11px;
	right: 0;
	font-size: 14px;
	font-family:'AvenirNextLTW01-Medium';
	text-align: center;
}
.note-voting strong {
	font-family: 'Avenir Next LT W04 Bold';
}
.registration-footer {
	margin-top: 30px;
}
.registration-footer h3 {
	color: #7acdee;
	font-family:'AvenirNextLTW01-Medium';
	font-size: 34px;
}
.registration-footer h3,
.registration-footer p {
	text-transform: uppercase;
}

.event_status {
	position: absolute;
	top: 433px;
	left: 50%;
	margin-left: -200px;
	width: 400px;
	padding: 15px 25px;
	color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}
.event_status a {
	color: #fff;
}
.event_status_red {
    background-color: #c11e08;
}
.event_status_amber {
    background-color: #c19808;
}
.event_status_green {
    background-color: #4ec108;
}

@media (max-width : 767px) {
	.event_status {
		top: 339px;
	}
	.section-home-dark {
		height: 435px;
    background-size: auto 360px;
	}
	.section-home-green {
		padding: 10px 0px;
		background-size: auto 380px;
	}
	.section-home-green h5 {
		font-size: 16px;
	}
	.note-voting {
		position: relative;
		top: auto;
		right: auto;
		text-align: left;
	}
}

/******************
****  CONTENDERS
****
******************/
.section-contenders  {
	padding-bottom: 0px;
	padding-top: 100px;
}
.section-contenders h1,
.section-contenders h3 {
	color: #fff;
}
.section-contenders h1 {
	font-size: 50px;
}
.section-contenders h3 {
	font-size: 19px;
}
.section-contenders  .about-format-how-to-enter {
    margin-top: -2px;
}

.section-contenders-dark {
	
}
.section-contenders-dark h2 {
	letter-spacing: 2px;
}
.section-contenders-dark h2.countdown-title {
	font-family:'AvenirNextLTW01-Medium';
	margin-bottom: 60px;
}
/* .section-contenders-dark p {
	max-width: 480px;
	margin-left: auto;
	margin-right: auto; 
} */
h2.contenders-info-title {
    margin: 50px 0px;
    line-height: 1.4;
}
h2.contenders-info-subtitle {
	font-size: 22px;
    letter-spacing: 2px;
    margin: 50px 0px;
    line-height: 1.5;
}
h2.contenders-info-title a {
    color: #fff;
	text-decoration: underline !important;
}
h2.contenders-info-title a:hover {
    color: #7acdee;
	text-decoration: none !important;
}

.contenders-grid-item {
	background-color: #231f20;
	margin: 40px 0px;
	overflow: hidden; 
	box-shadow: 0 2px 15px #000;
}
.contenders-grid-item-img {
	background-color: #555;
	
}
.contenders-grid-item-text {
	padding: 15px;
	color: #fff;
}
.contender-name {
	font-family: 'Avenir Next LT W04 Bold';
	font-size: 16px;
	letter-spacing: 1px;
	margin: 5px 0px;
	text-transform: uppercase;
}
.contender-place {
	font-family:'AvenirNextLTW01-Medium';
	font-size: 12px;
	letter-spacing: 2px;
	margin: 0px 0px;
	text-transform: uppercase;
}

@media (max-width : 767px) {
	.section-contenders h1 {
		font-size: 40px;
		letter-spacing: 4px;
	}
}

/******************
****  ABOUT
****
******************/
.about-format-heading {
	background-color: #000;
	padding: 14px 50px;
	color: #fff;
	letter-spacing: 4px;
	position: relative;
	white-space: nowrap;
}
.about-format-heading:before {
	content: '';
	position: absolute;
	top: 50%;
	left: -1px;
	margin-top: -36px;
	width: 0;
	height: 0;
	border-top: 36px solid transparent;
	border-bottom: 36px solid transparent;
	border-left: 30px solid #40c4ff;
}
.about-format-heading:after {
	content: '';
	position: absolute;
	top: 50%;
	right: -1px;
	margin-top: -36px;
	width: 0;
	height: 0;
	border-top: 36px solid transparent;
	border-bottom: 36px solid transparent;
	border-right: 30px solid #40c4ff;
}
p.about-format-p1 {
    text-transform: uppercase;
	font-family:'AvenirNextLTW01-Medium';
}
p.about-format-p2 {
    text-transform: uppercase;
	font-family:'AvenirNextLTW01-Medium';
	font-size: 20px;
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
	padding: 10px 0px;
}
p.about-format-p3 {
	font-family:'AvenirNextLTW01-Medium';
	letter-spacing: 0px;
}
.about-format-how-to-enter {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    font-family: 'Avenir Next LT W04 Bold';
    font-size: 20px;
	letter-spacing: 2px;
    height: 90px;
    text-transform: uppercase;
    margin-top: 45px;
    overflow: hidden;
}
.about-format-how-to-enter:after {
	content: '';
    position: absolute;
    top: 0%;
    left: 50%;
    width: 402px;
    height: 90px;
    margin-left: -201px;
    background: url(../images/bullerx-blue-bg-arrow.png) 50% 50% no-repeat;
    z-index: -1;
    overflow-x: hidden;
}
.about-format-title {
	border-bottom: 2px solid #000;
}
.about-format-title-1 {
	float: left;
}
.about-format-title-2 {
	float: right;
	border-left: 2px solid #000;
	min-width: 185px;
}
.about-format-title-no {
	float: left;
	font-family: 'Avenir Next LT W04 Bold';
	font-size: 70px;
    width: 70px;
    display: block;
    line-height: 1;
}
.about-format-title-text {
	font-family:'AvenirNextLTW01-Medium';
	margin-left: 70px;
    text-align: left;
	display: block;
    font-size: 26px;
    line-height: 1;
    padding: 7px 0px 18px;
}
.callup-infographic {
	margin-top: 200px;
}
@media (max-width : 767px) {
	.callup-infographic {
		margin-top: 100px;
	}
	.about-format-title-2 {
		min-width: inherit !important;
	}
}
@media (max-width : 480px) {
	.about-format-title-no {
		font-size: 50px;
    	width: 40px;
	}
	.about-format-title-text {
		margin-left: 40px;
    	font-size: 19px;
    	padding: 7px 0px 18px;
	}
	
	.about-format-heading {
		font-size: 24px !important;
		letter-spacing: 3px !important;
	}
}

/******************
****  REGISTRATION
****
******************/
#gform_2 {
	text-align: center;
}
#gform_fields_2 li {
	margin-bottom: 10px;
}
#gform_fields_2 label {
	display: none;
}
#gform_fields_2 #field_2_12 label,
#gform_fields_2 #field_2_13 label{
	display: inline-block;
	white-space: nowrap;
}
body .gform_wrapper ul li.field_description_below div.ginput_container_checkbox, body .gform_wrapper ul li.field_description_below div.ginput_container_radio {
    margin-top: 0px!important;
    margin-bottom: 0;
}
#gform_2 input[type=text],
#gform_2 input[type=email],
#gform_2 textarea {
	background: transparent;
	border: 1px solid #7acdee;
	padding: 6px 12px;
	color: #fff;
}
#gform_fields_2 #field_3_12,
#gform_fields_2 #field_3_13 {
	text-align: center;
}
#gform_2 ul.gfield_radio  {
	display: inline-block;
}
#gform_2 ul.gfield_radio li {
	display: inline-block;
	margin: 0px 10px;
}
.gfield_visibility_hidden {
	display: none;
}


#gform_submit_button_2 {
    font-family: 'Avenir Next LT W04 Bold' !important;
    padding: 8px 50px !important;
    font-size: 16px !important;
    font-weight: normal !important;
    color: #000 !important;
    border: 0 !important;    
    box-shadow: none !important;
    -moz-border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
	border-radius: 0px !important;
    transition: all .2s ease !important;
    -webkit-transition: all .2s ease !important;
    vertical-align: middle !important;
    display: inline-block !important;
    text-decoration: none !important;
    margin: 7px .5em .5em 0 !important;
    text-shadow: none !important;
    background-image: none !important;
    background-color: #7acdee;
    line-height: inherit !important;
    height: auto !important;
    min-height: auto !important;
	letter-spacing: 1px !important;
	text-transform: uppercase;
}
#gform_2 .gform_footer {
    text-align: center;
}
#field_2_5 label {
    display: block;
    background: url('../images/bullerx-upload.png') 50% 0px no-repeat;
    height: 250px;
    margin: 30px 0px;
    text-indent: -999em;
    overflow: hidden;
	cursor: pointer;
}
#field_2_5 input[type=file] {
    display: block;
    visibility: hidden;
    width: 0.1px;
    height: 0.1px;
    margin: 0;
    padding: 0;
}
#field_2_2,
#field_2_3,
#field_2_6,
#field_2_7 {
	max-width: 400px;
	width: 100%;
	margin: 0px auto;
	display: inline-block;
}


/******************
****  CART
****
******************/
.btn {
    border-radius: 0px;
    padding: 8px 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
	font-size: 16px;
	font-family:'AvenirNextLTW01-Medium';
}
.btn-custom-red {
	background-color: #da262e;
    color: #fff;
}
.btn-custom-green {
	background-color: #e0ef00;
    color: #000;
	font-family: 'Avenir Next LT W04 Bold';
	box-shadow: 0px 6px 10px #000;
}
.btn-custom-green:hover {
	box-shadow: none;
}
.btn-custom-blue {
	background-color: #7acdee;
    color: #000;
	font-family: 'Avenir Next LT W04 Bold';
	box-shadow: 0px 6px 10px #000;
}
.btn-custom-blue:hover {
	box-shadow: none;
}

#ngg_pro_links_wrapper .ngg_pro_btn {
	padding: 8px 30px !important;
    height: auto !important;
    line-height: inherit !important;
    background: #231f20 !important;
    background-image: none !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
	font-size: 16px !important;
	font-family:'AvenirNextLTW01-Medium' !important;
    text-shadow: none !important;
    box-shadow: none !important;
    border-radius: 0px !important;
    color: #fff !important;
    border: 0 !important;
    -webkit-transition: all .2s ease !important;
	transition: all .2s ease !important;
}

.stripe-button-el  {
    padding: 0px !important;
    height: auto !important;
    line-height: inherit !important;
    background: #da262e !important;
    background-image: none !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
	font-size: 16px !important;
	font-family:'AvenirNextLTW01-Medium' !important;
    text-shadow: none !important;
    box-shadow: none !important;
    border-radius: 0px !important;
}
.stripe-button-el span {
    padding: 8px 30px !important;
    height: auto !important;
    line-height: inherit !important;
    background: #da262e !important;
    background-image: none !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
	font-size: 16px !important;
	font-family:'AvenirNextLTW01-Medium' !important;
    text-shadow: none !important;
    box-shadow: none !important;
    border-radius: 0px !important;
}
.ngg_pro_btn {
    font-family:'AvenirNextLTW01-Medium' !important;
    padding: 8px 30px !important;
    font-size: 16px !important;
    font-weight: normal !important;
    color: #fff !important;
    border: 0 !important;    
    box-shadow: none !important;
    -moz-border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
	border-radius: 0px !important;
    transition: all .2s ease !important;
    -webkit-transition: all .2s ease !important;
    vertical-align: middle !important;
    display: inline-block !important;
    text-decoration: none !important;
    margin: 7px .5em .5em 0 !important;
    text-shadow: none !important;
    background-image: none !important;
    background-color: #0f92dd;
    line-height: inherit !important;
    height: auto !important;
    min-height: auto !important;
	letter-spacing: 3px !important;
}
#ngg_pro_checkout .ngg_pro_cart_image_column img {
    -webkit-box-shadow: none;
    box-shadow: none;
}
#ngg_add_to_cart_container #ngg_checkout_btn, 
#ngg_add_to_cart_container #ngg_update_cart_btn {
    font-family:'AvenirNextLTW01-Medium' !important;
    padding: 8px 30px !important;
    font-size: 16px !important;
    font-weight: normal !important;
    color: #fff;
    border: 0;
	border-radius: 0px !important;
    vertical-align: middle;
    display: inline-block;
    text-decoration: none;
    margin: 0 0 .5em 0;
    line-height: inherit !important;
    letter-spacing: 3px !important;
    -webkit-appearance: none;
    text-shadow: none;
    background-color: #da262e !important;
    text-transform: uppercase;
    width: 100%;
    height: auto;
}


/******************
****  HOME CALL UP VOTING
****
******************/
.vote-for {
	display: block;
	border: 6px solid #fff;
	margin: 40px 20px;
	padding: 24px 40px;
	text-align: center;
	color: #fff;
	
}
.vote-for span {
	display: block;
}
.vote-for span.vote-for-small {
	font-size: 16px;
	text-transform: uppercase;
}
.vote-for span.vote-for-large {
	font-family: 'Avenir Next LT W04 Bold';
	font-size: 24px;
	text-transform: uppercase;
	letter-spacing: 3px;
}

/******************
****  INSTAGRAM
****
******************/
#insta_container {
	position: relative;
}
.insta_overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.4);
	text-align: center;
	width: 100%;
	height: 100%;
}
.insta_overlay h2,
.insta_overlay h2 a,
.insta_overlay h2 a:hover {
	color: #fff;
}
.insta_box {
	width: 12.5%;
	float: left;
}
@media (max-width : 991px) {
	.insta_box {
		width: 25%;
	}
}

/******************
****  LAYOUTS : MASTER
****
******************/
.section-layout {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.lp-top {
	padding: 40px 0px 0px 0px;
}
.lp-bottom {
	padding: 0px 0px 40px 0px;
}
.lp-both {
	padding: 40px 0px;
}
.lp-none {
	padding: 0px;
}
.lc-full {
	padding-left: 20px;
	padding-right: 20px;
}
.lc-dark {
	color: #fff !important;
}

/******************
****  FOOTER
****
******************/
footer {
	background-color: #040707;
	margin: 0px;
	color: #fff;
	padding-top: 30px;
	box-shadow: inset 0px 20px 40px #000;
	overflow: hidden;
}
footer a {
	color:#fff;
}
footer a:hover,
#tps_footer_menu ul li a:hover,
#tps_footer_details ul li a:hover {
	color: #7acdee;
}
footer .tps_footer_col {
	margin-top: 30px;
}
footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#tps_footer_details ul li {
	clear: both;
	padding: 4px 0px;
}
#tps_footer_details ul li i {
	height: 26px;
	vertical-align: middle;
	color: #7acdee;
	font-size: 20px;
	margin-right: 20px;
    float: left;
    clear: both;
    width: 15px;
}
#tps_footer_details ul li a {
	color: #fff;
}
#tps_footer_logo {
	text-align: center;
	font-size: 12px;
	letter-spacing: 2px;
}
#tps_footer_logo img {
	margin-top: 10px;
}
#tps_footer_menu ul li a {
	color: #fff;
	padding: 4px 0px;
	text-transform: uppercase;
	display: block;
}
.ft-contact-list {
	margin-bottom: 33px;
}
.ft-harro-logo {
	vertical-align: baseline;
}
.tps_footer_social {
	background-color: #de463b;
	padding: 10px;
	text-align: center;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}
.tps_footer_social a {
	color: #fff;
	font-size: 30px;
	padding: 8px;
	margin: 0px 3px;
}
.tps_footer_social a:hover {
	color: #231f20;
}
#tps_footer_anchor {
	text-align: right;
}

@media (max-width : 767px) {
	.tps_footer_social {
		border-radius: 20px;
	}
	#tps_footer_anchor,
	#tps_footer_credit {
		text-align: center;
	}
	footer .tps_footer_col {
		text-align: center;
	}
	#tps_footer_details ul li i {
		height: auto;
		margin-right: 10px;
		float: none;
		width: auto;
	}
	#tps_footer_anchor {
		margin-top: 0px;
	}
}

.section-partners {
	background: url('../images/bullerx-blue-bg.jpg') 50% 0 no-repeat;
	background-color: #7acdee;
	padding: 15px 0px;
	text-align: center;
}
.partner-item {
	display: inline-block;
}

/******************
****  GRAVITY FORMS
****
******************/
.gform_body ul {
	padding: 0 !important;
}
.gform_wrapper {
	margin: 0 0 20px;
}
.gform_wrapper ul {
	list-style: none;
}
.gform_wrapper form {
	margin-bottom: 0;
}
.gfield_radio input,  .gfield_checkbox input {
	vertical-align: 0;
}
.gfield_radio label,  .gfield_checkbox label {
	display: inline-block;
	margin-left: 8px;
}
.gform_description {
	margin-bottom: 15px;
	display: block;
}
.gform_wrapper .gfield_required {
	color: #FF0000;
	padding-left: 1px;
}
.gform_wrapper .validation_message {
	display: none;
}
.validation_error,  #gforms_confirmation_message {
	padding: 8px 35px 8px 14px;
	margin-bottom: 20px;
	color: #c09853;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	background-color: #fcf8e3;
	border: 1px solid #fbeed5;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.validation_error,  .gform_wrapper .gfield_error input[type=text],  .gform_wrapper .gfield_error input[type=tel],  .gform_wrapper .gfield_error input[type=email],  .gform_wrapper .gfield_error textarea,  .gform_wrapper .gfield_error select {
	color: #b94a48 !important;
	background-color: #f2dede !important;
	border-color: #eed3d7 !important;
}
.gform_wrapper .gfield_error label {
	color: #b94a48 !important;
}
.ginput_left {
	width: 48%;
	margin-right: 2%;
	float: left;
}
.ginput_right {
	width: 50%;
	float: left;
}
.ginput_left label,  .ginput_right label {
	font-size: 0.8em;
}
select,  textarea,  input[type="text"],  input[type="password"],  input[type="datetime"],  input[type="datetime-local"],  input[type="date"],  input[type="month"],  input[type="time"],  input[type="week"], input[type="number"],  input[type="email"],  input[type="url"],  input[type="search"],  input[type="tel"],  input[type="color"],  .uneditable-input {
	width: 100%;
	min-height: 32px;
	font-size: 16px;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;
}
/******************
****  BLOG PAGES
**** Blog header
******************/
.blog-header {
	position:relative;
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
	background-color: #7acdee;
	padding: 230px 0px 150px;
	margin-bottom:50px;
}
.blog-header:before {
	content:'';
	position:absolute;
	left:0;
	bottom:0;
    height: 0px;
    width: 50%;
    border-bottom: 80px solid #242324;
    border-left: 0px;
    border-right: 140px solid transparent;
}
.blog-header:after {
	content:'';
	position:absolute;
	left:50%;
	bottom:0;
    height: 0px;
    width: 50%;
    border-bottom: 80px solid #242324;
    border-right: 0px;
    border-left: 140px solid transparent;
    visibility:visible;
}
.blog-header h1 {
    font-size:50px;
    letter-spacing: 8px;
    font-family: 'Avenir Next LT W04 Bold';
	padding:0px;
	margin:0px;
	color:#fff;
}

/******************
****  SVG TEST
**** 
******************/
.svg-test {
	background-color: green;
}
#your_div {
    position: fixed;
    top: 30%;
    width: 90%;
    left: 5%;
    height: 100px;
}

#back {
    width: 100%;
    height: 100%;
}

/******************
****  BLOG PAGES
**** LOOP
******************/
.posts-page .blog-header {
	background-image:url(../images/bullerx-blue-bg.jpg);
    padding: 138px 0px 140px;
}
.posts-page {
	background-color: #242324;
	color:#fffefe;
	padding-bottom:100px;
}

/** posts menu **/
.posts-menu {
	text-align:center;
	margin:20px 0px 60px;
}
.posts-menu a {
	font-size: 20px;
    letter-spacing: 3px;
    font-family: 'AvenirNextLTW01-Regular';
    margin: 0px;
    padding: 0px 20px;
    color: #fff;
    text-transform: uppercase;
    vertical-align: middle;
}

/** grid items loop **/
.blog-loop .loop-single {
	margin-bottom:30px;
	position:relative;
	overflow:hidden;
	background-color: #231f20;
}
.blog-loop .loop-single > a {
	box-shadow: 0px 2px 5px #000;
    display: block;
}

/* overlay */
.blog-loop .loop-single .loop-single-overlay {
	position:absolute;
	height:100%;
	width:100%;
	background-color: rgba(166,176,10,.9);
	z-index:9;
	text-align:center;
    -webkit-transform: translate(-90%, -95%) rotate(45deg);
        -ms-transform: translate(-90%, -95%) rotate(45deg);
            transform: translate(-90%, -95%) rotate(45deg);
	-webkit-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out;
}
.blog-loop .loop-single:hover .loop-single-overlay {
	-webkit-transform:translate(0);
	    -ms-transform:translate(0);
	        transform:translate(0);
}
.blog-loop .loop-single .loop-single-overlay a {
	color:#fff;
	font-size:80px;
}
.blog-loop .loop-single .loop-single-overlay a:hover {
	color:#242324;
}
/* grid item content */
.blog-loop .loop-single .loop-single-inner {
	padding:15px;
}
.blog-loop .loop-single .post-title {
    font-family: Avenir Next LT W04 Bold;
    margin-top: 0px;
    letter-spacing: 1px;
    font-size: 16px;
}
.blog-loop .loop-single .post-excerpt {
	font-size:13px;
	margin:10px 0px;
}
.blog-loop .loop-single .read-more-link {
	color:#fffefe;
	display:block;
	text-transform:capitalize;
}
.blog-loop .loop-single .read-more-link:hover {
	color:#7acdee;
}


/* pagination **/
.pagination>li>a,
.pagination>li>span {
    background-color: #262a3b;
    color:#fff;
    border-color:#fff;
}
.pagination>li>a:hover,
.pagination>li>span:hover {
    background-color: #7acdee;
    color:#262a3b;
    border-color:#fff;
}
/* pages item */
.pagination>li:first-child>span {
	text-transform:uppercase;
}
.pagination>li:first-child>span:hover{
	background-color: #262a3b;
    color:#fff;
    border-color:#fff;
}
/* current item */
.pagination>li>span.current,
.pagination>li>span.current:hover {
	background-color: #262a3b;
    color:#7acdee;
    border-color:#fff;
}

/******************
****  BLOG PAGES
**** SINGLE
******************/
.blog-single {
	background-color: #242324;
	color:#fffefe;
	padding-bottom:100px;
}
.blog-single p,
.blog-single h1,
.blog-single h2,
.blog-single h3,
.blog-single h4 {
	color:#fffefe;
}


/** social row */
.social-row {
	position:relative;
	text-align:center;
	margin:30px 0px;
}
.social-row:before {
	content:'';
	position:absolute;
	border-top:2px solid #fff;
	width:100%;
	left: 0;
    top: 15px;
}
.social-row a {
	display:inline-block;
	color:#fff;
	margin: 0px 10px;
}
.social-row a:hover,
.social-row a:focus {
	color:#7acdee;
}
.social-row-inner {
	display: inline-block;
    padding: 0px 60px;
    background-color: #242324;
    position:relative;
}
/** posts nav row **/
.post-nav-row {
	margin:30px 0px;
}
.post-nav-row .btn-white-o {
	padding:10px 0px !important;
}
.post-nav-row .previous-link a {
	float:right;
}
.post-nav-row .next-link a {
	float:left;
}
.post-nav-row .grid-link {
    width: 100%;
    display: block;
    text-align: center;
    padding-top: 8px;
    color: #fff;
}
.post-nav-row .grid-link:hover,
.post-nav-row .grid-link:focus {
	color:#7acdee;
}

/* share this row */
.share-this-row {
	margin:30px 0px;
 	text-align:center;
}

/******************
**** CONTEST OVERIDES
****
******************/
.ow_vote_contest_top_bar {
	display:none !important;
}
.ow_vote_grid .ow_vote_showcontent_view {
    display: block !important;
    border: 0px !important;
    margin: 20px 0px 0 !important;
}

.ow_vote_show_contestants .contenders-grid-item {
	margin-bottom:0px;
	float: left;
    width: 100%;
}

/* vote button */
.ow_vote_show_contestants .ow_show_vote_cnt .ow_votebutton {
	background-color: #7acdee !important;
    font-family: 'Avenir Next LT W04 Bold' !important;
    font-size: 20px !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    padding: 14px 5px 12px;
}
/* ready to vote*/
.ow_vote_show_contestants .ow_show_vote_cnt .ow_votebutton.ready-to-vote {
	background-color: #7acdee !important;
}
.ow_vote_show_contestants .ow_show_vote_cnt .ow_votebutton.ready-to-vote:hover {
	color:#000 !important;
}
/* voted button */
.ow_vote_show_contestants .ow_show_vote_cnt .ow_votebutton.ow_voting_green_button {
	background: #008000 !important;
}
/* thanks for voting */
.ow_vote_show_contestants .ow_show_vote_cnt .ow_votebutton.ow_voting_green_button .thanks-for {
	font-size: 18px;
    letter-spacing: 1px;
    font-family: 'AvenirNextLTW01-Medium' !important;
    font-style: italic;
    text-transform: none;
}
.ow_vote_show_contestants .ow_show_vote_cnt .ow_votebutton.ow_voting_green_button .thanks-for em {
	font-family:'Avenir Next LT W04 Bold' !important;
}
/* voting disabled */
.ow_vote_show_contestants .ow_show_vote_cnt .ow_votebutton.ow_voting_grey_button {
	background-color: #aaa !important;
}
.ow_vote_show_contestants .ow_show_vote_cnt .ow_votebutton.ow_voting_grey_button:hover {
	color:#fff !important;
}

/******************
**** CONTEST Modal
****
******************/
*:focus {
	outline:none !important;
}
.btn-modal {
	padding:0px 0px;
	background-color: transparent;
	color:#7acdee;
	text-transform:none;
	margin-bottom:10px;
}
.btn-modal,
.btn-modal:focus {
	color:#7acdee;
	border:0px solid #fff;
	background-color: transparent;
	letter-spacing:0px;
	-webkit-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out;
}
.btn-modal:hover,
.btn-modal:active,
.btn-modal.active {
	border:0px solid #7acdee;
	color:#fff;
	background-color: transparent;
}
.vote-modal .modal-content {
	background-color: #222;
	text-align:center;
}
.vote-modal p,
.vote-modal * {
	color:#fff;
}
.vote-modal .btn-default {
	border:1px solid #fff;
	color:#fff;
    background-color: transparent;
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.vote-modal .btn-default:hover {
	color:#7acdee;
}
.vote-modal .modal-footer {
	text-align:center;
}


/* */



#tps_footer_social {
	font-size: 20px;
}
.home-winner {
	padding: 0px 0px 40px 0px;
}
.contenders-grid-item-run {
	border-top: 1px solid #111;
}
.contenders-grid-item-run a.btn {
	width: 50%;
	background: #111;
	color: #fff;
	font-size: 1.2rem;
	letter-spacing: 1.5px;
	padding: 8px 0;
}
.contenders-grid-item-run a.btn:hover {
	background: #000;
}

/* */

#gform_1 .gfield {
	margin: 0;
}
#gform_1 .ginput_container {
    margin-bottom: 0px;
}
#gform_1 .gform_heading, #gform_1 .gform_body, #gform_1 .gform_footer, #gform_1 .gfield {
     padding-right: 0px; 
     padding-left: 0px; 
}
.gform_wrapper #gform_1, #gform_1 .gform_fields {
     margin-right: 0px; 
     margin-left: 0px; 
}















/**/
