/*
	Theme Name: Emery Reddy - 2022
  	Description: Custom theme for Emery Reddy.
  	Author: Emery Reddy
	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Base Styles
- Typography
- Links
- Images
- Buttons
- Forms
- Lists
- Spacing & alignment
- Utilities
- Header
- Footer
- Homepage
- Template-specific styles
- Media Query 320px
- Media Query 360px
- Media Query 600px
- Media Query 768px MAYBE NOT
- Media Query 1024px
- Media Query 1280px
- Media Query 1920px
*/


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */

*, *:after, *:before {
  /* font-smoothing: antialiased; */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  box-sizing: border-box; /* inherit used to be here */
  text-rendering: optimizeLegibility;
}

/* * {
  margin: 0;
  padding: 0;
  max-height: auto;
} */

ul, ol, dl, p, h1, h2, h3, h4, h5, h6, address, form, table, blockquote, applet, embed, object, iframe, frameset {
  margin: 0 0 1em;
}

html, body, div, span, applet, embed, object, iframe, frameset, p, q, blockquote, sub, sup, a, abbr, acronym, font, img, small, center, h1, h2, h3, h4, h5, h6, b, strong, big, u, ins, i, cite, em, var, dfn, address, s, strike, del, dl, dt, dd, ol, ul, li, pre, code, kbd, samp, tt, fieldset, legend, form, label, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  border: 0;
  background: none;
}

html {
  box-sizing: border-box;
}

body {
  background: #fff;
  min-width: 320px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: none;
  margin: 0;
  color: #000;
  font-size: 17px;
  font-family: 'Fira Sans', sans-serif;
  line-height: 1.6;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

.container {
  width: 1280px;
  max-width: 95%;
  max-width: 95vw;
  margin: 0 auto;
  padding: 0 15px;
}

.container:after, #header:after, .header-holder:after {
  content: '';
  display: block;
  clear: both;
}

#wrapper {
  overflow: hidden;
  width: 100%;
}


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fira Sans', sans-serif;
  font-weight: 600;
  line-height: 1.1;
  text-transform: capitalize;
  margin: 0 0 22px;
}

h1 {
  font-size: 2.2em;
  color: #0a406b;
}

h2 {
  font-size: 2em;
  color: #0a406b;
}

h3 {
  font-size: 1.8em;
  line-height: 1.2;
  color: #0a406b;
}

h4 {
  font-size: 1.6em;
  line-height: 1.2;
  color: #0a406b;
}

h5 {
  font-size: 1.4em;
  line-height: 1.4;
  color: #0a406b;
}

h6 {
  font-size: 1.2em;
  line-height: 1.4;
  color: #0a406b;
}

i, cite, em, var, dfn, address {
  font-style: normal;
}

u, ins {
  text-decoration: underline;
}

s, strike, del {
  text-decoration: line-through;
}

blockquote, blockquote:before, blockquote:after, q, q:before, q:after {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
}

blockquote:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 28px;
}

address {
  margin: 0 0 25px;
}

blockquote {
  padding: 0;
  position: relative;
  display: block;
  margin: 0 0 5px;
}

blockquote q {
  color: #838383;
  display: block;
  width: 100%;
  margin: 0 0 31px;
  padding: 15px 0;
  position: relative;
}

blockquote q:before {
  content: "\f10d";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #ebebeb;
  font-size: 30px;
  position: absolute;
  right: 24px;
  top: -35px;
}

blockquote cite {
  font-style: normal;
  color: #8c8a8a;
  font-size: 15px;
  display: block;
  margin: 0 0 15px;
  text-align: center;
  text-transform: uppercase;
}

pre {
  max-width: 100%;
  overflow: auto;
}

sub, sup {
  font-size: 20px;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.9em;
}

sub {
  bottom: -0.25em;
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */

a {
  text-decoration: none;
  color: #53940d;
  -moz-transition: all 0.25s linear;
  -webkit-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
  outline: none !important;
  font-weight: 600;
}

a:hover {
  color: #53940d;
  text-decoration: none;
}

a:focus {
  text-decoration: none;
  outline: none !important;
}

a:active {
  background-color: transparent;
}

/* Images
–––––––––––––––––––––––––––––––––––––––––––––––––– */

img {
  border-style: none;
  display: block;
}


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.btn {
  color: #fff;
  display: inline-block;
  padding: 7px 13px;
  margin: 0 0 10px;
  background: #6FB429;
  text-align: center;
  position: relative;
  border-radius: 0px;
  font-size: 1.4em;
}

.btn:hover {
  background: #5D5D5D;
  color: #fff;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button .fa {
  font-size: 24px;
  display: inline-block;
  vertical-align: middle;
}

button:hover, input[type="submit"]:hover {
  background-color: #317698;
}

.button-orange {
  background-color: #53940d;
  border: solid 2px #53940d;
  border-radius: 30px;
  color: white;
  display: inline-block;
  font-family: inherit;
  font-size: 1.3em;
  font-weight: 600;
  height: auto;
  margin: 4px 2px;
  min-width: 10px;
  padding: 0px 12px;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
}

.button-orange:hover {
  background-color: #fff;
  border: solid 2px;
  border-radius: 30px;
  color: #53940d;
}

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */

form, fieldset {
  margin: 0;
  padding: 0;
  border-style: none;
}

input, textarea, select {
  font: 100% Arial, Helvetica, sans-serif;
  vertical-align: middle;
  color: #b6b6b6;
}

input[type=text], input[type=search], input[type=email], input[type=password], input[type=file], input[type=submit], textarea, input[type=tel] {
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  display: none;
  border-radius: 0;
  -webkit-border-radius: 0;
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
}

input[type="text"], input[type="email"], input[type="date"], input[type="search"], input[type="password"], input[type="tel"], .searchform input[type="text"], input.search, .comment-form textarea, .comment-form input[type="text"], .search-form input[type="search"], input[type="email"], .quote input[type="text"], input.search, .quote-form textarea, .quote-form input[type="text"], .quote-form input[type="search"], input[type="email"], textarea {
  font-size: 18px;
  width: 100%;
  border: 1px solid #d5d5d5;
  color: #000;
  padding: 0 15px;
  background: #fff;
  display: inline-block;
  vertical-align: middle;
  outline: none;
  margin: 0 0 15px;
  height: 50px;
  font-weight: bold;
}

input[type="date"] {
  color: #8c8c8c !important;
}

.label {
  color: #838383;
  display: block;
  margin: 0 0 15px;
  font-size: 100%;
  text-align: left;
}

textarea {
  resize: none;
  height: 180px;
  overflow: auto;
  padding: 15px 15px;
}

/* Input placeholder styles/colors */
::-webkit-input-placeholder {
  color: #0a406b;
  font-family: 'Fira Sans', sans-serif;
}

:-moz-placeholder {
  color: #0a406b;
  font-family: 'Fira Sans', sans-serif;
}

::-moz-placeholder {
  color: #0a406b;
  font-family: 'Fira Sans', sans-serif;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #0a406b;
  font-family: 'Fira Sans', sans-serif;
}

/* WPCF7 Forms */
div.wpcf7-mail-sent-ok:before,div.wpcf7-validation-errors:before {
  font: 26px/30px FontAwesome;
  margin-right: 16px;
  vertical-align: middle;
}
div.wpcf7-mail-sent-ok:before {
  content:'\f00c';
}
div.wpcf7-validation-errors:before {
  content:'\f057';
}
.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
  color: #D8000C;
  background-color: #FFBABA;
  border: 0;
  padding: 10px;
}
.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  color: #4F8A10;
  background-color: #DFF2BF;
  border: 0;
  padding: 10px;
}

/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */

ul {
  margin-left: 0;
}

ul, ol {
  margin: 0;
  padding: 0; /* was 0 0 0 3em */
}

ul ul, ul ol, ol ul, ol ol {
  padding-left: 2em;
  margin: 0;
}

ul {
  list-style: none;
}

ul>li {
  list-style-type: none;
}

dl dt {
  float: left;
  clear: left;
  padding-right: 4px;
  font-weight: bold;
}

/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */

table, caption, tbody, tfoot, thead, tr, th, td {
  border-collapse: collapse;
  border-spacing: 0;
}

th, td {
  border: 1px solid #dfe3e3;
  padding: 3px 7px;
  text-align: left;
  vertical-align: top;
}

th {
  border-color: #999;
  text-align: center;
  vertical-align: middle;
}


/* Spacing & alignment
–––––––––––––––––––––––––––––––––––––––––––––––––– */

main .body-horizontal-rule {
  max-width: 95%;
  max-width: 95vw;
  margin: 0 auto;
}

small {
  display: inline-block;
}

div.aligncenter {
  margin: 0 auto 14px;
}

img.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignleft {
  float: left;
  margin: 0 40px 0 0;
}

.alignright {
  float: right;
  margin: 0 0 0 40px;
}

.alignCenterButton {
  text-align: center;
  margin: 30px;
}


/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Hides recaptcha badge, need to show Google Privacy Policy and TOU somewhere */
.grecaptcha-badge { visibility: hidden; }

.visuallyhidden:not(:focus):not(:active) {
  position: absolute;

  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;

  white-space: nowrap;

  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}


/* Header
–––––––––––––––––––––––––––––––––––––––––––––––––– */

body.home #breadcrumbs {
	display: none;
}

.breadcrumbs {
  display: none;
  margin: -10px auto 1em auto;
  max-width: 100vw;
  padding-left: 2em;
  width: 1280px;
}

.breadcrumbs p#breadcrumbs {
  color: #0a406b;
  font-size: .9em;
  margin-bottom: 0;
}

#breadcrumbs span {
	position: relative;
}

#breadcrumbs span span a {
  color: inherit;
  font-weight: 400 !important;
}

.call-cta p, .call-cta a {          /* Call for Free Analysis banner at top */
  color: #FFFFFF;
  font-family: 'Fira Sans', sans-serif;
  font-size: .9em;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}

/* #banner.container {
  background: #0a406b url('https://emeryreddydev.wpengine.com/wp-content/themes/emeryreddy/assets/images/ER_2020_Covid_Banner_Mobile.jpg') no-repeat center;
  background-size: cover;
  font-size: .9em;
  padding: 10px 0;
} */

header .container {
  max-width: 100vw;
}

.header-nav .areas-served {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: right;
  float: right;
}

.header-nav .areas-served ul {
  display: block;
  text-align: center;
}

.header-nav .areas-served ul li {
  color: #9aafc2;
  margin-right: 2px;
  font-size: .65em;
  float: none;
  display: inline-block;
}

.header-nav .areas-served ul li:last-child {
  margin-right: 0;
}

.header-nav .areas-served ul li:after {
  content: '|';
  color: #9aafc2;
  margin-left: 2px;
}

.header-nav .areas-served ul li:last-child:after {
  content: none;
  margin-left: none;
}

.header-nav a.button-orange {
  color: #fff;
  font-size: .73em;
  font-weight: 600;
  padding: 4px 10px !important;
  text-decoration: none;
}

.header-nav a.button-orange:hover {
  background-color: #fff;
  border: solid 2px;
  border-radius: 30px;
  color: #53940d;
}

.header-nav .logo {
  float: left;
  height: auto;
}

.header-nav .logo img {
  margin: 0px auto;
  display: inline-block;
  width: 70px;
}

.header-nav {
  background: #fff;
  padding: 58px 0 10px 0;
}

.header-nav a {
  text-decoration: underline;
  color: inherit;
  font-weight: normal;
}

.header-nav .nav-right {
  text-align: right;
}

.header-nav .tagline {
  margin: 0;
}

.header-nav .tagline h3, .header-nav .tagline p.cstm-txt {
  text-transform: none;
  font-family: 'Fira Sans', sans-serif;
  color: #0a406b;
  font-weight: 600;
  font-size: .65em;
  margin-bottom: 0px;
}

.header-nav .watch-tutorials {
  color: #0a406b;
  display: none;
  float: left;
  font-family: inherit;
  margin: 8px 0 0 5px;
}

.header-nav .watch-tutorials a {
  font-size: .75em;
  font-weight: 600;
  text-decoration: none;
}

.header-top {
  background: #53940d;
  padding: 12px 0;
  position: fixed;
  z-index: 99999;
}

.header-top a {
/*   text-decoration: underline; */
  color: inherit;
}

.header-top p {
  margin-bottom: 0 !important;
}

/* Navigation menu for desktop view */
.MainNavigation .container {
  max-width: 100vw;
}

.menu-header-menu-container ul {
  margin: 0 0 0px;
  padding: 0px;
  display: inline-block;
}

.menu-header-menu-container ul li {
  float: none;
  display: inline-block;
  padding: 0 0 0 20px;
  position: relative;
}

.menu-header-menu-container ul li a {
  color: #c2c2c2;
  font-size: 14px;
  font-weight: 300;
  transition: all 0.2s ease-in-out;
}

.menu-header-menu-container ul li a:hover {
  color: #0a406b;
}

.menu-header-menu-container ul li:after {
  position: absolute;
  content: "";
  background: #4d6c8d;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  left: 9px;
}

.menu-header-menu-container ul li:first-child:after {
  display: none;
}

.menu-main-menu-container {
  align-items: center;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: stretch;
  margin: 10px 0 0 10px;
}

#menu-main-menu {
  z-index: 1000;
  display: flex;
  align-items: center;
  font-size: .8em;
  justify-content: stretch;
  padding: 0;
}

#menu-main-menu>li {
  flex: 1;
  position: relative;
}

#menu-main-menu>li>a:hover {
  background-color: #0a406b;
  color: #fff;
}

#menu-main-menu>li>a {
  display: block;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1;
  padding: 12px 8px;
  text-decoration: none;
  text-transform: capitalize;
  white-space: nowrap;
}

#menu-main-menu li > ul.sub-menu {
  display: none;
  position: absolute;
  left: 50%;
  z-index: 100;
  bottom: 0px;
  padding: 10px 0;
  background-color: #fff;
  transform: translate3d(-50%,100%,0);
  width: 300px;
  -webkit-box-shadow: 3px 3px 3px 2px rgba(0, 0, 0, 0.4);  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
  -moz-box-shadow:    3px 3px 3px 2px rgba(0, 0, 0, 0.4);  /* Firefox 3.5 - 3.6 */
  box-shadow:         3px 3px 3px 2px rgba(0, 0, 0, 0.4);  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}

#menu-main-menu li > ul.sub-menu > .menu-item-has-children:hover > a:after {
    content: "►";
    padding-left: 10px;
}

#menu-main-menu li > ul.sub-menu li > ul.sub-menu {
  bottom: 100%;
  left: 150%;
}

#menu-main-menu>li.menu-item-6957 .sub-menu {
  height: 461px;
  width: 180px;
}

#menu-main-menu>li.menu-item-6957 .sub-menu .sub-menu {
  height: 461px;
}

#menu-main-menu>li.menu-item-6957 .sub-menu li {
  width: 100%;
}

#menu-main-menu>li.menu-item-7628 .sub-menu {
  width: 600px;
}

#menu-main-menu>li.menu-item-7628 .sub-menu li {
  width: 50%;
}

#menu-main-menu li:hover>ul.sub-menu {
  display: flex;
  flex-wrap: wrap;
}

#menu-main-menu li.menu-item-6957:hover > ul.sub-menu,
#menu-main-menu li.menu-item-6957:hover > ul.sub-menu > li:hover > ul.sub-menu {
  display: flex;
  flex-direction: column;
}

#menu-main-menu li a {
  color: #0a406b;
}

#menu-main-menu li ul.sub-menu li {
  display: block;
  width: 100%;
}

#menu-main-menu li ul.sub-menu li a {
  color: #0a406b;
  display: block;
  font-size: .8em !important;
  font-weight: 600 !important;
  padding: 5px 20px;
  text-decoration: none !important;
}

#menu-main-menu li > ul.sub-menu li:hover a {
  color: #53940d;
}

#menu-main-menu li > ul.sub-menu li:hover > ul.sub-menu li a {
  color: #0a406b;
}

#menu-main-menu li > ul.sub-menu li:hover > ul.sub-menu li a:hover {
  color: #53940d;
}

/*.nav-contact-links {
  float: right;
  padding: 20px 0px;
}

.nav-contact-link ul {
  margin: 0px;
  padding: 0px;
}

.nav-links {
  text-align: center;
}

.nav-links a, .nav-links span {
  display: inline-block;
  vertical-align: top;
  margin: 0 20px 3px;
  padding: 8px 13px;
  border: 1px solid #317698;
  color: #666666;
  border-radius: 0px;
}

.nav-links .current, .nav-links a:hover {
  color: #fff;
  background: #ad975d;
  border-color: #454545;
}

.nav-links .dots {
  border: 0;
  padding: 0 13px;
} */

.navigation {
  width: calc(100% - 117px);
  margin-bottom: 0;
}

.navigation .next {
  float: left;
}

.navigation .prev {
  float: right;
}

/* .post-navigation .nav-links .nav-title .icon-arrow-left, .post-navigation .nav-links .nav-title .icon-arrow-right {
  display: none;
} */

/* Search bar and toggle functionality */
.fa-search {
	position: relative;
	color: #0a406b;
	top: -1.4em;
}

.fa-times{
	position: relative;
	color: #0a406b;
	top: -1.4em;
}
.new-carousel .MainNavigation {
  max-height: 54px;
  background: rgba(256, 256, 256, .8);
}

/* #search-toggle{
	position: relative;
  height: auto;
  margin-top: 10px;
} */

#search-toggle #search-button{
	left: 95.5%;
	cursor: pointer;
}

#search-button-on{
	display: none;
	left: 6%;
}

#search-toggle form{
  display: none;
  left: 10%;
  margin: 10px 0 8px 0;
	position: relative;
	width: 90%;
}

#search-toggle form input[type="search"]{
	background: transparent;
	border: none;
  color: #0a406b;
  height: 1.7em;
  margin: 0;
  position: relative;
	top: 2px;
}

.search-form .search-submit {
  width: 200px;
  background: #ad975d;
  color: #fff;
}

.search-form .search-submit .icon-search {
  display: none;
}

.searchform input[type="submit"], .comment-form input[type="submit"], button, input[type="submit"] {
  margin: 0 0 15px;
  cursor: pointer;
  border: 0;
  font-size: 18px;
  color: #fff;
  display: inline-block;
  vertical-align: top;
  padding: 0 13px;
  height: 57px;
  line-height: 1;
  background: #0a406b;
  min-width: 198px;
  text-transform: uppercase;
  text-align: center;
  -moz-transition: all 0.25s linear;
  -webkit-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

/* Footer
–––––––––––––––––––––––––––––––––––––––––––––––––– */

footer {
  background: #fff;
  /* padding: 60px 0px; */
  color: #0a406b;
  text-align: center;
  /* border-top: 4px solid #ad975d; */
}

.column-title {
  color: #0a406b;
  margin: 17px 0;
  text-decoration: underline;
}

.column-title a {
  color: #0a406b;
}

.contact-desktop {
  display: none;
  margin-top: 1em;
}

footer .container, .contact-page-content .container {
  max-width: 100%;
  padding: 0;
  text-align: center;
}

.contact-desktop ul li.address-orange a {
  color: #53940d;
  line-height: 1.2;
  font-weight: 500;
  text-decoration: underline;
}

.contact-desktop ul li.telephone-blue a {
  color: #0a406b;
  font-size: 1.3em;
  font-weight: 700;
}

.contact-desktop a.button-orange {
  font-size: 1.8em;
  padding: 12px 17px;
}

.contact-desktop .free-case-analysis {
  color: #0a406b;
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: .8em;
}

.mobile .free-case-analysis {
  color: #0a406b;
  margin-bottom: 1em;
}

.contact-desktop .social-media ul {
  padding: 0 !important;
  margin: 1em 0;
}

.contact-desktop .social-media ul li {
  display: inline-block;
  margin: 0 8px;
  vertical-align: middle;
}

.contact-desktop .social-media ul li a {
  color: #9aafc2;
  font-size: 2em;
}

footer h4, .contact-page-content h4 {
  color: #0a406b;
  font-family: 'Fira Sans', sans-serif;
  font-size: 1.4em;
  margin-top: 0;
  text-transform: capitalize;
}

.responsive-map {
  height: 0;
  margin-bottom: 1em;
  overflow: hidden;
  padding-bottom: 75%;
  position: relative;
}

.responsive-map iframe {
  height: 100%;
  left: 0;
  min-height: 300px;
  min-width: 300px;
  position: absolute;
  top: 0;
  width: 100%;
}

.separator-desktop {
  display: none;
  font-size: inherit;
}

footer .widescreen-1200, .contact-page-content .widescreen-1200 {
  display: none;
}

#text-6 {
  margin: 1em 0 0 0;
}

#text-6 h3 {
  color: #0a406b;
  font-family: 'Fira Sans', sans-serif;
  font-size: .8em;
  margin-bottom: 0;
  text-transform: capitalize;
}

#text-7 {
  color: #9aafc2;
  margin: auto;
  width: 75vw;
}

#text-7 a {
  color: #9aafc2;
  font-weight: normal;
  text-decoration: underline;
}

/* #text-7 .separator-desktop{
  font-size: .8em;
} */

#text-7 ul li {
  display: inline-block;
  font-size: .77em;
  margin-right: 4px;
}

#text-7 ul li:after {
  color: #9aafc2;
  content: '|';
  margin-left: 4px;
}

#text-7 ul li:last-child {
  margin-right: 0;
}

#text-7 ul li:last-child:after {
  content: none;
  margin-left: none;
}

#text-8 {
  background-color: #0a406b;
  color: #fff;
  margin-top: .7em;
  padding: .65em 1em;
  text-align: center;
}

#text-8 a {
  color: #fff;
  font-size: .7em;
  font-weight: normal;
  text-decoration: none;
}

#text-8 .separator-desktop {
  font-size: .7em;
}

#text-8 ul li {
  display: inline-block;
  margin-right: 4px;
}

#text-8 ul li:after {
  content: '|';
  color: #fff;
  font-size: .7em;
  margin-left: 4px;
}

#text-8 ul li:last-child {
  margin-right: 0;
}

#text-8 li:last-child:after {
  content: none;
  margin-left: none;
}

.mobile ul li.address-orange a {
  color: #53940d;
  font-weight: 500;
  text-decoration: underline;
}

.mobile ul li.telephone-blue a {
  color: #0a406b;
  font-size: 1.2em;
  font-weight: 700;
}

.mobile ul.social {
  padding: 0 !important;
  margin: 0 0 1em 0;
}

.mobile ul.social li {
  display: inline-block;
  margin: 0 8px;
  vertical-align: middle;
}

.mobile ul.social li a {
  color: #9aafc2;
  font-size: 2em;
}

#text-4 { background-color: #fff } /* Widgets - whitespace between services box and contact form */
#text-28 { background-color: #fff } /* Widgets - whitespace between services box and contactenos form */

.contact-form, #text-5 {
  background-color: #eff3f6;
  padding: 1em 1em 0 1em;
  margin: auto;
}

.contact-form h2, #text-5 h2 {
  font-size: 1.4em;
}

.contact-form a, #text-5 a {
  color: #0a406b;
  text-decoration: underline;
}

footer .widget, .contact-page-content .widget {
  margin-bottom: 0;
}

footer .widget-title, .contact-page-content .widget-title {
  display: none;
}

/* Let's Talk contact form. */
footer .flex-grid, .contact-page-content .flex-grid {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}

.contact-form .column, #text-5 .column {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 1em;
}

.contact-form .column-2, #text-5 .column-2 {
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
  padding: 1em;
}

.contact-form select, #text-5 select {
  font-size: 18px;
  width: 100%;
  border: 1px solid #d5d5d5;
  padding: 0 15px;
  background: #fff;
  display: inline-block;
  vertical-align: middle;
  outline: none;
  margin: 0 0 15px;
  height: 50px;
  font-weight: bold;
  color: #0a406b;
  font-family: 'Fira Sans', sans-serif;
}

.contact-form select:focus, #text-5 select:focus {
  color: #000;
}

.contact-form .send-message, #text-5 .send-message {
  margin: 0 auto;
}

.contact-form .send-message .button-blue, #text-5 .send-message .button-blue {
  margin: 1rem auto 0 auto !important;
}


/* Homepage
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Hero video */
.hero .container {
  max-width: 100vw;
  padding: 0;
}

.hero-video, .hero-img {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  height: 0;
  max-width: 100%;
  margin-bottom: 18px;
}

.hero-video iframe {
  position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	background: transparent;
}

.hero-video #placeholder img, .hero-video .placeholder img, .hero-img img {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

.hero-video #placeholder img:hover {
  cursor: pointer;
  opacity: .95;
  transition: opacity .3s ease-in-out;
  -moz-transition: opacity .3s ease-in-out;
  -webkit-transition: opacity .3s ease-in-out;
}

/* Headlines */
.headlines {
  color: #0a406b;
  margin: auto;
  max-width: 80vw;
  text-align: center;
}

.headlines h1 {
  font-family: 'Fira Sans', sans-serif;
  font-size: 1.4em;
  margin: .5em 0 0 0;
  text-transform: capitalize;
}

.headlines h1.home {
  font-family: 'Fira Sans', sans-serif;
  font-size: 1em;
  margin: .5em 0 0 0;
  text-transform: capitalize;
}

.headlines h2 {
  font-family: 'Fira Sans', sans-serif;
  font-size: 1.4em;
  margin: .5em 0 0 0;
  text-transform: capitalize;
}

.headlines h2.home {
  font-family: 'Fira Sans', sans-serif;
  font-weight: 400;
  font-size: .8em;
  margin: 8px 0 18px 0;
  text-transform: capitalize;
}

.headlines .call-free-analysis {
  margin: 1em 0 !important;
}

/*  Testimonial box */
.testimonial .container {
  background-color: #0a406b;
  color: #fff;
  padding: 1.5em 1.4em;
  max-width: 100%;
}

.testimonial h2 {
  color: #fff;
}

.testimonial p {
  font-family: 'PT Serif', serif;
  font-size: .9em;
  font-style: italic;
  margin: .5em 0 0 0;
  text-align: center;
}

button.owl-prev, button.owl-next {
  min-width: 30px !important;
  outline: none !important;
}

button.owl-dot {
  min-width: 4px !important;
  outline: none !important;
  height: auto !important;
}

/* #slider_11339 .owl-dots {
  bottom: -16px !important;
} */

/* .testimonial .sa_owl_theme .owl-nav .owl-prev {
  left: 0px !important;
}

.testimonial .sa_owl_theme .owl-nav .owl-next {
  right: 0px !important;
} */

/* Read more... link on homepage */
main p.read-more {
  margin: 1em 0 0 0;
  font-size: .9em;
  font-style: normal;
  font-family:'Fira Sans', sans-serif;
  text-align: center;
}

.testimonial h2, .awards h2, .as-seen-on h2, .latest-news h2 {
  font-size: 1.4em;
  text-align: center;
}

h2.practice-areas, h2.practice-areas a {
	color: #0a406b;
	font-size: 24px;
	text-align: center;
	text-decoration: underline;
}

.testimonial p, .awards p {
  text-align: center;
}

/* Awards, As Seen On, and Latest News sections */
.awards, .as-seen-on, .latest-news {
  color: #0a406b;
  margin-top: 2em;
}

.awards h2, .as-seen-on h2 {
  margin-bottom: .1em;
}

.awards h5, .as-seen-on h5 {
  font-size: .8em;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.awards h6 {
  font-size: 1em;
  line-height: 1;
  margin-bottom: 0;
  padding: 0 5px;
  text-align: center;
}

.awards p {
  font-size: .8em;
  line-height: 1;
  margin-bottom: 0;
  padding: 0 5px;
}

.awards .flex-grid {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}

.awards .column {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 1em;
  padding: 0;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

.awards .column img {
  height: auto;
  margin: 1em auto;
  max-width: 70%;
}

.awards .column span.years {
  color: #9aafc2;
  font-size: 1em;
  line-height: 1 !important;
  margin: auto auto 1em auto;
}

.latest-news .flex-grid {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  text-align: center; /* Centering p.blog-meta text on desktop view */
}

.latest-news .column {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 10px;
}

.latest-news h6 {
  line-height: 1;
}

.latest-news h6 a {
  color: #0a406b;
  font-size: .8em;
  font-weight: 400;
  margin: 1em 0;
  text-decoration: underline;
}

.latest-news {
  text-align: left;
}

.thumbnail-img img {
  display: block !important;
  height: auto !important;
  margin: 0 auto;
  max-width: 100% !important;
}

p.blog-meta {
  color:#9aafc2;
  font-family: 'PT Serif, serif';
  font-size: .75em;
  font-style: italic;
  line-height: 1.5;
}

/* CATEGORY pages */
.category-hero .container {
  max-width: 100%;
  padding: 0;
}

.category-hero img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

.category-hero p.quote {
  color: #fff;
  font-family: 'PT Serif', serif;
  font-size: .6em;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0;
  text-align: center;
}

.category-hero .flex-grid {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
}

.category-hero .left-column {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  flex-basis: 62.5%;
}

.category-hero .right-column {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  flex-basis: 37.5%;
  flex-direction: column;
  background-color: #0a406b;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.category-hero .right-column img {
  display: none;
  max-width: 180px;
}

/* NEW Category Headline Buttons */
.buttons {
  margin-bottom: 18px;
}

.buttons.secondary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-left: -4px;
  margin-right: -4px;
  margin-bottom: 18px;
}

.buttons > a.button-orange {
  font-size: .7em;
}

.buttons > a.button-orange.secondary {
  flex: 0 30%;
  font-size: .7em;
  line-height: 1.1;
  margin: 4px;
}


.buttons > a.button-orange.secondary {
  font-size: .5em;
  padding: 4px;
}

@media screen and ( min-width: 360px ) {
  .buttons > a.button-orange {
	font-size: .9em;
  }
}

@media screen and ( min-width: 500px ) {
  .buttons > a.button-orange {
	font-size: 1.3em;
  }
  .buttons > a.button-orange.secondary {
    font-size: .6em;
  }
}

@media screen and ( min-width: 900px ) {
/*   .buttons > a.button-orange.secondary {
	flex: 1;
  } */

  .buttons > a.button-orange.secondary {
    font-size: .8em;
  }
}

@media screen and ( min-width: 1200px ) {
  .buttons > a.button-orange.secondary {
    font-size: .9em;
  }
}

/* NEW Category Hero Container */
.category-hero-new .container {
  max-width: 100%;
  padding: 0;
}

.category-hero-new img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

.category-hero-new p.quote {
  color: #fff;
  font-family: 'PT Serif', serif;
  font-size: .6em;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0;
  text-align: center;
}

.category-hero-new .flex-grid {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
}

.category-hero-new .left-column {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  flex-basis: 62.5%;
}

.category-hero-new .right-column {
  display: flex;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  flex-basis: 37.5%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #0a406b;
  max-width: 37.5%;
  padding: 1em;
}

/* Category Services Box */
.category-services .container  {
  background-color: #eff3f6;
  color: #0a406b;
  margin-top: 1em;
  max-width: 100%;
  padding: 2em 1em;
}

.category-services h2 {
  margin-bottom: 0;
  text-align: center;
}

.category-services p {
  font-size: 1.2em;
  text-align: center;
}

.category-services .flex-grid {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}

.category-services .column {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 8px;
  text-align: left;
}

.category-services ul {
  padding: 0;
}

.category-services ul li {
  line-height: 1;
  margin-bottom: .7em;
}

.category-services ul li a {
  color: #0a406b;
  font-size: .9em;
  font-weight: 600;
}

.category-services .inv {
  display: none;
}

/* Category Services dropdown CSS */
.category-services select {
  display: block;
  padding: 10px 35px 10px 13px !important;
  max-width: 100%;
  height: auto !important;
  border: none;
  outline: 0px;
  background: url("https://i.imgur.com/G1lrvga.png") right center no-repeat;
  color: #0a406b;
  font-family: 'Fira Sans', sans-serif;
  font-size: 1.2em;
  line-height: 1.1 !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.category-services select option { /* select.select_box option */
  padding: 0 4px;
}

select::-ms-expand { /* for IE and Edge */
    display: none;
}

select:disabled::-ms-expand {
    background: #f60;
}

/* SUBCATEGORY pages */
.subcategory-page .logo-quote {
  display: none;
  float: right;
  min-height: 442px;
  width: 37.5%;
}

.subcategory-page .page-content {
  width: 100%;
}

.subcategory-page p.quote {
  color: #fff;
  font-family: 'PT Serif', serif;
  font-size: 1em;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0;
  padding: 0 1em;
  text-align: center;
}

.subcategory-page .right-column {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  background-color: #0a406b;
  padding: 2em 1em;
  justify-content: center;
  align-items: center;
}

.subcategory-page .right-column img {
  margin: auto;
  max-width: 180px;
}

.subcategory-page .headlines h1 {
  margin: 0 0 1em 0 !important;
}

.subcategory-page a.button-orange {
  color: #fff;
  font-size: .85em;
  padding: 4px 10px !important;
  text-decoration: none;
}

.subcategory-page a.button-orange:hover {
  background-color: #fff;
  border: solid 2px;
  border-radius: 30px;
  color: #53940d;
}


/* WORKERS COMPENSATION 101 PAGE */

.pdf-download img {
  cursor: pointer;
  top: 5%;
  left: 75%;
  max-width: 19%;
  height: auto;
  position: absolute;
  z-index: 1;
}

.placeholder {
  cursor: pointer;
}

.videos .hero-video {
  padding-bottom: 56.25%;
  overflow: hidden;
  height: 0;
  margin-bottom: 2em;
  max-width: 100%;
}


/* Template-specific styles
- Cross-template styles
- Testimonials
- Attorneys (ALL)
- Attorneys (SINGLE)
- Contact page
- Scholarship page
- Search results page
- Blog/Archive pages
- Wordpres styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Content that is only visible on screens >900px */
.desktop-visible { display: none; }

/* Content that is only visible on screens >1024px */
.display-1024 { display: none; }

/* Free Case Analysis text */
.free-case-analysis {
  color: #0a406b;
  font-size: 1em;
  font-weight: 700;
}

/* Marketing Banner above hero on home, category, and subcategory pages */
.banner {
  color: #fff;
  background-color: #0a406b;
  height: 54px;
  margin: 0 auto 10px auto;
  max-width: 1250px;
  padding: 10px 10px 0 10px;
  width: 97%;
}

.banner p.headline {
  font-size: .9em;
  line-height: 1.1;
  margin-bottom: 0;
}

.banner p.subhead {
  font-size: .8em;
  line-height: 1.1;
  margin-bottom: 0;
}

.banner a {
  color: #fff;
  font-weight: 400;
  text-decoration: underline;
}

.banner .fa-exclamation-triangle {
  float: left;
  font-size: 1.5em;
  line-height: 1.35em;
  margin-right: 8px;
}

.banner .fa-times-circle {
  float: right;
  cursor: pointer;
  font-size: 1.2em;
  line-height: 1.65em;
}

hr.divider {
  border: none;
  height: 1px;
  color: #ccc;
  background-color: #ccc;
  margin: 2em auto;
  max-width: 1250px;
  width: 97%;
}

/* Text content for most pages and posts */
.marketing-statement {
  background: #fff;
  overflow: hidden;
}

.marketing-statement .marketing-title h2 {
  font-size: 1.4em;
  text-align: center;
}

.marketing-statement ul, .marketing-statement ol {
  margin-bottom: 1em;
}

.marketing-statement ul>li {
  list-style: disc outside none;
  margin-left: 1.2em;
}

.marketing-statement .marketing-title .second-level {
  font-size: 29px;
  text-transform: capitalize;
}

.marketing-statement h2, .marketing-statement h3 {
  color: #0a406b;
  font-size: 1.2em;
  font-weight: 600;
}

/* Right column of category and subcategory templates */
.right-column hr {
  border: 0;
  border-top: 1px solid white;
  height: 1px;
  margin: 1.5em;
  width: 100%;
}

/* Testimonials Page
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.testimonial-column {
  background-color: #0a406b;
  color: white;
  max-width: 30%;
  min-height: 360px;
  padding: 1.2em;
}

.testimonial-column h3 {
  color: white;
  font-family: 'Fira Sans',sans-serif;
  font-style: normal;
  margin-bottom: 0;
}

.testimonial-column p {
  font-family: 'PT Serif', serif;
}

/* TO DO: replace these with existing styles -- Our Philosophy, About Us, etc.
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.entry-new-content {
  overflow: hidden;
  margin: 0 0 0px;
}

.entry-content ul {
  padding-left: 0px;
  margin-bottom: 20px;
}

.entry-new-content-left {
  float: left;
  width: 60%;
  padding: 50px 30px 30px 50px;
  position: relative;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
}

.entry-new-content-left:before {
  content: "\f10d";
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #ac9665;
  font-size: 30px;
}

.entry-new-content-left span {
  display: block;
  color: #b6955f;
  font-weight: 700;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
}

.entry-new-content-right {
  float: right;
  width: 40%;
  position: relative;
}

.entry-new-content-right h2 span {
  display: block;
  color: #af975d;
  font-weight: 300;
}

.entry-new-content-right img {
  width: 100%;
  display: block;
  height: auto;
}

.entry-new-content-right a {
  position: absolute;
  bottom: 40px;
  left: 50%;
  margin: 0 0 0 -38px;
  color: #fff;
  background: #b0975e;
  padding: 10px 20px;
}

/* Attorneys page: archive-attorneys.php
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.attorneys-desktop .attorney-links {
  max-width: 302px;
  padding: 0 1em 0 0;
}

.attorneys-desktop .attorney-links-top {
  float: left;
  max-width: 302px;
  padding: 0 .5em 0 0;
  width: 50%;
}

.attorneys-desktop .attorney-links-top:after {
  content: "";
  display: table;
  clear: both;
}

.attorneys-desktop .attorney-links-top:last-child {
  padding:0 0 0 .5em !important;
}

.attorneys-desktop img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

.attorneys-desktop p.quote {
  color: #fff;
  font-family: 'PT Serif', serif;
  font-size: 1em;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0;
  text-align: center;
}

.attorneys-desktop .flex-grid {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
}

.attorneys-desktop .left-column {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  flex-basis: 67%;
}

.attorneys-desktop .right-column {
  align-items: center;
  background-color: #0a406b;
  display: flex;
  flex: 1;
  flex-basis: 33%;
  flex-direction: column;
  justify-content: center;
  margin: 0 15px 0 20px;
  padding: 1em;
}

.attorneys-desktop .right-column img {
  margin-top: -10px;
  max-width: 180px;
}

.attorneys-mobile h1 {
  font-size: 1.4em;
  margin-bottom: 0;
  text-align: center;
  text-transform: capitalize;
}

.attorneys-mobile h2 {
  font-size: 1em;
  font-weight: 500;
  text-align: center;
}

.attorneys-mobile img {
  margin-bottom: 0;
}

.attorneys-desktop p.title, .attorneys-mobile p.title {
  display: block;
  line-height: 1;
  margin: 1em 0 0 0;
  color: #0a406b;
  text-align: center;
  text-decoration: underline;
}

/* Attorney (SINGLE) page: single-attorneys.php
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.attorney-hero .container, .attorney-details-content .container {
  margin-top: 1em;
  padding: 0;
}

.attorney-hero .flex-grid {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
}

.attorney-hero .attorney-image {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  flex-basis: 50%;
}

.attorney-hero .attorney-image img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

.attorney-hero .attorney-info {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  flex-basis: 50%;
  flex-direction: column;
  padding-left: 1em;
  display: flex;
}

.attorney-hero .logo {
  display: none;
}

.attorney-hero .fa-envelope {
  color: #9aafc2;
  font-size: 1.5em;
}

.attorney-hero h1 {
  font-size: 1.2em;
}

.attorney-hero p {
  color: #0a406b;
  font-size: 1em;
}

.attorney-hero a {
  color: #0a406b;
  font-weight: 400;
/*   text-decoration: underline; */
}

.attorney-details-content ul {
  padding: 0;
}

.attorney-details-content ul li {
  font-size: .9em;
}

.attorney-details-content .left-column {        /* Left column for attorney details */
  width: 100%;
  float: left;
}

.attorney-details-content .right-column {       /* Right column for attorney details */
  width: 100%;
  float: left;
}

.attorney-details-content .right-column .titleat h2 {
  font-size: 42px;
  color: #754b0d;
  margin-bottom: 0px;
  padding-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
}

.attorney-details-content .right-column .titleat span {
  font-size: 20px;
  color: #000000;
}

.interInformation {       /* Attorney info bullets on left */
  padding: 1em 0;
  border-bottom: 1px solid #ddd;
}

.interInformation h3 {
  color: #0a406b;
  font-size: 1em;
  font-family: 'Fira Sans', sans-serif;
  font-weight: 600;
  margin-bottom:0;
}

.interInformation p {
  margin:0;
}

/* Contact page: template-contact.php
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.contact-page-content .flex-grid {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}

.contact-page-content .column {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 2em;
  text-align: left;
}

.contact-page-content h2 {
  font-size: 1.4em;
  text-align: center;
}

.contact-page-content h3 {
  font-size: 1.2em;
  margin: 0;
}

.contact-page-content p {
  margin-bottom: 0;
}

.contact-page-content ul.directions {
  padding: 0;
}

.contact-page-content ul.directions li {
  font-size: .9em;
  list-style-position: outside;
  list-style-type: disc;
}

.button-blue {         /* Button for contact form */
  border: 2px solid #344b6d !important;
  border-radius: 30px !important;
  color: #344b6d !important;
  display: block !important;
  background-color: #fff !important;
  font-family: 'Fira Sans', sans-serif !important;
  font-size: 1.4em !important;
  font-weight: 700 !important;
  height: auto !important;
  margin: 6px !important;
  min-width: 10px !important;
  padding: 15px 20px !important;
  text-transform: capitalize !important;
}

.button-blue:hover {
  background-color: #344b6d !important;
  border-color: #344b6d !important;
  color: #fff !important
}

.textwidget .mobile a.button-orange {
  margin-top: 1em;
  padding: 6px 12px !important;
}

/* Scholarship page: template-scholarship.php
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr.scholarship {
  display: block;
  height: 4px;
  width: 60%;
  border: 0;
  border-top: 4px solid #ccc;
  margin: auto;
  padding: 0;
}
.your-scholarship select{
font-weight: bold;
color: black;
}

.your-highschool textarea{
max-height: 90px;
}

@media screen and (min-width: 768px) and (max-width: 1060px){
	.your-scholarship select{
		width: 25vw;
	}
}

/* Search results page: search.php
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#search-results-wrapper article{
	border: 1px solid black;
	margin-bottom: 20px;
	padding: 10px;
	padding-left: 20px;
	padding-right: 20px;
	background-color: #eee;
}

.navigation .next, .navigation .prev{         /* Adjustment for plugin pagination on search page */
	display: none;
}

.updated:before{          /* Adding a dash before the 'updated' date in search results */
	content: " - ";
}

.wp-paginate a{
	border: 1px solid black !important;
	background-color: #eee !important;
}

/* Search results page: search.php
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.Blogsection {
  border-bottom: 1px solid #eee;
  padding: 30px 0px;
}

.Blogsection .post-meta {
  padding: 20px 0px;
  color: #9aafc2;
}

.Blogsection .post-meta a {
  color: #9aafc2;
}

.custom-pagination {
  margin: 40px 0px;
}

.postMetaa {
  padding-bottom: 20px;
}


/* Blog and Archive pages: index.php archive.php
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.ArchiveSection {
  margin-bottom: 30px;
}

.ArchiveSection .post-meta {
  padding-top: 30px;
}

.left-content h5 {
  margin-bottom: 20px;
}

.left-content header h1 {
  color: #0a406b;
}

.ContenFeatu img {
  width: 200px !important;
  height: 150px !important;
  border: 1px solid #eee;
  float: left;
  margin-right: 21px;
  margin-bottom: 20px;
}

.ContenFeatu {
  clear: both;
  min-height: 180px;
  color: #000;
}

.left-content li, .entry-content li {
  font-size: 1em;
  color: #000;
  font-family: 'Fira Sans', sans-serif;
  font-weight: 600;
  padding-left: 1em;
  margin-bottom: 10px;
}

.two-columns-content {
  overflow: hidden;
  position: relative;
}

.two-columns-content .clumnright {
  width: 45%;
  float: right;
  background: #f2f2f2;
  padding: 50px 40px;
}

.two-columns-content .left-content {
  float: left;
  width: 60%;
  padding: 50px 30px 0 0;
}

.two-columns-content .left-content img {
  max-width: 100%;
  display: block;
  height: auto;
}

.two-columns-content .left-content ul {
  padding-left: 0px;
  margin-bottom: 20px;
}

.two-columns-content .left-content.widthcont li {
  margin: 0 0 0 30px;
  padding: 5px 0px;
  color: #8c8c8c;
  font-size: 18px;
  font-family: 'Open Sans', sans-seri;
  font-weight: bold;
}

.two-columns-content .right-content .entry-new-content-right h2 {
  font-size: 70px;
  position: absolute;
  top: 30%;
  left: 15px;
  right: 0px;
  color: #fff;
  font-family: 'Fira Sans', sans-serif;
  font-weight: 300;
}

.two-columns-content .right-content {
  float: right;
  width: 40%;
  right: 0;
  top: 0;
  bottom: 0;
}

.two-columns-content .OurServicestes { /* Services accordion menu */
  background: #f2f2f2;
  padding: 50px 40px;
}

.two-columns-content .widthcont {
  width: 50%;
}


/* WORDPRESS styles
__________________________________________ */

.commentlist {
  margin: 0 0 14px;
}

.commentlist .edit-link {
  margin: 0;
}

.commentlist-item .commentlist-item {
  padding: 0 0 0 3em;
}

.comment, .commentlist-holder {
  overflow: hidden;
}

.commentlist-item .commentlist-item, .commentlist-item+.commentlist-item {
  padding-top: 14px;
}

.commentlist .avatar-holder {
  float: left;
  margin: 0 14px 4px 0;
}

.comment-form textarea {
  padding: 10px;
  height: 99px;
}

.comment-form label {
  display: block;
  padding-bottom: 4px;
}

.comment-form textarea {
  padding: 3px 4px;
  overflow: auto;
  margin: 0;
  height: 120px;
  min-height: 120px;
  resize: none;
}

figcaption {
  padding: 0 15px;
}

/* These are all related to the locations widget in the header */
.textwidget {
  line-height: 1;
}

.widget {
  margin-bottom: 14px;
  overflow: hidden;
}

.widget ul {
  padding-left: 0em;
  display: inline-block;
}

.widget select {
  min-width: 150px;
}

.widget_calendar #next {
  text-align: right;
}

.wp-caption {
  max-width: 100%;
  margin: 0 0 15px;
  clear: both;
  padding: 0 0 10px;
}

.wp-caption img {
  vertical-align: top;
}

.wp-caption p {
  margin: 10px 0 0;
}

.wp-caption-text {
  color: #a1a1a1;
}


/* MISCELLANEOUS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* .gallery-item dt {
  float: none;
  padding: 0;
}

.has-error .help-block {
  color: #df1010;
}

.has-error input, .has-error textarea {
  border-bottom-color: #df1010 !important;
}

.help-block {
  display: block;
  color: #000;
}

.post-password-form label {
  vertical-align: top;
}

.post-password-form input[type="password"], .search-form input[type="search"] {
  width: 100%;
}

#form-allowed-tags {
  display: none;
}

#form-body p {
  margin: 0px;
}

#form-body p iframe {
  margin: 0px;
}

.js-slide-hidden {
  display: block !important;
  left: -9999px !important;
  position: static !important;
  top: -9999px !important;
} */

/* Temporary bug fix for mobile menu header title blocking CTA */
/* .mob-menu-logo-holder{
	display: none;
} */

.clearfix:after {
  content: " ";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

/* .new-carousel {
  position: relative;
} */

/* .ubermenu-skin-trans-black-hov .ubermenu-item-level-0>.ubermenu-target {
  font-size: 15px !important;
  text-transform: uppercase !important;
  font-weight: bold !important;
  color: #fff !important;
} */

/* #dc_jqaccordion_widget-2-item ul>li>a {
  padding: 2px 0px !important;
  background: transparent !important;
  text-decoration: none !important;
  display: block !important;
  color: #3575a1 !important;
  border-bottom: none !important;
  border-top: none !important;
  font-size: 17px !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
}

#dc_jqaccordion_widget-2-item ul>li>ul>li>a {
  font-weight: 300 !important;
  padding: 2px 0 2px 10px !important;
  font-family: 'Poppins', arial !important;
  color: #317698 !important;
  border-top: none !important;
  border-bottom: none !important;
  letter-spacing: 0.5px;
}

#dc_jqaccordion_widget-2-item ul>li>ul>li>a:before {
  display: none;
}

#dc_jqaccordion_widget-2-item ul>li>a {
  font-size: 14px !important;
  color: #317698 !important;
  font-family: 'Poppins', arial;
  border-bottom: 1px solid #ccc !important;
  position: relative;
  font-weight: 700;
}

#dc_jqaccordion_widget-2-item ul>li>a.dcjq-parent:before {
  content: "\f107";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #454545;
  font-size: 18px;
  padding-right: 0.5em;
  position: absolute;
  top: 50%;
  right: 5px;
  margin: -14px 0 0 0;
}

#dc_jqaccordion_widget-2-item ul>li:first-child>a {
  border-top: 1px solid #ccc !important;
}

#dc_jqaccordion_widget-2-item {
  border-top: none !important;
  border-right: none !important;
  border-left: none !important;
} */



/* .main-content ul {
  padding-left: 0px;
  margin-bottom: 20px;
} */

/* .titlesecTion {
  clear: both;
  overflow: hidden;
}

.titlesecTion h2 {
  display: inline;
  float: left;
} */

/* .dcjq-accordion .sub-menu li.current-menu-item {
  font-weight: bold;
  color: #000 !important;
  background: #ccc;
} */

body.post-template-default.single.single-post time.updated {
  display: none;
}

body.post-template-default.single.single-post h1.entry-title {
  font-size: 36px;
}

body.post-template-default.single.single-post .entry-content h2 {
  font-size: 36px;
  margin-top: 43px;
}

/* Media Query for IE 10/11 hacks
__________________________________________________ */

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {

  ul#menu-main-menu { width: 97%; }
  ul#menu-main-menu { text-align: center; }
  ul#menu-main-menu li:hover > ul.sub-menu { text-align: left; }
}

/* Media Queries 360px
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (min-width: 360px) {

  .awards h5, .as-seen-on h5 {
    font-size: .95em;
  }

  .header-nav .areas-served ul {
    font-size: 1.15em;
  }

  .header-nav a.button-orange {
    font-size: .85em;
  }

  .header-nav .logo img {
    width: 80px;
  }

  .header-nav .tagline h3, .header-nav .tagline p.cstm-txt {
    font-size: .77em;
  }

  main .headlines h2.home {
    font-size: 1em;
  }

  .testimonial p,
  .category-hero p.quote,
  .category-hero-new p.quote {
    font-size: .7em;
  }

  main p.read-more {
    font-size: 1em;
  }

}


/* Media Queries 400px
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (min-width: 400px) {

  #text-6 h3 {
    font-size: 1em;
  }

  #text-7 ul li {
    font-size: .98em;
  }

  #text-8 ul li {
    font-size: 1.2em;
  }

  .header-nav {
    padding-top: 68px;
  }

  .header-nav .areas-served ul {
    font-size: 1.3em;
  }

  .header-nav .logo img {
    width: 85px;
  }

  .header-nav .tagline h3, .header-nav .tagline p.cstm-txt {
    font-size: .85em;
  }

  .headlines h1.home {
    font-size: 1.2em;
  }

  main .headlines h2.home {
    font-size: 1.1em;
  }

  .testimonial p,
  main p.read-more {
    font-size: 1.2em;
  }

  .category-hero p.quote,
  .category-hero-new p.quote {
    font-size: .8em;
  }

  .attorney-hero .fa-envelope {
    font-size: 2em;
  }

  .attorney-hero h1 {
    font-size: 1.4em;
  }

  .attorney-hero p {
    font-size: 1.2em;
  }

  .header-nav .nav-right {
    margin-top: -10px;
  }
}

/* Media Queries 500px
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media screen and (min-width: 500px) {
  .awards h5, .as-seen-on h5 {
    font-size: 1.2em;
  }

  #text-6 h3 {
    font-size: 1.2em;
  }

  #text-7 ul li {
    font-size: 1.2em;
  }

  #text-8 ul li {
    font-size: 1.5em;
  }

  main .headlines h2.home {
    font-size: 1.3em;
  }

  .headlines h1.home {
    font-size: 1.5em;
  }

  .attorney-hero .fa-envelope {
    font-size: 2.5em;
  }

  .attorney-hero h1 {
    font-size: 1.9em;
  }

  .attorney-hero p {
    font-size: 1.3em;
  }

  p.blog-meta {
    font-size: 1em;
  }
}

/* Media Queries 600px
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media screen and (min-width: 600px) {
  #text-6 h3 {
    font-size: 1.4em;
  }

  #text-7 ul li {
    font-size: 1.4em;
  }

  #text-8 ul li {
    font-size: 1.8em;
  }

  .header-nav .areas-served {
    max-width: 70%;
  }

  .header-nav .logo img {
    width: 110px;
  }

  main .headlines h2.home {
    font-size: 1.5em;
  }

  main .headlines h1, main .headlines h2, .headlines h1.home, .marketing-statement .marketing-title h2 {
    font-size: 1.7em;
  }

  .testimonial p {
    font-size: 1.4em;
  }

  .attorney-hero .fa-envelope {
    font-size: 3em;
  }

  .attorney-hero h1 {
    font-size: 2.1em;
  }

  .attorney-hero p {
    font-size: 1.4em;
  }
}


/* Media Queries 700px
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media screen and (min-width: 700px) {
  #text-8 ul li {
    font-size: 2em;
  }

  main .headlines h1, main .headlines h2, .headlines h1.home, .marketing-statement .marketing-title h2,
  .testimonial h2, .awards h2, .as-seen-on h2, .latest-news h2, #text-5 h2, .contact-form h2, .category-services h2,
  .contact-page-content h4, .contact-page-content h2 {
    font-size: 2em;
  }

  main .headlines .call-free-analysis .button-orange {
    font-size: 1.6em;
  }

  main .headlines .call-free-analysis .free-case-analysis {
    font-size: 1.4em;
    line-height: 60px;
  }

  .category-hero p.quote,
  .category-hero-new p.quote {
    font-size: 1.3em;
    padding: 0 1.1em;
  }

  h2.practice-areas a {
	font-size: 34px;
  }
}


/* Media Queries 800px
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media screen and (min-width: 800px) {
  #text-6 h3 {
    font-size: 1.8em;
  }

  #text-7 ul li {
    font-size: 1.8em;
  }

  #text-8 ul li {
    font-size: 2.4em;
  }

  .testimonial p {
    font-size: 1.5em;
  }
}

/* Media Queries 900px
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media screen and (min-width: 900px) {

  .latest-news .flex-grid,
  .category-hero .flex-grid,
  .category-hero-new .flex-grid,
  .category-services .flex-grid,
  .contact-page-content .flex-grid,
  .awards .flex-grid,
  footer .flex-grid {
    flex-direction: row;
  }

  .contact-page-content .column {
    padding: 0 .5em;
  }

  .thumbnail-img {
    position: relative;
    width: 250px;
    height: 250px;
    overflow: hidden;
  }

  .thumbnail-img img {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 100%;
    max-width: none;
    width: auto;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
  }

  .desktop-visible {
    display: inline-block;
  }

  footer .contact-desktop, .contact-page-content .contact-desktop {
    display: block;
  }

  footer .contact-desktop .contact-left, .contact-page-content .contact-desktop .contact-left {
    float: left;
    text-align: left;
    width: 35%;
  }

  footer .contact-desktop .contact-right, .contact-page-content .contact-desktop .contact-right {
    overflow: hidden;
  }

  footer .container, .contact-page-content .container {
    max-width: 92%;
  }

  footer .responsive-map, .contact-page-content .responsive-map{
    padding-bottom: 55%;
    position: relative;
  }

  footer .separator-desktop, .contact-page-content .separator-desktop  {
    display: inline-block;
    margin: 0 4px;
  }

  #text-6 h3 {
    font-size: 1em;
  }

  #text-7 ul li {
    font-size: 1em;
  }

  #text-8 ul li {
    font-size: 1.2em;
  }

  .contact-form, #text-5 {
    width: 1280px;
    max-width: 92%;
  }

  .contact-page-content .contact-form, .contact-page-content #text-5 {
    width: 1280px;
    max-width: 100%;
  }

  .contact-form .column-2, #text-5 .column-2 {
    margin: 1em -1em 0 0;
  }

  .contact-form .send-message, #text-5 .send-message {
    padding: 8em 1em 0 1em;
  }

  .header-top {
    padding: 18px 0;
    position: relative;
  }

  .header-nav .areas-served {
    max-width: 50%;
  }

  .header-nav .button-orange {
    float: left;
  }

  .header-nav .logo {
    display: none;
  }

  .header-nav .tagline {
    padding-top: 6px;
  }

  .header-nav .watch-tutorials {
    display: block;
  }

  .header-nav {
    padding: 8px 0 0 0;
  }

  .hero .container,
  .category-hero .container,
  .category-hero-new .container {
    padding: 0 15px;
  }

  main .marketing-statement .marketing-title h2 {
    font-size: 2em !important;
  }

  .mobile {
    display: none;
  }

  .testimonial .container {
    width: 1280px;
    max-width: 92%;
    padding: 1.5em 3em;
  }

  .category-services .container {
    width: 1280px;
    max-width: 92%;
    padding: 1em 2em;
  }

  .latest-news h6 {
    text-align: left;
  }

  .attorney-hero .attorney-image {
    flex-basis: 35%;
  }

  .attorney-hero .attorney-info {
    flex-basis: 30%;
  }

  .attorney-hero .logo {
    flex: 1;
    flex-basis: 35%;
    background-color: #0a406b;
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .attorney-details-content .left-column {
    float: left;
    margin-right: 10%;
    width: 40%;
  }

  .attorney-details-content .right-column {
    float: left;
    width: 50%;
  }

  .attorney-details-content h3 {
    font-size: 1.1em;
  }

  .attorney-details-content p, .attorney-details-content ul li {
    font-size: 1em;
  }

  .attorney-details-content .no-borders {
    border: none;
  }

  .awards .column img {
    margin: auto;
  }

  .awards .column {
    border-bottom: none;
    border-right: 1px solid #ccc;
  }

  .awards .flex-grid {
    border-bottom: 1px solid #ccc;
    margin: 1em auto 0 auto;
  }

  .awards .column span.years {
    margin: auto auto 0 auto;
  }

  p.blog-meta {
    font-size: .75em;
  }

  .breadcrumbs {
    display: block;
  }

  .pdf-download {
    width: 17%;
    float: right;
  }

  .pdf-download img {
    top: 0;
    left: 0;
    position: relative;
    max-width: 100%;
    height: auto;
  }

  .videos .hero-video {
    padding-bottom: 56.25%;
    overflow: hidden;
    height: 0;
    margin-bottom: 2em;
    max-width: 100%;
  }

  .header-nav .areas-served ul li {
    font-size: .57em;
  }

  .call-cta p, .call-cta a {
    font-size: 1.1em;
  }

  .header-nav .nav-right {
    margin-top: 0;
  }

  .category-hero-new .left-column {
	flex-basis: 30%;
}

  .category-hero-new .right-column {
	flex-basis: 70%;
	max-width: 70%;
  }

  /* Legacy media queries--mostly for the blog/archive pages */
  .two-columns-content .left-content.blogleft {
    float: left;
    width: 72%;
  }
  .two-columns-content .right-content.blogright {
    float: right;
    width: 27%;
    padding-top: 90px;
  }

  .blogright #categories-2 ul>li a {
    color: #0a406b;
  }

  #main {
    position: relative;
  }

}

/* Media Queries 1024px
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media screen and (min-width: 1024px) {

  .hero .container, .headlines, .marketing-statement .container,
  .awards .container, .as-seen-on .container, .contact-page-content .container,
  .latest-news .container, footer .container, #text-5, .contact-form, .testimonial .container,
  .category-hero .container, .category-hero-new .container, .category-services .container,
  .subcategory-page .container, .attorney-hero .container,
  .attorney-details-content .container, .videos .container {
    max-width: 80%;
    width: 936px;
  }

  .awards .container, .as-seen-on .container, .latest-news .container,
  .category-hero .container, .category-hero-new .container, .marketing-statement .container, .subcategory-page .container {
    padding-left: 0;
    padding-right: 0;
  }

  .body-horizontal-rule {
    margin: auto !important;
    max-width: 80% !important;
    width: 936px !important;
  }

  .hero .container, .headlines {
    padding: 0 30px;
  }

  .subcategory-page .headlines {
    padding: 0 !important;
  }

  .category-hero .right-column img,
  .subcategory-page .right-column {
    display: block;
  }

  .display-1024 { display: block; }

  .category-hero p.quote {
    font-size: 1em;
  }

  .subcategory-page .logo-quote {
    display: flex;
  }

  .subcategory-page .page-content {
    min-height: 420px;
    padding-right:1.5em;
    width: 62.5%;
  }

  .header-nav .watch-tutorials a {
    font-size: .8em;
  }

  #menu-main-menu {
    font-size: .95em;
  }

  #search-toggle form {
    margin: 10px 0 11px 0;
  }

  #search-toggle form input[type="search"] {
    top: 5px;
  }

  .header-nav .areas-served ul li {
    font-size: .65em;
  }

  #menu-main-menu>li.menu-item-6957 .sub-menu {
    left: 36.4%;
  }

  .fa-search, .fa-times {
	top: -1.5em;
  }

}

/* Media Queries 1100px
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media screen and (min-width: 1100px) {
  #menu-main-menu>li {
    margin-right: 18px;
  }

  .category-hero p.quote,
  ..category-hero-new p.quote {
    padding: 0 1.2em;
  }

  .thumbnail-img {
    width: 275px;
    height: 275px;
  }

  #slider_11339 .owl-dots {
    bottom: 5px !important;
  }

  #menu-main-menu>li>a {
	font-size: 1em;
    padding: 12px 6px;
  }

  #menu-main-menu>li.menu-item-6957 .sub-menu {
    left: 37%;
  }
}

/* Media Queries 1200px
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media screen and (min-width: 1200px) {
  #menu-main-menu>li {
    margin-right: 34px;
  }

  #text-8 a {
    font-size: .8em;
  }

  footer .widescreen-1200, .contact-page-content .widescreen-1200 {
    display: block;
  }

  .category-hero p.quote {
    font-size: 1.1em;
  }

  .thumbnail-img {
    width: 285px;
    height: 285px;
  }
}


/* EXISTING MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* @media only screen and (max-width: 767px) {
  .menu-header-menu-container ul li {
    padding: 0 10px;
  }
  .nav-contact-links {
    float: none;
    padding: 0px;
  }
} */

/* @media only screen and (max-width:480px) {
  #footer .flex .column {
    width: 100%;
  }
} */

/* @media only screen and (max-width:1215px) {
  .ubermenu-skin-trans-black-hov.ubermenu-responsive-toggle {
    background: transparent;
    color: #fff !important;
    font-size: 16px !important;
  }

  #footer .three-column .column {
    margin: 0 20px 0 0;
    float: left;
    width: 30%;
  }
} */

@media only screen and (max-width:899px) {
  /* #footer .flex {
    flex-wrap: wrap;
  }
  #footer .flex .column {
    width: 50%;
  }
  .ubermenu-skin-trans-black-hov.ubermenu-responsive-toggle {
    background: transparent;
    color: #fff !important;
    font-size: 16px !important;
    text-transform: none;
    font-weight: bold;
    padding: 6px;
  }
  .nav-contact-links {
    float: none;
    padding: 0px;
  }
  .gallery-holder .pagination {
    display: none;
  }
  .gallery-holder a.btn-prev, .gallery-holder a.btn-next {
    font-size: 30px;
  }
  .companies-slider .gallery-holder .gmask .slide {
    width: 100% !important;
  } */

  .commentlist-item .commentlist-item {
    padding: 0;
  }

  .two-columns-content .left-content {
    float: none;
    width: 100%;
    padding: 30px 0px 0 0;
    margin: 0 0 30px;
  }
  .two-columns-content .right-content {
    position: static;
    float: none;
    width: 100%;
  }
  .two-columns-content .OurServicestes {
    background: #f2f2f2;
    padding: 30px 10px;
  }
}

.m_h3{
	font-size: 1.6em;
    line-height: 1.2;
    color: #0a406b;
}

/* Responsive maps for delayed loading
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.contact-desktop .responsive-map button,
.mobile .responsive-map button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-desktop .responsive-map.seattle-map button {
  background-image: url('assets/images/map_seattle_wa_desktop.png');
}
.contact-desktop .responsive-map.vancouver-map button {
  background-image: url('assets/images/map_vancouver_wa_desktop.png');
}
.contact-desktop .responsive-map.salt-lake-city-map button {
  background-image: url('assets/images/map_salt_lake_city_ut_desktop.png');
}

.mobile .responsive-map.seattle-map button {
  background-image: url('assets/images/map_seattle_wa_tablet.jpg');
}
.mobile .responsive-map.vancouver-map button {
  background-image: url('assets/images/map_vancouver_wa_tablet.jpg');
}
.mobile .responsive-map.salt-lake-city-map button {
  background-image: url('assets/images/map_salt_lake_city_ut_tablet.jpg');
}

@media only screen and (max-width:450px) {
.mobile .responsive-map.seattle-map button {
  background-image: url('assets/images/map_seattle_wa_phone.jpg');
}
.mobile .responsive-map.vancouver-map button {
  background-image: url('assets/images/map_vancouver_wa_phone.jpg');
}
.mobile .responsive-map.salt-lake-city-map button {
  background-image: url('assets/images/map_salt_lake_city_ut_phone.jpg');
}
}
.textjustify{
	text-align:justify;
}

/* ER logo in mobile menu
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.mobmenu-home {
	background-image: url('https://www.emeryreddy.com/wp-content/themes/emeryreddy/assets/images/er_logo_small.png');
	background-repeat: no-repeat;
	background-position: left;
	padding-left: 5px;
	max-height: 40px;
}


/****************************************************************************************/
/******************** CANNOT FIND WHERE THESE ARE USED OR REFERENCED ********************/
/****************************************************************************************/


/* Supposedly on Careers page, but can't find these refs
.page-template-careers main section.container {
  margin: 5rem auto
}

.page-template-careers main .container ul {
  padding: 0;
}

.career-icons {
  background-color: #0a406b;
  padding: 3rem 0
}

.career-icons .container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center
}

.icons {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 300px;
  justify-content: space-around;
  margin-bottom: 4rem;
  position: relative;
  text-align: center;
  width: 256px
}

.icons>h5 {
  color: #fff;
  height: 45px
}

.icons>img {
  height: 200px;
  width: 200px
}

.icons>.careers-content {
  background: #0a406b;
  color: #fff;
  display: flex;
  height: 256px;
  justify-content: center;
  opacity: 0;
  overflow-y: auto;
  position: absolute;
  top: 60px;
  transition: all .25s;
  width: 256px
}

.icons:focus>.careers-content, .icons:hover>.careers-content {
  opacity: 1;
  transition: all .25s
} */

/* .nav-contact-links {
  float: right;
  padding: 10px 0px;
} */