/*
Theme Name: Jeffcoat Law LLC 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, orange, white.
*/

/* 	
== DEFAULTS ==*/

* {
    box-sizing: border-box; /* border thickness & padding included inside box */
    margin: 0;
    padding: 0;
}
body {
    color: #111;
	font-family: montserrat, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    text-align: left;
	background-image: url("images/global/bg-main.jpg");
	background-position: center;
	background-attachment: fixed;
}
.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;
}
.skip-link:focus {
	background-color: #f1f1f1;
	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: #2f4963;
}


/* 	
== FONTS ==*/

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 10px 0;
	font-weight: 600;
	font-style: normal;
	line-height: 1em;
	text-transform: capitalize;
	color: #2f4963;
}
h1 {
	margin: 0;
    font-size: 3.5em;
	color: #fff;
}
h2 {
    font-size: 2.5em;
}
h3 {
    font-size: 2em;
}
h4 {
    font-size: 1.5em;
}
h5 {
    font-size: 1.15em;
}
h6 {
    font-size: .8em;
}
.altHead {
	margin-bottom: 10px;
    font-size: 1.4em;
	font-weight: 500;
	color: #d38700 !important;
}
p {
    font-size: 1em;
    line-height: 1.5em;
    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;
    margin: 30px 0;
}
ul {
    list-style-type: disc;
}
ol {
    list-style-type: decimal;
}
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: 10px 15px;
	margin: 10px 0 0 0;
	text-align: center;
	display: inline-block;
	font-size: 1em;
	font-weight: 600;
	text-transform: capitalize;
	color: #FFF;
	background-color: #d38700;
    transition: all .4s ease-in-out;
}
.buttons:hover {
	color: #111;
	background-color: #FFF;
}

/* 	
== HEADER ==*/

.site-header {
	width: 100%;
	padding: 15px 50px 0px 50px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}
.logo {
    width: 335px;
    height: 25px;
	display: inline-block;
    background-image: url("images/global/logo.png");
	background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* 	
== NAVIGATION ==*/

@media screen and (min-width: 1112px) {
	.sfm-navicon-button {display: none;}
}
@media screen and (max-width: 1112px) {
	.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: 10px 0;
	line-height: 1em;
}
#submenu li a {
    display: block;
    color: #FFF;
    text-decoration: none;
    padding: 0px 15px;
    transition: color .3s ease;
    font-size: 1em;
    letter-spacing: .06em;
	border-right: 1px solid #fff;
}
#submenu li:last-child a {
	border: none;
}
#submenu li a:hover,
#submenu li:hover > a {
    color: #d38700;
}
/* 3. Sub-Menus (Level 2 Dropdown) */
#submenu li ul {
    position: absolute;
    top: 100%;   
    left: -999em;
    display: block; 
    width: 200px; 
    background: rgba(42,48,69,.5);
    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%;
	padding: 0;
}
#submenu li li a {
    padding: 8px 15px;
    font-size: 0.9em;
    line-height: 1.4;
    text-transform: none;
	border: none;
}
/* 7. Hide "Grandchildren" while hovering Parent */
#submenu li:hover ul ul,
#submenu li:hover ul ul ul {
    left: -999em;
}

/* 	
== HOME PAGE ==*/
.hero {
	width: 100%;
	height: 720px;
	padding: 0 20px;
	background-image: url("images/home/hero.jpg");
	display: flex;
	align-items: center;
}
.hero-text {
	width: 100%;
	max-width: 1620px;
	margin: auto;
}
.hero-text .buttons {
	margin-top: 50px;
}
/* Section 1 */
.section1 {
	width: 100%;
}
.s1-wrap {
	width: 100%;
	max-width: 1620px;
	margin: -100px auto 0px auto;
	display: flex;
}
.s1-block {
	width: 33.33%;
	padding: 50px;
	color: #fff;
}
.s1-block h2 {
	margin-top: 0;
	font-size: 1.5em;
	color: #fff;
}
.s1-block a {
	color: #d38700;
}
.s1-block a:hover {
	color: #fff;
}
.s1-block .fa-solid {
    font-size: 2em;
}
.sb1 {background-color: #181f32;}
.sb2 {background-color: #2a3045;}
.sb3 {background-color: #21273b;}
/* Section 2 */
.section2 {
	width: 100%;
	padding: 50px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.s2-images {
	height: 830px;
	width: 100%;
	max-width: 900px;
	display: flex;
	gap: 20px;
}
.s2-img1 {
	width: 32%;
	background-image: url("images/home/img-1.jpg");
}
.s2-img2 {
	width: 68%;
	background-image: url("images/home/img-2.jpg");
}
.s2-text {
	width: 100%;
	max-width: 610px;
	margin: auto;
}


/* 	
== 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-shadow: 0 6px 10px rgba(0,0,0,.7);
}
.pageContent {
	max-width: 960px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px 50px;
}

/* 	
== SIDEBAR ==*/

.contact-bar {
	width: 100%;
	padding: 150px 20px;
	background-image: url("images/global/bg-1.jpg");
	color: #fff;
}
.cb-wrap {
	width: 100%;
	max-width: 1350px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.contact-text {
	width: 100%;
	max-width: 500px;
}
.contact-text h2,
.contact-text a {
	color: #fff;
}
.contact-text a:hover,
.contact-text .fa-regular {
	color: #d38700;
}
.contact-form {
	width: 100%;
	max-width: 620px;
}
.contact-form .gform-theme--framework .gfield_list_group_item:before,
.contact-form .gform-theme--framework .gform-field-label,
.contact-form .gform-theme--framework .gfield_description {
	--gform-theme-local-color: #fff;
}
.contact-form .gform-theme--foundation .gform_fields {
	grid-row-gap: 15px;
}
.contact-form .gform-theme--foundation .gfield textarea.medium,
.contact-form input {
    background-color: transparent !important;
    border: 1px solid #fff !important;
	color: #fff !important;
}
.contact-form .gform_button {
	background-color: #d38700 !important;
	border: none !important;
}
.contact-form .gform_button:hover {
	background-color: #000 !important;
}
.contact-form input::placeholder {
	color: #fff !important;
}


/* 	
== FOOTER ==*/

.myFooter {
    width: 100%;
    padding: 50px 20px;
	color: #fff;
	text-align: center;
	background-color: #2f4963;
	font-size: .8em;
}
.myFooter .fa-2x {
    font-size: 1.5em;
    margin-bottom: 30px;
}
.myFooter .fa-inverse {
	color: #2f4963;
}
.myFooter a {
	text-decoration: none;
	color: #fff;
}
.myFooter a:hover {
	text-decoration: none;
	color: #f6951e;
}
.myFooter ul {
    list-style: none;
    margin: 50px 0;
	text-transform: uppercase;
}
.myFooter li {
	display: inline-block;
	padding: 0 20px;
	font-size: 1.1em;
	border-right: 1px solid #f6951e;
	line-height: 1em;
}
.myFooter li:last-child {
	border: none;
}
.myFooter p {
	margin: 0;
	line-height: 1em;
}

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

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

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

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

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

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

/* Monitor Small */
@media only screen and (max-width: 800px) {
	h1 {font-size: 2.5em;}
	h2 {font-size: 1.5em;}
	h3 {font-size: 1.125em;}
	h4 {font-size: 1em;}
	h5 {font-size: .813em;}
	h6 {font-size: .625em;}
	
}

/* iPhone 8 Plus Landscape | iPad Portrait */
@media only screen and (max-width: 768px) {
}

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

/* Mobile Portrait */
@media only screen and (max-width: 600px) {
}

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