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

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

body {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

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

table {
 border-collapse: collapse;
 border-spacing: 0;
}

/* - - - - - END RESET - - - - - */

/* - - - - - TYPOGRAPHY - - - - - */

.center { 
  text-align:center; 
 }
.bold {
  font-weight: bold; 
}

strong {
  font-weight:bold !important;
}

h1 {
  font-family: 'Droid Serif', serif;
  font-weight:bold;
  font-size:36px;
  color:#000;
}

h2 {
  font-family: 'Droid Serif', serif;
  font-weight:bold;
  font-size:24px;
  color:#000;
}

h3 {
  font-family: 'Droid Serif', serif;
  font-weight:bold;
  font-size:20px;
  color:#000;
}

p {
  font-family: 'Open Sans', sans-serif;
  font-size:16px;
  line-height:16px;
}

a {
  color: #223F84;
}

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


/* - - - - - END TYPOGRAPHY - - - - - */
/* - - - - - MISCELLANEOUS - - - - - */

textarea { 
  resize:none; 
}

.clear {
  clear:both;
}

.float-right {
  float:right;
}

.float-left {
  float:left;
}

.divider {
  display:block;
  margin:5px auto 30px auto;
}

/* - - - - - END MISCELLANEOUS - - - - - */

/* - - - - - HEADER CSS - - - - - */

header {
  padding:30px 0px;
}

/* Left aligned logo */
.logo-image {
  margin-top:10px;
}

.logo-alt {
  margin:0px auto;
}

.wrapper {
  margin-top:15%;
  transform: translateY(-15%);
  -webkit-transform: translateY(-15%);
  -ms-transform: translateY(-15%);
}

/* Top right consultation button */
.right-consultation-button,
.left-consultation-button,
.consultation-hidden {
  font-family: 'Open Sans', sans-serif;
  font-size:14px;
  font-weight:600;
  display:inline-block;
  background: #223F84;
  color: #FFF;
  padding:6px 15px;
  text-decoration:none;
  -webkit-transition: background 750ms linear;
  -moz-transition: background 750ms linear;
  -ms-transition: background 750ms linear;
  -o-transition: background 750ms linear;
  transition: background 750ms linear;
}

.form_intro {
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 2rem;
}

.verify {
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 2rem;
  font-size: 13px;
}

.right-consultation-button {
  float:right;
  margin-bottom:25px;
}

.left-consultation-button {
  float:none;
  margin: 15px 0px 0px;
}

.consultation-hidden {
  margin: 10px 0px;
  margin-left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.right-consultation-button:hover,
.left-consultation-button:hover,
.consultation-hidden:hover {
  text-decoration:none;
  color:#FFF;
  background: #112961;
}

.right-consultation-button:active,
.left-consultation-button:active,
.consultation-hidden:active {
  text-decoration:none;
  position:relative;
  top:1px;
}

/* Top right site_key_city */
.header-city,
.header-city-hidden {
  font-family: 'Open Sans', sans-serif;
  font-size:14px;
  font-weight: 600;
  color: #232323;
  text-align:right;
  margin-bottom:5px;
}

.header-city-hidden {
  margin-top:10px;
  font-size:16px;
  text-align:center;
}

/*Top right phone number */
.phone-link,
.phone-link-alt,
.phone-link-hidden {
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  font-size:24px;
  color:#223F84;
  display:block;
}

.phone-link,
.phone-link-alt {
  text-align:right;
}

.phone-link-hidden {
  text-align:center;
  margin-top:15px;
  margin-bottom:0px;
  padding-bottom:0px;
}

.phone-link-alt {
  margin-top: 15px;
}

.phone-link:hover,
.phone-link-alt:hover {
  color: #112961;
  text-decoration: none;
}

.sm-icon {
  margin: 2px 5px;
}

/* Header social media icon background color */
.header-icon {
  display:inline-block;
  position:relative;
  border-radius:30px;  /* <-- remove this for square icons */
  background: #CCC;  /* <-- background color */
  margin:0px 4px;
  padding:3px 1px 1px;
  -webkit-transition: background 750ms linear;
  -moz-transition: background 750ms linear;
  -ms-transition: background 750ms linear;
  -o-transition: background 750ms linear;
  transition: background 750ms linear;
}

/* Header social media icon background hover color */
.header-icon:hover {
  background:#999;
}
/* - - - - - END HEADER CSS- - - - - */


/* - - - - - NAVIGATION MENU CSS - - - - - */

/* Remove border radius from navbar and override bootstrap margin-bottom */
.navbar {
  border-radius: 0px;
  min-height:20px;
  margin-bottom:0px;
}

/* centers the navbar links */
.navbar-nav {
  float: none;
  margin: 0px auto;
  display: table;
}

/* navbar color */
.navbar-inverse {
  background-color: #000;
  border:none;
}

/* phone number in mobile version of navbar */
.navbar-inverse .navbar-brand {
  color:#EEE;
  font-size:18px;
  font-weight:bold;
}

/* hide the phone number until collapse */
.navbar-brand {
  display:none;
}

/* phone number hover state in mobile version of navbar */
.navbar-inverse .navbar-brand:hover {
  color:#FFF;
}

/* navbar top level link styling */
.navbar-nav>li>a {
  font-family: 'Droid Serif', serif;
  font-weight:bold;
  font-size:16px;
  text-transform: uppercase;
  display:inline-block;
  padding:20px 30px;
  border-left: 1px solid #898989;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

/* right border for last link */
.navbar-nav>li:last-child {
  border-right: 1px solid #898989;
}

/* top level menu inactive link color */
.navbar-inverse .navbar-nav>li>a {
  color:#FFF;
}

/* top level menu hover colors */
.navbar-inverse .navbar-nav>li>a:hover,
.navbar-inverse .navbar-nav>li>a:active {
  color: #FFF;
  background:#112961;
  border-color: #898989;
}

/* keep top level hover colors when in dropdown-menu */
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  color: #FFF;
  background: #112961;
  border-color: #898989;
}

/* override strange bootstrap border color */
.nav .open>a:focus,
.nav .open>a:hover {
  border-color:#898989;
}

/* dropdown menu font */
ul.nav li.dropdown:hover > ul.dropdown-menu li a {
  font-size: 14px;
  font-family: 'Droid Serif', serif;
}

/* dropdown fades in on hover part I */
ul.nav li.dropdown > ul.dropdown-menu {
  opacity:0;
  margin: 0;
  visibility:hidden;
  display:block;
  height:0px;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

/* dropdown fades in on hover part II */
ul.nav li.dropdown:hover > ul.dropdown-menu {
  visibility:visible;
  opacity:1;
  border:0;
  display: block;
  margin: 0;
  height:auto;
}


/* full width menu dropdown styling */
ul.nav li.dropdown:hover > ul.dropdown-menu li a {
  -webkit-transition: color 0s linear;
  -moz-transition: color 0s linear;
  -ms-transition: color 0s linear;
  -o-transition: color 0s linear;
  transition: color 0s linear;

  -webkit-transition: background .15s linear;
  -moz-transition: background .15s linear;
  -ms-transition: background .15s linear;
  -o-transition: background .15s linear;
  transition: background .15s linear;
}

/* full width menu dropdown hover styling */
ul.nav li.dropdown:hover > ul.dropdown-menu li a:hover {
  background: #112961;
  color: #FFF;
}

/* - - - - - END NAVIGATION MENU - - - - - */

/* - - - - - START CAROUSEL CSS - - - - - */

.carousel-wrapper {
  max-width:1343px;
  width:90%;
  margin:22px auto 0px;
}

.carousel-control {
  opacity: 1;
  z-index:2;
  width:5%;
}

/* Size and color of slider arrows */
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  display:none;
  width: auto; 
  height: 55px;
  font-size: 35px;
  color: #FFF;
}

.carousel-wrapper:hover .carousel-control .glyphicon-chevron-left,
.carousel-wrapper:hover .carousel-control .glyphicon-chevron-right {
  display:inline;
  z-index:100;
}

.carousel-control.left,
.carousel-control.right {
  background-image:none;
}

/* Slider arrow positioning */
.carousel-control .glyphicon-chevron-left {
  position:absolute;
  left: 60px;
}
.carousel-control .glyphicon-chevron-right {
  position:absolute;
  right: 48px;
}

/* Carousel base class */
.carousel {
  max-height: 100%;
  max-height: 580px;
  margin-bottom: 75px;
  height:auto;
}

.carousel .item {
  max-height: 100%; 
  max-height: 580px;
  background-color: #777;
}
.carousel-inner > .item > img {
  top: 0;
  left: 0;
  min-width: 40%;
  max-width: 100%;
  max-height: 580px;
  width: auto;
  margin-right:auto;
  margin-left:auto;
  height:auto;
}
/* - - - - - END CAROUSEL - - - - - */

/* - - - - - START CAROUSEL ANIMATION CSS - - - - - */

.carousel-caption {
  text-align:left;
  top:50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left:10%;
  bottom:auto;
  right:auto;
  padding-top:0px;
  position:absolute;
  z-index:1
}

h3.carousel-heading {
  font-size: 55px;
  line-height:60px;
  font-weight:bold;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  color: rgb(255, 255, 255);
  text-shadow: rgb(0, 0, 0) 3px 3px 3px;
}

p.carousel-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height:22px;
  text-shadow:none;
  margin:40px 0px 50px;
  color:#FFF;
  text-align:justify;
  display: inline-block;
  width: 40%;
  background: rgba(0,0,0,.6);
  padding:10px;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

a.carousel-button {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  padding:15px 20px;
  color:#FFF;
  text-shadow:none;
  text-decoration:none;
  background: #223F84;
  -webkit-transition: background 0.5s ease-in-out;
  -moz-transition: background 0.5s ease-in-out;
  -ms-transition: background 0.5s ease-in-out;
  -o-transition: background 0.5s ease-in-out;
  transition: background 0.5s ease-in-out;
  display:table-cell;
}

a.carousel-button:hover {
  background:#112961;
}

/* Animation delays */
.carousel-caption h3 {
  animation-delay: 1s;
}

.carousel-caption p {
  animation-delay: 1.25s;
}

.carousel-caption a {
  animation-delay: 1.25s;
}

/* - - - - - END CAROUSEL ANIMATION - - - - - */


/* - - - - - INTRO SECTION CSS - - - - - */

#intro-section {
  text-align:center;
  padding: 30px 0px;
}

#intro-section h2 {
  font-size: 24px;
  padding: 12px 0px;
  color:#000;
}

#intro-section p,
a.intro-button {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  text-align:center;
  color: #777;
  padding: 8px;
  line-height:24px;
}

a.intro-button {
  display: inline-block;
  padding: 8px 18px;
  margin-top: 16px;
  background: #FFF;
  color: #000;
  -webkit-box-shadow: 0px 0px 1px 1px rgba(220,220,220,1);
  -moz-box-shadow: 0px 0px 1px 1px rgba(220,220,220,1);
  box-shadow: 0px 0px 1px 1px rgba(220,220,220,1);
  border-radius: 2px;
  margin-bottom:15px;
}

a.intro-button:hover {
  background:#223f84;
  color:#FFF;
  text-decoration:none;
}

/* - - - - - END INTRO SECION - - - - - */

/* - - - - - WELCOME SECTION CSS - - - - - */

#welcome-section {
  background:#F7F7F7;
  padding:50px 30px;
  text-align:center;
}

#welcome-section h1 {
  padding-bottom:15px;
}

p.tagline {
  font-family: 'Droid Serif', serif;
  font-weight:bold;
  font-size:18px;
  line-height:22px;
  color:#969696;
  padding: 10px 30px 25px;
}

p.main-text {
  font-family: 'Open Sans', sans-serif;
  font-size:16px;
  font-weight:400;
  text-align: center;
  padding:0px 30px 6px;
  line-height: 1.6;
  margin-bottom:8px;
}

#welcome-section p {
  text-align:center;
  line-height:1.4;  
}

.consult-div {
  margin:50px auto 0px;
}

.pipe {
  padding:0px 10px; font-size:25px;
}

.consult-div,
a.free-consultation {
  font-family: 'Droid Serif', serif;
  font-size:25px;
  color:#000;
}

a.free-consultation:hover {
  text-decoration:none;
  color: #112961;
}

.welcome-phone-link  {
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  font-size:24px;
  color:#223F84;
  display:inline-block;
}

.welcome-phone-link:hover {
  color: #112961;
  text-decoration: none;
}

#welcome-section a { color: #007DDC; }

#welcome-section a:hover { color: #B80E0E; }


/* - - - - - END WELCOME SECTION - - - - - */

/* - - - - - PRACTICE AREAS SECTION CSS - - - - - */

#practice-areas {
  background:#FFF;
  padding:50px 0px;
  text-align:center;
}

.image-holder {
  position:relative;
  margin:15px auto;
}

.pa-content {
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/* for Font Awesome icons */
.pa-content i {
  display:block;
  color: #FFF;
  font-size: 32px;
  margin-bottom:10px;
}

/* Styling of the 4 boxes text */
h2.overlay-text {
  font-size: 24px;
  color:#FFF;
  padding:10px 15px;
  display:inline-block;
  border:2px solid #FFF;
  border-radius:30px;
  white-space:nowrap;
}

/* Don't touch this... */
.overlay {
  background: rgba(0, 0, 0, 0.6);
  bottom: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
   right: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

/* ...or this! */
.hover-overlay {
  background: rgba(0, 0, 0, 0.4);
  bottom: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

/* Or this.. */
.image-holder:hover .hover-overlay {
  opacity: 1;
}

/* - - - - - END PRACTICE AREAS SECTION - - - - - */

/* - - - - - TAGLINE SECTION CSS - - - - - */

#tagline {
  width:100%;
  background: url("../images/tagline-bg.jpg")  no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height:100%;
}

.tagline-holder {
  position:relative;
  padding:175px 0px;
}

.tagline-content {
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}

.tagline-content h3 { 
  font-weight:bold;
  font-size:50px; 
  color:#FFF ;
  text-align:center;
  line-height:60px;
}

/* - - - - - END TAGLINE SECTION - - - - - */

/* - - - - - OUR TEAM AND OUR SERVICES SECTION CSS - - - - - */

#our-team,
#our-services {
  text-align:center;
  min-height: 400px;
  padding:50px 10px 70px;
  background: #F7F7F7;
}

#our-team h2,
#our-services h2 {
  font-size:36px;
  padding-bottom:12px;
}

p.team-intro,
p.services-intro {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #969696;
  padding-bottom:10px;
}

.bio,
.service {
  margin: 30px 0px;
  overflow:auto;
  background:#1e1e1e;
  position:relative;
}

.bio-left,
.service-left {
  float:left;
  display:block;
  padding: 20px;
  width:55%;
}

p.name,
p.service-name {
  font-family: 'Droid Serif', serif;
  font-size:18px;
  font-weight:bold;
  text-align:left;
  color:#FFF;
  margin-bottom:4px;
}

p.service-name {
  padding-bottom:10px;
}

p.position {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-style: italic;
  text-align:left;
  padding-bottom: 20px;
  color:#FFF;
}

p.bio-text,
p.service-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  text-align:justify;
  color: #8B8B8B;
  line-height:15px;
}

a.bio-button,
a.service-button {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #FFF;
  background: #223f84;
  padding: 8px 12px;
  position:absolute;
  left:20px;
  bottom:15px;
  -webkit-transition: background 500ms linear;
  -moz-transition: background 500ms linear;
  -o-transition: background 500ms linear;
  -ms-transition: background 500ms linear;
  transition: background 500ms linear;
}

a.bio-button:hover,
a.service-button:hover {
  text-decoration:none;
  background: #112961;
}

.bio-right,
.service-right {
  background:#1e1e1e;
  display:block;
  float:left;
  width:45%;
}

/* - - - - - END OUR TEAM SECTION - - - - - */

/* - - - - - AFFILIATIONS SECTION CSS - - - - - */

#affiliations {
  background:#FFF;
  padding:30px 10px;
}

.affiliations-holder {
  text-align:center;
}

.affiliate-image {
  display:inline-block;
  vertical-align:middle;
  margin:15px;
}

/* - - - - - END AFFILIATIONS SECTION - - - - - */


/* - - - - - CONSULTATION SECTION CSS - - - - - */

#consultation_index {
  padding: 60px 10px 40px;
  background: #1b1b1b;
}

#consultation_index h2,
#consultation_index p {
  font-weight:bold;
  font-size:36px;
  line-height:42px;
  color:#FFF;
  text-align:center;
}

#consultation_index p {
  margin-top:20px;
  font-size:18px;
  line-height:24px;
}

#consultation_index label {
  font-family: 'Open Sans', sans-serif;
  font-size:14px;
  color:#9C9C9C;
  margin-bottom:5px;
}

#consultation_index form {
  margin-top:50px;
}

#consultation_index input[type="text"],
#consultation_index input[type="tel"],
#consultation_index input[type="email"],
#consultation_index textarea {
  font-family: 'Open Sans', sans-serif;
  font-size:20px;
  font-weight:400;
  color:#FFF;
  background: #4b4b4b;
  padding-right: 50px;
  border:1px solid #4B4B4B;
  border-radius:3px;
  position:relative;
}

#consultation_index input[type="text"]:focus,
#consultation_index input[type="tel"]:focus,
#consultation_index input[type="email"]:focus,
#consultation_index textarea:focus {
  box-shadow:none;
  border:1px solid #9C9C9C;
}

#consultation_index textarea {
  padding: 10px 50px 10px 10px
}

.addTopMargin {
  margin-top:20px;
}

.consultation-submit {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color:#FFF;
  background: #223F84;
  margin-top: 40px;
  padding:25px 35px;
  border: none;
  -webkit-transition: background 500ms linear;
  -moz-transition: background 500ms linear;
  -o-transition: background 500ms linear;
  -ms-transition: background 500ms linear;
  transition: background 500ms linear;
}

.consultation-submit:hover {
  background:#112961;
}

.consultation-submit:active,
.consultation-submit:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  position:relative;
  top:1px;
}

.glyph-append {
  color:#9C9C9C;
  font-size:18px;
  z-index:50;
  position: absolute;
  top: 26px;
  right: 30px;
  width: 29px;
  padding: 8px 15px 8px 13px;
  border-left: 1px solid #9C9C9C;
}

/* - - - - - END CONSULTATION SECTION - - - - - */


/* - - - - - NEWSLETTER SECTION CSS - - - - - */

#newsletter {
  background: #223F84;
  padding:60px 0px;
}

.newsletter-text {
  font-family: 'Droid Serif', serif; 
  font-weight:bold;
  font-size: 30px;
  line-height:34px;
  color: #FFF;
  padding:0px;
  margin:20px 0px 20px;
  text-align:center;
}

#newsletter input[type="email"] {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight:600;
  color:#FFF;
  background: #122759;
  border: none;
  border-radius: 0;
  margin:14px auto;
  -webkit-transition: background 500ms linear;
  -moz-transition: background 500ms linear;
  -o-transition: background 500ms linear;
  -ms-transition: background 500ms linear;
  transition: background 500ms linear;
}

#newsletter input[type="email"]:focus {
  background: #0d1f49;
  box-shadow:none;
  border: none;
}

.newsletter-submit {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color:#FFF;
  background: #000;
  border: none;
  box-shadow:none;
  padding: 14px 35px;
  margin:14px auto;
}

.newsletter-submit:active,
.newsletter-submit:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  position:relative;
  top:1px;
}

#newsletter ::-webkit-input-placeholder { 
  color: #FFF; 
  font-family: 'Open Sans', sans-serif;
  font-size:18px;
  font-weight: 600; 
}

#newsletter :-moz-placeholder {
  color: #FFF; 
  font-family: 'Open Sans', sans-serif;
  font-size:18px;
  font-weight: 600;  
} 

/* Firefox 18- */
#newsletter ::-moz-placeholder { 
  color: #FFF; 
  font-family: 'Open Sans', sans-serif; 
  font-size:18px; 
  font-weight: 600; }  

/* Firefox 19+ */
#newsletter :-ms-input-placeholder { 
  color: #FFF; 
  font-family: 'Open Sans', sans-serif; 
  font-size:18px; 
  font-weight: 600; 
}

.triangle-bg {
  background: #1B1B1B;
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 150px 30px 150px;
  border-color: transparent transparent #223F84 transparent;  /* <--- change triangle color here */
  margin-left:50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  overflow:none;
}

/* - - - - - END NEWSLETTER SECTION - - - - - */


/* - - - - - - - - - - - - - - - - - - - - -*/
/* - - - - - - INNER PAGE CSS - - - - - - - */

/* - - - - - START CONTENT SECTION - - - - - */

#content {
  padding: 40px 10px 85px;
}

/* Inner page H1 and H2 styling */

#content h1 {
  font-weight:bold;
  color: #223F84;
  text-align:left;
  padding:0px 0px 25px;
}

#content h2 {
  font-weight:bold;
  color: #223F84;
  text-align:left;
  padding:0px 0px 10px;
}

#content h3 {
  color: #223F84;
  font-weight: bold;
  font-size: 1.5rem;
}

#content h1.page-title { 
   font-size: 36px;
}

#content h2.heading {
  font-size:24px; 
}

#content h2.heading {
  padding: 30px 0px 10px;
}

/* Normal page copy styling */
#content p {
  font-size:14px;
  line-height:21px;
  color:#272727;
  text-align:justify;
  padding: 10px 0px;
}

/* the image at the top of inner pages */
#content img.content-image {
  margin: 0px auto 25px;
}

/* List bullet color */
#content ul.list {
  list-style-type:disc;
  list-style-position: outside;
  margin:10px 0px 0px 30px;
  color: #223F84;
}

#content .list p,
#content .list a {
  font-family: 'Open Sans', sans-serif;
  font-size:15px;
  line-height: 20px;
  padding:1px 0px 2px;
}

#content li {
  font-family: 'Open Sans', sans-serif;
}

/* list text color */
#content .list p {
  font-weight:400;
  color:#000;
}

#content ul {
  list-style-position:inside; 
}

#content a {
  font-weight:bold; 
}

#content .list a {
  font-weight:600;
  color:#223F84;
}

#content .list a:hover {
  text-decoration:none;
  color:#112961;
}

/* - - - - - END CONTENT SECTION - - - - - */

/* - - - - - START SIDEBAR CSS - - - - - */

#sidebar {
  padding: 0px 0px 50px 40px;
}

.sidebar-section {
  margin-bottom:20px;
}

#sidebar h2 {
  font-weight:bold;
  font-size:24px;
  line-height:28px;
  color: #223F84;
  text-align:left;
  padding:40px 0px 15px;
}

#sidebar p {
  font-size:18px;
  line-height: 26px;
  color:#000;
  padding:0px 25px 30px 0px;
  text-align:justify;
}

.sidebar-divider {
  display:block;
  height:2px;
  background: #F7F7F7;
  margin:0px 25px 10px 0px;
}

.sidebar-divider span {
  display:block;
  height:2px;
  width: 20%;
  background: #223F84;
}

.sidebar-icon {
  float:left;
  display:table-cell;
   text-align:center;
  font-size:30px;
  width:20%;
  color: #223F84;
  padding-right: 5px;
}

.sidebar-text {
  display:table-cell;
}

#sidebar .sidebar-links ul {
  list-style-position: outside;
  margin:10px 0px 0px 35px;
  color: #223F84;
  text-align:left;
}

#sidebar .sidebar-links li a {
  font-family: 'PT Sans', sans-serif;
  font-size:16px;
  font-weight:400;
  line-height: 21px;
  padding: 1px 0px 2px 0px;
}

#sidebar .sidebar-links li a:hover {
  text-decoration:none;
  color:#112961;
}

a.sidebar-button {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #FFF;
  background: #223f84;
  padding: 12px 30px;
  -webkit-transition: background 500ms linear;
  -moz-transition: background 500ms linear;
  -o-transition: background 500ms linear;
  -ms-transition: background 500ms linear;
  transition: background 500ms linear;
}

a.sidebar-button:hover {
  text-decoration:none;
  background: #112961;
}

a.sidebar-button:active,
a.sidebar-button:focus {
  text-decoration:none;
  position:relative;
  top:1px;
  color:#FFF;
}

/* - - - - - - END SIDEBAR CSS - - - - - */


/* - - - - - - END INNER PAGE CSS - - - - - */
/* - - - - - - - - - - - - - - - - - - - - -*/


/* - - - - - - - - - - - - - - - - - - - - -*/
/* - - - - - FOOTER SECTION CSS - - - - - */

footer {
  background: #1A1A1A;
}

#footer-top {
  text-align:center;
  padding:55px 0px 45px;
}

.footer-column {
  margin-bottom:25px;
}

#footer-top h2 {
  font-size:30px;
  font-weight:bold;
  color:#FFF;
  text-align:center;
  padding-bottom:18px;
}

#footer-top p,
#footer-top a,
#footer-top i {
  font-size: 18px;
  color:#9C9C9C;
  line-height:26px;
}

#footer-top p,
#footer-top a {
  font-family: 'Open Sans', sans-serif;
}

#footer-top a:hover {
  text-decoration:none;
  color: #3366CC;
}

#footer-top i {
  margin-right:10px;
}

#footer-bottom {
  background: #000;
  text-align:center;
  padding: 30px 10px 20px;
}

#bottom-menu a {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  margin:10px 20px;
  color:#9c9c9c;
  display:inline-block;
}

#bottom-menu a:hover {
  color:#3366CC;
  text-decoration:none;
}

#copyright {
  margin-top:30px;
  padding:0px 15px;
}

/* Copyright section text */
#copyright p {
  font-size: 15px;
  color:#9C9C9C;
  line-height:22px;
}

/* Copyright section links */
#copyright a {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #3366CC;
}

/* Copyright section link hover */
#copyright a:hover {
  color: #3d73E0;
  text-decoration:none;
}

.byf-logo {
  position:relative;
  top: 8px;
}

.icon-container {
  margin-top:16px;
  text-align:center;
}

/* Footer social media icon background color */
.sm-icon-holder {
  display:inline-block;
  position:relative;
  border-radius:20px;  /* <-- remove this for square icons */
  background: #777;  /* <-- background color there  */
  margin:0px 3px;
  padding:0px 6px;
  -webkit-transition: background 750ms linear;
  -moz-transition: background 750ms linear;
  -o-transition: background 750ms linear;
  -ms-transition: background 750ms linear;
  transition: background 750ms linear;
}

/* Footer social media icon background hover color */ 
.sm-icon-holder:hover {
  background:#FFF;
}

/* - - - - - END FOOTER SECTION - - - - - */
/* - - - - - - - - - - - - - - - - - - - - */

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - START MEDIA QUERIES - - - - - - - - - - - - - */

@media all and (max-width: 1225px) {

 .navbar-nav>li>a {
  font-size: 14px;
  padding: 20px 18px;
 }
}

@media all and (max-width: 1200px) {

 .carousel {
  margin-bottom:50px;
 }

 #intro-section {
  padding-top:0px;
  margin-top:0px;
 }

 h3.carousel-heading {
  font-size: 45px;
  line-height:50px;
 }

 p.carousel-text {
  font-size: 16px;
  line-height:20px;
  margin:25px 0px 40px;
 }

 a.carousel-button {
  font-size: 16px;
  padding:14px 18px;
 }

 .carousel-control .glyphicon-chevron-left,
 .carousel-control .glyphicon-chevron-right {
  width: auto;
  height: 45px;
  font-size: 44px;
 }

 .carousel-control .glyphicon-chevron-left {
  left: 45px;
 }

 .carousel-control .glyphicon-chevron-right {
  right: 45px;
 }

 h2.overlay-text {
  font-size: 20px;
 }

 .pa-content i {
  font-size: 24px;
 }

 /* bio section */
 .bio,
 .service {
  background:#1e1e1e;
  position:initial;
 }

 .bio-left,
 .service-left {
  float:right;
  clear:both;
  display:block;
  width:100%;
  position:relative;
  padding-bottom:60px;
 }

 .bio-right,
 .service-right {
  float:left;
  clear:both;
  display:block;
  width:100%;
  background: none;
 }

 a.bio-button,
 a.service-button {

 }

 } /* end 1200px media query */


 @media all and (max-width:1015px) {

  .navbar-nav>li>a {
   font-size: 12px;
   padding: 20px 12px;
  }
 }


 @media all and (max-width: 992px) {

  h3.carousel-heading {
   font-size: 35px;
   line-height:40px;
  }

  p.carousel-text {
   font-size: 14px;
   line-height:18px;
   margin:20px 0px 30px;
  }

  a.carousel-button {
   font-size: 14px;
   padding:12px 16px;
  }

  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right {
   width: auto;
   height: 35px;
   font-size: 35px;
  }

  .carousel-control .glyphicon-chevron-left {
   left: 30px;
  }

  .carousel-control .glyphicon-chevron-right {
   right: 35px;
  }

  .carousel {
   margin-bottom:30px;
  }

  #intro-section {
   padding-top:0px;
   margin-top:0px;
  }

  #content {
   padding-top:20px;
   padding-bottom:25px;
  }

  #sidebar {
   padding:0px 20px 40px 20px;
  }

  .tagline-holder {
   position:relative;
   padding:175px 0px;
  }

  .tagline-content h3 {
   font-size:40px;
   line-height: 45px;
  }

  h2.overlay-text {
   font-size: 30px;
  }

  .pa-content i {
   font-size: 35px;
  }
}   /*-- end 992px media query */

  @media all and (max-width: 768px) {

   header {
       padding: 15px 0px 10px;
   }

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

      .logo-image {
        display:inline-block;
   }

   .header-city-hidden {
    margin-top:20px;
   }

   .intro-box {
    margin-bottom:15px;
   }

   #newsletter {
    padding: 35px 0px;
   }

   #consultation_index {
    padding: 30px 10px 45px;
   }

   #affiliations {
    padding: 20px 10px;
   }

   #our-team,
   #our-services {
    padding: 30px 10px 30px;
   }

   #footer-top {
    padding:35px 0px;
   }

      #content {
    padding-bottom:20px;
   }

      .pipe {
    display:none;
   }

      .welcome-phone-link {
    display:block;
    margin-top:15px;
   }

  h3.carousel-heading {
    font-size: 25px;
    line-height:25px;
    margin-bottom:25px;
   }

   p.carousel-text {
    display:none;
   }

   a.carousel-button {
    font-size: 14px;
    padding:10px 12px;
   }


   h2.overlay-text {
    font-size: 40px;
   }
   .pa-content i {
    font-size: 45px;
   }

   .bio,
   .service {
    max-width:455px;
    margin:20px auto;
   }

   .tagline-content h3 {
    font-size:35px;
    line-height: 40px;
   }

   /* hide carousel direction arrows on small display */
   .carousel-wrapper:hover .carousel-control .glyphicon-chevron-left,
   .carousel-wrapper:hover .carousel-control .glyphicon-chevron-right {
    display:none;
   }

   .navbar-nav {
     width:100%;
   }

   .navbar-nav>li>a {
    font-size: 16px;
    padding: 20px;
    display:block;
   }

   .navbar-brand {
    display:block;
   }

   .navbar-nav>li>a,
   .navbar-nav>li:last-child {
    border:none;
   }

   .dropdown-menu {
     background: transparent
     position:relative;
   }

   .navbar-collapse {
     max-height: none;
   }

   /* centers hamburger menu top level links */
   .nav li {
    text-align:center;
   }

   /* centers sub-menu links */
   .navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
    text-align: center;
   }

   /* remove set width to center dropdown links in mobile*/
   ul.nav li.dropdown > ul.dropdown-menu {
    width:100%;
    text-align: center;
   }

   /* hamburger menu top level link hover color */
   ul.nav li.dropdown > ul.dropdown-menu li a:hover {
    background: #272727;
   }

   /* hamburger dropdown sub-menu styling*/
   ul.nav li.dropdown:hover > ul.dropdown-menu li a {
    font-size:18px;
    color:#FFF;
   }

   /* hamburger dropdown sub-menu hover styling*/
   ul.nav li.dropdown:hover > ul.dropdown-menu li a:hover {
    color: #FFF;
    background:#223F84;
   }

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
			THE FOLLOWING LINES FORCE THE COLLAPSED MENU TO APPEAR AT 768PX WIDTH,
			NOT 767PX, SO THE COLLAPSED MENU APPEARS ON IPAD PORTRAIT VIEW. IF A NEW
			VERSION OF BOOTSTRAP COMES OUT AND THERE ARE PROBLEMS WITH THE COLLAPSED
			MENU, THIS MIGHT BE THE CULPRIT. */

			.navbar-header {
				float: none;
			}
			.navbar-left,.navbar-right {
		           float: none !important;
			}
			.navbar-toggle {
				display: block;
			}
			.navbar-collapse {
				border-top: 1px solid transparent;
				box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
			}
			.navbar-fixed-top {
				top: 0;
				border-width: 0 0 1px;
			}
			.navbar-collapse.collapse {
				display: none!important;
			}
			.navbar-nav {
				float: none!important;
				margin-top: 7.5px;
			}
			.navbar-nav>li {
				float: none;
			}
			.navbar-nav>li>a {
				padding-top: 10px;
				padding-bottom: 10px;
			}
			.collapse.in{
				display:block !important;
			}

			/* - - - - - - - - - - END FORCE COLLAPSED MENU AT 768 - - - - - - - - - - - */


   } /* end 768px media query */


   @media all and (max-width: 480px) {

    h3.carousel-heading,
    p.carousel-text,
    a.carousel-button {
     display:none;
    }

    h2.overlay-text {
     font-size: 30px;
    }
    .pa-content i {
     font-size: 35px;
    }

    .tagline-content h3 {
     font-size:30px;
     line-height: 35px;
    }

    .bio-left,
    .service-left {
     padding-top:25px;
    }

    .byf-logo { display: none; }

  } /* end 480px media query */

   /* - - - - - END MEDIA QUERIES - - - - - */

#content li {
  font-weight: 400;
  color: #000;
}

#content li {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 20px;
  padding: 1px 0px 2px;
}

td {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 20px;
  padding: 1px 0px 2px;
}

#practice_heading h2 {
  font-size: 36px;
}

.dashboard_link {
 font-family: 'Droid Serif', sans-serif;
 margin-top: 1.5rem;
}

.site_search_btn {
 margin-left: 0;
 padding-left: 0;
}