/*
Theme Name: Pat Dunning 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, black, white.
*/

/* 	
== DEFAULTS ==*/
html {
    scroll-behavior: smooth; /* Smooth scrolling */
}
* {
    box-sizing: border-box; /* border thickness & padding included inside box */
    margin: 0;
    padding: 0;
}
body {
    color: #fff;
	background-color: #131313;
	font-family: roboto, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: .06em;
}
.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: #333;
}


/* 	
== FONTS ==*/

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 50px 0;
	font-family: "adobe-garamond-pro", serif;
	font-weight: 600;
	line-height: 1.2em;
	letter-spacing: .03em;
	text-transform: uppercase;
}
h1 {
	margin: 0;
    font-size: 2.5em;
}
h2 {
    font-size: 2em;
}
h3 {
    font-size: 1.6em;
}
h4 {
    font-size: 1.3em;
}
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: 1.5em;
    margin: 50px 0;
}
a {
	font-family: "montserrat", sans-serif;
	font-weight: 400;
    text-decoration: none;
    cursor: pointer;
	font-style: normal;
	color: #fff;
    transition: all .4s ease-in-out;
}
a:hover {
	color: #DDD;
}
ul {
    list-style: inside;
    list-style-type: disc;
    padding: 0px 20px;
    font-size: 1em;
    line-height: 1.5em;
    margin: 50px 0;
}
ol {
    list-style: inside;
    list-style-type: decimal;
    padding: 0px 20px;
    font-size: 1em;
    line-height: 1.5em;
    margin: 50px 0;
}
ul ul, ol ol, ul ol, ol ul {
	margin-bottom: 0;
}
li {
    font-size: 1em;
    line-height: 1.5em;
}
em {
	letter-spacing: .01em;
}
.bgImg {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/*
== Buttons ==*/
.buttons {
	padding: 15px 30px;
	margin: 0 0;
	text-align: center;
	display: inline-block;
	font-size: 1.25em;
    letter-spacing: .06em;
	line-height: 1em;
	border-radius: 30px;
	color: #fff;
	background-color: #626262;
	text-transform: uppercase;
    transition: all .4s ease-in-out;
}
.buttons:hover {
	color: #111;
	background-color: #FFF;
}

/* 	
== HEADER ==*/

.site-header {
	width: 100%;
	padding: 20px 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo {
	font-family: adobe-garamond-pro, serif;
	font-weight: 400;
	font-size: 2em;
}

/* 	
== NAVIGATION ==*/

@media screen and (min-width: 1200px) {
	.sfm-navicon-button {display: none;}
}
@media screen and (max-width: 1200px) {
	.navBox, .headerNav {display: none;}
}
/* 1. Container & Main List */
#submenu {
    width: 100%;
    margin: 0 auto;
}
#submenu ul {
    margin: 0;
    padding: 15px 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
}
/* 2. Top Level List Items */
#submenu li {
    position: relative;
    margin: 0;
    padding: 0;
	line-height: 1em;
}
#submenu li a {
    display: block;
    color: #FFF;
    text-decoration: none;
    padding: 10px 15px;
    transition: color .3s ease;
    font-size: 1em;
    letter-spacing: .06em;
}
#submenu li a:hover,
#submenu li:hover > a {
    color: #DDD;
}
/* 3. Sub-Menus (Level 2 Dropdown) */
#submenu li ul {
    position: absolute;
    top: 100%;   
    left: -999em;
    display: block; 
    width: 200px; 
    background: #131313;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 9999;
}
#submenu li ul li a {
    color: #FFF;
}
/* 4. Deep Nesting (Level 3+ Fly-outs) */
#submenu li ul ul {
    top: 0;         
    left: -999em;    
    margin-left: 0;  
}
/* 5. Hover Logic (The Bridge) */
#submenu li:hover > ul {
    left: 0;       
}
#submenu li ul li:hover > ul {
    left: 100%;     
    top: -5px;      
}
/* 6. Sub-Menu Styling */
#submenu li li {
    width: 100%;
}
#submenu li li a {
    padding: 8px 15px;
    font-size: 0.9em;
    line-height: 1.4;
    text-transform: none;
}
/* 7. Hide "Grandchildren" while hovering Parent */
#submenu li:hover ul ul,
#submenu li:hover ul ul ul {
    left: -999em;
}

/* 	
== HOME PAGE ==*/
.hero-slider {
    width: 100%;
    height: 100vh;
	max-height: 780px;
	min-height: 400px;
    position: relative;
    overflow: hidden;
    background: #000;
}
.slider-wrapper {
    width: 100%;
    height: 100%;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out; 
    z-index: 1;
}
.slide.active {
    opacity: 1;
    z-index: 2;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.scroll-down {
	width: 130px;
	height: 70px;
	margin: auto;
	padding-bottom: 1px;
	font-size: 2.5em;
	color: #626262;
	background-color: #131313;
	border-top-left-radius: 65px;
	border-top-right-radius: 65px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10;
}


/* Section 1 */
.section1 {
	width: 100%;
	padding: 100px 20px;
}
.section1 p {
	max-width: 1060px;
	margin: 0 auto 30px auto;
	text-align: center;
	font-size: 1.75em;
	font-family: adobe-garamond-pro, serif;
}
.section1 span {
	color: #626262;
	font-style: italic;
}
/* Section 2 */
.section2 {
	width: 100%;
	display: flex;
	align-items: center;
}
.s2Img {
	width: 100%;
	max-width: 780px;
}
.s2Text {
	width: 100%;
	max-width: 740px;
	padding: 0 20px;
	margin: auto;
}
/* Section 3 */
.section3 {
	width: 100%;
	padding: 90px 20px;
}
.s3Wrap {
	width: 100%;
	max-width: 1800px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.s3Box {
	display: block;
	width: calc(25% - 15px);
	aspect-ratio: 1/1;
	position: relative;
}
.s3Shade {
	text-align: center;
	font-family: adobe-garamond-pro, serif;
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,.1);
    transition: all .4s ease-in-out;
}
.s3Box:hover .s3Shade {
	background-color: rgba(0,0,0,.5);
}
/* Section 4 */
.section4 {
	width: 100%;
}

/* 	
== PAGE TEMPLATES ==*/

.gallery-container {
	width: 100%;
	max-width: 1600px;
	margin: auto;
	padding-top: 30px;
	border-top: 1px solid #fff;
}
.gallery-container .envira-tags-filter-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	margin: 0 0 20px 0;
    padding-left: 10px;
}
.gallery-container .envira-tags-filter-list::before {
    content: "FILTER BY SUBJECT:";
    font-weight: bold;
	font-size: 1.2em;
    margin-right: 10px;
}
/* Ensure the list items play nice with the flex container */
.gallery-container .envira-tags-filter-list li.envira-tags-filter,
.gallery-container .envira-tags-filter-list li.envira-tag-filter {
    display: inline-block; 
    margin: 0 10px;
}

/* 	
== PLUGINS ==*/

/* Force captions to remain visible even during filtering 
.envira-gallery-item .envira-title, 
.envira-gallery-item .envira-caption {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}*/

/* Ensure the link remains clickable 
.envira-gallery-item a.envira-gallery-link {
    pointer-events: auto !important;
    cursor: pointer !important;
}*/

/* 	
== PAGES ==*/

.banner {
    width: 100%;
    height: auto;
}
.banner img {
    width: 100%;
    height: auto;
    display: block;
}
.bannerBG {
	width: 100%;
	height: 380px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.bannerBG h1 {
	text-transform: uppercase;
}
.pageContent {
    max-width: 980px;
	margin: 0 auto;
	text-align: center;
}


/* 	
== FOOTER ==*/

.myFooter {
    width: 100%;
	font-family: montserrat, sans-serif;
}
.myFooter a {
	text-decoration: none;
}
.myFooter a:hover {
	text-decoration: none;
}
.foot-top {
	width: 100%;
	padding: 160px 20px;
	text-align: center;
	background-image: url("images/global/bg-foot.jpg");
}
.btn-foot {
	padding: 30px 60px 28px 60px;
	font-family: adobe-garamond-pro, serif;
	font-size: 1.8em;
	border-radius: 60px;
	color: #fff;
	background-color: #111;
}
.footWrap {
    padding: 60px 70px 40px 70px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.footCol p {
	margin: 0;
}
.footCol ul {
    list-style: none;
    margin: 25px 0 0 0;
	padding: 0;
}
.footCol li {
	display: inline;
	margin: 0 10px 0 0;
}
.footCol .fa-2x {
    font-size: 1em;
	margin-top: 30px;
}
.footCol .fa-inverse {
	color: #111;
}
.fcRight {
	text-align: right;
	min-width: 250px;
	margin-left: 10px;
}
.logo-foot {
	font-size: 1.4em;
}
p.footBase {
	margin: 50px 0 0 0;
	font-size: .8em;
	line-height: 1em;
}

/* 	
== NEWS/BLOG ==*/

.topSpacer {
	width: 100%;
	height: 50px;
}
.thumby-box {
    padding: 0;
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
    min-height: 200px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.texty-box h2 {
    padding: 0;
    margin: 15px 0px 15px 25px;
    text-align: left;
    font-size: 1.5em;
    color: #FFF;
}
.texty-box p {
    font-size: .9em;
    line-height: 1.6em;
    text-align: left;
    letter-spacing: 0.5px;
    margin: 0px 0px 20px 25px;
    color: #FFF;
}
.read-more-wrap {
    margin-left: 25px;
    text-align: left;
}
.read-more-wrap .buttons {
	padding: 15px 20px;
	font-size: 1em;
}
.blog-three {
	float: left;
	width: 30%;
}
.blog-seven {
	float: left;
	width: 70%;
}
.split {
	width: 100%;
	margin: 20px 0;
	border-bottom: 1px solid #fff;
}

/* 	
== 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 ==*/

.container {
    width: 100%;
    margin: 0;
	padding: 130px 20px 80px 20px;
}
.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%;}


/* Custom */
@media only screen and (max-width: 1450px) {
}

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

/* Custom */
@media only screen and (max-width: 1200px) {
	.site-header {padding: 20px;}
}

/* iPad Pro Landscape */
@media only screen and (max-width: 1112px) {
	.footWrap {padding: 60px 20px 40px 20px;}
}

/* iPad & iPad Mini Landscape | iPad Pro Portrait */
@media only screen and (max-width: 1024px) {
}

/* Custom */
@media only screen and (max-width: 960px) {
	.s3Box {width: calc(50% - 10px);}
}

/* Monitor Small */
@media only screen and (max-width: 800px) {
	h1, .heroText h1 {font-size: 2.5em;}
	h2 {font-size: 2em;}
	h3 {font-size: 1.5em;}
	h4 {font-size: 1.25em;}
	h5 {font-size: 1em;}
	h6 {font-size: .8em;}
	
	.section2 {flex-direction: column;}
	.s2Img {margin-bottom: 50px;}
}

/* iPhone 8 Plus Landscape | iPad Portrait */
@media only screen and (max-width: 768px) {
	.section1 p {font-size: 1.5em;}
	.myFooter {text-align: center;}
	.btn-foot {padding: 30px 40px 28px 40px; font-size: 1.2em;}
	.footWrap {flex-direction: column-reverse; justify-content: center; align-items: center;}
	.fcRight {text-align: center; margin: 0 0 30px 0;}
}

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

/* Mobile Portrait */
@media only screen and (max-width: 600px) {
	.s3Box {width: 100%;}
}

/* iPhone SE Landscape */
@media only screen and (max-width: 568px) {
	.site-header {padding: 22px 20px;}
	.logo {font-size: 1.5em;}
}
