/*
Theme Name: SC Needs Help 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, blue, tan.
*/

/* 	
== DEFAULTS ==*/

* {
    box-sizing: border-box; /* border thickness & padding included inside box */
    margin: 0;
    padding: 0;
}
body {
    color: #111;
	font-family: "Helvetica Neue", Helvetica, Arial, "sans-serif";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: .06em;
    text-align: left;
	background-color: #fff;
	background-image: url("images/global/bg-pattern.jpg");
	background-repeat: repeat;
	background-position: center;
}
.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;
}
/* Accessibility: Skip Link */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.skip-link:focus {
	background-color: #f1f1f1; /* Adjust to match Bunnelle branding */
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px;
	position: absolute;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}


/* 	
== 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: #222;
}


/* 	
== FONTS ==*/

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 40px 0;
	font-family: acumin-pro-condensed, sans-serif;
	font-weight: 800;
	line-height: normal;
	text-transform: uppercase;
}
h1 {
    font-size: 3em;
}
h2 {
    font-size: 2.5em;
}
h3 {
    font-size: 2em;
}
h4 {
    font-size: 1.5em;
}
h5 {
    font-size: 1em;
}
h6 {
    font-size: .8em;
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
	font-weight: 500;
}
p {
    font-size: 1em;
    line-height: 2em;
    margin: 10px 0 40px 0;
}
a {
    text-decoration: none;
    cursor: pointer;
	font-style: normal;
    transition: all .4s ease-in-out;
}
a:hover {
}
ul, ol {
    list-style: inside;
    margin: 10px 0 40px 0;
    padding: 0px 20px;
    font-size: 1em;
}
ul {
    list-style-type: disc;
}
ol {
    list-style-type: decimal;
}
li {
    font-size: 1em;
	line-height: normal;
    margin-bottom: 2em;
}
li:last-child {
    margin-bottom: 0;
}
em {
	letter-spacing: .01em;
}
.bgImg {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}


/* 	
== HEADER ==*/

.site-header {
    position: relative;
	width: 100%;
	height: 100px;
	padding-right: 68px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	border-bottom: 5px solid #01212f;
}
.logo {
    width: 160px;
    height: 160px;
	border-radius: 50%;
	box-sizing: border-box; border: 1px solid #07212e;
	display: inline-block;
    background-image: url("images/global/logo.png"), url("images/global/bg-pattern.jpg");
	background-repeat: no-repeat, repeat;
    background-position: center, center;
    background-size: cover, auto;
	position: absolute;
	z-index: 10;
	top: 20px;
	left: 0;
	right: 0;
	margin: auto;
}

/*
== Buttons ==*/
.buttons {
	padding: 8px 15px;
	margin: 0 10px 0 0;
	text-align: center;
	display: inline-block;
	font-family: acumin-pro-condensed, sans-serif;
	font-weight: 500;
	font-size: 1.25em;
	letter-spacing: .12em;
	text-transform: uppercase;
    transition: all .4s ease-in-out;
}
.btn-blue {
	color: #fffced;
	border: 1px solid #fffced;
	background-color: #01212f;
}
.btn-blue:hover {
	color: #01212f;
	border: 1px solid #01212f;
	background-color: #fffced;
}
.btn-white {
	color: #01212f;
	background-color: #fffced;
}
.btn-white:hover {
	color: #fffced;
	background-color: #01212f;
}

/* 	
== HOME PAGE ==*/
.heroVideo {
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
	position: relative;
}
.heroVideo video{
    object-fit: contain;
    width: 100%;
    height: 100%;
    position: absolute;
	z-index: 1;
    top: 0;
    left: 0;
	background-color: #000;
}
.heroShader {
	width: 100%;
	padding: 0 20px;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: rgba(0,0,0,.5);
	z-index: 5;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.heroText {
	text-align: center;
	color: #fffced;
	margin-bottom: 10%;
}
.heroText h1 {
	margin: 20px 0;
    font-size: 6em;
	line-height: 1em;
}
.heroText p {
	margin: 0;
	text-transform: uppercase;
    font-size: 2em;
	letter-spacing: .08em;
	line-height: 1em;
}
.heroText .buttons {
	margin-top: 30px;
}
/* Section 1 */
.section1 {
	width: 100%;
	padding: 120px 20px;
	color: #fffced;
	background-color: #07212e;
	background-image: url("images/global/bg-sc-logo.png"), url("images/global/bg-static.jpg");
	background-repeat: no-repeat, repeat;
	background-position: center, center;
}
.s1-wrap {
	width: 100%;
	max-width: 1600px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
.s1-left {
	width: 50%;
}
.s1-left span,
.s2-headline span{
	font-family: goudy-old-style, serif;
	text-transform: uppercase;
	font-size: 1.6em;
}
.s1-left h2 {
	margin: 10px 0;
	line-height: 1em;
	font-size: 4em;
}
.s1-left h3 {
	margin: 0;
	line-height: 1em;
	font-weight: 400;
	font-size: 3em;
}
.s1-right {
	width: 50%;
}
/* Section 2 */
.section2 {
	width: 100%;
	padding: 130px 20px;
}
.s2-wrap {
	width: 100%;
	max-width: 1650px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.s2-image {
	width: 100%;
	max-width: 510px;
}
.s2-text {
	width: 100%;
	max-width: 670px;
	margin: 0 20px;
}
.s2-headline {
	text-align: center;
}
.s2-txt-wrap {
	width: 100%;
	display: flex;
	align-items: center;
}
.s2-headline h2 {
	margin: 10px 0;
	line-height: 1em;
	font-size: 4.8em;
}
.s2-headline h3 {
	margin: 0;
	line-height: 1em;
	font-weight: 400;
	font-size: 2em;
}
.s2tw-col {
	width: calc(50% - 3px);
}
.s2tw-col p {
	margin: 0;
    font-size: 2em;
    letter-spacing: .08em;
    line-height: 1em;
}
.s2tw-col h2 {
	margin: 0;
    line-height: 1em;
    font-size: 3.8em;
}
.s2tw-col h2 span {
	text-transform: lowercase;
}
.s2tw-col h3 {
	color: #666666;
    font-weight: 600;
	line-height: 1em;
    letter-spacing: .12em;
}
.s2-divide {
	width: 6px;
	height: 420px;
	margin: 0 20px;
	background-image: url("images/home/split.png");
}
.text-right {
	text-align: right;
}
/* Section 3 */
.section3 {
	width: 100%;
	padding: 80px 20px;
	color: #fffced;
	background-color: #07212e;
	background-image: url("images/global/bg-static.jpg");
	background-repeat: repeat;
	background-position: center;
}
.s3-wrap {
	width: 100%;
	max-width: 1800px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.s3-text {
	width: 100%;
	max-width: 570px;
	margin: auto;
}
.s3-text span {
	font-family: goudy-old-style, serif;
	text-transform: uppercase;
	font-size: 1.6em;
}
.s3-text h2 {
	font-size: 4em;
}
.s3-video {
	width: 100%;
	max-width: 1080px;
	margin-left: 20px;
}
/* Section 4 */
.section4 {
	width: 100%;
	padding: 50px 80px;
	position: relative;
}
.section4::before,
.section4::after {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    height: 15px;
    z-index: -1;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 75%);
    filter: blur(3px);
}
.section4::before {
    top: -5px; 
}
.section4::after {
    bottom: -5px;
}
.section4 .gs_logo_area.carousel_nav_pos--left-right-out .swiper-button-prev ,
.section4 .gs_logo_area.carousel_nav_pos--left-right-out .swiper-button-next {
	width: 42px;
	height: 54px;
	background-color: transparent;
    border-radius: 0;
}
.section4 .gs_logo_area.carousel_nav_pos--left-right-out .swiper-button-prev {
	left: -45px;
	background-image:url("images/global/arrow-left.png") !important;
}
.section4 .gs_logo_area.carousel_nav_pos--left-right-out .swiper-button-next {
	right: -45px;
	background-image:url("images/global/arrow-right.png") !important;
}
.section4 .swiper-button-prev svg, 
.section4 .swiper-button-next svg {
    display: none !important;
}
/* Section 5 */
.section5 {
	width: 100%;
	padding: 100px 20px;
	text-align: center;
	color: #fffced;
	background-color: #07212e;
	background-image: url("images/global/bg-static.jpg");
	background-repeat: repeat;
	background-position: center;
}
.section5 span {
	font-family: goudy-old-style, serif;
	text-transform: uppercase;
	font-size: 1.6em;
}
.section5 h2 {
	font-size: 4em;
}

/* 	
== PAGES ==*/

.banner {
    width: 100%;
    height: auto;
	position: relative;
}
.banner img {
    width: 100%;
    height: auto;
    display: block;
}
.bannerBG {
	width: 100%;
	height: 450px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.container {
    width: 100%;
    margin: 0;
	padding: 140px 20px 80px 20px;
}
.pageContent {
    max-width: 1020px;
	margin: 0 auto;
}


/* 	
== FOOTER ==*/

.IG-feed {
	width: 100%;
	text-align: center;
	font-size: 2em;
}
.myFooter {
    width: 100%;
    padding: 50px 0px;
	color: #fffced;
	background-color: #07212e;
	background-image: url("images/global/bg-static.jpg");
	background-repeat: repeat;
	background-position: center;
	text-transform: uppercase;
	font-family: acumin-pro-condensed, sans-serif;
	font-weight: 500;
}
.myFooter a {
	text-decoration: none;
	color: #fffced;
}
.myFooter a:hover {
	text-decoration: none;
	color: #aaa;
}
.logo-wrap {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logoFoot {
    width: 194px;
    height: 194px;
	display: inline-block;
    background-image: url("images/global/logo-foot.png");
	background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.side-line {
	width: calc(50% - 120px);
	height: 25px;
	background-image: url("images/global/foot-line.jpg");
	background-position: center;
	background-repeat: repeat;
}
.foot-wrap {
	width: 100%;
	max-width: 1720px;
	margin: auto;
	padding: 40px 40px 0 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.foot-center {
	text-align: center;
}
.foot-center p {
	margin: 10px 0 0 0;
	line-height: 1em;
	font-size: .8em;
}
.foot-social {
	margin-bottom: 50px;
}
.foot-social .fa-brands {
    font-size: 2em;
    margin: 0 10px;
}
.submenu-foot ul {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 1.25em;
}
.submenu-foot li {
	display: inline;
	padding: 0 10px;
	margin: 0;
}
.foot-sponsor {
	width: 180px;
	height: 190px;
}
.fs1 {background-image: url("images/global/logo-best.png");}
.fs2 {background-image: url("images/global/logo-titos.png");}

/* 	
== 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: .9em;
	line-height: 1.5em;
	text-align: left;
	letter-spacing: 1px;
	margin: 0px 0px 15px 25px;
}
#texty h2 a {
	color: #2d3691;
}
#texty p a {
	color: #444;
	text-decoration: none;
}
.spacer {
	width: 100%;
	height: 30px;
}
.split {
	padding: 0;
	width: 70%;
	height: 2px;
	margin: 30px auto;
	background-color: #DDD;
}
.blog-three {
	float: left;
	width: 30%;
}
.blog-seven {
	float: left;
	width: 70%;
}

/* 	
== 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;
}
.wp-block-separator.is-style-wide {
    margin-bottom: 40px;
}

/* 	
== 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 ==*/

.cent {margin: auto;}
.alpha {float: left;}
.omega {float: right;}
.one {width: 10%;}
.two {width: 20%;}
.three {width: 30%;}
.four {width: 40%;}
.five {width: 50%;}
.six {width: 60%;}
.seven {width: 70%;}
.eight {width: 80%;}
.nine {width: 90%;}
.ten {width: 100%;}
.third {width: 33.333%;}
.two-thirds {width: 66.666%;}
.quarter {width: 25%;}
.three-qtr {width: 75%;}


/* Monitor Medium | iPad Pro Large Landscape */
@media only screen and (max-width: 1366px) {
}

/* iPad Pro Landscape */
@media only screen and (max-width: 1112px) {
}

/* iPad & iPad Mini Landscape | iPad Pro Portrait */
@media only screen and (max-width: 1024px) {
	.s2-wrap {flex-wrap: wrap;}
	.s2-text {order: 1; margin: 0 auto 30px auto;}
	.s2-image {order: 2; width: 50%;}
}

/* Custom */
@media only screen and (max-width: 960px) {
	.heroVideo {padding-bottom: 0; height: 550px; }
    .heroVideo video {object-fit: cover; height: 100%; width: 100%;}
	.heroText {margin-bottom: 0;}
	.heroShader {align-items: center;}
	.s1-wrap {flex-direction: column;}
	.s1-left {width: 100%;}
	.s3-wrap {flex-direction: column;}
	.s3-video {margin: 50px 0 0 0;}
}

/* Monitor Small */
@media only screen and (max-width: 800px) {
	h1 {font-size: 2em;}
	h2 {font-size: 1.5em;}
	h3 {font-size: 1.125em;}
	h4 {font-size: 1em;}
	h5 {font-size: .813em;}
	h6 {font-size: .625em;}
	
	.heroText h1 {font-size: 3.5em;}
	.heroText p {font-size: 1.25em;}
	.s1-left h2 {font-size: 3em;}
	.s1-left span, .s2-headline span {font-size: 1.2em;}
	.s1-left h3 {font-size: 2em;}
	.s2-headline h2 {font-size: 3em;}
	.s2-headline h3 {font-size: 1.5em;}
	.s2tw-col h2 {font-size: 2em;}
	.s2tw-col p {font-size: 1.2em;}
}

/* iPhone 8 Plus Landscape | iPad Portrait */
@media only screen and (max-width: 768px) {
}

/* iPhone 8 Landscape */
@media only screen and (max-width: 667px) {
	.logo {left: 20px; right: unset; margin: 0;}
	.buttons {font-size: 1em;}
}

/* Mobile Portrait */
@media only screen and (max-width: 600px) {
}

/* iPhone SE Landscape */
@media only screen and (max-width: 568px) {
}
