/*
Theme Name: Flat Bootstrap Child
Description: Child theme for Flat Bootstrap. Includes a stylesheet (style.css) for you to restyle any of the CSS and a functions.php file to change theme parameters or components. Both files include samples of a few common things you might want to do.
Author: OCG Creative
Author url: ocgcreative.com
Version: 1.5
License: GNU General Public License
License URI: http://www.opensource.org/licenses/GPL-3.0
Template: flat-bootstrap
Template Version: 1.9
Tags: one-column, right-sidebar, left-sidebar, fluid-layout, responsive-layout, custom-header, custom-menu, featured-images, featured-image-header, full-width-template, flexible-header, theme-options, sticky-post, threaded-comments, light, translation-ready, rtl-language-support, custom-background
*/

/* 
 * IMPORT the parent theme's stylesheet(s). NOTE: This was moved to functions.php for
 * performance reasons.
 */
/*@import url("../flat-bootstrap/style.css");*/

/* PUT YOUR CHANGED STYLES HERE 
 * 
 * The best way to do this is to copy in the relevant section from the parent's style.css
 * file, change what you want, and remove the lines that you didn't change.
 *
 * NOTE: All these examples here are included just to show you how to do the most common
 * things that users have requested, such as changing colors and the look of buttons, etc.
*/

/* Change the content (page) header to dark blue. */
.content-header {
	background-color: transparent;
}

html {
  font-size: 16px;
}

@media screen and (min-width: 300px){
  html{
    font-size: 14px;
  }
}
@media screen and (min-width: 500px){
  html{
    font-size: 14px;
  }
}
@media screen and (min-width: 570px){
  html{
    font-size: 15px;
  }
}
@media screen and (min-width: 620px){
  html{
    font-size: 16px;
  }
}
@media screen and (min-width: 680px){
  html{
    font-size: 17px;
  }
}
@media screen and (min-width: 720px){
  html{
    font-size: 18px;
  }
}
@media screen and (min-width: 800px){
  html{
    font-size: 19px;
  }
}
@media screen and (min-width: 860px){
  html{
    font-size: 19px;
  }
}
@media screen and (min-width: 920px){
  html{
    font-size: 20px;
  }
}
@media screen and (min-width: 1000px){
  html{
    font-size: 21px;
  }
}

/* ----------------------- End REM Queries -------------------------- */

body {
  -webkit-font-smoothing: antialiased;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
	font-size: 1rem;
  color: #000;
  line-height: 1.4;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', sans-serif;
  color: #000;
  margin-top: 8px;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 60px;
	font-size: 3.75rem;
  font-weight: 800;
}

h1.page-title {
  text-align: center;
  font-size: 55px;
	font-size: 3.4375rem;
  font-weight: 800;
}

h1.main-head {
  font-size: 55px;
	font-size: 3.4375rem;
  color: #fff;
  font-weight: 800;
}

h2 {
  font-size: 35px;
	font-size: 2.1875rem;
	font-weight: 600;
	letter-spacing: 5px; 
}

h2.alt {
	font-size: 55px;
	font-size: 3.4375rem;
    color: #fff;
    font-weight: 800;
    letter-spacing: normal;
}
h2.section-title {
  margin: 0;
}

h3 {
  font-size: 35px;
	font-size: 2.1875rem;
  font-weight: 800;
	font-style: uppercase !important;
}

h3.sub {
  font-size: 30px;
	font-size: 1.875rem;
  text-transform: capitalize;
}

h4 {
  font-size: 25px;
	font-size: 1.5rem;
	font-weight: 600;
}

h4.spaced {
  font-size: 25px;
	font-size: 1.5rem;
	font-weight: 600;
  letter-spacing: 2px;
}

h4.sub {
  font-size: 25px;
	font-size: 1.5rem;
	font-weight: 800;
}

h4.alt {
    font-size: 25px;
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 2px;
}

h5 {
  font-size: 17px;
	font-size: 1.0625rem;
  text-transform: uppercase;
}

a.link {
  color: #5b5b5b;
  text-decoration: none;
	font-weight: bold;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

a.link:hover, a.link:active, a.link:focus {
	color: #8b8b8b;
	text-decoration: none;
	
}

a.brand {
  color: #f78e1e;
  font-weight: bold;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

a.brand:hover, a.brand:active, a.brand:focus {
  color: #c57118;
}

a.white {
  color: #fff;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

a.white:hover, a.white:active, a.white:focus {
  opacity: 0.7;
}

.white-text {
  color: #fff;
}

.accent-text {
  color: #f78e1e;
}

.entry-content table {
  border-bottom: 0 solid transparent;
}

textarea.form-control {
  height: 100px;
}

p.sub {
  font-weight: bold;
  font-size: 19px;
	font-size: 1.1875rem;
}


/* --------------------------- MEDIA QUERIES ---------------------------- */

@media (max-width: 768px) {
  #upper-nav-center {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .tablet-center {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .mobile-center {
    text-align: center;
  }
}

/* --------------------------- BUTTON STYLES ---------------------------- */

.btn {
  text-transform: uppercase;
  font-family: ;
  border-radius: 0;
  padding: 6px 25px 5px 25px;
}

.btn-main {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.btn-main:hover, .btn-main:active, .btn-main:focus {
  background-color: #fff;
  border: 2px solid #fff;
  color: #000;
}

.btn-accent {
  background-color: transparent;
  border: 2px solid #000;
  color: #000;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.btn-accent:hover, .btn-accent:active, .btn-accent:focus {
  background-color: #000;
  border: 2px solid #000;
  color: #fff;
}

.btn-grey {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.btn-grey:hover, .btn-grey:active, .btn-grey:focus {
  background-color: #fff;
  border: 2px solid #fff;
  color: #2d2d2d;
}

input[type="submit"] {
  background-color: #f78e1e !important;
  border: 2px solid #f78e1e !important;
	padding: 6px 25px 5px 25px;
  color: #fff !important;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

input[type="submit"]:hover, input[type="submit"]:active, input[type="submit"]:focus {
  background-color: #c57118 !important;
  border: 2px solid #c57118 !important;
  color: #fff;
}

p.comment-form-author {
	display: inline-block;
	float:left;
	width: 50%;
}

p.comment-form-email {
	display: inline-block;
	float:left;
	width: 50%;
}

@media (max-width: 768px) {
	p.comment-form-author {
		width: 100%;
	}
	p.comment-form-email {
		width: 100%;
	}
}

.comment-form [for="author"], .comment-form [for="email"], .comment-form [for="url"], .comment-form [for="comment"] {
	width: 30%;
	padding: 0 15px;
	text-align: center;
}

.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"] {
	width: 70%;
	max-width: 100%;
}

@media (max-width: 768px) {
	.comment-form [for="author"], .comment-form [for="email"], .comment-form [for="url"], .comment-form [for="comment"] {
		width: 20%;
		padding: 0;
	}
	.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"] {
		width: 80%;
	}
}

@media (max-width: 768px) {
	p.form-submit {
		text-align: center;
	}
}

/* --------------------------- FORM STYLES ---------------------------- */

.fix1 iframe {
  pointer-events: none;
}

label {
  font-weight: 300;
}

.form-control {
  color: #555;
}

::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #555 !important;
  opacity: 1;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #555 !important;
  opacity: 1;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #555 !important;
  opacity: 1;
}

:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #555 !important;
  opacity: 1;
}

::selection {
 background: #d6d6d6 !important;
 color: #666666 !important;
}
::-moz-selection {
 background: #d6d6d6 !important;
 color: #666666 !important;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px #eeffe7 inset;
    -webkit-text-fill-color: #333;
}

input:-webkit-autofill:hover, input:-webkit-autofill:active, input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 50px #eeffe7 inset;
    -webkit-text-fill-color: #333;
}


/* --------------------------- HELPER CLASSES ---------------------------- */

.no-pad {
  padding: 0px !important;
}

.no-marg {
  margin: 0px !important;
}

.no-margpad {
  padding: 0px !important;
  margin: 0px !important;
}

.no-margt {
  margin-top: 0;
}

.no-margb {
  margin-bottom: 0;
}

.no-margtb {
  margin-top: 0;
  margin-bottom: 0;
}

.no-padt {
  padding-top: 0;
}

.no-padb {
  padding-bottom: 0;
}

.no-padtb {
  padding-top: 0;
  padding-bottom: 0;
}

.no-padlr {
  padding-left: 0;
  padding-right: 0;
}

.pad-t1 {
  padding-top: 10px;
}

.pad-t2 {
  padding-top: 20px;
}

.pad-t3 {
  padding-top: 30px;
}

.pad-t4 {
  padding-top: 40px;
}

.pad-t5 {
  padding-top: 50px;
}

.pad-t6 {
  padding-top: 60px;
}

.pad-t7 {
  padding-top: 70px;
}

.pad-t8 {
  padding-top: 80px;
}

.pad-t9 {
  padding-top: 90px;
}

.pad-t10 {
  padding-top: 100px;
}

.pad-b1 {
  padding-bottom: 10px;
}

.pad-b2 {
  padding-bottom: 20px;
}

.pad-b3 {
  padding-bottom: 30px;
}

.pad-b4 {
  padding-bottom: 40px;
}

.pad-b5 {
  padding-bottom: 50px;
}

.pad-b6 {
  padding-bottom: 60px;
}

.pad-b7 {
  padding-bottom: 70px;
}

.pad-b8 {
  padding-bottom: 80px;
}

.pad-b9 {
  padding-bottom: 90px;
}

.pad-b10 {
  padding-bottom: 100px;
}

.marg-t1 {
  margin-top: 10px;
}

.marg-t2 {
  margin-top: 20px;
}

.marg-t3 {
  margin-top: 30px;
}

.marg-t4 {
  margin-top: 40px;
}

.marg-t5 {
  margin-top: 50px;
}

.marg-t6 {
  margin-top: 60px;
}

.marg-t7 {
  margin-top: 70px;
}

.marg-t8 {
  margin-top: 80px;
}

.marg-t9 {
  margin-top: 90px;
}

.marg-t10 {
  margin-top: 100px;
}

.marg-b1 {
  margin-bottom: 10px;
}

.marg-b2 {
  margin-bottom: 20px;
}

.marg-b3 {
  margin-bottom: 30px;
}

.marg-b4 {
  margin-bottom: 40px;
}

.marg-b5 {
  margin-bottom: 50px;
}

.marg-b6 {
  margin-bottom: 60px;
}

.marg-b7 {
  margin-bottom: 70px;
}

.marg-b8 {
  margin-bottom: 80px;
}

.marg-b9 {
  margin-bottom: 90px;
}

.marg-b10 {
  margin-bottom: 100px;
}

.cover {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.icon-fade {
  opacity: 1;
  transition: opacity .3s ease-in-out;
  -moz-transition: opacity .3s ease-in-out;
  -webkit-transition: opacity .3s ease-in-out;
}

.icon-fade:hover {
  opacity: 0.5;
}

/* --------------------------- BOOTSTRAP NAVBAR STYLES ---------------------------- */

.navbar {
  font-family: ;
  border: 0 solid transparent;
  letter-spacing: 1px;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 16px;
}

.navbar-nav {
  float: right;
}

@media screen (max-width: 768px) {
  .navbar-nav {
    float: right;
  }
  .navbar-nav>li>a {
    padding-top: 0;
  }
}

.navbar-default {
  background-color: rgba(255, 255, 255, 0);
}

.navbar-default .navbar-nav>li>a {
  color: #fff;
}

.navbar-default .navbar-nav>.active>a {
  background-color: transparent;
  color: #9b9b9b;
}

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
    color: #555;
    background-color: transparent;
}

.dropdown-menu {
  border-radius: 0;
  background-color: #000;
  box-shadow: none;
  border-top: 1px solid #fff;
  left: -5px;
}

.dropdown-menu>li>a {
  color: #fff;
}

.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
  color: #9b9b9b;
  background-color: #000;
}

.dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus {
  color: #9b9b9b;
  background-color: #000;
}

@media (min-width: 768px) and (max-width: 1222px) {
  .navbar-collapse.collapse {
    display: none !important;
  }
  .navbar-collapse.collapse.in {
    display: block !important;
  }
  .navbar-header .collapse, .navbar-toggle {
    display: block !important;
  }
  .navbar-header {
    float: none;
  }
}

/* --------------------------- HEADER STYLES ---------------------------- */

ul#upper-nav-center.list-inline {
	margin-bottom: 0;
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1:after {
	color: #000;
	font-size: 20px;
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1:before {
	color: #000;
	font-size: 33px;
}

@media (max-width: 768px) {
	.mobilenavpadb {
		padding-bottom: 15px;
	}
}

.section-image, .section-image-overlay {
	height: 300px;
	min-height: 100px;
}

@media (max-width: 768px) {
	.section-image, .section-image-overlay {
		height: 200px;
	}
}

.section-image h1 {
	text-shadow: 1px 2px 8px rgba(000,000,000,0.8);
	font-size: 70px;
	font-size: 4rem;
}

/* --------------------------- BLOG STYLES ---------------------------- */

.blckgrd-sec {
	background-color: #fff;
	border: 1px solid #ccc;
}

.blckgrd-sec .vc_col-sm-12 {
	padding-left: 0;
	padding-right: 0;
}

.blckgrd-sec .vc_gitem_row .vc_gitem-col {
	padding: 0;
}

.blckgrd-sec {
	height: 150px;
	overflow: hidden;
	position: relative;
}

.blckgrd-btsec h4 {
	margin-top: 0;
}

#blg-pgsec .1blck-cont .vc_grid-item-mini {
	border: 1px solid #ccc !important;
	background: #fff;
}

h2.widget-title {
	font-size: 30px;
	font-size: 1.875rem;
	margin: 0;
}

h2.comments-title {
	font-size: 30px;
	font-size: 1.875rem;
	margin: 0;
}

h3#reply-title {
	font-size: 30px;
	font-size: 1.875rem;
	margin-bottom: 0;
}

textarea#comment {
	max-width: 100%;
	max-height: 100px;
}

p.comment-form-url {
	display: none;
}

/* --------------------------- CONTACT STYLES ---------------------------- */

p.discl {
	font-size: 12px;
}

#ctfrm1 .form-control {
	margin-bottom: 15px !important;
}

span.wpcf7-not-valid-tip {
	font-size: 18px;
	color: #c74242;
	position: relative;
	top: -12px;
}

div.wpcf7-validation-errors {
	border: 2px solid #c74242;
	background-color: #fff;
}

div.wpcf7-response-output {
	margin: 10px 0;
}

:focus {
	outline: none !important;
	outline-offset: 0;
	border-color: inherit;
	box-shadow: none !important;
}

/* --------------------------- FOOTER STYLES ---------------------------- */

.after-footer {
  background-color: #000;
  color: #fff;
  padding-top: 10px;
  font-size: 16px;
  max-width: 100%;
}

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

#colophon {
  background-color: #000;
}

footer#colophon.site-footer .container {
  width: 100% !important;
}
.site-footer {
	color:#fff;
}

div#test-space div.wpb_column.vc_column_container.vc_col-sm-12 {
  background-color: purple;
}

.header-img {
  width:100%;
  height: 600px;
}

.site-header {
    position: absolute;
    color: #fff;
    z-index: 30000;
    width: 100%;
		background: rgba(0,0,0,1);
		background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(76,76,76,0) 100%);
		background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,1)), color-stop(100%, rgba(76,76,76,0)));
		background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(76,76,76,0) 100%);
		background: -o-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(76,76,76,0) 100%);
		background: -ms-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(76,76,76,0) 100%);
		background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(76,76,76,0) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#4c4c4c', GradientType=0 );
    padding-bottom: 50px!important;
}

.event-text {
	color: #fff;
}

.event-title{
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 800;
	color: #fff;
}

.logo-svg {
	width: 250px;
  margin-top: 40px;
}

a.footer-link {
	color: #fff;
	text-decoration: none;
}

@media (max-width: 768px) {
	.header-img{
		height: 400px;
	}
}

/* --------------- Events Styles --------------- */

ul.loop li {
	width: 30%;
	margin-left: 3%;
	float: left;
}

@media (max-width: 991px) {
	ul.loop li {
		width: 48%;
		margin-left: 2%;
	}
}

@media (max-width: 767px) {
	ul.loop li {
		width: 98%;
		margin-left: auto;
		margin-right: auto;
	}
}	
   
.loop h4 {
	color: #fff;
}

.loop p {
	color: #fff;
}
