/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

:root {
	--gc-blue: #334aff;
	/* --gc-light-blue: #bccbf6; */
	--gc-light-blue: rgba(51, 74, 255,0.5);
	--gc-button-hover: all 0.3s ease;
	--gc-title-font: "Helvetica Neue",Helvetica,-apple-system,BlinkMacSystemFont,Roboto,Arial,sans-serif;
	--gc-body-font: "Roboto",sans-serif;
	--gc-button-font: "Helvetica Neue",Helvetica,-apple-system,BlinkMacSystemFont,Roboto,Arial,sans-serif;
	--gc-trans: all 1.1s cubic-bezier(0.86, 0, 0.07, 1);
	--gc-hover: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}
::selection {
  background: var(--gc-blue);
}
::-moz-selection {
  background: var(--gc-blue);
}
body {
    overflow: inherit;
	line-height: 1.2;
	font-size: 100%;
	font-weight: 400;
	background: #fff;
}
body.stopscroll {
    overflow: hidden;
}

/**Text**/
* {
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5 {
	font-family: var(--gc-title-font) !important;
	font-weight: 600;
	line-height: 1 !important;
	text-transform: capitalize;
	letter-spacing: -1px;
}
h1 {
  font-size: 4.209rem;
}
h2 {
	font-size: 3.157rem;
}

h3 {
	font-size: 2.369rem;
}
h4 {
	font-size: 1.777rem;
	font-weight: 400 !important;
}
h5 {
	font-size: 1.333rem;
	font-weight: 400 !important;
	line-height: 1.2 !important;
}
h6 {
	font-family: var(--gc-body-font);
	font-size: 0.88rem;
	font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
	margin-bottom: -10px !important;
}
/**Links**/
a {
	text-decoration: none !important;
	color: black;
	background-image: linear-gradient(180deg, transparent 65%, var(--gc-light-blue) 0);
	background-repeat: no-repeat;
	background-size: 0 100%;
	transition: var(--gc-hover);
	cursor: pointer !important;
}
a:hover {
	color: black;
  	background-size: 100% 100%;
    cursor: pointer !important;
}
a:focus {
    outline: none !important;
    outline-offset: 0;
}
a.fl-accordion-button-icon {
	background: none !important;
}
#logo a {
	background: none !important;
}
.fl-page-footer-widgets a, .fl-page-footer a, #menu a {
	background-image: linear-gradient(180deg, transparent 65%, var(--gc-blue) 0);
}
#menu a {
	opacity: 0.8;
	transition: var(--gc-hover);
}
#menu a:hover {
	opacity: 1;
}
.menu-container a {
	color: white;
	font-family: var(--gc-title-font);
	font-weight: 600;
}
.sub-menu-container a {
	color: white;
	font-family: var(--gc-body-font);
	text-transform: uppercase;
}
#menu_main {
	font-size: 64px;
	line-height: 0.9;
}
#menu_main a {
	padding-bottom: 20px;
}
#menu_main a:last-of-type {
	padding-bottom: 0;
}
@media only screen and (max-width: 768px) {
	#menu_main {
	font-size: 48px;
	}
}
@media only screen and (max-height: 800px) { 
	#menu_main {
		font-size: 52px;
	}
}
@media only screen and (max-height: 700px) { 
	#menu_main {
		font-size: 42px;
		line-height: 1 !important;
	}
}
#header-text a {
    font-family: var(--gc-body-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sub-navigation-top a {
    font-size: 20px;
	font-weight: 600;
    letter-spacing: 0.5px;
    margin-right: 15px;
}
.sub-navigation-bottom a {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
}
.sub-navigation-social a {
	font-size: 20px;
	line-height: 1.2;
}
@media only screen and (max-width: 768px) {
	.sub-navigation-top a , .sub-navigation-bottom a , .sub-navigation-social a {
		font-size: 16px;
		line-height: 1.4;
	}
}
@media only screen and (max-height: 700px) { 
	.sub-navigation-top a , .sub-navigation-bottom a , .sub-navigation-social a {
		font-size: 14px;
		line-height: 1.4;
	}
}
.fl-post-header h2 {
	font-size: 36px;
}
/**Buttons**/
a.fl-button {
	padding: 11px 20px !important;
	border: 1px solid black;
	border-radius: 100px !important;
	background: rgba(51,74,255,0);
	transition: all 0.3s ease !important;
}
a.fl-button:hover {
  background-color: var(--gc-blue) !important;
	border: 1px solid var(--gc-blue) !important;
  cursor: pointer !important;
}
.fl-button a, .fl-button i, .fl-button span {
	color: black !important;
	font-family: var(--gc-button-font) !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	transition: all 0.3s ease !important;
	
	text-transform: capitalize;
}
.fl-button:hover a, .fl-button:hover i, .fl-button:hover span {
	color: white !important;
}

/* Light */
.fl-module.light a.fl-button {
	border: 1px solid white !important;
}
.fl-module.light a.fl-button span {
	color: white !important;
}

.fl-module.light a.fl-button:hover {
	border: 1px solid black !important;
	background: black !important;
}


/**Rules**/
@media only screen and (max-width: 992px) {
	.tablet-hide {
		display: none;
	}
}
@media only screen and (max-width: 768px) {
	.mobile-hide {
		display: none;
	}
	ol, ul, dl {
		padding-left: 25px;
	}
}
/**Content**/
.gc-row {
  padding-left: 20px;
  padding-right: 20px;
}
.gc-row-banner {
	padding: 0;
}
.gc-row-img-left {
  padding-left: 0;
  padding-right: 20px;
}
.gc-row-img-right {
  padding-left: 20px;
  padding-right: 0;
}
@media only screen and (max-width: 768px) {
  .gc-row-img-left {
    padding-left: 20px;
    padding-right: 20px;
  }
  .gc-row-img-right {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.gc-top {
  margin-top: 10vh;
  margin-bottom: 20vh;
}
@media only screen and (max-width: 992px) {
  .gc-top {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.gc-bottom {
  margin-bottom: 25vh;
}
@media only screen and (max-width: 992px) {
  .gc-bottom {
    margin-bottom: 60px;
  }
}
.gc-middle {
  margin-top: 0;
  margin-bottom: 20vh;
}
@media only screen and (max-width: 992px) {
  .gc-middle {
    margin-top: 0;
    margin-bottom: 60px;
  }
}
/**Posts**/

/**Page Title Header**/
.gc-top-header {
  margin-top: 15vh;
  margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
  .gc-top-header {
    margin-top: 100px;
    margin-bottom: 0;
  }
}

/**Events HTML**/
.gc-events {
  margin-top: 10vh;
  margin-bottom: 10vh;
}
@media only screen and (max-width: 992px) {
  .gc-events {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}


/**Header**/
#header {
	position: fixed;
  	width: 100vw;
    z-index: 998 !important;
    height: 70px;
    top: 0;
    background: #ffffff;
}
#toggle {
    position: fixed;
    z-index: 999 !important;
    top: 20px;
    right: 30px;
}
#toggle:hover {
	cursor: pointer;
}
@media only screen and (max-width: 992px) {
	#toggle {
    	right: 20px;
	}
	#toggle.on {
    	right: 20px;
	}
}
#toggle div {
  width: 40px;
  height: 3px;
  background: black;
  margin: 6px auto;
  transition: all 0.3s;
  backface-visibility: hidden;
}
#toggle.on .one {
  transform: rotate(45deg) translate(5px, 5px);
  background: #f4fafc;
}
#toggle.on .two {
  opacity: 0;
}
#toggle.on .three {
  transform: rotate(-45deg) translate(7px, -8px);
  background: #f4fafc;
}
#logo {
    position: fixed;
    top: 22px;
    left: 25px;
    z-index: 990 !important;
	opacity: 1;
	transition: var(--gc-hover);
}
#header-text {
	position: absolute;
    right: 100px;
    top: 25px;
}
/**Menu**/
#menu {
	position: fixed;
  	width: 40%;
  	height: 100%;
	top: 0;
	right: -45%;
  	background: black;
	text-align: left;
	transition: var(--gc-trans);
	z-index: 995 !important;
}
@media only screen and (max-width: 1200px) {
	#menu {
		width: 60%;
		right: -65%;
	}
}
@media only screen and (max-width: 768px) {
	#menu {
		width: 100%;
		right: -105%;
	}
}
#menu.show {
    right: 0;
}
#menu ul {
    list-style-type: none;
}
.menu-container {
	position: absolute;
    width: 100%;
    top: 40%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
	z-index: 900;
}
.sub-menu-container {
	position: absolute;
    width: 100%;
	height: 100%;
	z-index: 500;
}
.sub-navigation-top {
	position: absolute;
	top: 25px;
	text-align: left;
}
.sub-navigation-top ul li{
  	display: inline;
}
@media only screen and (max-width: 768px) {
	.sub-navigation-top ul li{
  		display: block;
	}
}
.sub-navigation-bottom {
	position: absolute;
	bottom: 10px;
	text-align: left;
}
.sub-navigation-social {
	position: absolute;
	bottom: 10px;
	right: 30px;
	text-align: right;
}
#menu-overlay {
	visibility: hidden;
	position: fixed;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	opacity: 0;
	background: black;
	transition: all 0.5s ease;
	z-index: 0;
}
#menu-overlay.show {
	visibility: visible;
	opacity: 0.75;
	z-index: 100;
}
#menu-overlay:hover {
	cursor: pointer;
}
/**Footer**/
.fl-page-footer {
    border-top: 0px;
}
.fl-page-bar {
  position: fixed;
  z-index: 800;
  width: 100vw;
  height: 35px;
  bottom: 0;
	border: black;
}
.fl-page-footer-widgets {
	padding: 50px 0 50px 0;
}
.fl-page-footer-widgets a, .fl-page-footer-widgets p, .fl-page-footer-widgets .tribe-common-h1, .fl-page-footer-widgets .tribe-common-h2, .fl-page-footer-widgets .tribe-common-h3, .fl-page-footer-widgets .tribe-common-h4, .fl-page-footer-widgets .tribe-common-h5, .fl-page-footer-widgets .tribe-common-h6, .fl-page-footer-widgets .tribe-common-h7, .fl-page-footer-widgets .tribe-common-h8 {
	color: white !important;
	text-transform: capitalize !important;
}
.fl-widget .fl-widget-title, .fl-page-footer-widgets .tribe-common-h6, .tribe-common .tribe-common-h6 {
	 font-size: 18px !important;
	font-family: var(--gc-body-font) !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
    font-style: normal !important;
    margin-bottom: 10px !important;
    border-bottom: 1px solid white !important;
}
#nav_menu-7.fl-widget {
	margin-bottom: 0 !important;
}
#custom_html-2 {
	font-family: "proxima-nova",Verdana,Arial,sans-serif !important;
	font-size: 12px !important;
}
@media only screen and (min-width: 768px) {
	.fl-page-footer-widget-col-1 {
		width: 50%;
	}
	.fl-page-footer-widget-col-2, 	.fl-page-footer-widget-col-3 {
		width: 25%;
	}
}
@media only screen and (max-width: 768px) {
	.fl-page-footer-widget-col-1,
	.fl-page-footer-widget-col-2, 	.fl-page-footer-widget-col-3 {
		max-width: 400px;
		margin: auto;
	}
}
/**Events**/
.tribe-common--breakpoint-medium.tribe-common .tribe-common-l-container {
    margin-top: 100px !important;
}
.tribe-common a:hover {
	background-size: 0;
}
.tribe-common button:hover, .tribe-common input[type=button]:hover, .tribe-common input[type=submit]:hover, .tribe-common button:active, .tribe-common input[type=button]:active, .tribe-common input[type=submit]:active, .tribe-common button:focus, .tribe-common input[type=button]:focus, .tribe-common input[type=submit]:focus {
	border: none;
}
.tribe-filter-bar-c-pill__pill {
	border: 1px solid #d5d5d5 !important;
}
.tribe-common .tribe-common-h3 {
	text-transform: capitalize;
}
#tribe-events-footer ul, #tribe-events-footer ol {
	padding-left: 0 !important;
}
#tribe-events-pg-template {
    padding: 80px 20px 20px !important;
}
.tribe-events-cal-links .tribe-events-gcal, .tribe-events-cal-links .tribe-events-ical {
    padding-left: 30px;
}
.tribe-events .tribe-events-l-container, .tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container, .tribe-common-l-container .tribe-events-l-container {
    padding-bottom: 80px !important;
    padding-top: 80px !important;
}
.gc-events .tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}
.tribe-common--breakpoint-medium.tribe-common .tribe-common-l-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
}
.tribe-events-event-url a {
	color: white !important;
    font-size: 14px;
    line-height: 1.62;
    font-weight: 400;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    display: inline-block;
    height: auto;
    padding: 0;
    text-decoration: none;
    width: auto;
    border-radius: 50px;
    color: #fff;
    text-align: center;
    transition: background-color .2s ease;
    background-color: var(--gc-blue) !important;
    padding: 11px 20px !important;
    width: 100%;
	opacity: 0.9;
	transition: var(--gc-button-hover);
}
.tribe-events-event-url a:hover {
	opacity: 1;
}
.tribe-events-schedule h2 {
	text-transform: unset !important;
}
/**Mailchimp Newsletter**/
.fl-widget {
    margin-bottom: 20px;
}
.display_archive {
    height: 360px;
    overflow-y: scroll;
    border: 1px solid #e6e6e6;
    padding: 10px;
}
.campaign {
    line-height: 125%;
    margin: 0;
    padding-bottom: 10px;
    width: 100%;
    height: auto;
    float: left;
}
.campaign a {
  font-family: var(--gc-title-font)!important;
  font-size: 20px;    
  line-height: 1 !important;
}
.campaign a::before {
    content: "\a";
    white-space: pre;
}

/**Home**/
#container { 
    margin: 0; 
    position: absolute;
    left: -340px;
    top: -50px;
    width: 500px;
    height: 1px;
}
@media only screen and (max-width: 1200px) {
	#container { 
		left: -400px;
	}
}
@media only screen and (max-height: 900px) {
	#container { 
		left: -400px;
	}
}
#home-title h1 {
	font-size: 100px;
    line-height: 1 !important;
}
@media only screen and (max-width: 1500px) {
	#home-title h1 {
		font-size: 84px;
	}
}
@media only screen and (max-width: 1350px) {
	#home-title h1 {
		font-size: 72px;
	}
}
@media only screen and (max-width: 1200px) {
	#home-title h1 {
		font-size: 64px;
	}
}
@media only screen and (max-width: 1050px) {
	#home-title h1 {
		font-size: 58px;
	}
}
#slideshow {
    position: relative;
    right: 0px;
    top: -20px;
    transform: translateX(-20px);
}
#slideshow .bx-viewport {
    height: 80vh !important;
}
#slideshow .fl-slide {
    height: 80vh !important;
}

.media-row {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}
.media-container {
    width: 100%;
    height: 100px;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    opacity: 0.75;
    transition: all 0.3s ease;
}
.media-container:hover {
    opacity: 1;
    cursor: pointer;
}
.media-container a {
    background: none !important;
    color: white !important;
}
.media-bullet {
    color: white;
    position: relative;
    margin: 0;
    top: 50%;
    transform: translateY(-200%);
}
.media-title {
    color: white;
    position: relative;
    margin: 0;
    top: 50%;
    transform: translateY(-60%);
}
.media-subtitle {
    color: white;
    position: relative;
    margin: 0;
    top: 0px;
    right: 0;
    text-align: right;
    transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
	.media-bullet, .media-title {
    	transform: translateY(50%);
	}
}