/*
Theme Name: Revive the Hive by Three Ring Focus
Theme URL: https://ThreeRingFocus.com
Description: Responsive Website by Three Ring Focus
Author: Josh Castro
Author URI: ThreeRingFocus.com
Version: 9.9.9
Tags: Responsive, green, orange, blue, white.
*/

/* Baseline Normalize - normalize.css v3.0.1 | MIT License | git.io/normalize
--------------------------------------------- */

html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}

/* 	
== DEFAULTS ==*/

* {
    box-sizing: border-box; /* border thickness & padding included inside box */
    margin: 0;
    padding: 0;
}
body {
    color: #fff;
	font-family: roboto, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: .06em;
	background-color: #1e3b4e;
}
.clear {
    clear: both;
}
input[type="checkbox"] {
    -webkit-appearance: checkbox;
}
input[type="radio"] {
    -webkit-appearance: radio;
    margin-top: 0px;
}
input[type="submit"], input[type="button"] {
    -webkit-appearance: button;
}

/* 	
== SCROLL BAR ==*/

/* Width */
::-webkit-scrollbar {
  width: 15px;
}
/* Track */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
  background: #eee;
}
/* Handle */
::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
  background: #d69b41;
}

/* 	
== FONTS ==*/

h1, h2, h3, h4, h5, h6 {
    margin: 30px 0;
	font-weight: 400;
	line-height: 1.2em;
	letter-spacing: .06em;
	font-family: montserrat, sans-serif;
}
h1 {
	margin-top: 0;
    font-size: 3.5em;
}
h2 {
    font-size: 3em;
}
h3 {
    font-size: 2.5em;
}
h4 {
    font-size: 2em;
}
h5 {
    font-size: 1.5em;
}
h6 {
    font-size: 1em;
}
p {
    font-size: 1em;
    line-height: 1.75em;
    margin: 30px 0;
}
a {
    text-decoration: none;
    cursor: pointer;
	font-style: normal;
    transition: all .4s ease-in-out;
}
a:hover {
}
ul, ol {
    list-style: inside;
    padding: 0px 20px;
    margin: 30px 0;
}
ul {
    list-style-type: disc;
}
ol {
    list-style-type: decimal;
}
li {
    font-size: 1em;
    line-height: 1.75em;
}
em {
	letter-spacing: .01em;
}
.bgImg {
    background-position: center;
    background-size: cover;
	background-repeat: no-repeat;
}

/* 	
== BUTTONS ==*/

.headButton,
.buttons {
	display: inline-block;
	font-family: contempora-sans-condensed, sans-serif;
	text-transform: uppercase;
	font-size: 1.1em;
	line-height: 1em;
	letter-spacing: .08em;
	padding: 10px 20px;
	text-align: center;
	background-color: #e3a545;
	color: #fff;
}
.headButton:hover,
.buttons:hover {
	background-color: #fff;
	color: #e3a545;
}
.headButton {
	margin-left: 10px;
}
.buttons {
	position: relative;
	clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%)
}

/* 	
== HEADER ==*/

.myHeader {
	width: 100%;
	padding: 30px 100px 0px 50px;
	background-color: transparent;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.myHeader.scrolled {
	padding-top: 30px;
	background-color: rgba(3, 18, 30, 0.8);
}
.logoBox {
	position: relative;
}
.logoBox.scrolled::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 36px;
	background-color: rgba(3, 18, 30, 0.8);
	clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.logo {
    width: 179px;
    height: 150px;
    display: inline-block;
    background: url("images/global/logo.svg");
    background-position: center;
    background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	z-index: 5;
}
.logo.scrolled {
	width: 112px;
	height: 94px;
	margin: -10px 0 -20px 0;
}
.headInfo .fa-solid {
	color: #e3a545;
	font-size: 1.2em;
	margin-right: 5px;
}
a.headPhone {
	font-size: 1.1em;
	font-family: contempora-sans-condensed, sans-serif;
	text-transform: uppercase;
	color: #fff;
}
a.headPhone:hover {
	color: #e3a545;
}

/* 	
== HOME PAGE ==*/

.hero {
	width: 100%;
    max-height: 1270px;
	min-height: 700px;
    aspect-ratio: 3 / 2;
	position: relative;
	background: url("images/home/pattern-hex-top.png"), linear-gradient(135deg, rgba(8, 31, 46, 1) 0%, rgba(11, 38, 56, 1) 75%);
	background-repeat: no-repeat, no-repeat;
	background-position: bottom left, center; 
	background-size: auto, cover;
}
.heroImage {
	width: 76%;
	max-width: 1460px;
	position: absolute;
	right: 0;
	bottom: -100px;
	z-index: 1;
}
.heroText {
	width: 54%;
	padding: 0 0px 200px 50px;
	position: absolute;
	z-index: 5;
	left: 0;
	bottom: 0;
}
.heroText h1 {
	margin: 0 auto;
	max-width: 850px;
	text-shadow: 0 0 10px rgba(0, 0, 0, .5);
}
/* Section One */
.sectionOne {
	width: 100%;
	padding: 130px 50px 0 50px;
}
.s1Wrap {
	width: 100%;
	max-width: 1600px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.s1Img {
	width: 100%;
	max-width: 670px;
	box-shadow: 0 0 20px 10px rgba(0, 0, 0, .15);
    margin-bottom: -50px;
}
.s1Text {
	width: 100%;
	max-width: 720px;
	margin-left: 40px;
	padding: 130px 0 190px 0
}
.s1Text h2 {
	margin-top: 0;
	max-width: 500px;
}
/* Section Two */
.sectionTwo {
	width: 100%;
	padding: 200px 50px;
	background-image: url("images/home/bg01.jpg");
}
.s2Wrap {
	width: 100%;
	max-width: 1130px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	gap: 30px;
}
.s2Col {
	text-align: center;
}
.s2Col img {
	max-width: 155px;
	margin: 0 auto;
}
.s2Col h2 {
	font-family: contempora-sans-condensed, sans-serif;
	margin: 80px 0 40px 0;
	text-transform: uppercase;
	font-size: 2.6em;
}
.s2Col a {
	font-family: montserrat, sans-serif;
	color: #d69b41;
	font-weight: 700;
}
.s2Col a:hover {
	color: #fff;
}
/* Section Three */
.sectionThree {
	width: 100%;
	padding: 0 50px;
	background-color: #03121e;
	background-image: url("images/home/pattern-hex.png");
	background-position: top right;
	background-repeat: no-repeat;
}
.s3Wrap {
	width: 100%;
	max-width: 1700px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.s3Text {
	width: 100%;
	max-width: 780px;
	padding: 150px 40px 150px 0;
}
.s3Text h2 {
	margin: 0 0 70px 0;
	font-size: 2.5em;
}
.s3Lists {
	width: 100%;
	max-width: 640px;
	display: flex;
	justify-content: space-between;
}
.s3Lists ul {
	padding: 0 20px 0 0;
	margin: 30px 0 0 0;
}
.s3Lists li {
	font-family: contempora-sans-condensed, sans-serif;
	text-transform: uppercase;
	font-size: 1.2em;
	list-style: none;
	letter-spacing: .1em;
    padding: 10px 0 10px 44px;
	position: relative;
}
.s3Lists li::before {
	content: "";
	width: 34px;
	height: 30px;
	background-image: url("images/home/icon-check.png");
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}
.s3Img {
	width: 100%;
	max-width: 660px;
	margin-top: -50px;
}
/* Section Four */
.sectionFour {
	width: 100%;
	color: #fff;
	padding: 60px 50px;
	background-color: #d69b41;
	text-align: center;
}
.sectionFour h2 {
	margin: 0;
	text-transform: uppercase;
	font-family: contempora-sans-condensed, sans-serif;
}
/* Section Five */
.sectionFive {
	width: 100%;
	padding: 130px 50px 190px;
	background-color: #102d40;
	background-image: url("images/home/pattern-hex-wide.png");
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
}
.s5VidBox {
	width: 100%;
	max-width: 1300px;
	margin: auto;
}
.s5Text {
	width: 100%;
	max-width: 800px;
	margin: 120px auto;
}
.s5Text h2 {
	font-size: 2.4em;
}
.twinVidWrap {
	width: 100%;
	max-width: 1580px;
	margin: 0 auto 80px auto;
	display: flex;
	justify-content: space-between;
}
.tvBox {
	width: calc(50% - 30px);
}
/* Section Six */
.sectionSix {
	width: 100%;
	padding: 120px 50px;
	background-color: #03121e;
}
.s6Wrap {
	width: 100%;
	max-width: 1450px;
	margin: auto;
	display: flex;
	justify-content: space-between;
}
.s6Text {
	width: 100%;
	max-width: 620px;
	padding-right: 20px;
}
.s6Text h2 {
	font-size: 2.4em;
}
.s6Text a {
	color: #fff;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-family: contempora-sans-condensed, sans-serif;
}
.s6Text a:hover {
	color: #e3a545;
}
.s6Text .fa-solid {
	color: #e3a545;
	margin-right: 5px;
}
.s6Form {
	width: 100%;
	max-width: 680px;
}


/* 	
== PAGE TEMPLATES ==*/

.psOne {
	width: 100%;
	padding: 100px;
	background-image: url("images/page/pattern-hex-page-bot.png");
	background-position: bottom right;
	background-repeat: no-repeat;
}
.ps1Wrap {
	width: 100%;
	max-width: 1720px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.ps1Image {
	width: 100%;
	max-width: 660px;
	box-shadow: 0 0 20px 10px rgba(0, 0, 0, .15);
}
.ps1Text {
	width: 100%;
	max-width: 740px;
	margin-left: 40px;
}
.psTwo {
	width: 100%;
	padding: 100px;
	background-color: #03121e;
	background-image: url("images/page/pattern-hex-page-top.png");
	background-position: top right;
	background-repeat: no-repeat;
}
.ps2Wrap {
	width: 100%;
	max-width: 1720px;
	margin: auto;
	display: flex;
	justify-content: space-between;
}
.ps2Text {
	width: 100%;
	max-width: 680px;
}
.ps2List {
	width: 100%;
	max-width: 740px;
	margin-left: 40px;
	padding-top: 248px;
	display: flex;
	justify-content: space-between;
}
.ps2List ul {
	margin: 0 20px 0 0;
	padding: 0;
	list-style: none;
}
.ps2List ul:last-child {
	margin: 0;
}
.ps2List li {
	margin: 0;
	padding: 0 0 20px 0;
	font-family: contempora-sans-condensed, sans-serif;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: 1.2em;
}
.ps2List li:last-child {
	padding-bottom: 0px;
}
.psThree {
	width: 100%;
	padding: 60px;
}
.ps3Wrap {
	width: 100%;
	max-width: 1790px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.ps3Img {
	width: calc(25% - 20px);
	margin-bottom: 20px;
}
.ps3Text {
	width: 100%;
	max-width: 900px;
	margin: 100px auto 60px;
	text-align: center;
}
.ps3Text h2 {
	font-size: 2.5em;
}


/* 	
== PAGES ==*/

.banner {
    width: 100%;
    height: auto;
}
.banner img {
    width: 100%;
    height: auto;
    display: block;
}
.bannerBG {
	width: 100%;
	height: 700px;
	padding: 0px 100px 80px;
	background-color: gray;
	display: flex;
	align-items: flex-end;
}
.bannerBG h1 {
	color: #fff;
	line-height: 1em;
	margin: 0;
}
.pageBox {
	width: 100%;
	padding: 80px 40px 100px 40px;
}
.pageText {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

 
/* 	
== FOOTER ==*/

.myFooter {
    width: 100%;
	padding: 60px 100px 40px;
	background-color: #1e3b4e;
}
.myFooter a {
	color: #fff;
}
.myFooter a:hover {
	color: #e3a545;
}
.myFooter .fab {
	color: #1e3b4e;
}
.myFooter .fa-2x {
    font-size: 1.2em;
}
.myFooter p {
	margin: 20px 0 5px 0;
}
.footWrap {
	width: 100%;
	display: flex;
	justify-content: space-between;
	position: relative;
}
.footLogo {
	width: 210px;
    height: 150px;
	background-image: url("images/global/logo-foot.png");
	position: absolute;
	top: -120px;
	left: -40px;
}
.footLeft,
.footMid,
.footRight {
	width: 33.33%;
}
.footLeft {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.footLeft p {
	max-width: 540px;
	font-size: .9em;
}
.footMid {
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	padding: 0 20px;
	margin: 0 20px;
}
.fmWrap {
	width: 100%;
	max-width: 260px;
	margin: auto;
}
.fmWrap h6 {
	font-size: 2em;
	margin: 0;
}
.fmWrap p {
	margin: 30px 0;
	font-family: contempora-sans-condensed, sans-serif;
	text-transform: uppercase;
	font-size: 1.1em;
}
.fmWrap .fa-solid {
	margin-right: 5px;
}
.fmWrap .buttons {
	background-color: #fff;
	color: #e3a545;
}
.fmWrap .buttons:hover {
	background-color: #e3a545;
	color: #fff;
}
.footRight {}
.frWrap {
	width: 100%;
	max-width: 400px;
	margin: auto;
	display: flex;
	justify-content: space-between;
}
.footNav {
	padding-top: 10px;
}
.footNav ul {
    margin: 0;
	padding: 0 0 0 0;
}
.footNav ul:first-child {
	margin-right: 20px;
}
.footNav li {
	margin: 0;
	list-style: none;
	line-height: 1em;
    padding: 12px 0;
	font-family: contempora-sans-condensed, sans-serif;
	text-transform: uppercase;
	font-size: 1.1em;
}
.footNav li a {
	text-decoration: none;
}
.footBase {
	margin-top: 70px;
}
.footBase p {
	margin: 0;
	font-size: .75em;
}
.footBase a {
	text-decoration: underline;
}
.footBase a:hover {
}


/* 	
== NEWS/BLOG ==*/

#thumby {
	padding: 0;
	display: block;
	margin-top: 20px;
	margin-bottom: 10px;
	min-height: 150px;
	background-position: center;
	background-size: cover;
}
#thumby img {
	margin: 0;
	padding: 0;
	width: 100%;
	height: auto;
	display: block;
}
#texty h2 {
	padding: 0;
	margin: 30px 0px 25px 25px;
	text-align: left;
	font-size: 1.5em;
}
#texty p {
	font-size: 1em;
	line-height: 1.5em;
	text-align: left;
	letter-spacing: 1px;
	margin: 0px 0px 15px 25px;
}
#texty h2 a {
}
#texty p a {
	color: #111;
	text-decoration: none;
}
.spacer {
	width: 100%;
	height: 30px;
}
.split {
	padding: 0;
	width: 70%;
	height: 2px;
	margin: 30px auto;
	background-color: #72321b;
}
.blog-three {
	float: left;
	width: 30%;
}
.blog-seven {
	float: left;
	width: 70%;
}

/* 	
== GRAVITY FORMS ==*/
.gform_wrapper.gravity-theme .gform_footer button, .gform_wrapper.gravity-theme .gform_footer input, .gform_wrapper.gravity-theme .gform_page_footer button, .gform_wrapper.gravity-theme .gform_page_footer input {

    transition: all .4s ease-in-out;
}
.gform_wrapper legend,
.gform_wrapper label {
	color: #fff !important;
}
.gform_wrapper input,
.gform_wrapper textarea,
.gform_wrapper select {
	background-color: transparent !important;
	border: 1px solid #fff !important;
	border-radius: 0 !important;
	color: #fff !important;
}
.gform_wrapper .gform-theme--foundation .gform_fields {
    row-gap: 20px;
}
.gform_wrapper input.gform_button {
	border: none !important;
	display: inline-block !important;
	font-family: contempora-sans-condensed, sans-serif !important;
	text-transform: uppercase !important;
	font-size: 1.1em !important;
	line-height: 1em !important;
	letter-spacing: .08em !important;
	padding: 10px 20px !important;
	text-align: center !important;
	background-color: #e3a545 !important;
	color: #fff !important;
	position: relative !important;
	clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%) !important;
    transition: all .4s ease-in-out !important;
}
.gform_wrapper input.gform_button:hover {
	background-color: #fff !important;
	color: #e3a545 !important;
}

/* 	
== WORDPRESS FIXES ==*/

img.alignright {
    float: right;
    margin: 0 0 1em 1em;
}
img.alignleft {
    float: left;
    margin: 0 1em 1em 0;
}
img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.alignright {
    float: right;
}
.alignleft {
    float: left;
}
.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* 	
== RESPONSIVE ELEMENTS ==*/

.response img {
    width: 100%;
    height: auto;
    display: block;
}
.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 20px;
    height: 0;
}
.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.mapWrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.mapWrapper iframe, .mapWrapper object, .mapWrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 	
== RESPONSIVE STYLES ==*/

/* Monitor Medium | iPad Pro Large Landscape */
@media only screen and (max-width: 1366px) {
}

/* Custom */
@media only screen and (max-width: 1200px) {
	.heroText {padding: 0 0 50px 50px; width: 60%;}
}

/* iPad Pro Landscape */
@media only screen and (max-width: 1112px) {
}

/* iPad & iPad Mini Landscape | iPad Pro Portrait */
@media only screen and (max-width: 1024px) {
	.s1Wrap {flex-direction: column;}
	.s1Img {margin: 0;}
	.s1Text {max-width: 100%; margin: 50px 0; padding: 0;}
}

/* Custom */
@media only screen and (max-width: 960px) {
	.heroImage {bottom: -50px;}
	.s3Wrap {flex-direction: column;}
	.s3Text {padding-right: 0;}
	.tvBox {width: calc(50% - 10px);}
	.myFooter {padding: 60px 30px 40px;}
	.footWrap {padding-top: 40px;}
	.bannerBG {height: 500px;}
	.ps1Wrap, .ps2Wrap {flex-direction: column;}
	.ps1Text {margin: 50px 0 0 0;}
	.ps2List {margin: 0; padding-top: 10px;}
	.ps3Img {width: calc(50% - 10px);}
}

/* Monitor Small */
@media only screen and (max-width: 800px) {
	h1 {font-size: 2.5em;}
	h2 {font-size: 1.75em;}
	h3 {font-size: 1.5em;}
	h4 {font-size: 1.25em;}
	h5 {font-size: 1em;}
	h6 {font-size: .813em;}
	
	.hero {min-height: 600px;}
	.s6Wrap {flex-direction: column;}
	.s6Text {padding: 0 0 20px 0; max-width: 100%;}
	.s6Form {max-width: 100%;}
}

/* iPhone 8 Plus Landscape | iPad Portrait */
@media only screen and (max-width: 768px) {
	.myFooter {text-align: center;}
	.footWrap {flex-direction: column-reverse;}
	.footLeft, .footMid, .footRight {width: 100%;}
	.footMid {border: 0; padding: 0; margin: 40px 0;}
	.footLeft p {max-width: 100%;}
}

/* iPhone 8 Landscape */
@media only screen and (max-width: 667px) {
	.myHeader {padding: 20px 100px 0px 20px;}
	.logo {width: 150px; height: 126px;}
	.headInfo {margin-top: 10px;}
	.headButton {display: none;}
	.s2Wrap {gap: 80px; flex-direction: column;}
	
	.heroText, .sectionOne, .sectionTwo, .sectionThree, .sectionFour, .sectionFive, .sectionSix, .bannerBG, .psOne, .psTwo, .psThree {padding-left: 20px; padding-right: 20px;}
}

/* Mobile Portrait */
@media only screen and (max-width: 600px) {
	.heroImage {bottom: -30px;}
	.twinVidWrap {flex-direction: column;}
	.tvBox {width: 100%;}
	.tvBox:first-child {margin-bottom: 20px;}
}

/* iPhone SE Landscape */
@media only screen and (max-width: 568px) {
}

/* Smaller Devices */
@media only screen and (max-width: 499px) {
}

/* Even Smaller Devices */
@media only screen and (max-width: 360px) {
}
