@import url('https://fonts.googleapis.com/css?family=Lato:400,400i,700,700i,900,900i');
/* Contents
==================================================
- Page Builder & Gravity Forms
- Galleries
- Colors & Fonts
- Homepage
- Theme Layout
- Dropdown Menu
- Archives
- Author Bio
- Sidebars
- Animations
- Parallax
- Responsive (include)
*/
/* Variables
================================================== */
/*

Required params, specify type, start color, end color.
Notice that each parameter should be separated with a ;. We use a comma to list colors and vendor prefixes.
.gradient(linear; #2BC0E4, #EAECC6);

If you would like to customize the color stop you could write:
.gradient(linear; #2BC0E4, #EAECC6 30%);

Changing the gradient direction should be done with an angle value instead of its keyword counterpart:
.gradient(linear; #2BC0E4, #EAECC6 30%; 180deg);

The following is an example in which we create a radial gradient:
.gradient(circle; #2BC0E4, #EAECC6);

Generating a repeating gradient? No problemo:
.gradient(repeating-linear; #085078, #2BC0E4 25px, #EAECC6 50px);
In this case, make sure you adjust the background-size accordingly to see the desired result.

*/
@-webkit-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@-moz-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@-o-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@-webkit-keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
  }
}
@-moz-keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -moz-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -moz-transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -moz-transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -moz-transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -moz-transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -moz-transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -moz-transform: scale3d(1, 1, 1);
  }
}
@-o-keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -o-transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -o-transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -o-transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -o-transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -o-transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -o-transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -moz-transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: none;
  }
}
@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -o-transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: none;
  }
}
@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -o-transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/*
 * animate.less v1.0.4 | animateforless.com
 *
 * -----------------------------------------------------------------------------
 *
 * The MIT License (MIT)
 *
 * Copyright (c) 2014-2016 Carlos M. Bonilla
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy of
 * this software and associated documentation files (the "Software"), to deal in
 * the Software without restriction, including without limitation the rights to
 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
 * the Software, and to permit persons to whom the Software is furnished to do so,
 * subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */
/*
********************************************************************************
**                                                                            **
**                      LESS ANIMATION FRAMEWORK                              **
**                                                                            **
********************************************************************************
*/
/* Contents
==================================================
- Tables
- Buttons 
- Forms
- Content Layout
- WordPress Generated Elements & Classes
- Standard HTML tags
- Editor Overrides
*/
/* Tables
================================================== */
table:not(.ui-datepicker-calendar) {
  font-size: 0.9rem;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
table:not(.ui-datepicker-calendar) th,
table:not(.ui-datepicker-calendar) td {
  padding: 0.75rem 1rem;
  border: 1px solid;
  position: relative;
  line-height: 1.25;
}
table:not(.ui-datepicker-calendar) th[scope="row"] {
  text-align: right;
}
table:not(.ui-datepicker-calendar) tfoot *,
table:not(.ui-datepicker-calendar) tr.blank * {
  border: none;
  background: none !important;
  opacity: 0.75;
  font-style: italic;
  padding: 0.5rem 0 0;
  font-size: 0.9em;
}
table:not(.ui-datepicker-calendar) tr.blank {
  color: rgba(255, 255, 255, 0);
}
table:not(.ui-datepicker-calendar).alignleft,
table:not(.ui-datepicker-calendar).alignright {
  max-width: 50%;
}
table:not(.ui-datepicker-calendar).alignleft td,
table:not(.ui-datepicker-calendar).alignright td,
table:not(.ui-datepicker-calendar).alignleft th,
table:not(.ui-datepicker-calendar).alignright th {
  min-width: 125px;
}
/* Buttons 
================================================== */
.btn,
button,
input[type="submit"],
input[type="button"],
.readmore-page a {
  border-radius: 2rem;
  text-transform: uppercase;
  border: none !important;
  box-shadow: none;
  text-shadow: none;
  padding: 0.5rem 1.25rem;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-style: normal;
  filter: none !important;
  display: inline-block;
  font-size: 0.85rem;
}
/* Forms
================================================== */
input:not([type="submit"]):not([type="button"]),
textarea,
select {
  border: 1px solid #ccc;
  padding: calc(0.625rem - 2px) calc(1.5rem - 2px);
  line-height: 1rem;
  border-radius: 3px;
}
input:not([type="submit"]):not([type="button"])::placeholder,
textarea::placeholder,
select::placeholder {
  color: #000;
  opacity: 0.5;
}
/* Content Layout
================================================== */
html {
  font-size: 1.5vw;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
body,
cite,
.mceContentBody blockquote,
address,
tr th,
.wp-caption,
.wp-caption .wp-caption-text,
.wp-caption-dd {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
}
body {
  padding: 0;
  margin: 0;
}
p {
  margin: 0 0 1.5rem;
  word-break: break-word;
}
p,
table {
  line-height: 1.5;
}
a {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.5rem;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 900;
  padding-top: 1rem;
}
h1 span.sub,
h2 span.sub,
h3 span.sub,
h4 span.sub,
h5 span.sub,
h6 span.sub {
  display: block;
  font-size: 0.5em;
}
h1,
h2 {
  line-height: 1;
}
h1 {
  font-size: 3.5rem;
  text-transform: uppercase;
}
h2 {
  font-size: 2.6rem;
}
h3 {
  font-size: 1.7rem;
}
h4,
h5,
h6 {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
h6 {
  font-style: italic;
}
img {
  max-width: 100%;
  height: auto;
}
#tinymce ul,
#primary ul,
#tinymce ol,
#primary ol {
  margin-bottom: 1.5rem;
  overflow: hidden;
}
#tinymce ul li,
#primary ul li,
#tinymce ol li,
#primary ol li {
  list-style-type: none;
  position: relative;
  margin-bottom: 0.25rem;
}
#tinymce ul li:last-child,
#primary ul li:last-child,
#tinymce ol li:last-child,
#primary ol li:last-child {
  margin-bottom: 0;
}
#tinymce ul li:before,
#primary ul li:before,
#tinymce ol li:before,
#primary ol li:before {
  content: '\2022';
  position: absolute;
  top: 0;
}
#tinymce ul ul,
#primary ul ul,
#tinymce ol ul,
#primary ol ul,
#tinymce ul ol,
#primary ul ol,
#tinymce ol ol,
#primary ol ol {
  margin: 0.25rem 0;
}
#tinymce ul li:before,
#primary ul li:before {
  font-size: 0.8rem;
  line-height: 1.5em;
  left: -1rem;
}
#tinymce ol,
#primary ol {
  counter-reset: item;
}
#tinymce ol > li:before,
#primary ol > li:before {
  content: counter(item) ". ";
  counter-increment: item;
  right: 100%;
  margin-right: 0.25rem;
}
#tinymce ol ol > li:before,
#primary ol ol > li:before {
  content: counter(item, lower-alpha) ". ";
}
#tinymce ol ol ol > li:before,
#primary ol ol ol > li:before {
  content: counter(item, lower-roman) ". ";
}
[class^="cols_"],
[class*=" cols_"] {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
}
[class^="cols_"] > h2,
[class*=" cols_"] > h2 {
  width: 100% !important;
}
[class^="cols_"] > *,
[class*=" cols_"] > * {
  margin: 0 0.75rem 1.5rem;
}
[class^="cols_"].cols_1 > *,
[class*=" cols_"].cols_1 > * {
  width: 100%;
  margin: 0;
}
[class^="cols_"].cols_2 > *,
[class*=" cols_"].cols_2 > * {
  width: calc(100% / 2 - 1.5rem);
}
[class^="cols_"].cols_3 > *,
[class*=" cols_"].cols_3 > * {
  width: calc(100% / 3 - 1.5rem);
}
[class^="cols_"].cols_4 > *,
[class*=" cols_"].cols_4 > * {
  width: calc(100% / 4 - 1.5rem);
}
[class^="cols_"].cols_5 > *,
[class*=" cols_"].cols_5 > * {
  width: calc(100% / 5 - 1.5rem);
}
[class^="cols_"].cols_6 > *,
[class*=" cols_"].cols_6 > * {
  width: calc(100% / 6 - 1.5rem);
}
/* WordPress Generated Elements & Classes
================================================== */
.alignnone {
  margin: 0 0 1rem;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 0 auto 1.5rem;
}
.alignright {
  float: right;
  margin: 0.25rem 0 1rem 1rem;
}
.alignleft {
  float: left;
  margin: 0.25rem 1rem 1rem 0;
}
a img.alignright {
  float: right;
  margin: 0.25rem 0 1rem 1rem;
}
a img.alignnone {
  margin: 0.25rem 1rem 1rem 0;
}
a img.alignleft {
  float: left;
  margin: 0.25rem 1rem 1rem 0;
}
a img.aligncenter {
  display: block;
  margin: 0 auto 1rem;
}
.wp-caption {
  max-width: 100% !important;
  padding: 0;
  text-align: center;
  white-space: nowrap;
}
.wp-caption p {
  margin-bottom: 0;
}
.wp-caption.alignnone {
  margin: 0.25rem 1rem 1rem 0;
}
.wp-caption.alignleft {
  margin: 0.25rem 1rem 1rem 0;
}
.wp-caption.alignright {
  margin: 0.25rem 0 1rem 1rem;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0 auto 0.25rem;
  max-width: 100%;
  padding: 0;
  width: auto;
  display: block;
}
.wp-caption .wp-caption-text,
.wp-caption-dd {
  font-size: 0.8rem;
  margin: 0;
  padding: 0.25rem;
  white-space: normal;
  background: rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(0, 0, 0, 0.125);
}
hr {
  border: none;
  height: 1px;
  margin-bottom: 1.5rem;
}
blockquote {
  border-left: none;
  margin: 0 0 1rem;
  text-align: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-left-width: 4px;
  position: relative;
  overflow: hidden;
}
blockquote:before {
  font-style: normal;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 17rem;
  opacity: 0.075;
  position: absolute;
  content: '\201C';
  top: -3.75rem;
  left: -0.75rem;
  line-height: 1.15;
}
blockquote p {
  margin-bottom: 1.0rem;
  position: relative;
  z-index: 9;
}
blockquote footer,
blockquote cite {
  font-size: 0.8rem;
}
blockquote footer:before,
blockquote cite:before {
  content: '';
  display: block;
  width: 15%;
  border-bottom: 1px solid #ddd;
  margin: 1rem auto 0.5rem;
}
blockquote > *:last-child {
  margin-bottom: 0;
}
blockquote.alignleft,
blockquote.alignright {
  width: 25%;
  text-align: left;
}
blockquote.alignleft footer:before,
blockquote.alignright footer:before,
blockquote.alignleft cite:before,
blockquote.alignright cite:before {
  margin: 1rem 0 0.5rem;
}
blockquote.alignleft {
  float: left;
  margin-right: 1rem;
}
blockquote.alignright {
  float: right;
  margin-left: 1rem;
}
/* Standard HTML tags
================================================== */
address {
  font-style: italic;
  margin-bottom: 1rem;
}
abbr,
acronym {
  text-decoration: none;
  border-bottom: 1px dotted #ccc;
  font-weight: bold;
}
big {
  font-size: 1.25em;
}
cite,
var,
blockquote footer {
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
code,
kbd,
tt {
  display: inline-block;
  vertical-align: baseline;
}
code,
kbd,
pre,
tt {
  color: #888;
  background: #f6f6f6;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0.125em 0.25em;
  font-size: 0.8em;
  font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
  text-align: left;
}
pre {
  padding: 1em 1.5em;
  margin-bottom: 1rem;
}
pre * {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}
del,
strike {
  text-decoration: line-through;
  opacity: 0.5;
}
em,
dt {
  font-style: italic;
}
q {
  font-style: italic;
}
q:before {
  content: open-quote;
}
q:after {
  content: close-quote;
}
strong,
b,
dt {
  font-weight: bold;
}
sub,
sup {
  font-size: 0.75em;
}
sub {
  vertical-align: sub;
}
sup {
  vertical-align: sup;
}
dd {
  margin-bottom: 1rem;
}
iframe {
  display: block;
}
.video {
  position: relative;
  padding-top: 75%;
}
.video.wide {
  padding-top: 56.25%;
}
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Editor Overrides
================================================== */
#tinymce {
  padding: 1rem 2rem!important;
}
#tinymce a {
  color: #999;
  text-decoration: underline;
}
#tinymce a:hover {
  color: #000;
}
#tinymce li:before {
  color: #ccc;
}
#tinymce .btn,
#tinymce button,
#tinymce input[type="submit"],
#tinymce input[type="button"] {
  text-decoration: none;
  color: #fff;
  background: #ccc;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
}
#tinymce .btn:hover,
#tinymce button:hover,
#tinymce input[type="submit"]:hover,
#tinymce input[type="button"]:hover {
  background: #000;
  color: #fff;
}
#tinymce .btn[data-mce-selected],
#tinymce button[data-mce-selected],
#tinymce input[type="submit"][data-mce-selected],
#tinymce input[type="button"][data-mce-selected] {
  background: #008ec2;
  box-shadow: none;
}
#tinymce svg,
#tinymce img[src$=".svg"] {
  max-height: 100px;
  max-width: 100px;
}
.mce-item-table,
.mce-item-table td,
.mce-item-table th,
.mce-item-table caption {
  border: 1px solid #ddd;
}
.mce-item-table th:not([scope="row"]) {
  background: #ddd;
  border-color: #ccc;
}
.mce-item-table th[scope="row"] {
  text-align: right;
}
#tinymce table:not(.ui-datepicker-calendar) {
  border-color: #ddd !important;
}
#tinymce table:not(.ui-datepicker-calendar) * {
  border-color: #ddd !important;
}
#tinymce table:not(.ui-datepicker-calendar) th:not([scope="row"]) {
  background: #bbb;
  border-color: #aaa !important;
  color: #fff;
}
#tinymce table:not(.ui-datepicker-calendar) th:nth-child(even) {
  background: #b3b3b3;
}
#tinymce table:not(.ui-datepicker-calendar) td:nth-child(even) {
  background: rgba(0, 0, 0, 0.03);
}
#tinymce table:not(.ui-datepicker-calendar) tr:nth-child(odd) {
  background: rgba(0, 0, 0, 0.06);
}
/* testimonials
================================================== */
.strong-view.wpmtst-simple .wpmtst-testimonial-inner {
  padding: 4em 0em 0em 1em !important;
}
@media only screen and (max-width: 480px) {
  .strong-view .strong-content.strong-grid .wpmtst-testimonial {
    width: 100% !important;
  }
  .strong-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  html body .strong-view .strong-content.strong-grid > .testimonial {
    margin: 0 !important;
  }
}
/* Page Builder & Gravity Forms
================================================== */
.editor_tinymce #primary {
  padding: 3rem 0 6rem;
}
.editor_pagebuilder.pad_heading #primary > .col {
  padding-top: 3rem;
}
.editor_pagebuilder:not(.pad_heading) #primary .entry-content > .panel-layout:first-child > .panel-no-style:first-child,
.editor_pagebuilder:not(.pad_heading) #primary .entry-content > .panel-layout:first-child > .panel-has-style:first-child > .panel-row-style:first-child {
  padding-top: 3rem;
}
.entry-content > .panel-layout:last-child > .panel-no-style:last-child,
.editor_pagebuilder .entry-content > .panel-layout:last-child > .panel-has-style:last-child > .panel-row-style:last-child {
  padding-bottom: 6rem;
}
body.page-id-11 .entry-content > .panel-layout:last-child > .panel-no-style:last-child,
body.page-id-11.editor_pagebuilder .entry-content > .panel-layout:last-child > .panel-has-style:last-child > .panel-row-style:last-child {
  padding-bottom: 0;
}
body.page-id-11 .gform_wrapper textarea.small {
  height: 10rem !important;
}
.editor_pagebuilder .site-content > .grid_12_of_12 > article {
  margin-bottom: 0;
}
body .gform_wrapper {
  margin: 0 0 1.5rem;
}
body .gform_wrapper br {
  display: none;
}
body .gform_wrapper p {
  margin: 0;
  display: inline;
  line-height: 1px;
}
body .gform_wrapper p label {
  line-height: normal;
}
body .gform_wrapper .gform_fields {
  font-size: 0;
  padding: 0;
}
body .gform_wrapper .gform_fields li {
  font-size: 1rem;
}
body .gform_wrapper ul.gform_fields li.gfield {
  padding-right: 0;
  margin-bottom: 0 !important;
}
body .gform_wrapper .top_label div.ginput_complex.ginput_container.gf_name_has_1,
body .gform_wrapper .top_label div.ginput_complex.ginput_container.gf_name_has_2,
body .gform_wrapper .top_label div.ginput_complex.ginput_container.gf_name_has_3 {
  width: calc(100% + 16px);
  max-width: 90vw;
}
body .gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text],
body .gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container select {
  margin-bottom: 0;
  margin-left: 0 !important;
}
body .gform_wrapper .ginput_container_address span {
  min-height: 0 !important;
}
body .gform_wrapper .ginput_container_address input {
  margin-bottom: 1rem !important;
}
body .gform_wrapper .ginput_container_address span.address_zip input,
body .gform_wrapper .ginput_container_address span.address_country input {
  margin-bottom: 0 !important;
}
body .gform_wrapper li.hidden_label input {
  margin-top: 0;
}
body .gform_wrapper .gform_footer,
body .gform_wrapper .ginput_container {
  padding: 0;
}
body .gform_wrapper .gform_footer br,
body .gform_wrapper .ginput_container br {
  display: none;
}
body .gform_wrapper .gform_footer p,
body .gform_wrapper .ginput_container p {
  margin-bottom: 0;
  display: inline;
}
body .gform_wrapper .gf_left_half {
  padding-right: 8px !important;
}
body .gform_wrapper .gf_right_half {
  padding-right: 0 !important;
  padding-left: 8px;
}
body .gform_wrapper .gf_left_half .ginput_container,
body .gform_wrapper .gf_right_half .ginput_container {
  margin-top: 0 !important;
}
body .gform_wrapper .top_label input.large.datepicker,
body .gform_wrapper .top_label input.medium.datepicker,
body .gform_wrapper .top_label input.small.datepicker {
  width: 100%;
}
body .gform_wrapper .money .ginput_container {
  position: relative;
}
body .gform_wrapper .money .ginput_container:before {
  content: '$';
  border: 1px solid #ccc;
  color: #aaa;
  background: #eee;
  padding: calc(0.625rem - 2px) 0;
  width: 1.5rem;
  text-align: center;
  line-height: 1rem;
  border-radius: 3px 0 0 3px;
  position: absolute;
  top: 0;
  left: 0;
}
body .gform_wrapper .money .ginput_container input {
  padding-left: calc(1.5rem + 4px) !important;
}
ul.sow-slider-images,
ul.sow-slider-images li {
  margin-bottom: 0 !important;
}
/* Galleries
================================================== */
.gallery_wrap:not(.masonry) > .gallery_wrap:not(.masonry) {
  width: calc(100% + 1rem) !important;
  margin: 0 -0.5rem;
}
.gallery_wrap:not(.masonry) > .gallery_wrap:not(.masonry) .gallery .gallery-item {
  padding: 0;
  float: none;
  margin: 0 0.5rem 1rem;
}
.gallery_wrap:not(.masonry) > .gallery_wrap:not(.masonry) .gallery.gallery-columns-1 > .gallery-item {
  width: 100%;
  margin: 0;
}
.gallery_wrap:not(.masonry) > .gallery_wrap:not(.masonry) .gallery.gallery-columns-2 > .gallery-item {
  width: calc(100% / 2 - 1rem);
}
.gallery_wrap:not(.masonry) > .gallery_wrap:not(.masonry) .gallery.gallery-columns-3 > .gallery-item {
  width: calc(100% / 3 - 1rem);
}
.gallery_wrap:not(.masonry) > .gallery_wrap:not(.masonry) .gallery.gallery-columns-4 > .gallery-item {
  width: calc(100% / 4 - 1rem);
}
.gallery_wrap:not(.masonry) > .gallery_wrap:not(.masonry) .gallery.gallery-columns-5 > .gallery-item {
  width: calc(100% / 5 - 1rem);
}
.gallery_wrap:not(.masonry) > .gallery_wrap:not(.masonry) .gallery.gallery-columns-6 > .gallery-item {
  width: calc(100% / 6 - 1rem);
}
.gallery_wrap:not(.masonry) > .gallery_wrap:not(.masonry) .gallery.gallery-columns-7 > .gallery-item {
  width: calc(100% / 7 - 1rem);
}
.gallery_wrap:not(.masonry) > .gallery_wrap:not(.masonry) .gallery.gallery-columns-8 > .gallery-item {
  width: calc(100% / 8 - 1rem);
}
.gallery_wrap:not(.masonry) > .gallery_wrap:not(.masonry) .gallery.gallery-columns-9 > .gallery-item {
  width: calc(100% / 9 - 1rem);
}
.gallery_wrap.masonry > .gallery_wrap.masonry {
  width: calc(100% + 4px) !important;
  margin: 0 -2px;
}
.gallery_wrap.masonry > .gallery_wrap.masonry .gallery .gallery-item {
  padding: 0;
  float: none;
  margin: 0 2px 4px;
}
.gallery_wrap.masonry > .gallery_wrap.masonry .gallery.gallery-columns-1 > .gallery-item {
  width: 100%;
  margin: 0;
}
.gallery_wrap.masonry > .gallery_wrap.masonry .gallery.gallery-columns-2 > .gallery-item {
  width: calc(100% / 2 - 4px);
}
.gallery_wrap.masonry > .gallery_wrap.masonry .gallery.gallery-columns-3 > .gallery-item {
  width: calc(100% / 3 - 4px);
}
.gallery_wrap.masonry > .gallery_wrap.masonry .gallery.gallery-columns-4 > .gallery-item {
  width: calc(100% / 4 - 4px);
}
.gallery_wrap.masonry > .gallery_wrap.masonry .gallery.gallery-columns-5 > .gallery-item {
  width: calc(100% / 5 - 4px);
}
.gallery_wrap.masonry > .gallery_wrap.masonry .gallery.gallery-columns-6 > .gallery-item {
  width: calc(100% / 6 - 4px);
}
.gallery_wrap.masonry > .gallery_wrap.masonry .gallery.gallery-columns-7 > .gallery-item {
  width: calc(100% / 7 - 4px);
}
.gallery_wrap.masonry > .gallery_wrap.masonry .gallery.gallery-columns-8 > .gallery-item {
  width: calc(100% / 8 - 4px);
}
.gallery_wrap.masonry > .gallery_wrap.masonry .gallery.gallery-columns-9 > .gallery-item {
  width: calc(100% / 9 - 4px);
}
.gallery {
  width: 100% !important;
}
.gallery .gallery-icon > a {
  border-bottom: none !important;
  display: block;
}
.gallery .gallery-icon img {
  display: block;
}
.gallery .gallery-caption {
  display: none;
}
.gallery a:hover {
  opacity: 0.6;
}
.gallery:not(.masonry) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.gallery:not(.masonry) .gallery-icon img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.gallery_wrap.masonry {
  position: relative;
}
.gallery_wrap.masonry > .spinner {
  display: none;
}
.gallery_wrap.masonry > .gallery_wrap > .spinner {
  display: block;
}
.gallery_wrap.masonry .spinner {
  position: absolute;
  background: #fff;
  top: 0;
  left: calc(50% - 2rem);
  width: 4rem;
  height: 4rem;
  z-index: 1;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.gallery_wrap.masonry .spinner svg {
  width: 100%;
  height: 100%;
}
.gallery_wrap.masonry .gallery {
  position: relative;
  z-index: 2;
  opacity: 0;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.gallery_wrap.masonry img {
  width: 100% !important;
  height: auto;
}
.gallery_wrap.masonry.loaded .gallery {
  opacity: 1;
}
.gallery_wrap.masonry.loaded .spinner {
  opacity: 0;
}
.gallery_wrap.slides {
  margin-bottom: 3rem;
}
.gallery_wrap.slides div,
.gallery_wrap.slides figure {
  width: 100%;
}
.gallery_wrap.slides figure {
  padding: 0;
  margin: 0;
  display: block;
  background: #ccc;
  padding-top: 65%;
  position: relative;
}
.gallery_wrap.slides figure > div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.gallery_wrap.slides figure > div > img {
  max-width: 1400px;
  width: 100%;
  height: auto;
}
.gallery_wrap.slides li {
  margin-bottom: 0 !important;
}
.gallery_wrap.slides li:before {
  display: none;
}
.gallery_wrap.slides .flickity-page-dots {
  bottom: -3rem;
}
/* Colors & Fonts
================================================== */
body {
  color: #1b2029;
}
#headerbar {
  background: #df3030;
  color: #fff;
  font-size: 0.85rem;
}
#headerbar strong {
  font-weight: 900;
}
#headercontainer {
  background-image: -webkit-linear-gradient(-90deg, #1b2029, rgba(27, 32, 41, 0) 8rem);
  background-image: -moz-linear-gradient(-90deg, #1b2029, rgba(27, 32, 41, 0) 8rem);
  background-image: -ms-linear-gradient(-90deg, #1b2029, rgba(27, 32, 41, 0) 8rem);
  background-image: -o-linear-gradient(-90deg, #1b2029, rgba(27, 32, 41, 0) 8rem);
  background-image: linear-gradient(180deg, #1b2029, rgba(27, 32, 41, 0) 8rem);
}
body:not(.overlay_header) #headercontainer {
  background: #fff;
}
#inner_header {
  color: #fff;
  font-size: 0.85rem;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.25), 0 0 10px rgba(0, 0, 0, 0.25);
}
#inner_header strong {
  font-weight: 900;
}
#bannercontainer {
  background-color: #313743;
}
#bannercontainer h1 {
  color: #fff;
  font-size: 3rem;
}
#maincontentcontainer {
  background: #fff;
  position: relative;
}
h1,
h2 {
  color: #df3030;
}
h3,
h4,
h5,
h6 {
  color: #df3030;
}
.lightTxt p,
.lightTxt h1,
.lightTxt h2,
.lightTxt h3,
.lightTxt h4,
.lightTxt h5,
.lightTxt h6,
.lightTxt li {
  color: #fff;
}
a {
  color: #df3030;
}
a:hover {
  color: #1b2029;
}
.featured-post {
  background: #df3030;
}
#footerbar {
  background-color: #313743;
  background-image: url(/wp-content/uploads/2018/12/handcuffs.jpg);
  color: #fff;
}
#testimonials {
  background: #efeff0;
  color: #7d8085;
}
#footercontainer,
html {
  background: #1b2029;
  color: #fff;
}
#footercontainer a {
  color: #fff;
}
#footercontainer a:hover {
  color: #df3030;
}
hr {
  background: #ddd;
}
#primary ul li:before,
#primary ol li:before {
  color: #df3030;
}
#primary a:hover {
  border-bottom-color: #df3030;
}
table:not(.ui-datepicker-calendar) {
  border-color: rgba(211, 60, 60, 0.35) !important;
}
table:not(.ui-datepicker-calendar) * {
  border-color: rgba(211, 60, 60, 0.35) !important;
}
table:not(.ui-datepicker-calendar) td:nth-child(even) {
  background: rgba(211, 60, 60, 0.1);
}
table:not(.ui-datepicker-calendar) tr:nth-child(odd) {
  background: rgba(211, 60, 60, 0.1);
}
table:not(.ui-datepicker-calendar) th:not([scope="row"]) {
  background: #df3030;
  border-color: #cc2020 !important;
  color: #fff;
}
table:not(.ui-datepicker-calendar) th:not([scope="row"]):nth-child(even) {
  background: #d52121;
}
#footercontainer .widget_nav_menu ul a {
  color: #fff;
}
#footercontainer .widget_nav_menu ul a:hover {
  color: #df3030;
}
#primary #secondary {
  float: right;
  margin: -6rem 0 6rem 3rem;
  width: 25%;
}
#primary #secondary .widget_nav_menu li {
  margin: 0;
}
#primary #secondary .widget_nav_menu li:before {
  display: none;
}
#primary #secondary .widget_nav_menu li a {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
#primary #secondary .widget_nav_menu > div > ul > li > a {
  font-size: 1.7rem;
  font-weight: bold;
}
#primary #secondary .widget_nav_menu > div > ul > li:not(.page-item-13):not(.current-page-ancestor) {
  display: none;
}
#primary #secondary .widget_nav_menu > div > ul > li a {
  color: #fff;
}
#primary #secondary .widget_nav_menu ul {
  padding: 0 !important;
  margin: 0;
}
#primary #secondary .widget_nav_menu ul ul {
  padding-left: 1.75rem;
}
#primary #secondary .widget_nav_menu ul ul li:before {
  color: #fff;
}
#primary #secondary .widget_nav_menu ul.sub-menu li {
  border-bottom: 1px solid #fff;
  margin-bottom: 0.5rem;
}
#primary #secondary .widget_nav_menu ul.sub-menu li:last-child {
  border-bottom: none;
}
#primary #secondary aside {
  background: #df3030;
  padding: 2rem;
}
.btn,
button,
input[type="submit"],
input[type="button"],
.readmore-page a {
  color: #fff !important;
  background: #df3030;
}
.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.readmore-page a:hover {
  background: #313743;
}
.btn.alt,
button.alt,
input[type="submit"].alt,
input[type="button"].alt,
.readmore-page a.alt {
  background: #313743;
}
.btn.alt:hover,
button.alt:hover,
input[type="submit"].alt:hover,
input[type="button"].alt:hover,
.readmore-page a.alt:hover {
  background: #df3030;
}
#primary ul.page-numbers a:hover,
#primary ul.page-numbers span.current {
  background: #df3030;
}
#primary ul.page-numbers a.next:hover,
#primary ul.page-numbers a.prev:hover {
  color: #df3030;
}
.main-navigation ul.nav-menu {
  padding-left: 0;
}
.main-navigation ul.nav-menu > li > a,
.main-navigation ul.nav-menu > li > span.no_link {
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.25), 0 0 10px rgba(0, 0, 0, 0.25);
}
.main-navigation ul.nav-menu li.menu-parent-item > a:before,
.main-navigation ul.nav-menu li.menu-parent-item > span.no_link:before,
.main-navigation ul.nav-menu li.menu-parent-item > a:after,
.main-navigation ul.nav-menu li.menu-parent-item > span.no_link:after {
  opacity: 0.5;
}
.main-navigation ul.nav-menu > .menu-item:hover > a,
.main-navigation ul.nav-menu > .current-menu-item > a,
.main-navigation ul.nav-menu > .current_page_item > a,
.main-navigation ul.nav-menu > .current-page-ancestor > a,
.main-navigation ul.nav-menu > .current_page_parent > a,
.main-navigation ul.nav-menu > .menu-item:hover > span.no_link,
.main-navigation ul.nav-menu > .current-menu-item > span.no_link,
.main-navigation ul.nav-menu > .current_page_item > span.no_link,
.main-navigation ul.nav-menu > .current-page-ancestor > span.no_link,
.main-navigation ul.nav-menu > .current_page_parent > span.no_link {
  color: #df3030;
}
.main-navigation ul.nav-menu ul a,
.main-navigation ul.nav-menu ul span.no_link {
  color: #1b2029 !important;
}
.main-navigation ul.nav-menu ul li:hover > a,
.main-navigation ul.nav-menu ul li.current-menu-item > a,
.main-navigation ul.nav-menu ul li.current_page_item > a,
.main-navigation ul.nav-menu ul li.current-page-ancestor > a,
.main-navigation ul.nav-menu ul li.current_page_parent > a,
.main-navigation ul.nav-menu ul li:hover > span.no_link,
.main-navigation ul.nav-menu ul li.current-menu-item > span.no_link,
.main-navigation ul.nav-menu ul li.current_page_item > span.no_link,
.main-navigation ul.nav-menu ul li.current-page-ancestor > span.no_link,
.main-navigation ul.nav-menu ul li.current_page_parent > span.no_link {
  color: #df3030 !important;
  background: #f2f2f2;
}
a.social [class^='icon-'],
a.social [class*=' icon-'] {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.9375rem;
  color: #fff;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.59375rem;
  background: #1b2029;
  border-radius: 50%;
  text-align: center;
  margin: 0 0.25rem;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
a.social [class^='icon-'].icon-facebook,
a.social [class*=' icon-'].icon-facebook {
  background: #425f96;
}
a.social:hover [class^='icon-'],
a.social:hover [class*=' icon-'] {
  background: #df3030 !important;
}
/* Homepage
================================================== */
#home_banner img {
  margin-top: -7rem;
  margin-left: -4rem;
  max-width: calc( 0.72 * 1400px );
  width: 65vw;
}
#home_banner h1 {
  padding-top: 3rem;
}
#home_banner h1 strong {
  font-weight: 900;
  color: #df3030;
}
.large_p {
  font-size: 1.3rem;
}
.red_box > div,
#footerbar .wrap > div,
.red_box > aside:first-child > div,
#footerbar .wrap > aside:first-child > div {
  position: relative;
  padding: 4.75rem 5.75rem 4.75rem 0;
}
.red_box > div:before,
#footerbar .wrap > div:before,
.red_box > aside:first-child > div:before,
#footerbar .wrap > aside:first-child > div:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100vw;
  background: #df3030;
}
.red_box > div > div,
#footerbar .wrap > div > div,
.red_box > aside:first-child > div > div,
#footerbar .wrap > aside:first-child > div > div {
  position: relative;
}
.red_box.right > div,
#footerbar .wrap.right > div {
  padding: 4.75rem 0 4.75rem 5.75rem;
}
.red_box.right > div:before,
#footerbar .wrap.right > div:before {
  right: auto;
  left: 0;
}
.red_box > aside:first-child > div:before,
#footerbar .wrap > aside:first-child > div:before {
  left: 0;
  width: 100%;
}
.red_box p,
#footerbar .wrap p,
.red_box h2,
#footerbar .wrap h2 {
  color: #fff;
}
.red_box h2,
#footerbar .wrap h2 {
  padding-top: 0;
}
#about_dan .red_box,
#practice_areas .red_box {
  position: relative;
  top: -3rem;
  margin-top: -3rem;
}
#about_dan h3 {
  font-size: 1.3rem;
}
#about_dan a {
  font-weight: bold;
  color: #1b2029;
}
#about_dan a:hover {
  color: #df3030;
}
#footerbar .wrap {
  align-items: flex-start;
  justify-content: space-between;
}
#footerbar .wrap > aside {
  width: calc(77% - 25px);
}
#footerbar .wrap > aside:first-child {
  width: calc(32.25% - 25px);
  z-index: 1;
  top: -2rem;
  margin-top: -2rem;
}
#footerbar .wrap > aside:first-child > div {
  padding: 4rem 5.25rem 4rem 2.6rem;
}
#footerbar .wrap > aside:last-child {
  padding: 5rem 5.5rem;
  margin: 7rem 0 7rem -9.25%;
  border: 6px solid #fff;
  position: relative;
  z-index: 2;
}
#footerbar .wrap > aside h2 {
  font-size: 1.7rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
#footerbar .wrap > aside h3 {
  padding: 0;
  color: #fff;
  margin-bottom: 1rem;
}
#footerbar .wrap > aside input[type="text"],
#footerbar .wrap > aside textarea {
  background: none;
  border: 1px solid #fff;
  border-radius: 0;
  color: #fff;
  margin-bottom: 1rem;
}
#footerbar .wrap > aside input[type="text"]::placeholder,
#footerbar .wrap > aside textarea::placeholder {
  color: #fff;
  opacity: 0.5;
}
#footerbar .wrap .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_first,
#footerbar .wrap .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_last,
#footerbar .wrap .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_middle {
  padding-top: 0;
}
#stats {
  padding: 10rem;
  position: relative;
}
#stats:before {
  content: '';
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: calc(90vw - 12px);
  max-width: 1388px;
  height: calc(100% - 10rem - 12px);
  border: 6px solid #fff;
}
#stats .panel-grid-cell:first-of-type {
  padding-left: 2rem;
}
#stats .panel-grid-cell:last-of-type {
  padding-right: 2rem;
}
#stats p {
  margin-bottom: 0;
  font-weight: 900;
}
#stats p strong {
  font-size: 2.6rem;
}
#practice_areas2 .so-panel {
  margin-bottom: 3rem !important;
}
#practice_areas2 h3 {
  padding: 0;
  margin-bottom: 0.5rem;
}
#practice_areas2 p {
  margin-bottom: 0.5rem;
}
#practice_areas2 a {
  color: #1b2029;
  font-weight: bold;
}
#practice_areas2 a:hover {
  color: #df3030;
}
#practice_areas2 [class^='icon-'],
#practice_areas2 [class*=' icon-'] {
  position: absolute;
  left: 0;
  top: 0;
  color: #df3030;
  font-size: 4rem;
}
#practice_areas2 [class^='icon-'].icon-handcuffs,
#practice_areas2 [class*=' icon-'].icon-handcuffs {
  font-size: 3.5rem;
}
#practice_areas2 .textwidget {
  position: relative;
  padding-left: 6.8rem;
}
#testimonials {
  text-align: center;
  position: relative;
  padding: 4rem 0 5.25rem;
  overflow: visible;
}
#testimonials aside {
  position: relative;
}
#testimonials .wrap {
  padding: 0 !important;
}
#testimonials .client_photo,
#testimonials .testimonial-image {
  position: absolute !important;
  top: -9.5rem;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #cccdd0;
  border-radius: 6rem;
  width: 12rem;
  height: 12rem;
  background-size: cover;
  background-image: url(/wp-content/uploads/2018/12/client.jpg);
  z-index: 9;
}
#testimonials .client_photo .photo,
#testimonials .testimonial-image .photo,
#testimonials .client_photo img,
#testimonials .testimonial-image img {
  width: 100%;
  height: 100%;
  border-radius: 6rem;
  background-size: cover;
}
#testimonials p,
#testimonials .content > div {
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 1.5rem !important;
}
#testimonials .content,
#testimonials .testimonial-content {
  position: relative;
  padding: 0 4.5rem;
  text-align: center;
}
#testimonials .content:before,
#testimonials .testimonial-content:before,
#testimonials .content:after,
#testimonials .testimonial-content:after {
  position: absolute;
  z-index: 1;
  width: 10rem;
}
#testimonials .content:before,
#testimonials .testimonial-content:before {
  content: url(/wp-content/uploads/2018/12/quotes.svg);
  top: -5.25rem;
  left: 0;
  z-index: -50;
}
#testimonials .content:after,
#testimonials .testimonial-content:after {
  content: url(/wp-content/uploads/2018/12/quotes.svg);
  bottom: -4rem;
  right: 0;
  transform: rotate(180deg);
}
#testimonials .content > *,
#testimonials .testimonial-content > * {
  position: relative;
  z-index: 2;
}
#testimonials .content > div,
#testimonials .testimonial-content > div {
  margin-bottom: 1.5rem;
}
#testimonials strong,
#testimonials .testimonial-name {
  font-weight: 900;
  color: #1b2029;
}
#testimonials .post-loop-ajax-more,
#testimonials a.readmore {
  display: inline-block;
  background-color: transparent;
  color: #df3030;
  font-size: 0;
}
#testimonials .post-loop-ajax-more:before,
#testimonials a.readmore:before {
  font-size: 1.3rem;
  content: 'See Full Testimonial \02192';
}
#testimonials .post-loop-ajax-more:hover,
#testimonials a.readmore:hover {
  color: #1b2029;
}
#testimonials .btn {
  margin-top: 1.5rem !important;
}
#testimonials .wpmslider-viewport {
  overflow: visible !important;
}
#testimonials .cite,
#testimonials .testimonial-client {
  position: relative;
  z-index: 9;
  text-align: center;
}
.archive #primary .cols_3 article {
  background: #efeff0;
  padding: 2rem;
  color: #7d8085;
}
.archive #primary .cols_3 article .date {
  font-size: 0.9em;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.archive #primary .cols_3 article h4 {
  margin-bottom: 0;
  padding-top: 0;
}
.archive #primary .cols_3 article .readmore {
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 0;
}
.archive #primary .cols_3 article .thumb {
  margin: -2rem -2rem 1.5rem;
}
.simplePagerContainer {
  padding-bottom: 4rem;
}
.strong-grid {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -0.75rem !important;
}
.strong-grid > .testimonial {
  margin: 0 0.75rem 1.5rem !important;
  width: calc(100% / 3 - 1.5rem) !important;
}
.entry-header img {
  max-width: 25%;
}
.strong-view .strong-content.strong-grid .testimonial {
  margin-bottom: 0;
}
.strong-view.simple .testimonial-inner {
  padding: 6rem 2rem 2rem;
  position: relative;
  margin-top: 4rem !important;
  text-align: center;
  box-sizing: border-box;
  height: auto;
}
.strong-view.simple .testimonial-inner .testimonial-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #cccdd0;
  border-radius: 4rem;
  width: 8rem;
  height: 8rem;
  background-size: cover;
  background-image: url(/wp-content/uploads/2018/12/client.jpg);
  z-index: 9;
}
.strong-view.simple .testimonial-inner .testimonial-image img {
  width: 100%;
  height: 100%;
  border-radius: 6rem;
  background-size: cover;
}
.strong-view.simple .testimonial-inner .testimonial-name {
  font-weight: 900;
  color: #1b2029;
}
.post-type-archive-testimonial #primary .cols_3 article {
  position: relative;
  margin-top: 4rem !important;
  padding-top: 6rem;
  text-align: center;
}
.post-type-archive-testimonial #primary .cols_3 article .client_photo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #cccdd0;
  border-radius: 4rem;
  width: 8rem;
  height: 8rem;
  background-size: cover;
  background-image: url(/wp-content/uploads/2018/12/client.jpg);
  z-index: 9;
}
.post-type-archive-testimonial #primary .cols_3 article .client_photo .photo {
  width: 100%;
  height: 100%;
  border-radius: 6rem;
  background-size: cover;
}
.post-type-archive-testimonial #primary .cols_3 article .content {
  position: relative;
  margin-bottom: 1.5rem;
}
.post-type-archive-testimonial #primary .cols_3 article .content div {
  z-index: 2;
  position: relative;
}
.post-type-archive-testimonial #primary .cols_3 article .content:before,
.post-type-archive-testimonial #primary .cols_3 article .content:after {
  position: absolute;
  z-index: 1;
  width: 6rem;
}
.post-type-archive-testimonial #primary .cols_3 article .content:before {
  content: url(/wp-content/uploads/2018/12/quotes.svg);
  top: -1rem;
  left: 0;
}
.post-type-archive-testimonial #primary .cols_3 article .content:after {
  content: url(/wp-content/uploads/2018/12/quotes.svg);
  bottom: -1rem;
  right: 0;
  transform: rotate(180deg);
}
.post-type-archive-testimonial #primary .cols_3 article strong {
  font-weight: 900;
  color: #1b2029;
}
.post-type-archive-testimonial #primary .cols_3 article .cite {
  position: relative;
  z-index: 9;
  margin-bottom: 1.5rem;
}
h2 + .mpc-timeline_item {
  margin-top: 0 !important;
}
.mpc-timeline_item h4 {
  margin-bottom: 0.5rem !important;
  padding-top: 0 !important;
}
.mpc-timeline_item h4,
.mpc-timeline_item p {
  margin-right: 0 !important;
}
.mpc-timeline_item a.cboxElement {
  display: block;
}
.mpc-timeline_item img.alignnone {
  margin: 0 !important;
}
/*
.mpc-timeline .mpc-timeline_item .textwidget {
	max-height: 20rem;
	overflow: hidden;
}
*/
.mpc-timeline .mpc-timeline_item .textwidget p {
  margin-bottom: 0;
}
.mpc-timeline .mpc-timeline_item .textwidget a.btn[href="#"] {
  cursor: default;
  pointer-events: none;
}
.mpc-timeline .mpc-timeline_item .textwidget a.btn[href="#"]:hover {
  background: #df3030;
}
.timeline {
  padding: 2rem 0;
  position: relative;
}
.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  height: 100%;
  width: 2px;
  background: #b8b9bc;
  z-index: 1;
}
.timeline:after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  height: 2px;
  width: 50%;
  background: #b8b9bc;
  z-index: 2;
}
.timeline.right:after {
  left: auto;
  right: 0;
}
.timeline .panel-grid-cell {
  position: relative;
  z-index: 3;
}
.timeline_top {
  position: relative;
}
.timeline_top:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  height: 3rem;
  width: 2px;
  background: #b8b9bc;
  z-index: 1;
}
.timeline_top:after {
  content: '';
  position: absolute;
  bottom: calc(3rem - 1px);
  left: 45%;
  height: 3px;
  width: 10%;
  background: #b8b9bc;
  z-index: 2;
}
.timeline_bottom {
  position: relative;
}
.timeline_bottom:before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  height: 3rem;
  width: 2px;
  background: #b8b9bc;
  z-index: 1;
}
.timeline_bottom:after {
  content: '';
  position: absolute;
  top: calc(3rem - 1px);
  left: 45%;
  height: 2px;
  width: 10%;
  background: #b8b9bc;
  z-index: 2;
}
.entry-content [class^="cols_"],
.entry-content [class*=" cols_"] {
  width: 70%;
}
/* Theme Layout
================================================== */
#wrapper {
  overflow: hidden;
}
a {
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
body.admin-bar.home #headercontainer.sticky,
body.admin-bar.home.overlay_header #headercontainer {
  top: 32px !important;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
body.home #headercontainer {
  position: absolute !important;
}
body.overlay_header #headercontainer {
  /*position: absolute; */
  position: relative;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 99999;
}
#headercontainer {
  width: 100%;
  text-align: right;
}
#headercontainer.sticky {
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
}
#headercontainer.sticky * {
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#headercontainer.sticky.smaller {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  position: fixed;
}
#headercontainer.sticky.smaller #logo {
  max-height: 80px;
}
#headercontainer.sticky.smaller header {
  padding: 0.5rem 0;
}
#headercontainer.sticky.smaller #headerbar {
  padding: 0.25rem;
}
#headercontainer.sticky.smaller #inner_header {
  margin-bottom: 0.5rem;
}
#headercontainer.sticky.smaller #headerbar,
#headercontainer.sticky.smaller #inner_header {
  display: none;
}
body.include_bar #headercontainer.sticky.smaller #headerbar,
body.include_inner #headercontainer.sticky.smaller #inner_header {
  display: block;
}
#headercontainer header {
  padding: 1rem 0;
  margin: 0 auto;
  width: 90%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
}
#headercontainer header .site-title {
  width: 25%;
  text-align: left;
}
#headercontainer header .site-title h1 {
  line-height: 0;
}
#headercontainer header .nav-wrap {
  width: 75%;
  text-align: right;
}
#logo {
  max-height: 8.67rem;
  max-width: 100%;
  width: auto;
  padding: 0;
}
#headerbar {
  text-align: right;
  padding: 0.5rem 0;
}
#headerbar p {
  margin-bottom: 0;
}
#headerbar .wrap {
  margin: 0 auto;
  width: 90%;
  max-width: 1400px;
}
#headerbar ul,
#headerbar ol {
  margin: 0;
  padding: 0;
}
#headerbar ul li,
#headerbar ol li {
  display: inline-block;
  list-style: none;
  margin-left: 0.5rem;
}
#inner_header {
  overflow: hidden;
  margin-bottom: 1rem;
}
#inner_header p {
  margin-bottom: 0;
}
#bannercontainer {
  padding: 0 0 4rem;
  background-size: cover;
  background-position: center center;
  text-align: center;
  position: relative;
  /* { margin: 0; } */
}
#bannercontainer .banner {
  margin: 0 auto;
  width: 90%;
  max-width: 1400px;
  position: relative;
}
#bannercontainer:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(14, 16, 21, 0.65);
}
#primary {
  margin: 0 auto;
  width: 90%;
  max-width: 1400px;
}
#primary .paging-navigation ul li:before {
  display: none;
}
#primary form li:before {
  display: none;
}
.post-navigation.nav-single {
  margin-top: 4rem;
  font-size: 0;
  white-space: nowrap;
}
.post-navigation.nav-single > div {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  white-space: normal;
  width: 50%;
}
.post-navigation.nav-single > div:nth-child(2) {
  text-align: right;
}
#footerbar,
#testimonials {
  position: relative;
}
#footerbar .wrap,
#testimonials .wrap {
  position: relative;
  margin: 0 auto;
  width: 90%;
  max-width: 1400px;
}
#footerbar .wrap *,
#testimonials .wrap * {
  margin: 0;
}
#footercontainer {
  overflow: hidden;
}
#footercontainer footer {
  margin: 0 auto;
  width: 90%;
  max-width: 1400px;
}
#footercontainer h3 {
  padding-top: 0;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: #fff;
}
#footercontainer p.date {
  display: none;
}
#footercontainer h4 {
  font-size: 1rem;
  font-weight: bold;
  padding: 0;
  margin: 0;
}
#footercontainer h4 a {
  color: #df3030;
}
#footercontainer h4 a:hover {
  color: #fff;
}
#footercontainer h4,
#footercontainer p {
  line-height: 1.5;
}
#footercontainer article p:last-of-type {
  margin-top: 0.5rem;
}
#footercontainer a.post_link {
  font-weight: bold;
}
#footercontainer .site-footer {
  padding: 4rem 0;
}
#footercontainer .site-footer p:last-child {
  margin-bottom: 0;
}
#footercontainer .site-footer h3,
#footercontainer .site-footer .widget_nav_menu ul.menu > li > a {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 900;
  margin-bottom: 1.0rem;
}
#footercontainer .site-footer .widget-area img,
#footercontainer .site-footer .widget-area svg {
  max-width: 80% !important;
  margin-bottom: 2.0rem;
}
#footercontainer .site-footer .widget_nav_menu ul.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footercontainer .site-footer .widget_nav_menu ul.menu ul {
  padding: 0;
  margin: 0 0 0 0.75rem;
}
#footercontainer .site-footer .widget_nav_menu ul.menu ul li {
  list-style-type: none;
  position: relative;
}
#footercontainer .site-footer .widget_nav_menu ul.menu ul li:last-child {
  margin-bottom: 0;
}
#footercontainer .site-footer .widget_nav_menu ul.menu ul li:before {
  content: '- ';
  position: absolute;
  top: -2px;
  line-height: 1.5em;
  left: -0.75rem;
  opacity: 0.25;
}
#footercontainer .site-footer .widget_nav_menu ul.menu ul li a {
  opacity: 0.5;
}
#footercontainer .site-footer .widget_nav_menu ul.menu ul li a:hover {
  opacity: 1;
}
#footercontainer .cols_3 .col_1,
#footercontainer .cols_3 .col_2 {
  width: calc(25% - 1.5rem);
}
#footercontainer .cols_3 .col_3 {
  width: calc(50% - 1.5rem);
}
.smallprint {
  text-align: center;
  overflow: hidden;
  padding: 1rem 0;
}
.smallprint p {
  margin-bottom: 0;
  font-size: 0.85rem;
}
.smallprint .wrap {
  margin: 0 auto;
  width: 90%;
  max-width: 1400px;
}
.smallprint .widget-area ul {
  margin-bottom: 1rem;
  padding: 0;
  list-style: none;
  text-transform: uppercase;
}
.smallprint .widget-area ul li {
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  font-size: 1rem;
  line-height: 1;
  padding-right: 0.75rem;
  margin-right: 0.5rem;
}
.smallprint .widget-area ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.smallprint .widget-area ul li ul {
  display: none;
}
.smallprint .widget-area ul > .menu-item:hover > a,
.smallprint .widget-area ul > .current-menu-item > a,
.smallprint .widget-area ul > .current_page_item > a,
.smallprint .widget-area ul > .current-page-ancestor > a,
.smallprint .widget-area ul > .current_page_parent > a,
.smallprint .widget-area ul > .menu-item:hover > span.no_link,
.smallprint .widget-area ul > .current-menu-item > span.no_link,
.smallprint .widget-area ul > .current_page_item > span.no_link,
.smallprint .widget-area ul > .current-page-ancestor > span.no_link,
.smallprint .widget-area ul > .current_page_parent > span.no_link {
  color: #df3030;
}
.archive-description {
  font-style: italic;
  opacity: 0.75;
}
.post-password-form {
  text-align: center;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  max-width: 1050px;
  margin: 0 auto 1.5rem;
  padding: 2rem;
}
.post-password-form > *:last-child {
  margin-bottom: 0;
}
*[data-tooltip] {
  position: relative;
  color: #df3030;
  padding-bottom: 0.5rem;
  margin-bottom: -0.5rem;
}
*[data-tooltip]:before {
  content: attr(data-tooltip);
  position: absolute;
  top: 100%;
  width: 200px;
  left: 50%;
  margin-left: -100px;
  background: #fff;
  border: 1px solid #df3030;
  border-radius: 3px;
  padding: 0.5rem;
  font-size: 1rem;
  box-sizing: border-box;
  z-index: 9;
  font-size: 0.7rem;
  color: #1b2029;
  white-space: pre-line;
  font-style: normal;
  display: none;
  text-align: left;
}
*[data-tooltip]:after {
  content: '';
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: calc(100% - 0.25rem);
  left: 50%;
  margin-left: -0.5rem;
  transform: rotate(45deg);
  background: #df3030;
  font-size: 0.8rem;
  display: none;
}
*[data-tooltip]:hover {
  color: #df3030;
}
*[data-tooltip]:hover:before,
*[data-tooltip]:hover:after {
  display: block;
}
/* Dropdown Menu
================================================== */
ul span.menu_description {
  display: none;
}
.main-navigation ul.nav-menu {
  font-size: 0;
  white-space: nowrap;
  /*
	& > li > ul > li:first-child {
		&:before {
			content: '';
			display: block;
			position: absolute;
			top: -0.25rem;
			right: 0.5rem;
			width: 1rem;
			height: 1rem;
			background: #f5f5f5;
			margin: 1px;
			z-index: -1;
			.rotate(45deg);
			opacity: 0;
			.fadeOnHover();
		}
		&:hover:before { opacity: 1; }
	}
	*/
}
.main-navigation ul.nav-menu a,
.main-navigation ul.nav-menu span.no_link {
  display: block;
}
.main-navigation ul.nav-menu > li {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  white-space: normal;
  list-style: none;
  padding: 0 0 0.75rem 1rem;
}
.main-navigation ul.nav-menu li {
  position: relative;
  list-style: none;
}
.main-navigation ul.nav-menu li:hover > ul {
  display: block;
}
.main-navigation ul.nav-menu li.menu-parent-item > a:after,
.main-navigation ul.nav-menu li.menu-parent-item > span.no_link:after {
  /* arrows on the top level drop down */
  font-weight: normal;
  font-style: normal;
  speak: none;
  vertical-align: middle;
  font-size: 0.9rem;
  padding-left: 2px;
  position: relative;
  top: -2px;
  content: " \0025BE";
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.main-navigation ul.nav-menu li li.menu-parent-item > a:after,
.main-navigation ul.nav-menu li li.menu-parent-item > span.no_link:after {
  display: none;
}
.main-navigation ul.nav-menu li li.menu-parent-item > a:before,
.main-navigation ul.nav-menu li li.menu-parent-item > span.no_link:before {
  /* arrows on the sub-menu */
  font-weight: normal;
  font-style: normal;
  speak: none;
  vertical-align: middle;
  padding-left: 4px;
  position: relative;
  top: 0;
  content: " \0025B8";
  display: inline-block;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  opacity: 0.5;
}
.main-navigation ul.nav-menu ul {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 99999;
  padding: 0;
  font-size: 0.9rem;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  width: 15rem;
  background: #fff;
  text-align: left;
  padding: 0 0.75rem 0.75rem;
}
.main-navigation ul.nav-menu ul li {
  background: #fff;
  z-index: 10;
}
.main-navigation ul.nav-menu ul li:first-child {
  border-radius: 5px 5px 0 0;
  padding-top: 0.75rem;
}
.main-navigation ul.nav-menu ul li a,
.main-navigation ul.nav-menu ul li span.no_link {
  padding: calc(0.5rem - 5px ) calc(1rem - 5px );
  border-radius: 3px;
  line-height: normal;
  position: relative;
  z-index: 999;
}
.main-navigation ul.nav-menu ul ul {
  padding: 0.75rem 0 0.75rem 0.75rem;
  right: 100%;
  top: -1px;
}
.main-navigation ul.nav-menu ul ul li {
  padding: 0 0.75rem 0 0 !important;
}
.main-navigation ul.nav-menu ul ul ul {
  top: calc( -1px -  0.75rem );
}
.main-navigation ul.nav-menu > li:last-child ul ul {
  left: auto;
  right: 100%;
}
.main-navigation ul.nav-menu > li > ul:before,
.main-navigation ul.nav-menu > li > ul:after {
  content: '';
  display: block;
  position: absolute;
  top: -0.25rem;
  right: 1rem;
  width: 1rem;
  height: 1rem;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.main-navigation ul.nav-menu > li > ul:before {
  border: 1px solid #e0e0e0;
}
.main-navigation ul.nav-menu > li > ul:after {
  margin: 1px;
}
.main-navigation ul.nav-menu > li > ul ul:before,
.main-navigation ul.nav-menu > li > ul ul:after {
  content: '';
  display: block;
  position: absolute;
  right: -0.25rem;
  top: 1rem;
  width: 1rem;
  height: 1rem;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.main-navigation ul.nav-menu > li > ul ul:before {
  border: 1px solid #e0e0e0;
}
.main-navigation ul.nav-menu > li > ul ul:after {
  margin: 1px;
}
/* Archives
================================================== */
#primary h2.entry-title,
#primary h1.entry-title {
  margin-bottom: 0;
  word-break: break-word;
}
#primary h2.entry-title a,
#primary h1.entry-title a {
  border-bottom: none !important;
}
.header-meta,
.footer-meta {
  padding: 0.25rem 0;
  margin: 0.25rem 0 1.5rem;
  font-size: 0.9rem;
  color: #ccc;
}
.header-meta i.fa,
.footer-meta i.fa {
  margin-right: 0.25rem;
}
.header-meta a:not(.btn),
.footer-meta a:not(.btn) {
  border-bottom: none !important;
}
.header-meta .left,
.footer-meta .left {
  float: left;
}
.header-meta .right,
.footer-meta .right {
  float: right;
}
.header-meta a.btn,
.footer-meta a.btn {
  margin-top: 0;
  font-size: 0.85rem;
  padding: 0.25rem 0.75rem;
}
.header-meta:after,
.footer-meta:after {
  content: '';
  display: block;
  clear: both;
}
.footer-meta {
  clear: both;
}
.footer-meta .left {
  max-width: calc(100% - 115px - 1rem);
}
.footer-meta .left div {
  display: inline;
}
.footer-meta .right {
  min-width: 115px;
  text-align: right;
}
body.archive #primary > div > article,
body.blog #primary > div > article,
body.search #primary > div > article {
  border-bottom: 1px solid #ddd;
  margin-bottom: 3rem;
}
body.archive #primary > div > article p.readmore,
body.blog #primary > div > article p.readmore,
body.search #primary > div > article p.readmore {
  display: none;
}
body.archive #primary > div > article.sticky,
body.blog #primary > div > article.sticky,
body.search #primary > div > article.sticky {
  border: 1px solid #e5e5e5;
  background: #fafafa;
  padding: 0 1.5rem;
}
body.archive #primary > div > article.sticky .featured-post,
body.blog #primary > div > article.sticky .featured-post,
body.search #primary > div > article.sticky .featured-post {
  text-align: center;
  color: #fff;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 900;
  padding: 0.25rem;
  margin: -1px calc(-1.5rem - 1px) 0;
}
#primary ul.page-numbers {
  padding: 0;
  margin: 0;
  text-align: center;
}
#primary ul.page-numbers li {
  display: inline-block;
  vertical-align: top;
}
#primary ul.page-numbers li a,
#primary ul.page-numbers li span {
  display: inline-block;
  border-bottom: none !important;
  background: #cfcfcf;
  color: #fff;
  min-width: 1.5rem;
  height: 1.5rem;
  line-height: 1.125rem;
  padding: 0.25rem;
  border-radius: 2px;
}
#primary ul.page-numbers li a.next,
#primary ul.page-numbers li a.prev {
  background: none !important;
  color: rgba(27, 32, 41, 0.75);
}
/* Author Bio
================================================== */
#primary footer.entry-meta .author-info {
  font-size: 0;
  white-space: nowrap;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  margin: 0 auto 1.5rem;
  padding: 1.5rem;
  position: relative;
}
#primary footer.entry-meta .author-description,
#primary footer.entry-meta .author-avatar {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  white-space: normal;
  vertical-align: top;
}
#primary footer.entry-meta .author-description {
  width: calc(100% - 96px - 1.5rem);
  margin: 0;
}
#primary footer.entry-meta .author-description h3 {
  padding-top: 0;
  margin-bottom: 0.5rem;
}
#primary footer.entry-meta .author-description p {
  text-align: justify;
}
#primary footer.entry-meta .author-avatar {
  width: calc(96px + 1.5rem);
}
#primary footer.entry-meta .author-avatar img {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.75);
  border-radius: 500px;
}
#primary footer.entry-meta .author-link {
  text-align: right;
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
}
#primary footer.entry-meta .author-link a {
  border-bottom: none;
}
#primary footer.entry-meta .social-meta {
  text-align: right;
  margin-bottom: 0;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
#primary footer.entry-meta .social-meta a {
  border-bottom: none;
}
#primary footer.entry-meta .social-meta a [class^='icon-'],
#primary footer.entry-meta .social-meta a [class*=' icon-'] {
  font-size: 1.5rem;
}
#primary footer.entry-meta .social-meta a [class^='icon-'].icon-twitter,
#primary footer.entry-meta .social-meta a [class*=' icon-'].icon-twitter {
  color: #019fe9;
}
#primary footer.entry-meta .social-meta a [class^='icon-'].icon-facebook,
#primary footer.entry-meta .social-meta a [class*=' icon-'].icon-facebook {
  color: #425f96;
}
#primary footer.entry-meta .social-meta a:hover [class^='icon-'],
#primary footer.entry-meta .social-meta a:hover [class*=' icon-'] {
  color: #1b2029 !important;
}
/* Sidebars
================================================== */
#primary[class*='_sidebar_'] {
  font-size: 0;
  white-space: nowrap;
}
#primary[class*='_sidebar_'] > div.col {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  white-space: normal;
  vertical-align: top;
}
#primary[class*='_sidebar_'] > div.col:first-child {
  padding-right: 0.75rem;
}
#primary[class*='_sidebar_'] > div.col:last-child {
  padding-left: 0.75rem;
}
#primary[class^='right_sidebar_quarter'] > div.col:first-child,
#primary[class*=' right_sidebar_quarter'] > div.col:first-child {
  width: 75%;
}
#primary[class^='right_sidebar_quarter'] > div.col:last-child,
#primary[class*=' right_sidebar_quarter'] > div.col:last-child {
  width: 25%;
}
#primary[class^='left_sidebar_quarter'] > div.col:first-child,
#primary[class*=' left_sidebar_quarter'] > div.col:first-child {
  width: 25%;
}
#primary[class^='left_sidebar_quarter'] > div.col:last-child,
#primary[class*=' left_sidebar_quarter'] > div.col:last-child {
  width: 75%;
}
#primary[class^='right_sidebar_third'] > div.col:first-child,
#primary[class*=' right_sidebar_third'] > div.col:first-child {
  width: calc(200% / 3);
}
#primary[class^='right_sidebar_third'] > div.col:last-child,
#primary[class*=' right_sidebar_third'] > div.col:last-child {
  width: calc(100% / 3);
}
#primary[class^='left_sidebar_third'] > div.col:first-child,
#primary[class*=' left_sidebar_third'] > div.col:first-child {
  width: calc(100% / 3);
}
#primary[class^='left_sidebar_third'] > div.col:last-child,
#primary[class*=' left_sidebar_third'] > div.col:last-child {
  width: calc(200% / 3);
}
/* Animations
================================================== */
.animate {
  opacity: 0;
  /*
	&.fadeInLeft:not(.play) {
		-webkit-transform: translate3d(-49.9vw, 0, 0);
		transform: translate3d(-49.9vw, 0, 0);
	}
	&.fadeInRight:not(.play) {
		-webkit-transform: translate3d(49.9vw, 0, 0);
		transform: translate3d(49.9vw, 0, 0);
	}
	*/
}
.animate.play {
  opacity: 1;
}
.animate.play.flash {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: flash;
  -moz-animation-name: flash;
  -ms-animation-name: flash;
  -o-animation-name: flash;
  animation-name: flash;
}
.animate.play.bounceIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: bounceIn;
  -moz-animation-name: bounceIn;
  -ms-animation-name: bounceIn;
  -o-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: 0.75s;
  -moz-animation-duration: 0.75s;
  -ms-animation-duration: 0.75s;
  -o-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
.animate.play.fadeInLeft {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -ms-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
.animate.play.fadeInRight {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -ms-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
/* Parallax 
================================================== */
.parallax_foreground,
#footerbar .wrap > aside:first-child {
  position: relative;
}
.parallax_foreground img,
#footerbar .wrap > aside:first-child img {
  max-width: none !important;
}
.parallax_foreground > *,
#footerbar .wrap > aside:first-child > * {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: center center;
}
.parallax_foreground.right_align > *,
#footerbar .wrap > aside:first-child.right_align > * {
  left: auto;
  right: 0;
  transform-origin: right center;
}
.parallax_foreground.left_align > *,
#footerbar .wrap > aside:first-child.left_align > * {
  transform-origin: left center;
}
.parallax_background {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: center center;
}
.mobile_browser .parallax_background {
  background-attachment: scroll;
  background-position: center center!important;
}
@media screen and (max-width: 767px) {
  .parallax_foreground > *,
  #footerbar .wrap > aside:first-child > * {
    position: static;
  }
  .parallax_foreground img,
  #footerbar .wrap > aside:first-child img {
    max-width: 100% !important;
    max-height: 100px;
    width: auto;
    display: block;
    margin: 0 auto;
  }
}
/* Video Background 
================================================== */
.tubular-shield {
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
}
.tubular-container {
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.tubular-player {
  position: absolute;
}
.tubular-inner-wrapper {
  position: relative;
  z-index: 3;
}
/* ==========================================================================
   Import mobile styles at the end
   ========================================================================== */
/*
// Retina tiled bg fix
// (size set unrealistically high to apply to all retina devices)
.retina(20000,{
	#footerbar { background-size: 50%; }
});
*/
@media screen and (max-width: 934px) {
  #logo {
    max-height: 7.5rem;
  }
}
/* ==========================================================================
   Max & Min font sizes
   ========================================================================== */
@media only screen and (min-width: 1555px) {
  html {
    font-size: 21px;
  }
}
@media only screen and (max-width: 934px) {
  html {
    font-size: 14px;
  }
}
/* ==========================================================================
   Phones
   ========================================================================== */
.mobile_only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  body.home.overlay_header #headercontainer {
    top: 2.25rem !important;
  }
  #about_dan {
    padding-top: 0 !important;
  }
  #primary #home_banner {
    padding-top: 38vw !important;
  }
  .strong-view.simple .testimonial-inner {
    margin-top: 6rem !important;
  }
  #bannercontainer .banner h1 {
    position: relative;
    top: 1.5rem;
  }
  #wpadminbar {
    display: none;
  }
  html[lang] {
    margin-top: 0 !important;
  }
  #headerbar,
  .mobile_hide {
    display: none !important;
  }
  .mobile_only {
    display: block !important;
  }
  #headercontainer header {
    width: 100%;
  }
  #headercontainer header .site-title,
  #headercontainer header .nav-wrap {
    display: block;
  }
  #headercontainer header .site-title {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    top: 0;
  }
  #headercontainer header .site-title:after {
    display: none;
  }
  #headercontainer header .nav-wrap {
    text-align: left;
    width: 100%;
  }
  #headercontainer header #inner_header {
    margin: 0 1rem;
  }
  .gallery_wrap:not(.masonry) > .gallery_wrap:not(.masonry) {
    width: calc(100% + 1rem) !important;
    margin: 0 -0.5rem;
  }
  .gallery_wrap:not(.masonry) > .gallery_wrap:not(.masonry) .gallery .gallery-item {
    padding: 0;
    float: none;
    margin: 0 0.5rem 1rem;
  }
  .gallery_wrap:not(.masonry) > .gallery_wrap:not(.masonry) .gallery.gallery-columns-4 > .gallery-item,
  .gallery_wrap:not(.masonry) > .gallery_wrap:not(.masonry) .gallery.gallery-columns-5 > .gallery-item,
  .gallery_wrap:not(.masonry) > .gallery_wrap:not(.masonry) .gallery.gallery-columns-6 > .gallery-item,
  .gallery_wrap:not(.masonry) > .gallery_wrap:not(.masonry) .gallery.gallery-columns-7 > .gallery-item,
  .gallery_wrap:not(.masonry) > .gallery_wrap:not(.masonry) .gallery.gallery-columns-8 > .gallery-item,
  .gallery_wrap:not(.masonry) > .gallery_wrap:not(.masonry) .gallery.gallery-columns-9 > .gallery-item {
    width: calc(100% / 3 - 1rem);
  }
  div[class^="cols"] {
    display: block;
  }
  div[class^="cols"] > * {
    margin: 1rem auto!important;
    width: calc(100% - 2rem) !important;
  }
  .entry-content [class^="cols_"],
  .entry-content [class*=" cols_"] {
    width: 100%;
  }
  body .gform_wrapper .gf_left_half {
    padding-right: 0 !important;
  }
  body .gform_wrapper .gf_right_half {
    padding-left: 0 !important;
  }
  body .gform_wrapper .money .ginput_container:before {
    padding: 5px 4px;
    line-height: 2rem;
    min-height: 2rem;
  }
  body .gform_wrapper .has_country select,
  body .gform_wrapper .ginput_container_name span:not(:first-child) {
    margin-top: 16px;
  }
  body .gform_wrapper .ginput_container_address span {
    margin-bottom: 0 !important;
  }
  #testimonials {
    padding: 0 0 3.25rem;
  }
  #testimonials .content,
  #testimonials .testimonial-content {
    padding: 0 1rem;
  }
  #testimonials .content p,
  #testimonials .testimonial-content p {
    line-height: 1.25;
  }
  #testimonials .content:before,
  #testimonials .testimonial-content:before,
  #testimonials .content:after,
  #testimonials .testimonial-content:after {
    width: 6rem;
  }
  #testimonials .content:before,
  #testimonials .testimonial-content:before {
    top: -2.25rem;
  }
  #testimonials .content:after,
  #testimonials .testimonial-content:after {
    bottom: -1.5rem;
  }
  #testimonials .client_photo,
  #testimonials .testimonial-image {
    width: 9rem;
    height: 9rem;
    top: -7.5rem;
  }
  .animate {
    opacity: 1 !important;
    /*CSS transitions*/
    -o-transition-property: none !important;
    -moz-transition-property: none !important;
    -ms-transition-property: none !important;
    -webkit-transition-property: none !important;
    transition-property: none !important;
    /*CSS transforms*/
    -o-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;
    /*CSS animations*/
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
  }
  #headercontainer header {
    display: block;
  }
  #inner_header {
    text-align: center;
  }
  .site-title h1 {
    padding: 0;
    margin: 0;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  #home_banner img {
    margin-top: 0;
  }
  #home_banner h1 {
    font-size: 2.5rem;
    text-shadow: 0 0 10px #000;
    margin-bottom: 1rem;
  }
  #home_banner .panel-grid-cell {
    position: relative;
    left: -1rem;
  }
  #home_banner .panel-grid-cell:last-child {
    margin-left: -2rem;
    width: calc(50% + 2rem) !important;
  }
  #home_banner {
    flex-direction: row !important;
  }
  #home_banner > div {
    width: calc(50% - ( 0.5 * 50px ) ) !important;
  }
  #about_dan .red_box,
  #practice_areas .red_box {
    margin-top: 0;
    top: 0;
  }
  .red_box > div,
  #footerbar .wrap > div,
  .red_box > aside:first-child > div,
  #footerbar .wrap > aside:first-child > div {
    padding: 3rem 0!important;
  }
  .red_box > div:before,
  #footerbar .wrap > div:before,
  .red_box > aside:first-child > div:before,
  #footerbar .wrap > aside:first-child > div:before {
    left: -5vw !important;
    right: auto !important;
    width: calc(100% + 10vw);
  }
  #about_dan .panel-grid-cell:last-child {
    padding: 3rem 0;
  }
  #practice_areas .panel-grid-cell:first-child {
    padding: 3rem 0 1rem;
  }
  #practice_areas2 .so-panel {
    margin-bottom: 1rem;
  }
  #practice_areas2 .textwidget {
    padding: 0;
    text-align: center;
  }
  #practice_areas2 [class^='icon-'],
  #practice_areas2 [class*=' icon-'] {
    position: static;
  }
  #footercontainer {
    text-align: center;
  }
  #footercontainer img {
    display: block;
    margin: 0 auto;
    height: 8rem;
    width: auto;
  }
  #footercontainer .col_1,
  #footercontainer .col_2 {
    margin-bottom: 3rem !important;
  }
  #footercontainer footer.site-footer {
    padding: 2rem 0;
  }
  .smallprint .widget_nav_menu {
    display: none;
  }
  #stats .panel-grid-cell:first-of-type,
  #stats .panel-grid-cell:last-of-type {
    padding: 0;
  }
  #stats {
    padding: 3rem;
  }
  #stats:before {
    top: 1.75rem;
    height: calc(100% - 3.25rem - 6px);
    border: 3px solid #fff;
  }
  #stats .panel-grid-cell {
    position: relative;
    padding-bottom: 1.5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    width: 12rem !important;
    margin: 0 auto 1rem auto!important;
  }
  #stats .panel-grid-cell:last-of-type {
    margin-bottom: 0 !important;
    border-bottom: none;
  }
  #footerbar {
    padding-bottom: 2rem;
    background-position: center bottom!important;
    background-size: auto 65%!important;
  }
  #footerbar .wrap.cols_2 {
    display: block;
  }
  #footerbar .wrap > aside {
    width: 100% !important;
  }
  #footerbar .wrap > aside:first-child {
    top: 0;
    margin-top: 0;
  }
  #footerbar .wrap > aside:last-child {
    margin: 1.5rem 0;
    border: 3px solid #fff;
    padding: 2rem;
  }
  #footerbar .gform_wrapper .top_label div.ginput_complex.ginput_container.gf_name_has_1 {
    width: 100% !important;
  }
  .timeline {
    border-right: 2px solid #b8b9bc;
    padding: 2rem;
  }
  .timeline:before {
    left: 0;
  }
  .timeline:after {
    width: 100%;
  }
  .timeline .panel-grid-cell {
    position: relative;
    z-index: 3;
  }
  .timeline_bottom {
    border-top: 2px solid #b8b9bc;
  }
}
/* ==========================================================================
   Mobile Menu
   ========================================================================== */
.toggle {
  display: none;
  height: 0;
}
@media screen and (max-width: 767px) {
  body.admin-bar.overlay_header #headercontainer {
    top: 33px;
  }
  #site-navigation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #df3030;
    z-index: 99999;
  }
  #site-navigation ul {
    width: 100%;
    display: none;
    padding: 0;
  }
  #site-navigation ul li {
    width: 100%;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    padding: 0;
    background: none;
  }
  #site-navigation ul li a,
  #site-navigation ul li span.no_link {
    color: #ffffff !important;
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-size: 16px;
    text-transform: none;
    padding: 8px 16px;
  }
  #site-navigation ul li a:after,
  #site-navigation ul li span.no_link:after {
    display: none;
  }
  #site-navigation ul li.current-menu-item,
  #site-navigation ul li.current-menu-ancestor,
  #site-navigation ul li.current_page_item,
  #site-navigation ul li.current_page_ancestor,
  #site-navigation ul li.current_page_parent {
    background: rgba(255, 255, 255, 0.05);
  }
  #site-navigation ul li.current-menu-item > a,
  #site-navigation ul li.current-menu-ancestor > a,
  #site-navigation ul li.current_page_item > a,
  #site-navigation ul li.current_page_ancestor > a,
  #site-navigation ul li.current_page_parent > a,
  #site-navigation ul li.current-menu-item > span.no_link,
  #site-navigation ul li.current-menu-ancestor > span.no_link,
  #site-navigation ul li.current_page_item > span.no_link,
  #site-navigation ul li.current_page_ancestor > span.no_link,
  #site-navigation ul li.current_page_parent > span.no_link {
    color: #ffffff !important;
  }
  #site-navigation ul ul li,
  #site-navigation ul li:hover > ul > li {
    height: auto;
  }
  #site-navigation ul ul li a,
  #site-navigation ul ul li span.no_link {
    padding-left: 32px;
  }
  #site-navigation ul ul ul li a,
  #site-navigation ul ul ul li span.no_link {
    padding-left: 64px;
  }
  #site-navigation ul ul li a,
  #site-navigation ul ul li span.no_link {
    background: none;
  }
  #site-navigation ul ul,
  #site-navigation ul ul ul {
    position: relative;
    left: 0;
    width: 100%;
    margin: 0;
    text-align: left;
  }
  #site-navigation ul ul > li.has-sub > a:before,
  #site-navigation ul ul > li.has-sub > span.no_link:before,
  #site-navigation ul ul > li.has-sub > a:after,
  #site-navigation ul ul > li.has-sub > span.no_link:after {
    display: none;
  }
  #site-navigation ul ul ul li.active a,
  #site-navigation ul ul ul li.active span.no_link {
    border-left: none;
  }
  #site-navigation ul ul {
    background: none;
    border-radius: 0;
    border: none;
  }
  #site-navigation ul ul:before,
  #site-navigation ul ul:after {
    display: none;
  }
  #site-navigation > ul > li {
    float: none;
  }
  #site-navigation > ul > li.has-sub > a:after,
  #site-navigation > ul > li.has-sub > a:before {
    display: none;
  }
  #site-navigation > ul > li.has-sub > ul > li.active > a,
  #site-navigation > ul ul > li.has-sub > ul > li.active > a,
  #site-navigation > ul > li.has-sub > ul > li.active > span.no_link,
  #site-navigation > ul ul > li.has-sub > ul > li.active > span.no_link {
    border-top: none;
  }
  #site-navigation .submenu-toggle {
    position: absolute;
    z-index: 99;
    right: 0;
    top: 0;
    display: block;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    height: 35px;
    width: 46px;
    cursor: pointer;
  }
  #site-navigation .submenu-toggle.submenu-opened:before {
    display: none;
  }
  #site-navigation .submenu-toggle.submenu-opened:after {
    background: #ffffff;
  }
  #site-navigation .submenu-toggle:before {
    position: absolute;
    top: 14px;
    right: 22px;
    display: block;
    width: 2px;
    height: 8px;
    background: rgba(255, 255, 255, 0.75);
    content: '';
  }
  #site-navigation .submenu-toggle:after {
    position: absolute;
    top: 17px;
    right: 19px;
    width: 8px;
    height: 2px;
    display: block;
    background: rgba(255, 255, 255, 0.75);
    content: '';
  }
  #site-navigation ul ul .submenu-toggle {
    height: 34px;
    width: 34px;
  }
  #site-navigation ul ul .submenu-toggle:after {
    top: 15px;
    right: 13px;
  }
  #site-navigation ul ul .submenu-toggle:before {
    top: 12px;
    right: 16px;
  }
  .toggle {
    cursor: pointer;
    z-index: 12399994;
    color: #fff;
    padding: 8px 16px;
    text-transform: uppercase;
    height: auto;
    display: block;
  }
  .toggle:after {
    position: absolute;
    top: 17px;
    right: 20px;
    display: block;
    height: 4px;
    width: 20px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: '';
  }
  .toggle:before {
    transition: all .3s ease;
    position: absolute;
    top: 11px;
    right: 20px;
    display: block;
    height: 2px;
    width: 20px;
    background: #fff;
    content: '';
  }
  .toggle.menu-opened:after {
    transition: all .3s ease;
    top: 18px;
    border: 0;
    height: 2px;
    width: 19px;
    background: #fff;
    transform: rotate(45deg);
  }
  .toggle.menu-opened:before {
    top: 18px;
    width: 19px;
    transform: rotate(-45deg);
  }
}
