/*
Theme Name: Agile
Theme URI: https://www.livemeshthemes.com/agile
Description: A clean, responsive multi-purpose flat-style theme from LiveMesh. Follow us on <a href="http://twitter.com/live_mesh">Twitter</a> for updates
Version: 5.4
Author: <a href="https://www.livemeshthemes.com">LiveMesh</a>
Author URI: https://www.livemeshthemes.com/
License: GNU General Public License version 3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: agile
Tags: one-column, two-columns, three-columns, left-sidebar, right-sidebar, fixed-width, theme-options, threaded-comments, translation-ready,portfolio,mobile,app,one-page,single-page,ios,android,tags
*/
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

label {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  font-weight: 300;
}

.required::after {
  content: "*";
  color: #e74c3c;
  margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
  font-family: "Montserrat", sans-serif;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 25px 0;
}

input[type="checkbox"] {
  margin-top: 2px;
  transform: scale(1.1);
}

.checkbox-text {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

.privacy-link {
  color: #4a90e2;
  text-decoration: none;
}

.privacy-link:hover {
  text-decoration: underline;
}

.submit-btn {
  background-color: #e0e0e0;
  color: #666;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.submit-btn:hover {
  background-color: #4a90e2;
  color: white;
}

.submit-btn:active {
  background-color: #357abd;
}

/* Адаптивность */
@media (max-width: 768px) {
  .form-container {
    padding: 30px 20px;
    margin: 10px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .form-group.full-width {
    grid-column: 1;
  }
}

@media (max-width: 480px) {
  body {
    padding: 10px;
  }

  .form-container {
    padding: 20px 15px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    padding: 10px 12px;
  }

  .checkbox-text {
    font-size: 12px;
  }

  .submit-btn {
    width: 100%;
    padding: 14px;
  }
}

/* Валидация */
input:invalid {
  border-color: #e74c3c;
}

input:valid {
  border-color: #27ae60;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

/* --------- Reset default browser CSS. http://meyerweb.com/eric/tools/css/reset/index.html ----------- */
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,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

:focus {
  /* remember to define focus styles! */
  outline: 0;
}

body {
  background: #fff;
}

ol,
ul,
nav ul {
  list-style: none;
}

table {
  /* tables still need 'cellspacing="0"' in the markup */
  border-collapse: separate;
  border-spacing: 0;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

blockquote,
q {
  quotes: "" "";
}

a img {
  border: 0;
  display: block;
}

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

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*----------- Clearfix for floats ----------- */
/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix {
  zoom: 1;
}
.clearfix:before {
  content: "\0020";
  display: block;
  height: 0;
  visibility: hidden;
}
.clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
}

/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
/* ------------------------ Base CSS ----------------------------------- */
/*--------- General ------------ */
body {
  color: #515151;
  font-size: 16px;
  line-height: 1.8;
  font-family: "Merriweather", "Arvo", Georgia, Times, serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 479px) {
  body {
    font-size: 14px;
    line-height: 24px;
  }
}

body.boxed {
  height: 100%;
  width: 100%;
}

.boxed #container {
  max-width: 1180px;
  width: 96%;
  margin: 0px auto;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.hidden {
  display: none;
  visibility: hidden;
}

.invisible {
  visibility: hidden;
}

/*--------- Alignment ------------ */
.center {
  text-align: center;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.alignleft {
  float: left;
  margin: 0 20px 5px 0;
}

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

.aligncenter {
  display: block;
  margin: 0 auto 20px auto;
  clear: both;
}

.block,
.alignnone {
  display: block;
  margin: 0 0 20px 0;
}

/*------------------- Basic Styling ------------------------------------*/
/* Heading styling */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", Arial, Helvetica, Verdana, sans-serif;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
  padding: 0;
  color: #292929;
}

h1 {
  font-size: 40px;
  line-height: 48px;
}

h2 {
  font-size: 36px;
  line-height: 44px;
}

h3 {
  font-size: 28px;
  line-height: 36px;
}

h4 {
  font-size: 24px;
  line-height: 34px;
}

h5 {
  font-size: 18px;
  line-height: 28px;
}

h6 {
  font-size: 16px;
  line-height: 24px;
}

h1,
h2 {
  margin-bottom: 20px;
}

h3,
h4,
h5,
h6 {
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  h1,
  h2,
  h3 {
    margin-bottom: 20px;
  }

  h1 {
    font-size: 28px;
    line-height: 38px;
  }

  h2 {
    font-size: 26px;
    line-height: 36px;
  }

  h3 {
    font-size: 22px;
    line-height: 32px;
  }
}
.dark-bg h1,
.dark-bg h2,
.dark-bg h3,
.dark-bg h4,
.dark-bg h5,
.dark-bg h6,
.dark-bg a {
  color: #fafafa !important;
}
.dark-bg p,
.dark-bg div {
  color: #e5e5e5;
}

/* List Style */
ul {
  list-style-type: square;
}
ul ul {
  list-style-type: disc;
}
ul ul ul {
  list-style-type: circle;
}

ol {
  list-style-position: outside;
  list-style-type: decimal;
}
ol ol {
  list-style: upper-roman;
}
ol ol ol {
  list-style: lower-roman;
}
ol ol ol ol {
  list-style: upper-alpha;
}
ol ol ol ol ol {
  list-style: lower-alpha;
}

ul {
  margin: 0 0 20px 18px;
}

ol {
  margin: 0 0 20px 28px;
}

ul li,
ol li {
  margin: 5px;
}

ul ol {
  margin-bottom: 0;
}

ol ul,
ol ol {
  margin-bottom: 0;
}

ul ul {
  margin-bottom: 0;
}

dl {
  margin: 0 0 18px 3px;
}
dl dt {
  font-weight: bold;
  margin: 12px 0 0 0;
}
dl dd {
  margin: 6px 0 0 24px;
}

.small {
  font-size: 12px;
}

.large {
  font-size: 14px;
}

cite,
em,
i {
  font: italic 13px/20px "Merriweather", "Arvo", Georgia, Times, serif;
}

/* Paragraphs */
p {
  /* 12px */
  /* 20px */
  margin: 0 0 20px 0;
}
p:empty {
  display: none;
}

/* Input Boxes */
input,
textarea {
  display: block;
  padding: 5px;
  border: 1px solid #dedede;
  font-family: inherit;
}

/* Abbreviations */
abbr[title],
dfn[title] {
  border-bottom: 0;
  cursor: auto;
}

/*---------------- Media Styles ------------ */
img {
  display: block;
  height: auto;
}
img.alignleft {
  margin: 5px 20px 10px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 10px 0;
}

img.alignright,
.wp-caption.alignright {
  margin: 5px 5px 10px 20px;
}

img.aligncenter,
.wp-caption.aligncenter {
  display: block;
  margin: 0 auto;
}

img.alignnone,
.wp-caption.alignnone {
  display: block;
  margin: 5px 0 20px 0;
}

.entry-content img,
.comment-content img {
  overflow: hidden;
}

.entry-content .thumbnail.large {
  float: none;
  margin: 0;
  padding: 0;
  width: 620px;
}

.img-circle {
  border-radius: 50%;
}

.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

/*-------------------  Responsive media styles ----------- */
img,
object,
embed {
  max-width: 100%;
  /* fit within the available area instead of overflowing */
}

audio {
  max-width: 100%;
}

video {
  width: 100%;
  height: auto;
}

/*------------------- Image captions --------- */
.wp-caption {
  max-width: 98%;
  /* To help prevent overflow of images and captions */
}
.wp-caption .wp-caption-text {
  color: #220e10;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  text-align: center;
}

.entry-caption {
  color: #220e10;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  text-align: center;
}

.wp-caption.alignleft + ul,
.wp-caption.alignleft + ol {
  list-style-position: inside;
}

/*----------- Links ---------------- */
a {
  color: #fe5000;
  text-decoration: none;
}
a:active,
a:visited {
  color: #fe5000;
  text-decoration: none;
}
a:hover {
  color: #888;
  text-decoration: none;
}

/*----------------------- Table Styling --------- */
table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

table {
  background-color: rgba(0, 0, 0, 0);
}

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

table tr:nth-child(odd) {
  background-color: #f4f4f4;
}

table tr:nth-child(even) {
  background-color: #ffffff;
}

table tr.fixzebra {
  background-color: #f4f4f4;
}

table th {
  font-weight: 600;
}

table thead th {
  color: #ffffff;
  background-color: #555555;
  border: 1px solid #555555;
  padding: 8px;
  vertical-align: top;
  text-align: left;
}

table td,
table tr th {
  border: 1px solid #d4d4d4;
  padding: 8px 12px;
  padding-top: 7px;
  padding-bottom: 7px;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive > table {
    margin-bottom: 0;
  }

  .table-responsive > table th,
  .table-responsive > table td {
    white-space: nowrap;
  }
}
/*----------------- Code and Pre Styling ---------------- */
code,
.code,
pre,
.pre {
  font: normal 13px / 1.6 Consolas, "Bitstream Vera Sans Mono", "Andale Mono",
    Monaco, "DejaVu Sans Mono", monospace, Courier, "Courier New";
}

pre,
.pre {
  display: block;
  overflow: auto;
  clear: both;
  padding: 10px;
  margin: 20px 0;
  color: #555;
  background: #fff;
  border: 1px solid #e5e5e5;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -o-pre-wrap;
  width: 90%;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-left: 6px solid #e9e7e0;
}

code {
  background-color: #f9f9f9;
}

.code {
  background-color: #f9f9f9;
  background: url("../img/bg-pre.gif") repeat scroll 0 0 white;
  padding: 19px 10px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Subscript and Superscript */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -5px;
}

sup {
  top: -8px;
}

/* ------------------------ Forms, Input boxes ----------------------------------- */
input,
textarea {
  background: #fdfdfd;
  color: #48484a;
  border: solid 1px #ccc;
  padding: 10px 10px;
  /* box-shadow: inset 0 0 10px #EAEAEA; */
}

input,
textarea {
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  height: auto;
  font-size: 14px;
  line-height: 24px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="file"] {
  transition: border linear 0.2s, box-shadow linear 0.2s;
}

textarea {
  transition: border linear 0.2s, box-shadow linear 0.2s;
}

input:focus,
textarea:focus {
  border: 1px solid rgba(254, 80, 0, 0.8);
}

input[type="radio"],
input[type="checkbox"] {
  display: inline;
}
input[type="submit"],
input[type="file"] {
  width: auto;
}
input[type="number"],
input[type="date"] {
  padding: 10px 10px;
  height: auto;
}
input[type="number"],
input[type="password"],
input[type="date"],
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="range"] {
  width: 300px;
  max-width: 100%;
}

textarea {
  width: 300px;
  max-width: 100%;
}

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
  text-transform: none;
  color: #b2b2b1;
  font-size: 16px;
  line-height: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}

/* Helps make the height of input boxes uniform across browsers */
input[type="submit"],
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="file"] {
  line-height: normal !important;
}
input[type="submit"] {
  border-radius: 0;
}

/* Let button styles handle border radius */
/* Removes inner padding and border in Firefox 4+.*/
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Select box styling */
select {
  display: block;
  outline: none;
  width: 300px;
  border: 1px solid #e7e7e7;
  padding: 8px 5px 8px 10px;
  margin: 0;
  max-width: 100%;
  font-family: inherit;
  color: inherit;
  background-image: url(../img/select.png);
  background-position: center right;
  background-repeat: no-repeat;
  background-color: white;
  border-radius: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: rgba(0, 0, 0, 0.01961) 0px -19.76px 15.2px 0px inset;
  height: auto;
  font-size: 14px;
  line-height: 20px;
}
select[multiple] {
  background: none;
  height: auto;
}
select:hover {
  box-shadow: rgba(0, 0, 0, 0) 0px -27.36px 15.2px 0px inset;
}
#footer select {
  color: #444;
  border-color: transparent;
  border: none;
  box-shadow: none;
}

/* ----------- Retina displays like iPhone 4+ and iPad 3+ -----------*/
.ios-device input[type="button"],
.ios-device input[type="submit"],
.ios-device input[type="reset"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  border-radius: 0;
}

/*---------- Form Styles ------- */
.contact-form,
.wpcf7-form {
  margin-bottom: 25px;
}
.contact-form label,
.wpcf7-form label {
  text-transform: uppercase;
  display: block;
  font-size: 16px;
  display: none;
  /* Hide the labels */
}
.contact-form label.form-error,
.wpcf7-form label.form-error {
  float: left;
  color: #eb6666;
  font-style: normal;
  font-size: 13px;
  text-transform: none;
  display: block;
  margin-bottom: 10px;
}
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form input[type="email"],
.contact-form input[type="number"],
.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="number"] {
  width: 100%;
  box-sizing: border-box;
}
.contact-form textarea,
.wpcf7-form textarea {
  width: 100%;
  box-sizing: border-box;
}

.contact-form ::-webkit-input-placeholder,
.wpcf7-form ::-webkit-input-placeholder {
  color: #4c5152;
  -webkit-font-smoothing: antialiased;
}
.contact-form ::-moz-placeholder,
.wpcf7-form ::-moz-placeholder {
  color: #4c5152;
  -moz-osx-font-smoothing: grayscale;
}
.contact-form :-ms-input-placeholder,
.wpcf7-form :-ms-input-placeholder {
  color: #4c5152;
}
.dark-bg .contact-form ::-webkit-input-placeholder,
.dark-bg .wpcf7-form ::-webkit-input-placeholder {
  color: #eee;
}
.dark-bg .contact-form ::-moz-placeholder,
.dark-bg .wpcf7-form ::-moz-placeholder {
  color: #eee;
}
.dark-bg .contact-form :-ms-input-placeholder,
.dark-bg .wpcf7-form :-ms-input-placeholder {
  color: #eee;
}

label.form-error {
  float: left;
  color: #eb6666;
  font-style: normal;
  font-size: 13px;
  text-transform: none;
  display: block;
  margin-bottom: 10px;
}

.success-msg {
  margin-bottom: 20px;
  font-weight: 500;
}

div.form-error {
  display: none;
}

input.form-error {
  border: 1px dotted #dd1e0e;
  margin-bottom: 10px !important;
}

/* -------- Contact Us etc. -------- */
#content .contact-form input[type="text"],
#content .contact-form input[type="tel"],
#content .contact-form input[type="url"],
#content .contact-form input[type="email"],
#content .contact-form input[type="number"],
#content .contact-form input[type="range"],
#content .contact-form textarea,
#content .wpcf7-form input[type="text"],
#content .wpcf7-form input[type="tel"],
#content .wpcf7-form input[type="url"],
#content .wpcf7-form input[type="email"],
#content .wpcf7-form input[type="number"],
#content .wpcf7-form input[type="range"],
#content .wpcf7-form textarea {
  padding: 16px;
  border-radius: 3px;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  height: auto;
  line-height: 24px;
  background: #f9f9f9;
  transition: all 0.2s ease-in-out 0s;
}
#content .contact-form input[type="text"]:focus,
#content .contact-form input[type="text"]:hover,
#content .contact-form input[type="tel"]:focus,
#content .contact-form input[type="tel"]:hover,
#content .contact-form input[type="url"]:focus,
#content .contact-form input[type="url"]:hover,
#content .contact-form input[type="email"]:focus,
#content .contact-form input[type="email"]:hover,
#content .contact-form input[type="number"]:focus,
#content .contact-form input[type="number"]:hover,
#content .contact-form input[type="range"]:focus,
#content .contact-form input[type="range"]:hover,
#content .contact-form textarea:focus,
#content .contact-form textarea:hover,
#content .wpcf7-form input[type="text"]:focus,
#content .wpcf7-form input[type="text"]:hover,
#content .wpcf7-form input[type="tel"]:focus,
#content .wpcf7-form input[type="tel"]:hover,
#content .wpcf7-form input[type="url"]:focus,
#content .wpcf7-form input[type="url"]:hover,
#content .wpcf7-form input[type="email"]:focus,
#content .wpcf7-form input[type="email"]:hover,
#content .wpcf7-form input[type="number"]:focus,
#content .wpcf7-form input[type="number"]:hover,
#content .wpcf7-form input[type="range"]:focus,
#content .wpcf7-form input[type="range"]:hover,
#content .wpcf7-form textarea:focus,
#content .wpcf7-form textarea:hover {
  background: #f7f7f7;
}
#content .contact-form p,
#content .wpcf7-form p {
  margin-bottom: 20px;
}
#content .contact-form textarea,
#content .wpcf7-form textarea {
  height: 150px;
}
#content .contact-form .human-check label,
#content .wpcf7-form .human-check label {
  display: inline-block;
}
#content .contact-form .human-check input,
#content .wpcf7-form .human-check input {
  display: inline-block;
  margin-left: 15px;
  font-style: normal;
}

#content .contact-form p,
#content .wpcf7-form p {
  display: inline-block;
  margin-right: 2%;
  width: 48%;
  position: relative;
}
#content .contact-form p.subject,
#content .wpcf7-form p.subject {
  width: 98%;
}
#content .contact-form p.human-check,
#content .wpcf7-form p.human-check {
  display: block;
  clear: both;
}
#content .contact-form p.text-area,
#content .wpcf7-form p.text-area {
  display: block;
  width: 98%;
}
@media only screen and (max-width: 479px) {
  #content .contact-form p,
  #content .wpcf7-form p {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  #content .contact-form p.text-area,
  #content .wpcf7-form p.text-area {
    width: 100%;
  }
}

#content .wpcf7-form {
  margin-left: 4px;
}
#content .wpcf7-form p {
  margin-left: -4px;
  /* inline-block whitespace hack - float hack has too many issues */
  vertical-align: top;
}
#content .wpcf7-form p.full-width {
  width: 98%;
}
#content .wpcf7-form input,
#content .wpcf7-form .wpcf7-list-item-label {
  vertical-align: middle;
}

#content .dark-bg .contact-form input[type="text"],
#content .dark-bg .contact-form input[type="tel"],
#content .dark-bg .contact-form input[type="url"],
#content .dark-bg .contact-form input[type="email"],
#content .dark-bg .contact-form input[type="number"],
#content .dark-bg .contact-form input[type="range"],
#content .dark-bg .contact-form textarea,
#content .dark-bg .wpcf7-form input[type="text"],
#content .dark-bg .wpcf7-form input[type="tel"],
#content .dark-bg .wpcf7-form input[type="url"],
#content .dark-bg .wpcf7-form input[type="email"],
#content .dark-bg .wpcf7-form input[type="number"],
#content .dark-bg .wpcf7-form input[type="range"],
#content .dark-bg .wpcf7-form textarea {
  background: transparent;
  border-color: #ccc;
}
#content .dark-bg .contact-form input[type="text"]:focus,
#content .dark-bg .contact-form input[type="text"]:hover,
#content .dark-bg .contact-form input[type="tel"]:focus,
#content .dark-bg .contact-form input[type="tel"]:hover,
#content .dark-bg .contact-form input[type="url"]:focus,
#content .dark-bg .contact-form input[type="url"]:hover,
#content .dark-bg .contact-form input[type="email"]:focus,
#content .dark-bg .contact-form input[type="email"]:hover,
#content .dark-bg .contact-form input[type="number"]:focus,
#content .dark-bg .contact-form input[type="number"]:hover,
#content .dark-bg .contact-form input[type="range"]:focus,
#content .dark-bg .contact-form input[type="range"]:hover,
#content .dark-bg .contact-form textarea:focus,
#content .dark-bg .contact-form textarea:hover,
#content .dark-bg .wpcf7-form input[type="text"]:focus,
#content .dark-bg .wpcf7-form input[type="text"]:hover,
#content .dark-bg .wpcf7-form input[type="tel"]:focus,
#content .dark-bg .wpcf7-form input[type="tel"]:hover,
#content .dark-bg .wpcf7-form input[type="url"]:focus,
#content .dark-bg .wpcf7-form input[type="url"]:hover,
#content .dark-bg .wpcf7-form input[type="email"]:focus,
#content .dark-bg .wpcf7-form input[type="email"]:hover,
#content .dark-bg .wpcf7-form input[type="number"]:focus,
#content .dark-bg .wpcf7-form input[type="number"]:hover,
#content .dark-bg .wpcf7-form input[type="range"]:focus,
#content .dark-bg .wpcf7-form input[type="range"]:hover,
#content .dark-bg .wpcf7-form textarea:focus,
#content .dark-bg .wpcf7-form textarea:hover {
  background: transparent;
}
#content .dark-bg .contact-form input[type="text"]:focus,
#content .dark-bg .contact-form input[type="tel"]:focus,
#content .dark-bg .contact-form input[type="url"]:focus,
#content .dark-bg .contact-form input[type="email"]:focus,
#content .dark-bg .contact-form input[type="number"]:focus,
#content .dark-bg .contact-form input[type="range"]:focus,
#content .dark-bg .contact-form textarea:focus,
#content .dark-bg .wpcf7-form input[type="text"]:focus,
#content .dark-bg .wpcf7-form input[type="tel"]:focus,
#content .dark-bg .wpcf7-form input[type="url"]:focus,
#content .dark-bg .wpcf7-form input[type="email"]:focus,
#content .dark-bg .wpcf7-form input[type="number"]:focus,
#content .dark-bg .wpcf7-form input[type="range"]:focus,
#content .dark-bg .wpcf7-form textarea:focus {
  border-color: #fe5000;
}

/* Footer contact us widget --------*/
#footer .contact-form input,
#footer .contact-form textarea {
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  height: auto;
  line-height: 24px;
}
#footer .contact-form textarea {
  height: 100px;
}
#footer .contact-form .text-input,
#footer .contact-form textarea {
  width: 100%;
  font-size: 14px;
  padding: 10px;
  float: left;
  background: #606163;
  border-color: #606163;
  margin-bottom: 10px;
  color: #cdcdcd;
}
#footer .sixcol .contact-form p {
  width: 46%;
  margin: 0 2% 0 0;
  float: left;
}

#content .contact-form input:focus,
#content .contact-form textarea:focus,
#footer .contact-form input:focus,
#footer .contact-form textarea:focus {
  border: 1px solid rgba(254, 80, 0, 0.8);
}

@media only screen and (max-width: 479px) {
  #footer .contact-form .text-input,
  #footer .contact-form textarea {
    width: 100% !important;
  }
}
/*------------ Comment Form ---------------- */
#commentform {
  font-size: 0;
  /* inline-block hack */
}
#commentform p {
  font-size: 14px;
  line-height: 24px;
}
#commentform p.comment-form-url,
#commentform p.comment-form-email {
  margin-left: 3.33%;
}
#commentform p.comment-form-url,
#commentform p.comment-form-email,
#commentform p.comment-form-author {
  display: inline-block;
  width: 31.1%;
}
@media only screen and (max-width: 600px) {
  #commentform p.comment-form-url,
  #commentform p.comment-form-email,
  #commentform p.comment-form-author {
    width: 100%;
    display: block;
    margin-left: 0;
  }
}
#commentform label {
  display: inline;
}
#commentform input[type="text"],
#commentform textarea {
  padding: 10px;
  margin: 0;
  height: auto;
  border-radius: 4px;
  background-color: #fff;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  line-height: 24px;
}
#commentform textarea {
  width: 100%;
  clear: both;
  height: 98px;
}
@media only screen and (max-width: 600px) {
  #commentform textarea {
    max-width: 400px;
  }
}
@media only screen and (max-width: 479px) {
  #commentform p {
    margin-bottom: 10px;
  }
  #commentform input[type="text"] {
    float: none;
    width: 90%;
    margin: 0;
  }
  #commentform textarea {
    width: 90%;
    clear: both;
  }
}

p.form-allowed-tags {
  display: none;
}

/* ------------------------ Buttons ----------------------------------- */
/* ----- ---- --- -- - Default buttons - -- --- ---- ----- */
button,
.button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  display: inline-block;
  padding: 12px 22px;
  margin: 0;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: "Lato", Arial, Helvetica, Verdana, sans-serif;
  font-weight: normal;
  color: #fff !important;
  background-color: #fe5000;
  border: 1px solid #fe5000;
  border-color: #fe5000 #fe5000 #fe5000 #fe5000;
  transition: all 0.4s ease-in-out 0s;
}
@media only screen and (max-width: 767px) {
  button,
  .button,
  input[type="button"],
  input[type="submit"],
  input[type="reset"] {
    padding: 8px 16px;
  }
}

.button::-moz-focus-inner,
input[type="submit"].button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.button:active,
.button:visited {
  color: #fff;
}

.button:hover,
.button:active,
button:hover,
button:active {
  transition: 0.3s linear;
}
.button img,
button img {
  display: inline-block !important;
  border: none;
  vertical-align: middle;
  width: auto !important;
}
.button [class^="icon-"],
.button [class*=" icon-"],
button [class^="icon-"],
button [class*=" icon-"] {
  padding: 8px;
}
.button.small,
button.small {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 22px;
}
.button.small [class^="icon-"],
.button.small [class*=" icon-"],
button.small [class^="icon-"],
button.small [class*=" icon-"] {
  margin-top: 0;
}
.button.large,
button.large {
  padding: 12px 20px;
  font-size: 12px;
  line-height: 28px;
}
.button.large.rounded,
button.large.rounded {
  border-radius: 36px;
}
.button.large [class^="icon-"],
.button.large [class*=" icon-"],
button.large [class^="icon-"],
button.large [class*=" icon-"] {
  margin-top: 0;
  padding: 2px 12px 2px 0;
  font-size: 20px;
  vertical-align: middle;
}
.button.small.rounded,
button.small.rounded {
  border-radius: 30px;
}
.button.rounded,
button.rounded {
  border-radius: 36px;
}
.button.default [class^="icon-"],
.button [class*=" icon-"],
button.default [class^="icon-"],
button [class*=" icon-"] {
  font-size: 12px;
}

input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active {
  transition: 0.3s linear;
  color: #fff !important;
  background-color: #4b4b4b !important;
  border-color: #4b4b4b !important;
}

/*---------- - Color Variations --------------- */
.button.black {
  background-color: #363636;
  border-color: #222222 #222222 #000000;
}

.button.blue {
  background-color: #46a5d5;
  border-color: #37b4ee #1c8bbe #1c8bbe #37b4ee;
}

.button.cyan {
  background-color: #57c0dc;
  border-color: #61cfec #48a7c0 #48a7c0 #61cfec;
}

.button.green {
  background-color: #00a57d;
  border-color: #07b98e #028866 #028867 #07b98e;
}

.button.orange {
  background-color: #e87151;
  border-color: #f88f73 #ca5a3b #ca5a3b #f88f73;
}

.button.pink {
  background-color: #dd5679;
  border-color: #f0678a #c64a6a #c64a6a #f0678a;
}

.button.red {
  background-color: #da4f49;
  border-color: #ec5e58 #c4403a #c4403a #ec5e58;
}

.button.teal {
  background-color: #28c2ba;
  border-color: #2dcdc5 #23b1aa #20a59e #2dcdc5;
}

.button.trans {
  color: #fff;
  background-color: #fff;
  /* IE */
  background-color: rgba(0, 0, 0, 0) !important;
  border: 2px solid #666;
}
.dark-bg .button.trans,
.dark-bg .button.trans:hover {
  border: 1px solid #fff !important;
}

.button.black,
.button.blue,
.button.cyan,
.button.green,
.button.orange,
.button.pink,
.button.red,
.button.teal {
  color: #fff !important;
}

/* @debug $skin-hover-elements; */
.button:hover,
.button.default:hover,
button:hover,
.button.black:hover,
.button.blue:hover,
.button.cyan:hover,
.button.green:hover,
.button.orange:hover,
.button.pink:hover,
.button.red:hover,
.button.teal:hover {
  color: #fff !important;
  background-color: #4b4b4b !important;
  border-color: #4b4b4b !important;
  background-image: none;
  transition: 0.3s linear;
}

.site-footer .button:hover,
.site-footer button:hover,
.site-footer input[type="button"]:hover,
.site-footer input[type="submit"]:hover,
.site-footer input[type="reset"]:hover {
  background-color: #4d5a5c !important;
  border-color: #4d5a5c !important;
}

/* Transparent button */
.button.trans:hover {
  background-color: #f9f9f9;
  /* IE */
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.button.theme {
  border-color: #fe5000;
  background-color: transparent !important;
  color: #292929 !important;
}
.dark-bg .button.theme {
  color: #e1e1e1 !important;
  border-color: #fff;
}

.button.theme:hover {
  background: #fe5000 !important;
  border-color: #fe5000 !important;
  color: #fff !important;
}

/* ------------- Custom Styling for Buttons -------- */
#button-gallery .button {
  margin-left: 10px;
  margin-bottom: 10px;
}

.portfolio-link .button {
  line-height: 30px;
  padding: 4px 20px;
  margin-bottom: 30px;
}

.contact-form .button,
.wpcf7-form input[type="submit"] {
  padding: 20px 40px;
  line-height: 16px;
  border-radius: 2px;
  display: block;
}

/*---------- Rounded css3 buttons ------- */
.rounded-button {
  display: inline-block;
  position: relative;
  background: #52b3e3;
  background: -o-linear-gradient(top, #dc4637, #52b3e3);
  padding: 5px 15px;
  border-radius: 20px;
  color: white !important;
  text-decoration: none;
  vertical-align: middle;
  transition: all 0.4s ease-out, 0;
}
.rounded-button:hover {
  border-radius: 2px;
}
.rounded-button:active {
  background: #327ba8;
  border-radius: 2px;
}

/* ------------------------ Images and WP Gallery ----------------------------------- */
/*-------------- Gallery Styling - Credit: Twenty Thirteen Theme ---------- */
.wp-smiley {
  margin: 0;
}

.gallery {
  margin-bottom: 20px;
  margin-left: -4px;
}
.gallery:after {
  clear: both;
}
.gallery:before,
.gallery:after {
  content: "";
  display: table;
}

.gallery-item {
  float: left;
  margin: 0 4px 4px 0;
  overflow: hidden;
  position: relative;
}

dl.gallery-item dt {
  margin: 0;
}

.gallery-columns-1.gallery-size-medium,
.gallery-columns-1.gallery-size-thumbnail {
  display: table;
  margin: 0 auto 20px;
}

.gallery-columns-2.gallery-size-thumbnail,
.gallery-columns-3.gallery-size-thumbnail {
  display: table;
  margin: 0 auto 20px;
}

.gallery-columns-1 .gallery-item,
.gallery-columns-2 .gallery-item,
.gallery-columns-3 .gallery-item {
  text-align: center;
}

/* Account for 4px margin on the right when calculating width */
.gallery-columns-2 .gallery-item {
  width: 49%;
  width: calc(50% - 4px);
}

.gallery-columns-3 .gallery-item {
  max-width: 31%;
  max-width: calc(33% - 4px);
}

.gallery-columns-4 .gallery-item {
  max-width: 23%;
  max-width: calc(25% - 4px);
}

.gallery-columns-5 .gallery-item {
  max-width: 19%;
  max-width: calc(20% - 4px);
}

.gallery-columns-6 .gallery-item {
  max-width: 15%;
  max-width: calc(16.7% - 4px);
}

.gallery-columns-7 .gallery-item {
  max-width: 13%;
  max-width: calc(14.28% - 4px);
}

.gallery-columns-8 .gallery-item {
  max-width: 11%;
  max-width: calc(12.5% - 4px);
}

.gallery-columns-9 .gallery-item {
  max-width: 9%;
  max-width: calc(11.1% - 4px);
}

.gallery-columns-1 .gallery-item:nth-of-type(1n),
.gallery-columns-2 .gallery-item:nth-of-type(2n),
.gallery-columns-3 .gallery-item:nth-of-type(3n),
.gallery-columns-4 .gallery-item:nth-of-type(4n),
.gallery-columns-5 .gallery-item:nth-of-type(5n),
.gallery-columns-6 .gallery-item:nth-of-type(6n),
.gallery-columns-7 .gallery-item:nth-of-type(7n),
.gallery-columns-8 .gallery-item:nth-of-type(8n),
.gallery-columns-9 .gallery-item:nth-of-type(9n) {
  margin-right: 0;
}

.gallery-caption {
  background-color: rgba(0, 0, 0, 0.7);
  box-sizing: border-box;
  color: #fff;
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  margin: 0;
  max-height: 50%;
  opacity: 0;
  padding: 2px 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: left;
  transition: opacity 400ms ease;
  width: 100%;
}
.gallery-caption:before {
  box-shadow: 0 -10px 15px black inset;
  content: "";
  height: 100%;
  min-height: 49px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}

/* ------ Gallery Styling for mobile resolutions ------*/
@media only screen and (max-width: 767px) {
  .gallery-columns-1 .gallery-item {
    margin-right: 0;
    width: 100%;
  }

  .gallery-caption {
    display: none;
  }
}
@media only screen and (max-width: 359px) {
  .gallery {
    margin-left: 0;
  }
  .gallery .gallery-item {
    max-width: none;
    width: 49%;
    width: calc(50% - 4px);
  }

  .gallery-columns-2.gallery-size-thumbnail .gallery-item {
    max-width: none;
    width: 49%;
    width: calc(50% - 4px);
  }

  .gallery-columns-1.gallery-size-medium,
  .gallery-columns-1.gallery-size-thumbnail {
    display: block;
  }

  .gallery-columns-2.gallery-size-thumbnail,
  .gallery-columns-3.gallery-size-thumbnail {
    display: block;
  }

  .gallery-columns-1 .gallery-item,
  .gallery-columns-1.gallery-size-medium .gallery-item,
  .gallery-columns-1.gallery-size-thumbnail .gallery-item {
    text-align: center;
    width: 98%;
    width: calc(100% - 4px);
  }

  .gallery-columns-3 .gallery-item:nth-of-type(3n),
  .gallery-columns-5 .gallery-item:nth-of-type(5n),
  .gallery-columns-7 .gallery-item:nth-of-type(7n),
  .gallery-columns-9 .gallery-item:nth-of-type(9n) {
    margin-right: 4px;
  }

  .gallery br {
    display: none;
  }
  .gallery .gallery-item:nth-of-type(even) {
    margin-right: 0;
  }
}
/*--------- Isotope Portfolio Filtering ------------- */
.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/* Isotope CSS3 transitions */
.isotope {
  transition-duration: 0.8s;
  transition-property: height, width;
}
.isotope .isotope-item {
  transition-duration: 0.8s;
  transition-property: transform, opacity;
}
.isotope.no-transition {
  transition-duration: 0s;
}
.isotope.no-transition .isotope-item {
  transition-duration: 0s;
}
.isotope .isotope-item.no-transition {
  transition-duration: 0s;
}

/* disabling Isotope CSS3 transitions */
/* infinite scroll loading message styling */
#infscr-loading {
  position: fixed;
  text-align: center;
  bottom: 30px;
  left: 42%;
  z-index: 100;
  background: white;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  color: #222;
  font-size: 15px;
  font-weight: bold;
  border-radius: 10px;
}
#infscr-loading img {
  float: left;
  width: auto !important;
}
#infscr-loading div {
  float: left;
  padding-left: 10px;
}

/* ------------ Image Frame Styles ---------------- */
.image-box {
  display: block;
}

.image-area {
  position: relative;
  overflow: hidden;
}
.image-area a {
  display: block;
  text-decoration: none;
  color: #fff;
}
.image-area img {
  width: 100%;
  transition: transform 0.4s;
}
.image-area:hover .thumbnail {
  transform: translateY(-50px);
}
.image-area:hover .image-info {
  transform: translateY(0px);
  transition: transform 0.4s, opacity 0.1s;
  opacity: 1;
}

@media only screen and (max-width: 479px) {
  #content .image-area {
    float: none;
  }
}
.image-overlay {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
}
.image-area .image-overlay {
  background: url(../img/thumbnail-hover.png) no-repeat scroll 50% 50%
    transparent;
}

@media only screen and (max-width: 479px) {
  .image-wrapper.alignleft,
  .image-wrapper.alignright {
    float: none;
    margin: 0;
  }
}
/* ------------ Cover Image -------------------- */
.wp-block-cover.alignleft,
.wp-block-cover-image.alignleft {
  margin: 0 20px 5px 0;
}
.wp-block-cover.alignright,
.wp-block-cover-image.alignright {
  margin: 0px 0 5px 20px;
}

.wp-block-image .alignleft,
.wp-block-image .alignright {
  margin-bottom: 20px;
}

/*---------- Image Info Hover --------------------------*/
.image-info-buttons {
  position: absolute;
  top: 30%;
  left: 50%;
  margin-left: -22px;
  z-index: 100;
}
.image-info-buttons i {
  font-size: 16px;
  color: #fff;
  display: block;
  padding: 15px;
  border-radius: 24px;
  background: rgba(254, 80, 0, 0.9);
  opacity: 0;
  transition: opacity 0.4s ease-in-out 0s;
  border-radius: 50%;
}
.image-area:hover .image-info-buttons i {
  opacity: 1;
}

.image-info {
  display: block;
  z-index: 120;
  position: absolute;
  padding: 10px 0;
  width: 100%;
  top: auto;
  left: 0;
  bottom: 0;
  text-align: center;
  background: #fe5000;
  opacity: 0;
  filter: alpha(opacity=0);
  transform: translateY(100%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.4s, opacity 0.1s 0.3s;
}
.image-info h3 {
  position: relative;
  top: 20%;
  padding: 10px;
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .image-info h3 {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 479px) {
  .image-info h3.post-title {
    font-size: 16px;
    line-height: 24px;
  }
}
.image-info h3 a {
  color: #fff;
}
.image-info h3 a:hover {
  color: #eee;
}
.image-info .terms {
  position: relative;
  top: 20%;
  display: block;
  color: #f9f9f9;
}
.image-info .terms a {
  color: #f9f9f9;
  position: relative;
  display: inline;
  zoom: 1;
  font-size: 14px;
  line-height: 26px;
  transition: all 0.3s ease-in-out 0s;
}
.image-info .terms a:hover {
  color: #e5e5e5;
}
@media only screen and (max-width: 767px) {
  .image-info .terms {
    display: none;
  }
}

.type-portfolio .image-info .terms {
  display: block;
}

/* Four column layouts require less information to be shown in the image info 
since not everything will fit there */
.image-grid .threecol .image-info .terms {
  display: none;
}
.image-grid .threecol .image-info h3 {
  padding: 5px 0;
}
.image-grid .threecol .image-info-buttons {
  top: 20%;
}

/* ------------------------ Sliders - Revolution Slider ----------------------------------- */
#slider-area {
  clear: both;
  margin: 0 auto;
  width: 100%;
  background: #3f3b39;
}
#slider-area .image-area {
  background: none;
  box-shadow: none;
  border: none;
}
#slider-area #slider-error {
  padding: 240px 0;
  color: #bbb;
}

/*--------------------------------------------------------------------*/
/*	Responsive Flex Slider Styles
/*--------------------------------------------------------------------*/
/* * jQuery FlexSlider v2.0 * http://www.woothemes.com/flexslider/ * */
/* Browser Resets */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* FlexSlider Necessary Styles *********************************/
.flexslider {
  margin: 0;
  padding: 0;
}
.flexslider .slides > li {
  display: none;
  /*-webkit-backface-visibility: hidden; */
}
.flexslider .slides img {
  display: block;
}

/* Causes issues with fixed backgrounds in Chrome/Safari */
/* Hide the slides before the JS is loaded. Avoids image jumping */
.flex-pauseplay span {
  text-transform: capitalize;
}

/* Clearfix for the .slides element */
.slides:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .slides {
  display: block;
}

* html .slides {
  height: 1%;
}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you * include js that eliminates this class on page load */
.no-js .slides > li:first-child {
  display: block;
}

/* FlexSlider Default Theme *********************************/
.flex-slider-container {
  position: relative;
}

.flexslider {
  background: transparent;
  padding: 0;
  max-width: 100%;
  position: relative;
  zoom: 1;
}

.flex-viewport {
  max-height: 2000px;
  transition: all 2s ease 1s;
}

.loading .flex-viewport {
  max-height: 300px;
}

.flexslider .slides {
  zoom: 1;
}

.carousel li {
  margin-right: 5px;
}

.flexslider .slides > li {
  margin: 0;
  position: relative;
}
.flexslider .slides .image-area {
  float: none;
}
.flexslider .slides img {
  display: block;
}

/* Hide the slides before the JS is loaded. Avoids image jumping */
/* Caption styles */
.flex-caption {
  position: absolute;
  left: 150px;
  bottom: 30%;
  width: 35%;
  max-width: 450px;
  z-index: 89;
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .flex-caption {
    left: 70px;
    bottom: 20%;
  }
}
@media only screen and (max-width: 767px) {
  .flex-caption {
    left: 0;
    bottom: 20px;
    max-width: 60%;
    padding: 0 10px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    width: 50%;
  }
}
.flex-caption a,
.flex-caption .flex-summary {
  background: #000;
  opacity: 0.5;
  filter: alpha(opacity=55);
  /*IE*/
}
.flex-caption a {
  display: inline !important;
  font-size: 36px;
  font-weight: 500;
  line-height: 50px;
  color: #efefef !important;
  padding: 2px 15px;
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .flex-caption a {
    font-size: 26px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .flex-caption a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 479px) {
  .flex-caption a {
    font-size: 18px;
    padding: 5px;
  }
}
.flex-caption .flex-summary {
  color: #ccc;
  margin-top: 5px;
  padding: 10px 15px 10px 15px;
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 26px;
}
@media only screen and (max-width: 767px) {
  .flex-caption .flex-summary {
    padding: 5px 10px;
    font-size: 14px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 479px) {
  .flex-caption .flex-summary {
    display: none;
  }
}

/* Direction Nav */
.flex-direction-nav,
.widget .flex-direction-nav {
  *height: 0;
  display: block;
}
.flex-direction-nav li,
.widget .flex-direction-nav li {
  margin: 0;
  padding: 0;
  border: none;
}
.flex-direction-nav a,
.widget .flex-direction-nav a {
  display: block;
  position: absolute;
  text-indent: -9999px;
  background-color: #888;
  z-index: 10;
  /* IE */
  background-color: rgba(55, 55, 55, 0.8);
  height: 25px;
  width: 25px;
  transition: all 0.2s linear;
}
.flex-direction-nav .flex-next,
.widget .flex-direction-nav .flex-next {
  right: 10px;
  bottom: 10px;
}
.flex-direction-nav .flex-prev,
.widget .flex-direction-nav .flex-prev {
  right: 40px;
  bottom: 10px;
}
.flex-direction-nav a:hover,
.widget .flex-direction-nav a:hover {
  background-color: #666;
  /* IE */
  background-color: rgba(51, 51, 51, 0.8);
}
.flex-direction-nav .flex-prev span,
.widget .flex-direction-nav .flex-prev span {
  top: 5px;
  right: 9px;
  position: absolute;
  display: block;
  height: 12px;
  width: 8px;
  background-image: url("../img/arrows-sliders.png");
  background-position: right bottom;
}
.flex-direction-nav .flex-next span,
.widget .flex-direction-nav .flex-next span {
  top: 5px;
  right: 9px;
  position: absolute;
  display: block;
  height: 12px;
  width: 8px;
  background-image: url("../img/arrows-sliders.png");
  background-position: right bottom;
  background-position: right bottom;
}
.flex-direction-nav .flex-prev span,
.widget .flex-direction-nav .flex-prev span {
  background-position: left bottom;
}

/* Control Nav */
.flex-control-nav {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  text-align: center;
}

#slider-area .flex-control-nav,
.segment .flex-control-nav {
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  #slider-area .flex-control-nav,
  .segment .flex-control-nav {
    display: none;
  }
}

.flex-control-nav li {
  margin: 0 4px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  cursor: pointer;
  position: relative;
  z-index: 10;
  text-indent: -9999px;
  background-color: #ddd;
  width: 14px;
  height: 14px;
  border-radius: 14px;
}
.flex-control-paging li a:hover,
.flex-control-paging li a.flex-active {
  background-color: #fe5000;
}

.flex-control-nav li a.flex-active,
.flex-control-nav li a:hover {
  background-color: #fe5000;
}

ol.flexlite-control-nav.flexlite-control-paging {
  display: none;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}
.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: 0.7;
  cursor: pointer;
}
.flex-control-thumbs img:hover {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}
.flex-control-thumbs .flex-active {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  cursor: default;
}

.segment .flex-control-nav li a {
  width: 20px;
  height: 20px;
}
.segment .flex-control-nav li a:hover,
.segment .flex-control-nav li a.flex-active {
  background-color: #fe5000;
}

/* ----- Inline flex slider styling ----------*/
.flex-slider-container.loading {
  background: #202834 url(../img/ajax-loader.gif) no-repeat 50% 50%;
}
.flex-slider-container .flexslider {
  transition: opacity 0.4s ease-in-out;
  z-index: 2;
}
.flex-slider-container.loading .flexslider {
  visibility: hidden;
  opacity: 0;
}

/*  ======================================================
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 *  ======================================================
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
  float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}

.owl-controls {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing {
  cursor: url(images/sliders/grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

/* ======================================================
* 	Owl Carousel Owl Demo Theme
*	v1.3.3
*   =====================================================
*/
.owl-theme .owl-controls {
  margin-top: 10px;
  text-align: center;
}

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div {
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
  filter: Alpha(Opacity=80);
  /*IE7 fix*/
  opacity: 0.8;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
  text-decoration: none;
}

/* Styling Pagination*/
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
}

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
  border-radius: 20px;
  background: #869791;
  box-sizing: content-box;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
}

/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #fff;
  padding: 2px 10px;
  font-size: 12px;
  border-radius: 30px;
}

/* preloading images */
.owl-item.loading {
  min-height: 150px;
  background: url(../img/ajax-loader.gif) no-repeat center center;
}

/** THEME ===================================*/
/* Owl Carousel Customization */
.carousel-container .owl-carousel.owl-theme {
  z-index: 1;
}
.carousel-container .owl-carousel.owl-theme .owl-prev {
  margin-right: 6px;
}
.carousel-container .owl-carousel.owl-theme .owl-prev:hover {
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
}
.carousel-container .owl-carousel.owl-theme .owl-next:hover {
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
}
.carousel-container .owl-carousel.owl-theme .owl-buttons {
  position: absolute;
  display: block;
  bottom: 5px;
  right: 10px;
  list-style: none;
}
.carousel-container .owl-carousel.owl-theme .owl-buttons div {
  display: inline-block;
  width: 28px;
  height: 26px;
  cursor: pointer;
  background: #333;
  transition: opacity 0.3s ease-in-out;
  border-radius: 2px;
}
.carousel-container .owl-carousel.owl-theme .owl-buttons div i {
  font-size: 12px;
  line-height: 24px;
  display: block;
  color: #fff;
}

.carousel-container {
  transition: opacity 0.4s ease-in-out 0s;
}
.carousel-container .post-snippets .hentry {
  margin: 0 10px 20px 10px;
}
@media only screen and (max-width: 767px) {
  .carousel-container .entry-summary {
    display: none;
  }
  .carousel-container .flexslider .slides .image-area {
    padding: 2px;
  }
}
@media only screen and (max-width: 479px) {
  .carousel-container .type-portfolio .image-info .image-info-buttons {
    display: none;
  }
  .carousel-container .type-portfolio .image-info h3.post-title {
    top: 25%;
  }
}

/* TODO: Remove references to iphone-slider-container - kept for compatibility to previous versions of theme */
.smartphone-slider,
.iphone-slider-container {
  position: relative;
  margin: 0 auto;
  z-index: 2;
}
.smartphone-slider .flex-next,
.iphone-slider-container .flex-next {
  right: 10px;
  bottom: 10px;
  border-radius: 50%;
}
.smartphone-slider .flex-prev,
.iphone-slider-container .flex-prev {
  right: 40px;
  bottom: 10px;
  border-radius: 50%;
}
.smartphone-slider .flex-prev,
.smartphone-slider .flex-next,
.iphone-slider-container .flex-prev,
.iphone-slider-container .flex-next {
  display: none;
}
.smartphone-slider .flex-slider-container:hover .flex-prev,
.smartphone-slider .flex-slider-container:hover .flex-next,
.iphone-slider-container .flex-slider-container:hover .flex-prev,
.iphone-slider-container .flex-slider-container:hover .flex-next {
  display: block;
}

.smartphone-slider .flex-slider-container.loading,
.iphone-slider-container .flex-slider-container.loading {
  background-color: #333;
}

.smartphone-slider .flex-slider-container {
  position: absolute;
  overflow: hidden;
}

.smartphone-slider .flexslider {
  max-height: 100%;
}

.iphone-slider-container {
  max-width: 534px;
}

.ipad-slider-container {
  max-width: 940px;
}

.iphone7gold-slider-container,
.iphone7rosegold-slider-container,
.iphone7black-slider-container,
.iphone7jetblack-slider-container,
.iphone7silver-slider-container {
  max-width: 400px;
}

.galaxys7-slider-container {
  max-width: 400px;
}

.nexus6p-slider-container {
  max-width: 420px;
}

.googlepixelsilver-slider-container,
.googlepixelblack-slider-container,
.googlepixelblue-slider-container {
  max-width: 400px;
}

.galaxys4-slider-container,
.htcone-slider-container {
  max-width: 331px;
}

.imac-slider-container {
  max-width: 790px;
}

.macbook-slider-container {
  max-width: 800px;
}

.browser-slider-container {
  max-width: 875px;
  -ms-box-shadow: 1px 1px 2px 1px rgba(128, 128, 128, 0.25);
  box-shadow: 1px 1px 2px 1px rgba(128, 128, 128, 0.25);
}

.imac-slider-container .flex-next,
.macbook-slider-container .flex-next,
.browser-slider-container .flex-next {
  right: 10px;
  top: 10px;
}
.imac-slider-container .flex-prev,
.macbook-slider-container .flex-prev,
.browser-slider-container .flex-prev {
  right: 40px;
  top: 10px;
}

.iphone7gold-slider-container .flex-slider-container,
.iphone7rosegold-slider-container .flex-slider-container,
.iphone7black-slider-container .flex-slider-container,
.iphone7jetblack-slider-container .flex-slider-container,
.iphone7silver-slider-container .flex-slider-container {
  top: 11.3%;
  left: 6.3%;
  width: 87.5%;
  height: auto;
}

.galaxys7-slider-container .flex-slider-container {
  top: 10.8%;
  left: 5%;
  width: 90%;
  height: auto;
}

.nexus6p-slider-container .flex-slider-container {
  top: 10.6%;
  left: 8.6%;
  width: 83.4%;
  height: auto;
}

.googlepixelsilver-slider-container .flex-slider-container,
.googlepixelblack-slider-container .flex-slider-container,
.googlepixelblue-slider-container .flex-slider-container {
  top: 10.2%;
  left: 5.6%;
  width: 88.4%;
  height: auto;
}

.iphone-slider-container .flex-slider-container {
  top: 16.3%;
  left: 16.8%;
  width: 63.5%;
  height: 62%;
}

.ipad-slider-container .flex-slider-container {
  top: 6%;
  left: 12.5%;
  width: 74.7%;
  height: 78.4%;
}

.galaxys4-slider-container .flex-slider-container {
  top: 9.2%;
  left: 4.8%;
  width: 90.8%;
  height: 81.6%;
}

.htcone-slider-container .flex-slider-container {
  top: 9.5%;
  left: 6.5%;
  width: 87%;
  height: 76.4%;
}

.imac-slider-container .flex-slider-container {
  top: 5%;
  width: 91%;
  left: 4.5%;
  height: 61.2%;
}

.macbook-slider-container .flex-slider-container {
  top: 5.7%;
  left: 14.7%;
  width: 71.3%;
  height: 74.1%;
}

.browser-slider-container .flex-slider-container {
  top: 11.2%;
  width: 100%;
  left: 0;
  height: 88.5%;
}

.browser-slider-container .address-bar {
  position: absolute;
  left: 13%;
  top: 7.2%;
  font-size: 12px;
  line-height: 12px;
}
@media only screen and (max-width: 767px) {
  .browser-slider-container .address-bar {
    display: none;
  }
}

/* ------------------------ WordPress Widgets ----------------------------------- */
.sidebar .widget {
  font-size: 14px;
  line-height: 26px;
  margin: 0 0 20px 0;
  overflow: hidden;
}
.sidebar .widget ol,
.sidebar .widget ul,
.sidebar .widget ol li,
.sidebar .widget ul li {
  margin: 0;
  list-style: none;
}
.sidebar .widget li {
  padding: 12px 0;
  transition: padding 0.3s ease-in-out 0s;
  padding-left: 18px;
  background: url("../img/bullet.png") no-repeat 4px 20px;
  border-top: 1px dotted #aaa;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  .sidebar .widget li {
    background-image: url("../img/bullet_2x.png");
    background-size: 6px 8px;
  }
}
.sidebar .widget li:hover {
  padding-left: 22px;
}
ul.post-list .sidebar .widget li:hover {
  padding-left: 0;
}
.sidebar .widget li:first-child {
  border: none !important;
  padding-top: 0;
  background-position: 4px 8px;
}
#footer .sidebar .widget li:first-child {
  border: none;
}
#footer .sidebar .widget li {
  background-image: url("../img/bullet-footer.png");
  background-repeat: no-repeat;
  border-top: 1px solid #555557;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  #footer .sidebar .widget li {
    background-image: url("../img/bullet-footer_2x.png");
  }
}

.widget-title {
  color: #292929;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  padding: 0 0 10px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #bbb;
}
#sidebar-header .widget-title {
  display: none;
  /* Do not display titles for header widgets */
}

.sidebar .widget .post-list .entry-text-wrap {
  float: none;
}

/* Page Builder Widget Styling */
.panel-grid .widget {
  margin: 0;
}

/* ------ RSS Widget ------------ */
.widget_rss ul > li a.rsswidget {
  color: #fe5000;
  font-weight: 700;
}
.widget_rss ul > li a.rsswidget:hover {
  color: #888;
}
.widget_rss ul > li .rss-date {
  font-style: italic;
  color: #999;
  display: block;
}

/*--------- 125x125 Advertisement Styling --------- */
#advertisement-125 {
  padding: 0;
  overflow: hidden;
}
#advertisement-125 a {
  display: block;
  float: left;
  padding: 0;
  margin: 10px 9px 0 9px;
}
#advertisement-125 img {
  padding: 2px;
  background: #fefefe;
  border: 1px solid #ccc;
  width: 125px;
  height: 125px;
}

/*---------- Social List ---------- */
ul.social-list {
  list-style: none;
  margin: 0;
  display: block;
}
ul.social-list.center {
  margin: 5px auto;
}
ul.social-list li {
  padding: 0;
  list-style: none;
  margin: 0 10px 0 0;
  background: none !important;
  display: inline-block;
  float: left;
}
ul.social-list li:last-child {
  margin-right: 0;
}
ul.social-list a {
  color: #777;
  display: block;
  margin-right: 5px;
  transition: color 0.2s ease-in-out 0s;
}
ul.social-list a i {
  font-size: 24px;
  line-height: 28px;
  transition: color 0.2s ease-in-out 0s;
}
ul.social-list a:hover i {
  color: #888;
}

.sidebar .widget ul.social-list a {
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
}
.sidebar .widget ul.social-list li {
  border: none !important;
  padding: 5px;
}
.sidebar .widget ul.social-list a:hover {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}

#footer .widget ul.social-list {
  display: table;
}
#footer .widget ul.social-list a {
  margin: 0 20px 10px 0;
}
#footer .widget ul.social-list a i {
  font-size: 32px;
  color: #999;
}
@media only screen and (max-width: 479px) {
  #footer .widget ul.social-list a {
    margin: 0 8px 5px 0;
  }
  #footer .widget ul.social-list a i {
    font-size: 24px;
  }
}
#footer .widget ul.social-list a:hover {
  color: #d3d3d3;
}
#footer .widget ul.social-list a:hover i {
  color: #d3d3d3;
}

/* ------ Nav menu widget --------*/
.widget.widget_nav_menu ul li:hover,
.widget.widget_rss ul li:hover {
  padding-left: 18px;
}
.widget.widget_nav_menu ul li:hover > a {
  padding-left: 4px;
  transition: all 0.3s ease-in-out 0s;
}

/*-------------- Search Widget ----------------- */
.widget-search {
  margin: 0 0 20px;
  padding: 0;
}
.widget-search h3 {
  display: none;
}

.search-form {
  position: relative;
  max-width: 233px;
  border: none;
  box-shadow: 0 0 3px white;
  width: 100%;
}
#footer .search-form {
  -ms-box-shadow: none;
  box-shadow: none;
}
.search-form label {
  display: none;
}
.search-form .search-text {
  display: block;
  position: relative;
  right: 0;
  width: 100%;
  height: 35px;
  margin: 0;
  border: none;
  padding: 5px 5px 5px 30px;
  font-size: 13px;
  line-height: 24px;
  font-weight: 500;
  color: #777777;
  background-color: #fbfbfb;
  border-bottom: 1px solid rgba(196, 196, 196, 0.4);
  border-radius: 24px;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -ms-box-shadow: inset 0px 1px 2px rgba(79, 79, 79, 0.5);
  box-shadow: inset 0px 1px 2px rgba(79, 79, 79, 0.5);
  transition: all 0.3s ease-in-out;
}
.search-form .search-text:focus {
  color: #696969;
  background-color: #fff;
  font-style: normal;
}
.search-form .submit {
  background: url(../img/search-icon.png) no-repeat center transparent !important;
  display: block;
  margin: 0;
  padding: 5px 5px 5px 28px;
  position: absolute;
  left: 0;
  top: 0;
  border: none;
  cursor: pointer;
  height: 35px;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
  -ms-box-shadow: none;
  box-shadow: none;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  .search-form .submit {
    background-image: url(../img/search-icon_2x.png);
    background-size: 34px 37px;
  }
}
.search-form .submit:hover {
  background-color: transparent !important;
  -ms-box-shadow: none;
  box-shadow: none;
}

/* Text Widget */
#widget-text {
  margin: 0 0 20px 0;
}

/*------------- Flickr Widget -------------- */
#flickr-widget {
  margin: 10px 0 0 0;
}
#flickr-widget .flickr_badge_image {
  float: left;
  line-height: 100%;
  margin: 0 6px 6px 0;
}
#footer #flickr-widget .flickr_badge_image {
  margin: 0 10px 10px 0;
}
#flickr-widget .flickr_badge_image img {
  display: block;
  width: 75px;
  height: 75px;
  transition: all 0.2s ease-in-out 0s;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#flickr-widget .flickr_badge_image img:hover {
  background-color: #f4f4f4;
  border: 4px solid #fe5000;
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
}

/* ------------ Author Widget ------ */
#author-widget .widget-title {
  border-bottom: none;
}
#author-widget .avatar-wrap {
  float: left;
  margin-right: 40px;
}
#author-widget .avatar-wrap img {
  border-radius: 50%;
}
#author-widget .author-name {
  font-size: 18px;
  line-height: 22px;
  font-family: "Merriweather", "Arvo", Georgia, Times, serif;
  font-weight: 500;
  margin-right: 10px;
}

/* Make an exception for author widget */
#sidebar-after-singular #author-widget {
  padding: 0;
}

/* Calendar Widget */
.widget_calendar caption {
  margin-bottom: 10px;
  font-weight: 600;
}

/*--------- Contact Info Widget ---------- */
.contact-info p span {
  display: block;
}
.contact-info .mini-separator {
  margin-bottom: 30px;
}

.widget .contact-info p {
  margin-bottom: 10px;
}

/* ---------- Recent Comments ---------- */
ul#recentcomments li.recentcomments {
  background: url(../img/comment-icon-sidebar.png) left center no-repeat
    transparent;
  padding-left: 26px;
  transition: all 0.4s ease-in-out 0s;
}
ul#recentcomments li.recentcomments:first-child {
  background-position: 0 5px;
}
ul#recentcomments li.recentcomments a {
  display: inline !important;
  padding: 0;
  margin: 0;
  color: #fe5000;
  font-style: normal;
}
ul#recentcomments li.recentcomments a:hover {
  color: #666;
}
#footer ul#recentcomments li.recentcomments a:hover {
  color: #dbdbd9;
}
ul#recentcomments li.recentcomments a.url {
  transition: all 0.4s ease-in-out 0s;
}
ul#recentcomments li.recentcomments:after {
  font-family: "icomoon";
  speak: none;
  line-height: 1;
}

/* ------------ Tag Cloud - Tag/Category/Taxonomy Term Cloud widget ----------------*/
.term-cloud {
  margin: 0;
  padding: 0 4px 10px;
}
.term-cloud a {
  display: inline;
  color: #55585b;
  float: left;
  padding: 2px 6px;
  margin: 0 5px 5px 0;
  font-size: 12px !important;
  text-transform: none;
  line-height: 20px;
  background-color: #eaeaea;
  border-radius: 2px;
  transition: all 0.4s ease-in-out 0s;
}
.term-cloud a:hover {
  color: #fff !important;
  background-color: #fe5000;
}
#footer .term-cloud a {
  color: #d5d5d5;
  background-color: #555;
}
#footer .term-cloud a:hover {
  color: #fff !important;
}

/* --------- Mailchimp integration ---------- */
div.mc_merge_var,
div.mc_signup_submit {
  display: inline-block;
  margin-top: 10px;
}

#mc_signup_form .mc_var_label {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}
#mc_signup_form .mc_input {
  display: inline-block;
  padding: 8px;
  margin: 0 15px 0 0;
  line-height: 20px;
}
#footer #mc_signup_form .mc_input {
  background: #686868;
  border: 1px solid #444;
}

#mc_signup_submit {
  color: #ffffff !important;
  background-color: #fe5000 !important;
  border-color: #37b4ee #1c8bbe #1c8bbe #37b4ee;
  padding: 8px 30px;
  margin: 0;
}

#mc-indicates-required {
  margin: 10px 0 0;
  display: none;
}

/* Sidebar Header */
#sidebar-header {
  float: right;
}
#sidebar-header .social-list {
  position: absolute;
  right: 0;
  top: 40px;
  transition: top 0.3s ease-in-out 0s;
}
#sidebar-header .social-list li {
  margin-right: 20px;
}
#sidebar-header .social-list li:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 1024px) {
  #sidebar-header .social-list li {
    margin-right: 14px;
  }
}
#sidebar-header .social-list a i {
  color: #ccc;
  font-size: 24px;
  line-height: 24px;
  transition: color 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 1024px) {
  #sidebar-header .social-list a i {
    font-size: 20px;
    line-height: 20px;
  }
}
#sidebar-header .social-list a:hover i {
  color: #fff;
}
#header.sticky #sidebar-header .social-list {
  top: 15px;
}
@media only screen and (max-width: 767px) {
  #sidebar-header {
    width: 100%;
    float: none;
  }
  #sidebar-header .widget {
    margin-bottom: 0;
  }
  #sidebar-header .social-list {
    position: relative;
    top: 0;
    right: 0 !important;
    text-align: center;
    margin: 10px auto 0;
    display: inline-block;
  }
}

/* ------------------------ WordPress Shortcodes ----------------------------------- */
/*----------------- Highlighting --------------- */
.highlight1 {
  background: #ffff99;
}

.highlight2 {
  background: #555;
  color: #fff;
}

/*----------------------- Pull Quotes --------- */
.pullquote {
  font: normal 18px/32px "Merriweather", "Arvo", Georgia, Times, serif;
  font-weight: normal;
  font-style: italic;
  margin: 0;
  padding: 0;
  color: #555;
}
@media only screen and (max-width: 767px) {
  .pullquote {
    font-size: 16px;
    line-height: 26px;
  }
}

.quote-wrap.alignleft {
  float: left;
  width: 230px;
  margin: 0 20px 0 0;
  border-top: 1px solid #555;
  padding: 2px 0;
}
.quote-wrap.alignleft .pullquote {
  border-top: 1px dotted #555;
  padding-top: 14px;
}
.quote-wrap.alignright {
  float: right;
  width: 230px;
  margin: 0 0 0 20px;
  border-top: 1px solid #555;
  padding: 2px 0;
}
.quote-wrap.alignright .pullquote {
  border-top: 1px dotted #555;
  padding-top: 14px;
}
@media only screen and (max-width: 767px) {
  .quote-wrap.alignright,
  .quote-wrap.alignleft {
    width: 180px;
  }
  .quote-wrap.alignright {
    margin-left: 15px;
  }
  .quote-wrap.alignleft {
    margin-right: 15px;
  }
}
.quote-wrap.alignnone {
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
  padding: 2px 0;
}
.quote-wrap.alignnone .pullquote {
  border-top: 1px dotted #555;
  border-bottom: 1px dotted #555;
  padding-top: 21px;
  padding-bottom: 21px;
}

blockquote {
  font: normal 18px/32px "Merriweather", "Arvo", Georgia, Times, serif;
  font-weight: normal;
  font-style: italic;
  color: #555;
  padding: 5px 15px 5px 50px;
  background: url("../img/quote.png") no-repeat scroll 0 0 transparent;
  overflow: hidden;
}
blockquote .author,
blockquote em,
blockquote i,
blockquote cite {
  color: #292929;
  font-style: normal;
  font-size: 13px;
  font-weight: 400;
}
blockquote.alignleft {
  margin: 0px 20px 0 0;
  width: 230px;
}
blockquote.alignright {
  margin: 0px 0 0 20px;
  width: 230px;
}
@media only screen and (max-width: 767px) {
  blockquote {
    font-size: 16px;
    line-height: 26px;
  }
  blockquote.alignright {
    margin-left: 15px;
  }
  blockquote.alignleft {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  blockquote.alignleft,
  blockquote.alignright {
    width: 200px;
    padding: 5px 5px 5px 42px;
  }
}
blockquote p {
  margin-bottom: 10px;
}
.dark-bg blockquote {
  color: #eeeeee;
}
.dark-bg blockquote > p {
  color: #eeeeee;
}

/*--------------------- Begin Typography: List Styles ----------------- */
ul.list1,
ul.list2,
ul.list3,
ul.list4,
ul.list5,
ul.list6,
ul.list7,
ul.list8,
ul.list9,
ul.list10,
ul.list11,
ul.list12,
ul.list13 {
  position: relative;
  overflow: hidden;
  margin: 5px 0px 5px 4px;
}
ul.list1 li,
ul.list2 li,
ul.list3 li,
ul.list4 li,
ul.list5 li,
ul.list6 li,
ul.list7 li,
ul.list8 li,
ul.list9 li,
ul.list10 li,
ul.list11 li,
ul.list12 li,
ul.list13 li,
ul.list-none li {
  margin: 0 0 5px 0;
  padding: 0;
  list-style: none outside none;
}
ul.list1 li:before,
ul.list2 li:before,
ul.list3 li:before,
ul.list4 li:before,
ul.list5 li:before,
ul.list6 li:before,
ul.list7 li:before,
ul.list8 li:before,
ul.list9 li:before,
ul.list10 li:before,
ul.list11 li:before,
ul.list12 li:before,
ul.list13 li:before,
ul.list-none li:before {
  position: relative;
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #999;
  font-size: 18px;
  line-height: 18px;
  vertical-align: middle;
  content: "\e845";
  margin-right: 10px;
}
ul.list1 li:before {
  content: "\f105";
}
ul.list2 li:before {
  content: "\e116";
}
ul.list3 li:before {
  content: "\e117";
}
ul.list4 li:before {
  content: "\e114";
}
ul.list5 li:before {
  content: "\e115";
}
ul.list6 li:before {
  content: "\e095";
}
ul.list7 li:before {
  content: "\e093";
}
ul.list8 li:before {
  content: "\e085";
}
ul.list9 li:before {
  content: "\e081";
}
ul.list10 li:before {
  content: "\e076";
}
ul.list11 li:before {
  content: "\e024";
}
ul.list12 li:before {
  content: "\e063";
}
ul.list13 li:before {
  content: "\e108";
}
ul.list-none li:before {
  position: relative;
  overflow: hidden;
}

list-none {
  position: relative;
  overflow: hidden;
  margin: 5px 0px 5px 4px;
}

/** ---------------------------------- RSS Block --------------- */
.rss-block {
  background: #eaeaff;
  border: 1px solid #ccccff;
  padding: 10px;
  margin: 10px 0;
  clear: both;
  font: normal 13px/1.5 "Merriweather", "Arvo", Georgia, Times, serif;
  word-spacing: 2px;
  border-radius: 3px;
}

/** ---------------------------------- Paypal Donate Button --------------- */
.donate-button {
  display: block;
  text-indent: -9999px;
  background: url(../img/btn_donate_LG.gif) no-repeat scroll 0 3px transparent;
  width: 100px;
  height: 36px;
}

.donate-button-plus {
  display: block;
  text-indent: -9999px;
  background: url(../img/btn_donateCC_LG.gif) no-repeat scroll 0 3px transparent;
  width: 155px;
  height: 55px;
}

/*----------------------- Divider Styling --------------------------------------------*/
.divider {
  position: relative;
  display: block;
  clear: both;
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
  padding-top: 19px;
  margin-bottom: 40px;
  margin-top: 40px;
}

.divider-space {
  position: relative;
  display: block;
  clear: both;
  width: 100%;
  padding-top: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.divider-line {
  position: relative;
  display: block;
  clear: both;
  width: 100%;
  border-bottom: 1px solid #bbb;
  margin-bottom: 19px;
  line-height: 0;
}

.divider-fancy {
  position: relative;
  display: block;
  clear: both;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 39px;
  height: 1px;
  background: url("../img/border-gradient.png") no-repeat center center;
}

.header-fancy {
  position: relative;
  display: block;
  clear: both;
  width: 100%;
  padding: 0 10px;
  margin-top: 35px;
  margin-bottom: 40px;
  background: url("../img/content-horizontal-seperator.png") no-repeat center
    center;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 3px;
}
.header-fancy span {
  display: inline-block;
  padding: 10px 16px;
  background-image: none !important;
  background-color: #fe5000;
  color: #fff;
  font-size: 12px;
  line-height: 12px;
  word-spacing: 3px;
}

.mini-separator {
  height: 1px;
  width: 105px;
  background-color: #808080;
}

.mini-separator-thick {
  height: 4px;
  width: 85px;
  background-color: #808080;
  margin-top: 20px;
}

.heading2 .mini-separator {
  margin-bottom: 20px;
}

h3.fancy-header {
  color: #fefefe;
  background-color: #fe5000;
  text-align: center;
  margin: 0 auto;
  display: inline-block;
  padding: 12px 60px;
  font-size: 16px;
  line-height: 16px;
}

.top-of-page {
  position: relative;
  text-align: right;
  font-size: 12px;
  margin-bottom: 25px;
  line-height: 12px;
}
.top-of-page a {
  color: #999;
}
.top-of-page a:active,
.top-of-page a:visited {
  color: #999;
}
.top-of-page a:hover {
  color: #fe5000;
}

/*-------------------- Box Styles ---------- */
.message-box {
  padding: 25px 55px 5px 25px !important;
  margin: 20px 0 !important;
  background: #eee;
  word-spacing: 1px;
  border-radius: 2px;
  color: #555;
  overflow: auto;
  position: relative;
  max-width: 800px;
}
.message-box .contents {
  margin: 0 0 15px 0;
}
.message-box code {
  background: transparent;
  margin: 0 2px;
}
.message-box .title {
  text-transform: uppercase;
  margin: 0 0 5px 0;
  font-size: 14px;
  font-weight: bolder;
}
.message-box p {
  margin: 0 0 10px 0;
}
.message-box a.close {
  position: absolute;
  right: 20px;
  top: 40%;
}
.message-box a.close i {
  color: #999;
  font-size: 24px;
}

.info {
  background: #e8f8ff;
  border: 1px solid #c6ebfb;
}

.note {
  background: #fefed6;
  border: 1px solid #eded03;
}

.attention {
  background: #f0f4f9;
  border: 1px solid #c9b8bd;
}

.warning {
  background: #fcf5e2;
  border: 1px solid #f4dc9d;
}

.tip {
  background: #faf2ef;
  border: 1px solid #eccdc1;
}

.success {
  background: #e8f8d8;
  border: 1px solid #cae88c;
}

.errors {
  background: #fff4f4;
  border: 1px solid #ffd9d9;
}

/* ----------- Box Frame ----------*/
.box-frame {
  position: relative;
  border: 1px solid #d9d9d9;
  margin: 20px 0;
  background: #fafafa;
  border-radius: 5px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 1024px) {
  .box-frame {
    max-width: 280px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .box-frame {
    margin-bottom: 15px;
  }
}
.box-frame .box-header {
  font-size: 16px;
  border-bottom: 1px solid #d1d1d1;
  border-radius: 5px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #fff;
  padding: 8px 30px;
  text-shadow: 0 1px #eee;
  text-align: center;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-bottomright: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  background-image: -moz-linear-gradient(top, white, #f1f1f1);
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #f1f1f1),
    color-stop(1, white)
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f1f1f1');
}
.box-frame .box-contents {
  padding: 10px 20px;
}

.threecol .box-frame .box-contents {
  padding: 15px 10px;
}

.fourcol .box-frame .box-contents {
  padding: 20px;
}

/*---------------- Column shortcodes ------------------------------------------------------------------------------------*/
.onecol,
.twocol,
.onefifthcol,
.threecol,
.fourcol,
.fivecol,
.sixcol,
.sevencol,
.eightcol,
.ninecol,
.tencol,
.elevencol {
  min-height: 1px;
  /* Prevents columns from collapsing when housing absolute elements or when lazy loading content */
}

.onecol {
  float: left;
  display: block;
  margin-right: 3.44828%;
  width: 5.17241%;
}
.onecol:last-child {
  margin-right: 0;
}

.twocol {
  float: left;
  display: block;
  margin-right: 3.44828%;
  width: 13.7931%;
}
.twocol:last-child {
  margin-right: 0;
}

.threecol {
  float: left;
  display: block;
  margin-right: 3.44828%;
  width: 22.41379%;
}
.threecol:last-child {
  margin-right: 0;
}

.fourcol {
  float: left;
  display: block;
  margin-right: 3.44828%;
  width: 31.03448%;
}
.fourcol:last-child {
  margin-right: 0;
}

.fivecol {
  float: left;
  display: block;
  margin-right: 3.44828%;
  width: 39.65517%;
}
.fivecol:last-child {
  margin-right: 0;
}

.sixcol {
  float: left;
  display: block;
  margin-right: 3.44828%;
  width: 48.27586%;
}
.sixcol:last-child {
  margin-right: 0;
}

.sevencol {
  float: left;
  display: block;
  margin-right: 3.44828%;
  width: 56.89655%;
}
.sevencol:last-child {
  margin-right: 0;
}

.eightcol {
  float: left;
  display: block;
  margin-right: 3.44828%;
  width: 65.51724%;
}
.eightcol:last-child {
  margin-right: 0;
}

.ninecol {
  float: left;
  display: block;
  margin-right: 3.44828%;
  width: 74.13793%;
}
.ninecol:last-child {
  margin-right: 0;
}

.tencol {
  float: left;
  display: block;
  margin-right: 3.44828%;
  width: 82.75862%;
}
.tencol:last-child {
  margin-right: 0;
}

.elevencol {
  float: left;
  display: block;
  margin-right: 3.44828%;
  width: 91.37931%;
}
.elevencol:last-child {
  margin-right: 0;
}

.twelvecol,
.fullwidth {
  float: left;
  display: block;
  width: 100%;
}

/*--------- Support for 5 column grid ----*/
.onefifthcol {
  float: left;
  display: block;
  margin-right: 2.73973%;
  width: 17.80822%;
}
.onefifthcol:last-child {
  margin-right: 0;
}

.onefifthcol.zero-margin {
  margin-right: 0;
  width: 20%;
}

/*-------- Remove margins on last column -----*/
.last {
  margin-right: 0;
}

/*--------- No margin columns ----*/
.zero-margin,
#content .zero-margin {
  margin-right: 0;
}

.onecol.zero-margin,
.twocol.zero-margin,
.onefifthcol.zero-margin,
.threecol.zero-margin,
.fourcol.zero-margin,
.fivecol.zero-margin,
.sixcol.zero-margin,
.sevencol.zero-margin,
.eightcol.zero-margin,
.ninecol.zero-margin,
.tencol.zero-margin,
.elevencol.zero-margin {
  margin-right: 0;
}

.onecol.zero-margin {
  width: 8.33333%;
}

.twocol.zero-margin {
  width: 16.66667%;
}

.threecol.zero-margin {
  width: 25%;
}

.fourcol.zero-margin {
  width: 33.33333%;
}

.fivecol.zero-margin {
  width: 41.66667%;
}

.sixcol.zero-margin {
  width: 50%;
}

.sevencol.zero-margin {
  width: 58.33333%;
}

.eightcol.zero-margin {
  width: 66.66667%;
}

.ninecol.zero-margin {
  width: 75%;
}

.tencol.zero-margin {
  width: 83.33333%;
}

.elevencol.zero-margin {
  width: 91.66667%;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .sixcol.zero-margin,
  .fourcol.zero-margin,
  .threecol.zero-margin {
    width: 50%;
  }
}
/*---------- Grid for portfolio items and posts grid layout ------------------*/
.image-grid .sixcol,
.image-grid .fourcol,
.image-grid .threecol {
  padding: 0 !important;
  margin: 0;
  margin-right: 2% !important;
  margin-bottom: 22px;
}
@media only screen and (max-width: 1024px) {
  .image-grid .sixcol,
  .image-grid .fourcol,
  .image-grid .threecol {
    margin-bottom: 18px;
  }
}
.image-grid .sixcol {
  width: 48%;
}
.image-grid .fourcol {
  width: 31.33%;
}
.image-grid .threecol {
  width: 23%;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .image-grid .sixcol,
  .image-grid .fourcol,
  .image-grid .threecol {
    width: 48%;
    height: auto;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 479px) {
  .image-grid .sixcol,
  .image-grid .fourcol,
  .image-grid .threecol {
    width: 100% !important;
    height: auto;
    margin: 0 0 20px 0 !important;
  }
}
/* ----- Packaged Image Grid ---------- */
.image-grid .sixcol.zero-margin {
  width: 50%;
}
.image-grid .fivecol.zero-margin {
  width: 41.66667%;
}
.image-grid .fourcol.zero-margin {
  width: 33.33333%;
}
.image-grid .threecol.zero-margin {
  width: 25%;
}
.image-grid .twocol.zero-margin {
  width: 16.66667%;
}
.image-grid .onecol.zero-margin {
  width: 8.33333%;
}
.image-grid .onecol.zero-margin,
.image-grid .twocol.zero-margin,
.image-grid .onefifthcol.zero-margin,
.image-grid .threecol.zero-margin,
.image-grid .fourcol.zero-margin,
.image-grid .fivecol.zero-margin,
.image-grid .sixcol.zero-margin,
.image-grid .sevencol.zero-margin,
.image-grid .eightcol.zero-margin,
.image-grid .ninecol.zero-margin,
.image-grid .tencol.zero-margin,
.image-grid .elevencol.zero-margin {
  padding: 0 !important;
  margin: 0 !important;
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .image-grid .onecol.zero-margin,
  .image-grid .twocol.zero-margin,
  .image-grid .onefifthcol.zero-margin,
  .image-grid .threecol.zero-margin,
  .image-grid .fourcol.zero-margin,
  .image-grid .fivecol.zero-margin,
  .image-grid .sixcol.zero-margin,
  .image-grid .sevencol.zero-margin,
  .image-grid .eightcol.zero-margin,
  .image-grid .ninecol.zero-margin,
  .image-grid .tencol.zero-margin,
  .image-grid .elevencol.zero-margin {
    width: 50%;
  }
}
@media only screen and (max-width: 479px) {
  .image-grid .onecol.zero-margin,
  .image-grid .twocol.zero-margin,
  .image-grid .onefifthcol.zero-margin,
  .image-grid .threecol.zero-margin,
  .image-grid .fourcol.zero-margin,
  .image-grid .fivecol.zero-margin,
  .image-grid .sixcol.zero-margin,
  .image-grid .sevencol.zero-margin,
  .image-grid .eightcol.zero-margin,
  .image-grid .ninecol.zero-margin,
  .image-grid .tencol.zero-margin,
  .image-grid .elevencol.zero-margin {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .onecol,
  .twocol,
  .threecol,
  .fourcol,
  .fivecol,
  .sixcol,
  .sevencol,
  .eightcol,
  .ninecol,
  .tencol,
  .elevencol,
  .onefifthcol,
  .onecol.zero-margin,
  .twocol.zero-margin,
  .threecol.zero-margin,
  .fourcol.zero-margin,
  .fivecol.zero-margin,
  .sixcol.zero-margin,
  .sevencol.zero-margin,
  .eightcol.zero-margin,
  .ninecol.zero-margin,
  .tencol.zero-margin,
  .elevencol.zero-margin,
  .onefifthcol.zero-margin {
    float: left;
    display: block;
    margin-right: 5.26316%;
    width: 100%;
    margin-right: 0;
    margin: 0 0 25px 0;
  }
  .onecol:last-child,
  .twocol:last-child,
  .threecol:last-child,
  .fourcol:last-child,
  .fivecol:last-child,
  .sixcol:last-child,
  .sevencol:last-child,
  .eightcol:last-child,
  .ninecol:last-child,
  .tencol:last-child,
  .elevencol:last-child,
  .onefifthcol:last-child,
  .onecol.zero-margin:last-child,
  .twocol.zero-margin:last-child,
  .threecol.zero-margin:last-child,
  .fourcol.zero-margin:last-child,
  .fivecol.zero-margin:last-child,
  .sixcol.zero-margin:last-child,
  .sevencol.zero-margin:last-child,
  .eightcol.zero-margin:last-child,
  .ninecol.zero-margin:last-child,
  .tencol.zero-margin:last-child,
  .elevencol.zero-margin:last-child,
  .onefifthcol.zero-margin:last-child {
    margin-right: 0;
  }
}

/* ---- Segment styles ------- */
.segment,
.segment-content {
  position: relative;
}

.segment {
  padding: 90px 0;
  margin: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media only screen and (max-width: 1100px) {
  .segment {
    background-attachment: scroll !important;
    background-position: center center !important;
  }
}
@media only screen and (max-width: 767px) {
  .segment {
    padding: 60px 0;
  }
}

.first-segment {
  border-top: 10px solid #eaeaea;
}
.first-segment.regular-heading {
  padding-top: 60px;
}

.last-segment {
  border-bottom: 10px solid #eaeaea;
}

.segment .floating-text {
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  /* Align in the center and leave position to individual elements */
  overflow: hidden;
}

/* Dual margin columns with margins on both sides used mainly for drawing middle lines/borders */
.threecol.dual-margin,
.fourcol.dual-margin,
.sixcol.dual-margin {
  padding-right: 1.9%;
  padding-left: 1.9%;
  margin: 0;
}

.dual-margin.first,
.dual-margin:first-child {
  padding-left: 0;
}
.dual-margin.last,
.dual-margin:last-child {
  padding-right: 0;
}

.mini-column,
.maxi-column {
  float: left;
  position: relative;
}

.mini-column {
  width: 16.8%;
  margin-right: 4%;
}

.maxi-column {
  width: 79.2%;
}

/* --------- Toggle ------------------------*/
.toggle {
  position: relative;
  margin: 0;
  background: white;
}
.toggle.first {
  margin-top: 25px;
}
.toggle.get-code {
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  background: #fefefe;
}

.toggle-label {
  cursor: pointer;
  background: url("../img/toggle-button-plus.png") no-repeat scroll right bottom
    #f8f8f8;
  padding: 15px 25px 15px 15px;
  margin: 1px 0;
  border: 1px solid #eee;
}
.toggle-label:hover {
  background-color: #fafafa;
}
.active-toggle .toggle-label {
  background-image: url("../img/toggle-button-minus.png");
  margin-bottom: 0;
  border-bottom: 0;
}
.active-toggle .toggle-label:hover {
  background-color: #fafafa;
}

.toggle-content {
  display: none;
  padding: 15px 0 10px 40px;
  border: 1px solid #eee;
  clear: both;
  overflow: hidden;
}

/* -------- jQuery Tabs ---------- */
/* root element for tabs */
.tabs {
  list-style: none;
  margin: 0 !important;
  padding: 0;
}
.tabs li {
  float: left;
  padding: 0;
  margin: 0 2px -1px 0 !important;
  background: white;
  height: 42px;
  border-radius: 0;
  box-sizing: content-box;
  border: none;
}
.tabs li:first-child {
  margin-left: 0 !important;
}
.tabs a {
  display: block;
  height: 32px;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  text-decoration: none;
  padding: 4px 20px 4px;
  margin: 0;
  position: relative;
  background: #f7f7f7;
  vertical-align: middle;
  color: #666 !important;
  border: 1px solid #ddd;
}
.tabs a:active {
  outline: none;
}
.tabs a:hover {
  background: #fff;
}
.tabs a.current {
  cursor: default !important;
  color: #555 !important;
  background: #fff;
  border-bottom: none;
}

.tabs .current,
.tabs .current:hover,
.tabs li.current a {
  border-top: 2px solid #fe5000;
}

/* single tab */
.panes {
  clear: both;
}
.panes .pane {
  padding: 20px;
  border: 1px solid #ddd;
  display: block;
  background: #fff;
  box-shadow: 1px 1px 1px #eee;
  border-radius: 1px;
  overflow: hidden;
}

/* initially all panes are hidden */
/* ------- Skill Bar --------- */
.skill-bar {
  width: 100%;
  display: block;
  margin: 0 0 15px;
  overflow: hidden;
}

.skill-title {
  margin: 0;
  display: block;
  font-style: italic;
}
.dark-bg .skill-title {
  color: #fff;
}

.skill-bar-content {
  background: #fe5000;
  display: block;
  height: 15px;
  width: 0;
}

/*---- Pie Charts --------- */
.piechart {
  position: relative;
  text-align: center;
  float: left;
  margin-left: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .piechart {
    float: none;
  }
}
.piechart canvas {
  position: relative;
  top: 0;
  left: 0;
  max-width: 100%;
}
@media only screen and (max-width: 479px) {
  .piechart canvas {
    margin-bottom: 15px;
  }
}
.piechart .label {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 55%;
  max-width: 65%;
}
.piechart .percentage span {
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 60px;
  line-height: 60px;
  font-weight: 300;
  text-align: center;
}
.piechart .percentage sup {
  font-size: 18px;
  vertical-align: super;
}
.piechart.dark-bg .label {
  color: #fff;
}
.piechart.dark-bg .percentage span {
  color: #eee;
}

/* --- Animate Numbers ---- */
.animate-numbers {
  font-size: 0;
  /* inline-block hack */
}
.animate-numbers .stats {
  display: inline-block;
  width: 22%;
  margin-right: 3%;
  min-width: 200px;
  box-sizing: border-box;
}
@media only screen and (max-width: 1024px) {
  .animate-numbers .stats {
    width: 48.5%;
    margin-bottom: 30px;
  }
  .animate-numbers .stats:nth-child(even) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 600px) {
  .animate-numbers .stats {
    width: 100%;
    margin-right: 0;
  }
  .animate-numbers .stats:last-child {
    margin-bottom: 0;
  }
}

.stats {
  vertical-align: top;
}
@media only screen and (max-width: 992px) {
  .stats {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .stats:last-child {
    margin-bottom: 0;
  }
}
.stats .number {
  font-size: 72px;
  line-height: 72px;
  font-family: "Lato", Arial, Helvetica, Verdana, sans-serif;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
  color: #fe5000;
  letter-spacing: 1px;
}
.dark-bg .stats .number {
  color: #fff;
}
@media only screen and (max-width: 600px) {
  .stats .number {
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 0;
  }
}
.stats .stats-title {
  font-size: 18px;
  line-height: 32px;
  font-style: italic;
  margin-top: 10px;
}
@media only screen and (max-width: 600px) {
  .stats .stats-title {
    font-size: 15px;
    line-height: 26px;
  }
}
.stats .stats-title i,
.stats .stats-title img {
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}
.stats .stats-title i {
  font-size: 32px;
  color: #d2b48c;
}
@media only screen and (max-width: 800px) {
  .stats {
    width: 100%;
  }
}

/* ---------- tooltip styling. by default the element to be styled is .tooltip ------------ */
.tooltip {
  display: none;
  font-size: 12px;
  line-height: 24px;
  height: auto;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  width: auto;
  padding: 8px 15px;
  border-radius: 4px;
  max-width: 300px;
  position: absolute;
  margin-top: -20px;
  z-index: 800;
  -webkit-animation: fadeIn 0.4s;
  -moz-animation-duration: 3s;
  -moz-animation-name: fadeIn;
  /* Fix for Firefox */
  animation: fadeIn 0.4s;
}
.tooltip:after {
  content: " ";
  border-width: 10px;
  border-style: solid;
  border-left-color: rgba(0, 0, 0, 0);
  border-right-color: rgba(0, 0, 0, 0);
  border-bottom-color: rgba(0, 0, 0, 0);
  border-top-color: rgba(0, 0, 0, 0.9);
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  height: 0;
  width: 0;
  display: block;
}
@media only screen and (max-width: 767px) {
  .tooltip {
    display: none !important;
    /* Hide them completely on mobile */
  }
}

/* ------ Video styling --------------*/
.video-play-button {
  background: url(../img/video-play-button.png) center center no-repeat;
  width: 64px;
  height: 64px;
  transition: all 0.2s ease-in-out 0s;
}
.video-play-button:hover {
  background-image: url(../img/video-play-hover.png);
}

/* Video Embed - Credit - http://www.karavas.me/a-placeholder-for-vimeo-videos/ */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.video-wrap i {
  font-size: 52px;
  color: #d7d7d7;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -26px;
  margin-left: -26px;
  transition: color ease-in-out 0.2s 0s;
}
.video-wrap img {
  max-width: 100%;
  height: auto;
  transition: opacity ease-in-out 0.2s 0s;
}
.video-wrap img,
.video-wrap i {
  cursor: pointer;
}
.video-wrap:hover i {
  color: #fff;
}
.video-wrap:hover img {
  opacity: 0.9;
}
.video-wrap iframe,
.video-wrap object,
.video-wrap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ------------------------ Animations ----------------------------------- */
.delay1 {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.delay2 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.delay3 {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

#title-area .inner,
#custom-title-area .inner,
#content,
#sidebar-primary {
  transition: opacity, 0.5s, ease-in-out 0s;
}

/* Delay should come after transition specified above for opacity */
#title-area .inner,
#custom-title-area .inner {
  transition-delay: 0.7s;
}

#content {
  transition-delay: 1.2s;
}

#sidebar-primary {
  transition-delay: 1.5s;
}

/* ----------- Wrapper to help dim the elements on scroll -----------*/
.dim-wrap {
  background: #fe5000;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #ccc;
}

.mfp-preloader a:hover {
  color: #fff;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
}

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid #fff;
  margin-left: 31px;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid #fff;
  margin-left: 39px;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
  screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    transform-origin: 0;
  }

  .mfp-arrow-right {
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

/* ----------- Headers, Menus, Page/Post Titles/Headings -------------------------*/
#header {
  display: block;
  position: relative;
  z-index: 600;
  /* Higher than the sidebar widget and widget container, sliders */
  margin: 0;
  padding: 0;
  width: 100%;
  background: #fff;
}
#header > .inner {
  position: relative;
}
#header > .inner > .wrap {
  position: relative;
  min-height: 100px;
}
@media only screen and (max-width: 1024px) {
  #header > .inner > .warp {
    min-height: 80px;
  }
}
@media only screen and (max-width: 767px) {
  #header > .inner {
    text-align: center;
  }
  #header > .inner > .wrap {
    min-height: 40px;
  }
}

#header.sticky {
  position: fixed;
  z-index: 1020;
  width: 100%;
  border-bottom: 1px solid #ccc;
  box-shadow: 0px 1px 5px rgba(100, 100, 100, 0.3);
}
@media only screen and (max-width: 767px) {
  #header.sticky {
    display: none !important;
  }
}
#header.sticky .wrap {
  min-height: 0;
}
.boxed #header.sticky {
  max-width: 1180px;
  width: 96%;
}
.admin-bar #header.sticky {
  top: 32px;
}
#header.sticky #site-logo,
#header.sticky #primary-menu {
  display: inline-block !important;
}
#header.sticky .site-branding {
  top: 8px;
}

@media only screen and (max-width: 767px) {
  /*No need to worry about sticky menu in mobile */
  .sticky-wrapper {
    height: auto !important;
  }
}
.site-branding {
  position: relative;
  display: inline-block;
  float: left;
  left: 0;
  top: 30px;
  line-height: 0;
  margin: 0 30px 0 0;
}
@media only screen and (max-width: 1024px) {
  .site-branding {
    display: block;
    float: none;
    top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .site-branding {
    position: relative;
    margin: 0 auto;
    top: 0;
    padding: 10px 0;
  }
}
.site-branding a {
  font-size: 28px;
  color: #494d4e;
  line-height: 36px;
  direction: ltr;
  display: block;
  text-align: left;
  /* Do not let logo get bigger than the header */
  font-family: "Lato", Arial, Helvetica, Verdana, sans-serif;
}
@media only screen and (max-width: 767px) {
  .site-branding a {
    display: inline-block;
    text-align: center;
  }
}
.site-branding a img {
  max-height: 100%;
  max-width: 100%;
}

#site-description {
  margin: 0;
}

#container,
#header {
  background: #fff;
}

/* --------- Header Styling - Display of Phone and Email on the header ------------------ */
#contact-header {
  position: absolute;
  top: 20px;
  right: 0;
}
#contact-header ul {
  margin: 0;
  padding: 8px 0;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  color: #083643;
}
#contact-header li {
  display: inline;
  padding-left: 10px;
  margin: 0 0 0 10px;
  border-left: 1px solid #999;
}
#contact-header li:first-child {
  padding: 0;
  margin: 0;
  border: none;
}
#contact-header span:before {
  padding-right: 10px;
}

/*----------------------------------- Dropdown Menus ---------------------------------------------------*/
/* Primary menu dropdown styling*/
.dropdown-menu-wrap ul {
  list-style-type: none;
}
.dropdown-menu-wrap ul li {
  position: relative;
  float: left;
  margin: 0;
}
.dropdown-menu-wrap ul li a {
  text-decoration: none;
  display: block;
  text-transform: none;
}
.dropdown-menu-wrap ul.sub-menu {
  display: none;
  position: absolute;
  width: 180px;
  background: #ffffff;
  z-index: 9999;
  padding: 0;
  margin: 0;
}
.dropdown-menu-wrap ul.sub-menu li {
  width: 100%;
  border-top: 1px solid #404040;
  border-bottom: 1px solid #313131;
}
.dropdown-menu-wrap ul.sub-menu li:first-child {
  border-top-color: #373737;
}
.dropdown-menu-wrap ul.sub-menu li a {
  color: #aaa;
  font-size: 13px;
  font-weight: 400;
  padding: 10px 20px;
}
.dropdown-menu-wrap ul.sub-menu li > ul.sub-menu {
  left: 181px;
  top: 0;
  border: none;
  border-color: #fe5000;
}
.dropdown-menu-wrap ul.sub-menu li:hover,
.dropdown-menu-wrap ul.sub-menu li.sfHover {
  background: #3c3c3c;
  transition: all ease-in-out 0.3s;
}
.dropdown-menu-wrap ul.sub-menu li:hover > a {
  color: #fff;
  transition: all ease-in-out 0.3s;
}
.dropdown-menu-wrap > ul.menu {
  margin: 0 auto;
}
.dropdown-menu-wrap > ul.menu > li {
  display: inline-block;
}
.dropdown-menu-wrap > ul.menu > li > ul.sub-menu {
  top: 96px;
  left: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

/* Primary menu styling*/
#primary-menu {
  padding: 0;
  position: relative;
  right: 0;
  bottom: 0;
  display: inline-block;
  float: right;
}
@media only screen and (max-width: 1024px) {
  #primary-menu {
    display: block;
    float: none;
    margin-right: 0;
    padding-top: 15px;
  }
}
@media only screen and (max-width: 767px) {
  #primary-menu {
    display: none !important;
  }
}
#primary-menu > ul.menu > li > a {
  font-size: 18px;
  font-style: italic;
  letter-spacing: 1px;
  color: #292929;
  padding: 0 22px 0;
  display: block;
  float: left;
  text-transform: none;
  line-height: 100px;
}
@media only screen and (max-width: 1024px) {
  #primary-menu > ul.menu > li > a {
    font-size: 16px;
    line-height: 60px;
  }
}
#primary-menu > ul.menu > li > ul.sub-menu {
  top: 96px;
  border-top: 3px solid #fe5000;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
@media only screen and (max-width: 1024px) {
  #primary-menu > ul.menu > li > ul.sub-menu {
    top: 56px;
  }
}
.header-social-links #primary-menu {
  float: left;
}
#header.sticky #primary-menu {
  margin: 0;
  padding: 0;
}
#header.sticky #primary-menu > ul.menu > li > a {
  line-height: 50px;
  font-size: 16px;
}
#header.sticky #primary-menu > ul.menu > li > ul.sub-menu {
  top: 46px;
}

/*---- Lava Lamp Effect ---- */
#primary-menu .hover-bg {
  border-color: #fe5000;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  overflow: visible !important;
  border-width: 0 0 3px;
  border-color: #fe5000;
  border-style: solid;
  box-sizing: border-box;
}

/* ---------- Footer Menu styling ---------------*/
#menu-footer {
  list-style: none;
  float: none;
  display: block;
  padding: 30px 0 0;
  margin: 0;
}
#menu-footer ul {
  margin: 0;
}
#menu-footer ul li {
  display: inline;
  margin: 0;
  padding: 0;
}
#menu-footer ul li:before {
  content: "|";
  margin: 0 12px 0 6px;
}
#menu-footer ul li:first-child {
  background: none;
  padding-left: 0;
}
#menu-footer ul li:first-child:before {
  content: "";
  margin: 0;
}
#menu-footer ul li a {
  color: #333333;
}
@media only screen and (max-width: 479px) {
  #menu-footer {
    float: left;
    padding: 20px 0 20px 0;
  }
}

/* --------- Mobile Menu - styling properties in responsive.css and used when needed only ---------- */
#mobile-menu {
  display: none;
  /* Hide on desktop */
  position: fixed;
  top: 0;
  margin: 0;
  width: 240px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 10000;
  background: #4e5052;
  left: -240px;
}
#mobile-menu .menu-header {
  font-family: "Lato", Arial, Helvetica, Verdana, sans-serif;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
  font-size: 22px;
  line-height: 34px;
  letter-spacing: 2px;
  color: #eee;
  padding: 5px 0 5px 25px;
  margin: 0;
  background: #4e5052;
}
#mobile-menu.slide-open {
  left: 0;
}
#mobile-menu ul {
  display: none;
  /* Hide all - the outermost parent is shown later - see below */
  list-style: none;
  text-transform: none;
}
#mobile-menu ul li {
  position: relative;
  border-top: 1px solid #5e5f61;
  border-bottom: 1px solid #3d3f41;
  margin: 0;
}
#mobile-menu ul li:first-child {
  border-top: none;
}
#mobile-menu ul li:last-child {
  border-bottom: none;
}
#mobile-menu ul li a {
  color: #ccc;
  display: block;
  padding: 10px 5px;
}
#mobile-menu ul li a:hover {
  color: #eee;
}
#mobile-menu ul li div {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
#mobile-menu ul li div i {
  font-size: 22px;
  line-height: 1;
  color: #ccc;
  height: 44px;
  width: 44px;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
  transition: transform 0.3s ease-in-out;
}
#mobile-menu ul li.open > div i {
  transform: rotate(90deg);
}
#mobile-menu > ul {
  display: block;
  /* Display only the first level elements initially while the children are hidden*/
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #5e5f61;
  margin: 0 auto;
  max-width: 380px;
}

#mobile-menu-toggle {
  display: none;
  /* Hide on desktop */
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 24px;
  padding: 10px 12px;
  background: #4e5052;
  border: none;
  z-index: 10000;
  box-sizing: content-box;
}
#mobile-menu-toggle i {
  font-size: 24px;
  color: #ddd;
}

@media only screen and (max-width: 767px) {
  #mobile-menu,
  #mobile-menu-toggle {
    display: block;
    /* Show on mobile only */
  }

  #mobile-menu,
  body {
    transition: left 0.4s ease-in-out 0s;
    /* For slide out effect */
  }

  body {
    overflow-x: hidden;
    position: relative;
    left: 0;
  }
  body.push-right {
    left: 240px;
  }
}
/* ------------------ Header Area Styling ---------------------*/
#title-area {
  display: block;
  padding: 40px 0 25px;
  background: #fe5000;
}
#title-area h1,
#title-area h2 {
  color: #f9f9f9;
}
#title-area p {
  width: 60%;
  color: #f8f8f8;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}
@media only screen and (max-width: 959px) {
  #title-area p {
    width: 100%;
  }
}
#title-area a {
  color: #fe5000;
}
#title-area a:active,
#title-area a:visited {
  color: #fe5000;
}
#title-area a:hover {
  color: #666;
}
@media only screen and (max-width: 767px) {
  #title-area h3 {
    font-size: 22px;
  }
  #title-area h1,
  #title-area h2 {
    font-size: 32px;
    line-height: 38px;
  }
}

#custom-title-area {
  overflow: hidden;
  clear: both;
  background: #fe5000;
}

/* ------------ Main content area styling -----------------------------*/
@media only screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: none;
    /* do not adjust size of text on iPhone */
  }
}
#container {
  width: 100%;
  clear: both;
}

#main {
  position: relative;
}

#container,
#main {
  background: #fff;
}

/* ------------ Boxed Layout ------------ */
body.boxed {
  height: 100%;
  width: 100%;
  background: #2a2725;
}

.boxed #container {
  max-width: 1180px;
  width: 96%;
  margin: 0px auto;
  -ms-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 1400px) {
  .boxed #container,
  .boxed #masthead {
    max-width: 1220px;
  }
}
/* ------- Page Loading --------*/
#page-loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10010;
  background: #202834 url(images/sliders/preloader2.gif) no-repeat 50% 50%;
}

/*----------- Breadcrumb trail ---------- */
#breadcrumbs {
  margin: 0 0 20px 0;
  color: #9a9a9a;
  font-size: 13px;
  font-style: italic;
}
#breadcrumbs .sep {
  margin: 0 2px;
}

/*------------ Page Sections -------------- */
.single-page-template .type-page_section {
  position: relative;
}
.single-page-template .type-page_section .edit-button {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
.single-page-template .type-page_section:hover .edit-button {
  display: block;
}

/* -------------------------------- Default widths ------------------------------- */
/* The sidebar fixed widths dictate how much space the #content gets */
.layout-1c #content {
  width: 100%;
}

.layout-2c #content {
  max-width: 820px;
}

.inner {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.inner::after {
  clear: both;
  content: "";
  display: table;
}

body.fluid-width-page #main > .inner {
  max-width: none;
  padding: 0 !important;
  margin: 0;
}

#custom-title-area .wide {
  max-width: none;
  padding: 0 !important;
  margin: 0;
}

body.fluid-width-page #breadcrumbs,
body.fluid-width-page .segment-content,
body.page-template-template-1c #breadcrumbs,
body.page-template-template-1c .segment-content {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
body.fluid-width-page #breadcrumbs::after,
body.fluid-width-page .segment-content::after,
body.page-template-template-1c #breadcrumbs::after,
body.page-template-template-1c .segment-content::after {
  clear: both;
  content: "";
  display: table;
}
body.fluid-width-page #content,
body.fluid-width-page .entry-content,
body.page-template-template-1c #content,
body.page-template-template-1c .entry-content {
  padding: 0;
  margin: 0;
}
body.fluid-width-page #breadcrumbs,
body.page-template-template-1c #breadcrumbs {
  display: none;
}

/* Disable the distracting breadcrumbs on full width pages */
/*--------- Post List Styling for category pages ------------ */
.post-list .byline span i {
  display: none;
}

#content div.post-list .hentry {
  padding: 15px 0;
  margin: 0;
}
#content div.post-list .hentry .entry-title {
  font-size: 16px;
}

ul.post-list li .entry-title {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 15px;
}

#content div.post-list .hentry .entry-title a {
  color: #545454;
}
#content div.post-list .hentry .entry-summary {
  margin-top: 10px;
}
#content div.post-list .thumbnail {
  display: block;
  float: left;
  margin: 0 10px 5px 0;
}

ul.post-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.post-list li {
  padding: 14px 0 15px;
  margin: 0;
  background: none !important;
  border-top: 1px dotted #aaa;
  overflow: hidden;
}
ul.post-list li:first-child {
  border-top: 0 !important;
  padding-top: 0 !important;
}
ul.post-list .thumbnail {
  display: block;
  max-width: 100%;
  float: left;
  margin: 0 15px 5px 0;
  width: 90px;
  transition: all 0.4s ease-in-out 0s;
}
ul.post-list .thumbnail:hover {
  -webkit-filter: brightness(50%);
  filter: brightness(50%);
}
ul.post-list.medium-size .thumbnail {
  margin: 0 15px 5px 0;
  width: 121px;
}
ul.post-list .entry-title a {
  font-style: normal;
  border: none;
  transition: color 0.2s ease-in-out 0s;
}
ul.post-list .published,
ul.post-list .byline {
  font-size: 12px;
  line-height: 20px;
  font-family: "Merriweather", "Arvo", Georgia, Times, serif;
  font-style: normal;
}
ul.post-list .entry-meta {
  font-size: 12px;
  line-height: 20px;
  font-family: "Merriweather", "Arvo", Georgia, Times, serif;
  font-style: normal;
  color: #757777;
  margin-top: 10px;
  border-bottom: 0;
  text-transform: none;
}
ul.post-list .entry-summary {
  margin-top: 10px !important;
  font-size: 14px;
}
ul.post-list .published {
  margin-right: 10px;
  background: none;
  padding-right: 10px;
  border-right: 1px solid #888;
}
.site-footer ul.post-list .published {
  border-color: #aaa;
}
.widget ul.post-list .published {
  margin-right: 0;
  padding-right: 0;
  border: none;
}
.widget ul.post-list .published:after {
  content: "//";
  padding-left: 5px;
  margin-right: 5px;
}

@media only screen and (max-width: 767px) {
  #content ul.post-list.medium-size .thumbnail {
    width: 124px !important;
  }

  #content ul.post-list .thumbnail {
    width: 90px !important;
  }
}
.widget ul.post-list .thumbnail {
  padding: 0;
  border: none;
}

.post-list .entry-title a {
  transition: color 0.2s ease-in-out 0s;
}
.post-list .entry-title a:hover {
  color: #fe5000;
  font-style: normal;
  border: none;
}

.post-list .byline {
  color: #757777;
  margin-top: 10px;
  border-bottom: 0;
  text-transform: none;
}
.post-list .byline a,
.post-list .byline a:active,
.post-list .byline a:visited {
  color: #fe5000;
}
.post-list .byline a:hover,
.post-list .byline a:active:hover,
.post-list .byline a:visited:hover {
  color: #999;
}

.site-footer ul.post-list .entry-meta,
.site-footer .post-list .byline {
  color: #888;
}

/** --------------------- Default Archive List styles ------------------------ **/
#content.default-list .hentry {
  margin-bottom: 80px;
  padding: 0;
  position: relative;
}
@media only screen and (max-width: 479px) {
  #content.default-list .hentry {
    margin-bottom: 60px;
    padding-left: 0;
  }
}

.default-list .image-area {
  margin-bottom: 20px;
}
.default-list .entry-text-wrap {
  width: 100%;
  clear: both;
}
.default-list .image-area {
  display: block;
  margin: 0;
}
.default-list .thumbnail {
  float: none;
  margin: 0;
  padding: 0;
}
.default-list .image-area img {
  width: 100%;
}

/*------------------- Posts List for Widgets etc.-------------- */
.post-list {
  margin: 0;
}
.post-list li {
  margin: 0;
}
.post-list .entry-title a {
  color: #292929;
}
.site-footer .post-list .entry-title a {
  color: #b3b3b1;
}
.site-footer .post-list li a:hover,
.site-footer .post-list li .entry-title a:hover {
  color: #dbdbd9;
}

/** ---------------------------- Grid List styles -------------------------------- **/
.start-row {
  clear: both;
  border-bottom: 1px solid #eee;
}

/* ----------- Single Post Styling ------------ */
.single img.featured {
  margin-bottom: 20px;
  width: 100%;
  transform: none !important;
}
.single .featured-slider-container {
  margin-bottom: 40px;
}
.single .thumbnail-slider-container {
  margin-bottom: 20px;
}

/*----------------- Entry Content Styling ---------- */
.entry-content {
  margin-top: 20px;
}

/*----- Required WP styling ---- */
.bypostauthor {
  -webkit-font-smoothing: antialiased;
}

.sticky .entry-snippet {
  background: none;
  border-right: 5px solid #fe5000;
  padding: 12px;
}

/*--------------- Generic Post and Archive Title Styling ---------------- */
.entry-title {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.post h1.entry-title {
  margin: 0;
}

#content .hentry h2.entry-title {
  margin: 0;
}
#content .hentry h2.entry-title a {
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  word-break: break-word;
  color: #292929;
  margin: 0;
  transition: all 0.3s ease-in-out 0s;
}
#content .hentry h2.entry-title a:hover {
  color: #fe5000;
}
#content .hentry .entry-summary {
  margin-top: 25px;
}
#content .hentry .entry-meta {
  padding-top: 15px;
  border-top: 1px solid #bbb;
  margin-top: 15px;
  color: #56595c;
  font-size: 14px;
  line-height: 22px;
  font-style: normal;
  margin-bottom: 15px;
  clear: both;
}
@media only screen and (max-width: 479px) {
  #content .hentry .entry-meta {
    padding-top: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
#content .hentry .entry-meta a {
  font-style: italic;
}
#content .taglist {
  display: inline-block;
}
#content .taglist .post_tag {
  display: inline;
}
#content .taglist i {
  display: inline-block;
  font-size: 24px;
  padding-right: 6px;
  color: #666;
  vertical-align: middle;
}

.entry-snippet {
  width: 100%;
  float: left;
}
@media only screen and (max-width: 479px) {
  .entry-snippet {
    width: auto;
    display: block;
    height: auto;
  }
}

.entry-meta span {
  display: inline;
  padding: 0;
  margin: 2px 1px 2px 0;
}
@media only screen and (max-width: 479px) {
  .entry-meta span {
    font-size: 14px;
    line-height: 22px;
  }
}
.entry-meta span a {
  transition: all 0.3s ease-in-out 0s;
  font-family: "Merriweather", "Arvo", Georgia, Times, serif;
  font-weight: 300;
}
.entry-meta span.author {
  border: none;
  padding-left: 0;
}
.entry-meta span.author:after {
  content: "/";
  padding-left: 9px;
  padding-right: 8px;
}
.entry-meta span i {
  color: #fe5000;
}
.entry-meta span.published:after,
.entry-meta span.category:after {
  content: "/";
  padding-left: 9px;
  padding-right: 8px;
}

abbr.published {
  cursor: default;
}

.entry-header {
  float: left;
  position: absolute;
  left: 0;
  height: 100px;
  width: 100px;
}
.entry-header span a {
  transition: all 0.3s ease-in-out 0s;
  font-family: "Merriweather", "Arvo", Georgia, Times, serif;
}
.entry-header .published {
  position: relative;
  font-size: 32px;
  line-height: 48px;
  text-transform: uppercase;
  padding: 10px;
  display: block;
  color: #fefefe;
  background: none;
  border: 1px double #ccc;
  -ms-box-shadow: 1px 1px 1px #eee;
  box-shadow: 1px 1px 1px #eee;
  color: #444;
}
.entry-header .published abbr span {
  display: block;
  text-align: center;
  letter-spacing: 1px;
}
.entry-header .published abbr span.month {
  font-size: 20px;
  line-height: 26px;
  font-weight: 300;
}
.entry-header .published abbr span.date {
  font-size: 32px;
  line-height: 38px;
}
.entry-header .comments-link {
  display: block;
  margin-top: 15px;
  text-align: left;
}
.entry-header .comments-link a {
  font-size: 14px;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media only screen and (max-width: 479px) {
  .entry-header {
    width: auto;
    display: block;
    height: auto;
    position: relative;
    border: 1px solid #5b9aa9;
    margin-bottom: 15px;
  }
  .entry-header .published {
    font-size: 16px;
    line-height: 24px;
    padding: 2px 10px;
    border-radius: 0;
    display: inline-block;
  }
  .entry-header .published abbr span {
    display: block;
    text-align: center;
  }
  .entry-header .published abbr span.month {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    display: inline;
    padding-right: 5px;
    letter-spacing: 1px;
  }
  .entry-header .published abbr span.date {
    font-size: 16px;
    line-height: 24px;
    display: inline;
  }
  .entry-header .comments-link {
    display: inline;
    padding: 10px;
    margin: 0;
  }
}

.entry-meta span a:hover,
.entry-header span a:hover {
  color: #999 !important;
}

.byline span i {
  color: #fe5000;
  padding-right: 5px;
}
.byline span:hover i {
  color: #888;
  transition: all 0.2s ease-in-out 0s;
}

.hentry .entry-content > *.alignwide,
.hentry .entry-summary > *.alignwide {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  clear: both;
}

/*-------------- starter1 styles -------------- */
.starter1 .entry-text-wrap {
  width: 390px;
}
.starter1 .entry-text-wrap.nothumbnail {
  width: 620px !important;
}

/* --------- Read More Link ------------------ */
a.more-link {
  transition: all 0.2s ease-in-out 0s;
}
a.more-link:after {
  content: "\e095";
  font-family: "icomoon";
  padding-left: 5px;
  font-size: 13px;
  line-height: 1;
}

div.more-link {
  clear: both;
  padding-top: 20px;
}

/* --------- Read More Link -----------------------------------*/
.read-more-link {
  margin-top: 30px;
  display: block;
  clear: both;
}
.read-more-link a {
  color: #fe5000;
}

.dark-bg .read-more-link {
  color: rgba(255, 255, 255, 0.8);
}
.dark-bg .read-more-link:hover {
  color: #fff;
}

/* Password Form in Protected Post */
.post-password-form input[type="password"] {
  padding: 5px 10px;
}
.post-password-form input[type="submit"] {
  margin-top: 10px;
  padding: 8px 20px;
}

/*------------------- In Page Page Links Styling ----------------- */
.page-links,
.pagination {
  clear: both;
  margin: 60px 0 60px 0;
  text-transform: uppercase;
}

.page-links a,
.page-links a:visited {
  padding: 10px 15px;
  margin: 0 2px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-family: "Lato", Arial, Helvetica, Verdana, sans-serif;
}

.pagination a,
.pagination a:visited,
.pagination span.current {
  padding: 10px 15px;
  margin: 0 2px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease-in-out;
  font-family: "Lato", Arial, Helvetica, Verdana, sans-serif;
}
.pagination span.current {
  color: #f8f2f2;
  background: #444;
}
.pagination span.pages {
  float: right;
}

.page-links a,
.page-links a:visited,
.pagination a,
.pagination a:visited {
  background: #fe5000;
}

.page-links a:hover,
.pagination a:hover {
  background: #444 !important;
  color: #f8f2f2;
}

.page-links a:active,
.pagination a:active {
  position: relative;
}

.ajax-portfolio .pagination,
.ajax-gallery .pagination {
  visibility: hidden;
  margin: 0;
}

/*------------- Loop Navigation - Next/Previous Links ------------- */
.loop-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-flow: row nowrap;
  border-top: 1px dotted #aaa;
  margin-top: 25px;
  padding-top: 25px;
}
.loop-nav .post-index {
  margin: 0 30px;
}
.loop-nav a {
  color: #666;
}
.loop-nav a:active,
.loop-nav a:visited {
  color: #666;
}
.loop-nav a:hover {
  color: #fe5000;
}

@media only screen and (max-width: 767px) {
  .loop-nav {
    flex-flow: column wrap;
  }
  .loop-nav .post-index {
    margin: 15px 0;
  }
}
/* Attachment Page */
.single-attachment .posttitle {
  margin-top: 50px;
}

/* Error message */
.wp-error {
  margin: 20px 0;
}

/*------------ Related Posts ------------*/
.single .related-posts {
  clear: both;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #bbb;
}
.single .related-posts .subheading {
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 25px;
}
.single .related-posts .hentry .image-area:hover .thumbnail {
  transform: translateY(-40px);
}
.single .related-posts .hentry .image-info {
  padding: 5px 0;
}
.single .related-posts .hentry .image-info .post-title {
  padding: 5px;
  font-size: 16px;
  line-height: 24px;
}
.single .related-posts .hentry .image-info .terms {
  display: none;
}
.single .related-posts .hentry .entry-title {
  margin: 0 0 5px;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 2px;
}

/* Block Separator */
.wp-block-separator {
  max-width: 100px;
}
.wp-block-separator.is-style-wide {
  max-width: none;
}

/* ------------------------ Post page comments styling ----------------------------------- */
#comments-number,
#reply-title {
  font-size: 32px;
  clear: both;
  line-height: 48px;
}

#comments-number {
  line-height: 48px;
}
#comments-number .number {
  display: block;
  text-align: center;
  float: left;
  padding: 0;
}

#reply-title {
  line-height: 42px;
  background: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.comments-header {
  background: none;
  padding: 0;
}

#cancel-comment-reply-link {
  text-transform: none;
  margin: 0 0 0 10px;
}

.comment-list {
  list-style: none outside none;
  margin: 25px 0 0;
  clear: both;
}

.comment ol.children {
  list-style: none outside none;
  margin: 25px 0 0;
  clear: both;
  margin-left: 40px;
  margin-top: 40px;
  /* Keep this value same as margin set between list elements. See next element */
}
.comment ol.children li {
  margin-left: 15px;
}
.comment ol.children li .line {
  display: block;
  position: absolute;
  width: 15px;
  height: 1px;
  border-bottom: 1px solid #efefef;
  margin: 35px 0 0 -15px;
}

.comment-list .line {
  display: none;
}

li.comment,
li.trackback,
li.pingback {
  margin: 0 0 40px 0;
}

.comment-meta-section {
  display: block;
  position: relative;
}

.comment-wrap {
  position: relative;
}

.comment-list .avatar-wrap {
  display: block;
  float: left;
  height: 80px;
  width: 80px;
  position: relative;
  margin-right: 50px;
}
.comment-list .pingback .avatar-wrap {
  margin-right: -78px;
}
.comment-list .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.comment-text-wrap {
  display: block;
  width: 100%;
  /* Helps avoid setting individual values for each layout */
}
.comment-text-wrap .entry-content {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 26px;
}

.comment-box-wrap {
  border-radius: 4px;
  background-color: #fff;
  display: block;
  position: relative;
  padding: 0 0 30px 0;
  overflow: hidden;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  border-bottom: 1px dotted #aaa;
}
.comment-list > li:last-child > .comment-wrap > .comment-box-wrap {
  border-bottom: none;
}
.comment-box-wrap .comment-text p:last-child {
  margin-bottom: 0;
}

.comment-arrow {
  position: absolute;
  top: 30px;
  left: 111px;
  height: 0;
  width: 0;
  border-right: 10px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  z-index: 10;
}
.pingback .comment-arrow {
  display: none;
}

.comment-meta {
  margin-bottom: 10px;
}
.comment-meta .published {
  padding: 2px 0;
  line-height: 32px;
}

.comment-byline {
  display: inline;
  overflow: hidden;
  font-size: 14px;
}
.comment-byline abbr[title],
.comment-byline dfn[title] {
  border-bottom: 0;
  cursor: auto;
}

.comment-author {
  display: block;
  float: left;
  margin-right: 10px;
}
.comment-author cite {
  font-size: 20px;
  line-height: 32px;
  display: block;
  font-style: normal;
  font-family: "Merriweather", "Arvo", Georgia, Times, serif;
}

.comment-reply-link,
.comment-edit-link {
  font-size: 14px;
  font-style: italic;
  margin: 0 0 0 5px;
  color: #fff;
  padding: 2px 12px 2px 10px;
  background-color: #fe5000;
  border-radius: 4px;
  float: right;
  font-family: "Merriweather", "Arvo", Georgia, Times, serif;
  transition: all 0.3s ease-in-out 0s;
}
.comment-reply-link:hover,
.comment-edit-link:hover {
  color: #fff;
  background: #4b4b4b;
}

#comments-template {
  margin: 0;
  clear: both;
}

.fluid-width-page .comments-wrap {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.fluid-width-page .comments-wrap::after {
  clear: both;
  content: "";
  display: table;
}

#comments {
  margin-top: 0;
  padding-top: 30px;
  max-width: 820px;
  border-top: 1px solid #bbb;
}
.layout-1c #comments {
  max-width: 1020px;
}

#respond {
  margin-top: 15px;
  padding-top: 25px;
  border-top: 1px solid #bbb;
}
#respond .comment-notes {
  display: none;
}
#respond input[type="submit"] {
  padding: 20px 40px;
}

@media only screen and (max-width: 767px) {
  /* Comments */
  .comment-wrap .comment-arrow {
    top: 80px;
    left: 30px;
    border-bottom-color: #fff;
    border-left-color: rgba(0, 0, 0, 0);
    border-right-color: rgba(0, 0, 0, 0);
    border-top-color: rgba(0, 0, 0, 0);
  }

  .comment-box-wrap,
  .comment-list .avatar-wrap {
    float: none;
    display: block;
  }

  .comment-box-wrap {
    max-width: 100%;
    width: 100%;
    top: 20px;
  }

  .comment ol.children {
    margin-left: 10px;
  }
}
/* ----------------------- Sidebar Styling ---------------------------------- */
.sidebar li > a {
  color: #55585b;
  font-size: 14px;
  line-height: 22px;
  transition: color 0.3s ease-in-out 0s;
}
.sidebar li > a:hover {
  color: #fe5000;
}
.sidebar li:hover > a {
  color: #fe5000;
}
.sidebar ul.post-list .entry-meta,
.sidebar .post-list .byline {
  margin-top: 6px !important;
}
.sidebar .hentry .entry-summary {
  margin-top: 5px !important;
}

.site-footer .sidebar li:hover > a {
  color: #fff;
}

#sidebar-after-singular .post-list li,
#sidebar-primary .post-list li {
  padding: 16px 0;
}

/* Custom Singular Widgets Styling */
#sidebar-after-singular {
  margin-top: 35px;
  background: #faf9f9;
  clear: both;
}
#sidebar-after-singular .widget {
  float: none;
  clear: both;
  max-width: 840px;
  margin: 0 auto;
  padding: 25px;
}

/*------------------ Post Level Layouts ---------------------------------------------------------*/
#content {
  margin: 60px 0;
}

#sidebar-primary {
  position: relative;
  display: block;
  min-height: 230px;
  margin-top: 60px;
}

/* -------------------- Layouts -------------------- */
@media only screen and (min-width: 768px) {
  body.layout-2c-l #main .inner {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -moz-flex;
    display: flex;
  }
  body.layout-2c-l #main .inner #content {
    width: 72%;
    margin-right: 6%;
  }
  body.layout-2c-l #main .inner #sidebar-primary {
    width: 22%;
  }

  body.layout-2c-r #main .inner {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -moz-flex;
    display: flex;
    -moz-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  body.layout-2c-r #main .inner #content {
    width: 72%;
  }
  body.layout-2c-r #main .inner #sidebar-primary {
    width: 22%;
    margin-right: 6%;
  }
}
/*--------- Sec Nav Widget Area ------------ */
.site-footer .sidebars {
  clear: both;
  margin: 0;
  padding: 100px 0 40px;
}
.site-footer .sidebars .widget-title {
  color: #e1e1e1;
  border-bottom: none;
  margin-bottom: 25px;
}
.site-footer .sidebars .widget_text a.small {
  color: #fe5000;
}
.site-footer .sidebars .widget_text a.small:visited {
  color: #fe5000;
}
.site-footer .sidebars .widget_text a.small:hover {
  color: #fff !important;
}

.site-footer ul.menu,
.site-footer ul.menu ul {
  list-style-type: none;
  margin: 0;
}
.site-footer ul.menu li,
.site-footer ul.menu ul li {
  position: relative;
  background: none !important;
  margin: 0;
  border: none;
  padding: 0 0 12px 0;
}
.site-footer ul.menu li a,
.site-footer ul.menu ul li a {
  text-decoration: none;
  display: block;
  transition: all ease-in-out 0.2s;
}
.site-footer ul.menu li.menu-item-has-children,
.site-footer ul.menu ul li.menu-item-has-children {
  padding-bottom: 0;
}
.site-footer ul.menu.sub-menu,
.site-footer ul.menu ul.sub-menu {
  display: block;
  position: relative;
  margin: 0;
  padding: 15px 0 0 15px;
}
.site-footer ul.menu.sub-menu li,
.site-footer ul.menu ul.sub-menu li {
  width: 100%;
}
.site-footer ul.menu.sub-menu li:hover,
.site-footer ul.menu ul.sub-menu li:hover {
  padding-left: 0;
}
.site-footer ul.menu.sub-menu li:hover > a,
.site-footer ul.menu ul.sub-menu li:hover > a {
  color: #ddd;
}

/* ------------- Responsive Styles ----------------------- */
@media only screen and (max-width: 767px) {
  /*  Sidebars */
  #sidebar-primary {
    background: none;
    padding: 20px 0 !important;
    float: none !important;
    max-width: 300px;
    margin-top: 0;
  }

  #content {
    float: none !important;
  }

  #sidebar-after-singular .widget {
    float: none;
    margin: 0 0 25px 0;
  }
}
/* ------------------------ Footer Area ----------------------------------- */
/*---- Back to top button --------*/
#go-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  text-indent: -999em;
  /* Hide text */
  color: white;
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url(../img/back-to-top.png);
  padding: 0;
  height: 50px;
  width: 50px;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  z-index: 999;
  display: none;
  transition: opacity 0.4s ease-in-out 0s;
}
#go-to-top:hover {
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
  background-color: rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width: 767px) {
  #go-to-top {
    height: 30px;
    width: 30px;
    background-size: cover;
  }
}

/*--------- Footer Widget Area ------------ */
#footer-top {
  position: relative;
  border-bottom: 1px solid #464647;
  background: #353739;
}
#footer-top .inner {
  color: #bbb;
  display: block;
  padding-top: 0;
  padding-bottom: 0;
  /* Helps the area not show up with its background painted if there are no widgets in footer area */
}
#footer-top a {
  color: #b3b3b1;
  font-style: normal;
}
#footer-top a:visited {
  color: #b3b3b1;
  font-style: normal;
}
#footer-top a:active,
#footer-top a:hover {
  color: #dbdbd9;
}

#sidebars-footer {
  clear: both;
  margin: 0;
  padding: 50px 0 40px 0;
}
#sidebars-footer .widget-title {
  color: #e5e5e5;
  border-bottom: 1px solid #555557;
}
#sidebars-footer .widget_text a.small {
  color: #fe5000;
}
#sidebars-footer .widget_text a.small:visited {
  color: #fe5000;
}
#sidebars-footer .widget_text a.small:hover {
  color: #e5e5e5 !important;
}

/*--------- Footer ------------ */
#footer-bottom {
  clear: both;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  color: #b3b3b1;
  border-top: none;
  margin: 0 auto;
  overflow: hidden;
  background-color: white;
}
#footer-bottom .inner {
  overflow: hidden;
  position: relative;
  text-align: center;
}
#footer-bottom a:active,
#footer-bottom a:hover {
  color: #dbdbd9;
}

#footer-bottom-text {
  display: block;
  float: none;
  color: #333333;
  margin: 0 auto;
  padding: 20px 0;
}

/* ------------------------ Theme Pages including Home Page, About Us etc. ----------------------------------- */
img.hideOnHover {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
}
img.replacer {
  opacity: 0;
  /* Hide the replacer initially */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
img.replacer,
img.hideOnHover {
  transition-property: opacity, background-color;
  transition-duration: 0.4s;
}

/* ------ Headings -------- */
.slogan1 {
  font-family: "Lato", Arial, Helvetica, Verdana, sans-serif;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 48px;
  line-height: 60px;
  font-weight: 900;
  color: #292929;
}
.slogan1 .highlight,
.slogan1 .highlight h2 {
  font-weight: 700;
  color: #fe5000;
}
.slogan1.big {
  font-size: 72px;
  line-height: 80px;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  .slogan1 {
    font-size: 36px;
    line-height: 50px;
  }
  .slogan1.big {
    font-size: 48px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 479px) {
  .slogan1 {
    font-size: 24px;
    line-height: 36px;
  }
  .slogan1.big {
    font-size: 36px;
    line-height: 44px;
  }
}

.heading2 {
  text-align: center;
  margin: 0 auto 60px;
}
.heading2 .title {
  font-family: "Lato", Arial, Helvetica, Verdana, sans-serif;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 48px;
  line-height: 60px;
  margin: 0 0 15px 0;
}
@media only screen and (max-width: 767px) {
  .heading2 .title {
    font-size: 28px;
    line-height: 36px;
  }
}
.heading2 .title.separator {
  padding-bottom: 40px;
  text-transform: uppercase;
  background: url(../img/separator-fancy.png) no-repeat center bottom
    transparent;
  margin-bottom: 40px;
}
.heading2 .pitch {
  word-spacing: 0;
  margin: 25px auto 0;
  max-width: 70%;
}
@media only screen and (max-width: 767px) {
  .heading2 .pitch {
    max-width: none;
  }
}
.heading2 .button {
  margin-top: 60px;
}
.heading2 .button-section {
  margin-top: 60px;
}
.heading2 .button-section .button {
  margin-top: 0;
}
.heading2 .subtitle {
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 70%;
  margin: 0 auto;
}
.heading2 .subtitle span {
  display: inline-block;
  vertical-align: baseline;
  zoom: 1;
  *display: inline;
  *vertical-align: auto;
  position: relative;
  padding: 0 20px;
  color: #fe5000;
  font-family: "Lato", Arial, Helvetica, Verdana, sans-serif;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.heading2 .subtitle span:before,
.heading2 .subtitle span:after {
  content: "";
  display: block;
  width: 1000px;
  position: absolute;
  top: 0.73em;
  border-top: 1px solid #808080;
}
.heading2 .subtitle span:before {
  right: 100%;
}
.heading2 .subtitle span:after {
  left: 100%;
}

#footer .heading2 {
  margin-bottom: 35px;
}
#footer .heading2 .title {
  color: #e5e5e5;
}
#footer .heading2 .subtitle span:after,
#footer .heading2 .subtitle span:before {
  border-color: #5d5f61;
}

/* Thinner headings */
.heading2 .button-section span {
  margin-top: 0;
}

/* ------ Slogan Headings ------*/
.slogan .heading2 {
  margin-bottom: 0;
}
.slogan h2,
.slogan h1,
.slogan h3 {
  margin: 0 auto;
}

.slogan {
  padding: 205px 0;
}
.slogan blockquote {
  color: #fff;
  font-size: 44px;
  line-height: 66px;
  letter-spacing: 0.5px;
  font-style: italic;
  padding: 0;
  background: none;
}
.slogan blockquote .footer {
  margin: 0 auto;
  text-align: center;
}
.slogan blockquote .footer cite {
  font-family: "Lato", Arial, Helvetica, Verdana, sans-serif;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fe5000;
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
}
@media only screen and (max-width: 1024px) {
  .slogan {
    padding: 160px 0;
  }
  .slogan blockquote {
    font-size: 32px !important;
    line-height: 48px !important;
  }
  .slogan blockquote .footer cite {
    font-size: 18px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .slogan {
    padding: 130px 0;
  }
  .slogan blockquote {
    font-size: 26px !important;
    line-height: 36px !important;
  }
  .slogan blockquote .footer cite {
    font-size: 16px;
    line-height: 24px;
  }
}

/* ---------- Pricing table --------- */
.pricing-table {
  padding: 0;
  margin: 0;
}
.pricing-table .pricing-plan {
  padding: 0;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  box-sizing: border-box;
  -o-transition: all 0.1s ease-in-out 0s;
  -webkit-transition: all 0.1s ease-in-out 0s;
  -moz-transition: all 0.1s ease-in-out 0s;
  background-color: #e5e5e5;
}
.pricing-table .pricing-plan:hover {
  background: #d5d5d5;
}
.pricing-table .pricing-plan.highlight {
  background: #d5d5d5;
  margin-top: -10px;
}
.pricing-table .pricing-plan.highlight .top-header {
  background-color: #fe5000;
  padding-top: 30px;
}
.pricing-table .pricing-plan.highlight .purchase {
  padding-bottom: 40px;
}
.pricing-table .top-header {
  padding: 20px 0;
  background-color: #aaa;
  border-bottom: 10px solid #2e2e2e;
}
.pricing-table .top-header .tagline {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 2px;
  color: #ededed;
  font-size: 14px;
}
.pricing-table .pricing-plan .plan-header {
  padding: 30px 0 10px;
}
.pricing-table .pricing-plan .plan-price sup {
  font-size: 18px;
  line-height: 32px;
  vertical-align: top;
}
.pricing-table .pricing-plan h3 {
  font-size: 24px;
  margin: 0;
  color: #fefefe;
}
.pricing-table .pricing-plan h4 {
  color: #2b2b2b;
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  margin: 0;
}
.pricing-table .pricing-plan h4 span {
  font-size: 14px;
}
.pricing-table .plan-details ul {
  margin: 0;
  padding: 0;
}
.pricing-table .plan-details ul li {
  color: #292929;
  font-size: 14px;
  line-height: 28px;
  display: block;
  padding: 5px;
  list-style: none;
}
.pricing-table .plan-details ul li:first-child {
  border: none;
}
.pricing-table .plan-details ul li i {
  color: #fe5000;
  margin-right: 6px;
}
.pricing-table .plan-details ul li i.tick {
  padding: 5px 7px;
  height: 10px;
  background: url(../img/tick.png) no-repeat 0 7px transparent;
}
.pricing-table .plan-details ul li i.cross {
  padding: 5px 5px;
  background: url(../img/cross.png) no-repeat 0 7px transparent;
}
.pricing-table .plan-details ul li s {
  color: #b4c9d3;
}
.pricing-table .plan-details ul .highlight1 {
  background: #edfcff;
  padding: 2px;
}
.pricing-table .purchase {
  text-align: center;
  text-transform: uppercase;
  padding: 30px 0;
}
.pricing-table .purchase a {
  padding: 12px 45px;
}
.pricing-table .plan-details li {
  box-sizing: border-box;
}
.pricing-table li,
.pricing-table .purchase {
  text-align: center;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .pricing-table .threecol,
  .pricing-table .fourcol,
  .pricing-table .twocol,
  .pricing-table .sixcol {
    width: 48%;
    margin-right: 2%;
    margin-bottom: 20px;
  }
  .pricing-table .threecol.zero-margin,
  .pricing-table .fourcol.zero-margin,
  .pricing-table .twocol.zero-margin,
  .pricing-table .sixcol.zero-margin {
    width: 50%;
    margin-right: 0%;
  }
}
@media only screen and (max-width: 479px) {
  .pricing-table .pricing-plan h4 {
    font-size: 48px;
    line-height: 48px;
  }
  .pricing-table .threecol,
  .pricing-table .threecol.zero-margin,
  .pricing-table .fourcol,
  .pricing-table .fourcol.zero-margin,
  .pricing-table .twocol,
  .pricing-table .twocol.zero-margin,
  .pricing-table .sixcol,
  .pricing-table .sixcol.zero-margin {
    width: 100%;
    margin: 0 0 20px 0 !important;
  }
}

/* ----------- Miscelleneous Home Page styling ------------- */
.page-template-template-sitemap h2.entry-title,
.page-template-template-archives h2.entry-title,
.archive h2.entry-title,
.blog h2.entry-title {
  font-size: 38px;
  line-height: 50px;
}
@media only screen and (max-width: 479px) {
  .page-template-template-sitemap h2.entry-title,
  .page-template-template-archives h2.entry-title,
  .archive h2.entry-title,
  .blog h2.entry-title {
    font-size: 24px;
    line-height: 32px;
  }
}

.testimonials2-slider-container blockquote {
  padding: 20px 0 0;
  margin: 0;
  text-align: left;
  background: none;
}
.testimonials2-slider-container blockquote cite {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 28px;
  font-family: "Lato", Arial, Helvetica, Verdana, sans-serif;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 3px;
  letter-spacing: 2px;
  font-weight: 700;
}
.testimonials2-slider-container blockquote cite i {
  display: inline-block;
  padding: 25px;
  margin-right: 20px;
  background: url("../img/quote2.png") no-repeat scroll 50% 50% #fe5000;
  vertical-align: middle;
  border-radius: 50%;
}
.testimonials2-slider-container blockquote .text {
  position: relative;
  font-size: 22px;
  line-height: 36px;
  text-align: left;
  color: #797979;
  margin: 25px 0 40px;
}
@media only screen and (max-width: 767px) {
  .testimonials2-slider-container blockquote {
    padding: 0;
    text-align: center;
  }
  .testimonials2-slider-container blockquote p {
    font-size: 18px !important;
    line-height: 32px !important;
  }
  .testimonials2-slider-container blockquote cite {
    font-size: 13px !important;
  }
  .testimonials2-slider-container blockquote cite i {
    padding: 20px;
    margin-right: 15px;
  }
  .testimonials2-slider-container blockquote .text {
    margin: 20px 0 0;
  }
}
.testimonials2-slider-container p {
  display: inline-block;
}
.testimonials2-slider-container .fourcol span {
  display: inline-block;
}
.testimonials2-slider-container .fourcol img {
  border-radius: 50%;
  max-width: 255px;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .testimonials2-slider-container .fourcol img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .testimonials2-slider-container .fourcol img {
    float: none;
    margin: 0 auto;
  }
}

.testimonials2-slider-container {
  z-index: 2;
  position: relative;
}
.testimonials2-slider-container .flexslider .slides {
  z-index: 2;
}
.testimonials2-slider-container .flex-control-nav {
  position: relative;
}
.testimonials2-slider-container .flex-control-nav li a {
  width: 15px;
  height: 15px;
}
.testimonials2-slider-container .flex-direction-nav a {
  background: transparent;
  width: 30px;
  height: 30px;
}
.testimonials2-slider-container .flex-direction-nav .flex-next {
  right: 0;
  top: 45%;
}
.testimonials2-slider-container .flex-direction-nav .flex-prev {
  left: 0;
  bottom: 50%;
}
.testimonials2-slider-container .flex-direction-nav .flex-next span,
.testimonials2-slider-container .flex-direction-nav .flex-prev span {
  background-image: url("../img/slider-testimonial-nav.png");
  position: absolute;
  display: block;
  height: 19px;
  width: 14px;
}
.testimonials2-slider-container .flex-direction-nav .flex-prev span {
  background-position: left bottom;
}
.testimonials2-slider-container .flex-direction-nav .flex-next span {
  background-position: right bottom;
}
@media only screen and (max-width: 767px) {
  .testimonials2-slider-container .flex-direction-nav {
    display: none;
  }
}

.client-testimonials2 .flexslider {
  max-width: 800px;
  margin: 0 auto;
}
.client-testimonials2 .header img {
  max-width: 120px;
  margin: 0 30px 20px 0;
}
.client-testimonials2 .header .title {
  font-family: "Merriweather", "Arvo", Georgia, Times, serif;
  text-transform: none;
  color: #fe5000;
  font-style: italic;
  letter-spacing: 1px;
  padding-top: 10px;
}
.client-testimonials2 .header .title:before {
  content: open-quote;
}
.client-testimonials2 .header .title:after {
  content: close-quote;
}
.client-testimonials2 .header cite {
  text-transform: uppercase;
  font-style: normal;
  font-family: "Lato", Arial, Helvetica, Verdana, sans-serif;
  color: #292929;
}
.client-testimonials2 .quote {
  clear: both;
}
.client-testimonials2 .quote blockquote {
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .client-testimonials2 .header img {
    margin: 0 20px 20px 0;
  }
  .client-testimonials2 .header .title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 479px) {
  .client-testimonials2 .header {
    text-align: center;
  }
  .client-testimonials2 .header img {
    float: none;
    margin: 0 auto;
  }
  .client-testimonials2 .header .title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .client-testimonials2 blockquote p {
    text-align: center;
    font-size: 16px !important;
    line-height: 28px !important;
    margin-top: 15px;
  }
}

#our-premium-clients .heading2 {
  margin-bottom: 60px;
}
#our-premium-clients img.photo-frame {
  margin: 15px 0;
  border-radius: 0;
  border: none;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  #our-premium-clients .twocol {
    width: 30%;
    margin-right: 3.2%;
  }
}

#home-intro {
  padding-bottom: 0;
}
#home-intro h2 {
  text-transform: uppercase;
  max-width: 370px;
}
#home-intro p {
  max-width: 370px;
}
#home-intro h2 span {
  color: #fe5000;
}
#home-intro .intro-img {
  position: relative;
  bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -60px;
  z-index: 99;
}

#services-home {
  padding-top: 120px;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e0e0e0;
}

#team-intro h2 {
  color: #dbdbdb;
}
#team-intro p {
  color: #aaa;
}
#team-intro .fourcol {
  padding-top: 80px;
}
#team-intro .eightcol {
  position: relative;
}
#team-intro .poster1 {
  position: relative;
  left: 100px;
  top: -15px;
}
#team-intro .poster2 {
  position: absolute;
  top: 0;
  right: 0;
}

#services-icon-list {
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e0e0e0;
}
#services-icon-list div.icon {
  float: left;
  display: inline;
  font-size: 40px;
  color: #fe5000;
  margin-top: 10px;
  width: 60px;
}
#services-icon-list h3 {
  display: inline;
  font-size: 20px;
  line-height: 38px;
  color: #2a2d31;
}
#services-icon-list .sub {
  color: #fe5000;
  font-family: "Merriweather", "Arvo", Georgia, Times, serif;
  font-style: normal;
  font-size: 12px;
  line-height: 22px;
}
#services-icon-list p {
  margin: 0;
}

.action-call h3 {
  font-size: 36px;
  line-height: 48px;
  font-weight: 400;
  text-align: center;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .action-call h3 {
    font-size: 28px;
    line-height: 36px;
  }
}
.action-call .fourcol.last {
  text-align: left;
  float: left;
}
@media only screen and (max-width: 767px) {
  .action-call .fourcol.last {
    text-align: center;
    float: none;
  }
}

.action-call-segment {
  padding: 35px 0;
  background: #ededed;
  border-top: 1px solid #e3e3e3;
}

/*--------- Featured List ------------ */
@media only screen and (max-width: 767px) {
  #featured-sources .twocol {
    width: 46%;
    margin-right: 3%;
  }
}

.featured-list img {
  margin: 0 auto;
  transition: opacity 0.3s ease-in-out 0s;
}
.featured-list img:hover {
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
}
.widget .featured-list img {
  margin-right: 60px;
  margin-bottom: 20px;
  float: left;
}

#featured-app {
  overflow: hidden;
  background-color: #bdd7db;
  z-index: 2;
}
#featured-app .app-screenshot {
  position: relative;
  top: -30px;
  left: 50px;
  margin-bottom: -350px;
}
#featured-app .side-text {
  font-style: italic;
  color: #fe5000;
}
#featured-app .button {
  margin-top: 15px;
}

@media only screen and (max-width: 959px) {
  #featured-app .app-screenshot {
    left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #featured-app .app-screenshot {
    left: 0;
    top: 30px;
    margin-bottom: -280px;
  }
}
.features-list-alternate {
  z-index: 2;
}
.features-list-alternate i {
  font-size: 24px;
  line-height: 32px;
  float: left;
  margin-right: 18px;
  color: #fe5000;
}
.features-list-alternate h3 {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 2px;
}
.features-list-alternate p {
  margin-bottom: 30px !important;
}
.features-list-alternate .row {
  margin-bottom: 30px;
}
.features-list-alternate .row.last {
  margin-bottom: 0;
}
.features-list-alternate .smartphone-slider {
  margin-top: -350px;
}
@media only screen and (max-width: 959px) {
  .features-list-alternate .smartphone-slider {
    margin-top: 0;
  }
}
.features-list-alternate .iphone-slider-container,
.features-list-alternate .ipad-slider-container {
  margin-top: -350px;
}
@media only screen and (max-width: 959px) {
  .features-list-alternate .iphone-slider-container,
  .features-list-alternate .ipad-slider-container {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .features-list-alternate .sixcol,
  .features-list-alternate .threecol {
    margin-bottom: 0;
  }
}

#home2-heading,
#home3-heading {
  padding: 100px 0 280px;
}
#home2-heading .heading2 h2,
#home3-heading .heading2 h2 {
  background: #fe5000;
  background: rgba(254, 80, 0, 0.7);
}
#home2-heading .slogan1,
#home2-heading .slogan1 p,
#home3-heading .slogan1,
#home3-heading .slogan1 p {
  display: inline;
  line-height: 68px;
  font-weight: 300;
  color: #fff;
}
#home2-heading .slogan1 .ticker,
#home3-heading .slogan1 .ticker {
  overflow: hidden;
  height: 68px;
}
#home2-heading .slogan1 .ticker div,
#home3-heading .slogan1 .ticker div {
  display: table;
  transition: all 0.4s ease-in-out 0s;
}
#home2-heading .slogan1 p,
#home2-heading .slogan1 .ticker,
#home3-heading .slogan1 p,
#home3-heading .slogan1 .ticker {
  margin: 0;
}
#home2-heading .slogan1 p,
#home2-heading .slogan1 .ticker div,
#home3-heading .slogan1 p,
#home3-heading .slogan1 .ticker div {
  padding: 0 5px;
  background: rgba(0, 0, 0, 0.3);
}
#home2-heading .slogan1.center p,
#home2-heading .slogan1.center .ticker div,
#home3-heading .slogan1.center p,
#home3-heading .slogan1.center .ticker div {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  #home2-heading,
  #home3-heading {
    padding: 100px 0px;
  }
}
@media only screen and (max-width: 767px) {
  #home2-heading,
  #home3-heading {
    padding: 80px 0px;
  }
  #home2-heading .heading2 h2,
  #home3-heading .heading2 h2 {
    font-size: 28px;
    line-height: 36px;
  }
  #home2-heading .slogan1,
  #home2-heading .slogan1 p,
  #home3-heading .slogan1,
  #home3-heading .slogan1 p {
    line-height: 50px;
  }
  #home2-heading .slogan1 .ticker,
  #home3-heading .slogan1 .ticker {
    height: 50px;
  }
}
@media only screen and (max-width: 479px) {
  #home2-heading .heading2 h2,
  #home3-heading .heading2 h2 {
    font-size: 24px;
    line-height: 32px;
  }
  #home2-heading .slogan1,
  #home2-heading .slogan1 p,
  #home3-heading .slogan1,
  #home3-heading .slogan1 p {
    line-height: 36px;
  }
  #home2-heading .slogan1 .ticker,
  #home3-heading .slogan1 .ticker {
    height: 36px;
  }
}

.heading2.download-app {
  margin-bottom: 30px;
}

ul.download-buttons {
  list-style: none;
  margin: 0;
}
ul.download-buttons > li {
  display: inline-block;
}
ul.download-buttons > li a img:hover {
  opacity: 0.8;
}

/* -------- Other Pages styling ----------*/
#column-shortcode-section p {
  color: #fff;
  line-height: 80px;
  background: #fe5000;
  text-align: center;
  margin: 0;
}
#column-shortcode-section .divider-space {
  margin: 0;
}

#pricing-contact {
  padding-top: 20px;
  /* stroke */
  /* layer fill content */
}
#pricing-contact h2 {
  float: right;
  font-size: 38px;
  line-height: 60px;
}

#careers-segment .flexslider .img-wrap {
  padding: 8px;
  background: #fafafa;
}

#contact-details .label {
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#contact-details p {
  margin-bottom: 0;
}

#contact-us-section .heading-section {
  padding-bottom: 0;
}
#contact-us-section .form-section {
  padding-top: 50px;
}

#contact-us-section ::-webkit-input-placeholder {
  color: #4c5152;
}
#contact-us-section ::-moz-placeholder {
  color: #4c5152;
}
#contact-us-section :-ms-input-placeholder {
  color: #4c5152;
}
#contact-us-section.dark-bg ::-webkit-input-placeholder {
  color: #eee;
}
#contact-us-section.dark-bg ::-moz-placeholder {
  color: #eee;
}
#contact-us-section.dark-bg :-ms-input-placeholder {
  color: #eee;
}

.employee-title {
  padding: 2px 0;
  font-size: 14px;
  line-height: 28px;
  font-style: italic;
  color: #848585;
  display: inline-block;
  margin-bottom: 10px;
}

#blog-header {
  padding: 80px 0;
}
#blog-header h1 {
  color: #f4f4f4;
  font-size: 48px;
  line-height: 52px;
}
#blog-header p {
  color: #e5e5e5;
  max-width: 600px;
}
@media only screen and (max-width: 479px) {
  #blog-header h1 {
    font-size: 36px;
    line-height: 48px;
  }
  #blog-header p {
    font-size: 14px;
    line-height: 24px;
  }
}

/* ---- Pricing page ------- */
#pricing-faq {
  background-color: #373d43;
}
#pricing-faq h4 {
  color: #cfd1d5;
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  margin-top: 50px;
}
#pricing-faq h4.first-row {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  #pricing-faq h4 {
    margin-top: 0 !important;
  }
}
#pricing-faq p {
  color: #85898d;
}

#pricing-faq-header {
  margin-bottom: -20px;
  text-align: center;
  position: relative;
  z-index: 10;
}

#pricing-action .heading2 {
  margin-bottom: 0;
}

#pricing-header h1 {
  color: #e0e3e8;
  font-size: 48px;
  line-height: 60px;
}
#pricing-header .details {
  color: #fff;
  margin-bottom: 30px;
}

/* ----- Our team -------- */
#team-page-slogan {
  padding-top: 20px;
}

#team-info-header {
  position: relative;
  height: 310px;
}
#team-info-header blockquote {
  font-size: 36px;
  line-height: 48px;
  color: #e0e3e8;
  background: none;
  position: absolute;
  left: 20%;
  top: 60px;
  width: 60%;
  padding: 0;
  margin: 0;
}

.team-member h3 {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 26px;
}
.team-member h3 a {
  color: #666;
}
.team-member:hover h3 a {
  color: #fe5000;
}
.team-member .image-area {
  background-color: transparent;
}
.team-member .img-wrap {
  position: relative;
  margin: 0 auto 10px;
  display: inline-block;
  overflow: hidden;
}
.team-member .img-wrap:hover {
  overflow: hidden;
}
.team-member .img-wrap p {
  margin: 0;
}
.team-member img {
  margin: 0 auto;
  border-radius: 50%;
}
.team-member:hover a {
  color: #888;
}
.team-member .aligncenter {
  margin-bottom: 0;
}
.team-member img,
.team-member a {
  transition: all 0.4s ease-in-out 0s;
}
.team-member .mini-separator {
  margin-left: auto;
  margin-right: auto;
}
.team-member .img-wrap:hover .team-member-hover {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  transition: all 0.3s ease-in-out 0s;
}

.team-member-hover {
  display: block;
  position: absolute;
  top: 0;
  margin: 0 auto;
  text-align: center;
  background: rgba(220, 70, 55, 0.7);
  color: white;
  width: 100%;
  height: 100%;
  z-index: 230;
  border-radius: 50%;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
.team-member-hover .text {
  position: relative;
  top: 40%;
  font-size: 18px;
}
.team-member-hover .social-wrap {
  position: relative;
  top: 45%;
}
.team-member-hover .social-list {
  position: relative;
  display: inline-block;
  top: 40%;
  margin: 0 auto;
}
.team-member-hover .social-list a i {
  color: #fff;
}
.team-member-hover .social-list a:hover i {
  color: #ccc;
}

.team-member .team-member-hover {
  background: #fe5000;
  background: rgba(254, 80, 0, 0.7);
}

.team-member p:last-child.bio {
  margin-bottom: 0;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  /* Make the grid blog layout two column in smaller tablets but not phones */
  .team-info .fourcol,
  .team-info .threecol,
  .team-info .fourcol.last,
  .team-info .threecol.last {
    width: 46%;
    margin-right: 4%;
  }
}
/* ----- Our Clients ---- */
#clients-heading {
  padding-bottom: 0;
}

#client-list {
  border-bottom: 1px solid #d5d5d5;
  border-left: 1px solid #d5d5d5;
  overflow: hidden;
}
#client-list img {
  border-top: 1px solid #d5d5d5;
  border-right: 1px solid #d5d5d5;
  transition: all 0.3s ease-in-out 0s;
  width: 100%;
  margin: 0;
}
#client-list img:hover {
  background: rgba(128, 128, 128, 0.1);
}
#client-list p {
  margin: 0;
}
#client-list .twocol {
  width: 16.66%;
  margin: 0;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  #client-list .twocol {
    width: 33.33%;
  }
}

/* ------ Video styling --------------*/
#content .video-box {
  margin-bottom: 15px;
}

.video-play-button {
  background: url(../img/video-play-button.png) center center no-repeat;
  width: 64px;
  height: 64px;
  transition: all 0.2s ease-in-out 0s;
}
.video-play-button:hover {
  background-image: url(../img/video-play-hover.png);
}

/*------- Miscelleneous ------------- */
.circle {
  display: inline-block;
  width: 100px;
  height: 100px;
  font-size: 16px;
  color: #fff;
  line-height: 100px;
  text-align: center;
  background: #aaa;
  margin: 0 10px;
  padding: 0;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
.circle.small {
  font-size: 13px;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  line-height: 50px;
}
.circle.tiny {
  font-size: 11px;
  width: 30px;
  height: 30px;
  border-radius: 25px;
  line-height: 30px;
}

.rounded-bg {
  display: inline-block;
  margin: 15px 30px;
  padding: 10px;
  float: left;
  background: #aaa;
  color: #333;
  border-radius: 50%;
  font-weight: 700;
  line-height: 20px;
  width: 20px;
  height: 20px;
}

/* Video Header */
.video-header {
  color: #fff;
  position: relative;
  overflow: hidden;
}
.video-header .media {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
.video-header .media .img-bg {
  display: none;
}
.mobile-device .video-header .media .video-bg {
  display: none;
}
.mobile-device .video-header .media .img-bg {
  display: block;
}
.video-header .media * {
  width: 100%;
  height: 100%;
  line-height: 0;
}
.video-header .header-content {
  z-index: 1;
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.video-header .header-content h3,
.video-header .header-content .text {
  color: #fff;
  width: 100%;
}
.video-header .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-repeat: repeat;
  z-index: 1;
}

.video-bg iframe,
.video-bg object,
.video-bg embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Styling for the top page header video */
.video-showcase .video-header .header-content,
.ytp-video-showcase .video-header .header-content {
  max-width: 800px;
}
.video-showcase .video-header .header-content h3,
.ytp-video-showcase .video-header .header-content h3 {
  font-size: 86px;
  line-height: 86px;
  font-weight: 700;
  text-shadow: 0 -1px 0 #000;
  margin-bottom: 20px;
}
.video-showcase .video-header .header-content .text,
.ytp-video-showcase .video-header .header-content .text {
  font-size: 28px;
  line-height: 42px;
  font-weight: 300;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1024px) {
  .video-showcase .video-header .header-content h3,
  .ytp-video-showcase .video-header .header-content h3 {
    font-size: 60px;
    line-height: 72px;
  }
  .video-showcase .video-header .header-content .text,
  .ytp-video-showcase .video-header .header-content .text {
    font-size: 24px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .video-showcase .video-header .header-content,
  .ytp-video-showcase .video-header .header-content {
    top: 25%;
  }
  .video-showcase .video-header .header-content h3,
  .ytp-video-showcase .video-header .header-content h3 {
    font-size: 48px;
    line-height: 54px;
  }
  .video-showcase .video-header .header-content .text,
  .ytp-video-showcase .video-header .header-content .text {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 0;
  }
  .video-showcase .video-header .header-content a.button,
  .ytp-video-showcase .video-header .header-content a.button {
    padding: 10px 20px;
  }
}
@media only screen and (max-width: 479px) {
  .video-showcase .video-header .header-content h3,
  .ytp-video-showcase .video-header .header-content h3 {
    font-size: 28px;
    line-height: 36px;
  }
  .video-showcase .video-header .header-content .text,
  .ytp-video-showcase .video-header .header-content .text {
    display: none;
  }
}

@media only screen and (min-width: 1525px) {
  .video-showcase .video-header {
    max-height: 950px;
  }
}

/* Youtube videos are not responsive */
@media only screen and (min-width: 1400px) {
  .ytp-video-showcase .video-header {
    max-height: 950px;
  }
}
@media only screen and (max-width: 1399px) {
  .ytp-video-showcase .video-header {
    max-height: 800px;
  }
}

/* Shown in mobile devices only for YTP videos */
.video-header .media .video-placeholder {
  height: auto;
}

/* Styling for the individual sections with video backgrounds */
.video-section .video-header .header-content,
.ytp-video-section .video-header .header-content {
  max-width: 1180px;
}
.video-section .video-header .header-content .text,
.ytp-video-section .video-header .header-content .text {
  font-size: 46px;
  line-height: 66px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .video-section .video-header .header-content .text,
  .ytp-video-section .video-header .header-content .text {
    font-size: 32px;
    line-height: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .video-section .video-header .header-content,
  .ytp-video-section .video-header .header-content {
    top: 25%;
  }
  .video-section .video-header .header-content .text,
  .ytp-video-section .video-header .header-content .text {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 20px;
  }
  .video-section .video-header .header-content a.button,
  .ytp-video-section .video-header .header-content a.button {
    padding: 10px 20px;
  }
}
@media only screen and (max-width: 479px) {
  .video-section .video-header .header-content,
  .ytp-video-section .video-header .header-content {
    top: 20%;
  }
  .video-section .video-header .header-content .text,
  .ytp-video-section .video-header .header-content .text {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 15px;
  }
  .video-section .video-header .header-content a.button,
  .ytp-video-section .video-header .header-content a.button {
    padding: 6px 15px;
  }
}

@media only screen and (min-width: 1400px) {
  .video-section .video-header {
    max-height: 650px;
  }
}

@media only screen and (min-width: 1400px) {
  .ytp-video-section .video-header {
    max-height: 650px;
  }
}
@media only screen and (max-width: 1399px) {
  .ytp-video-section .video-header {
    max-height: 550px;
  }
}

.video-bg .ytp-player {
  display: block;
  margin: auto;
}
.ytp-video-showcase .video-bg .ytp-player {
  height: 950px;
}
.ytp-video-section .video-bg .ytp-player {
  height: 650px;
}

.video-header .video-controls {
  position: absolute;
  bottom: 0;
  right: 0;
}
.video-header .video-controls button {
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0;
  text-align: center;
  margin: 3px;
  padding: 0;
  width: 40px;
  height: 40px;
  color: #fff !important;
  background: none;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.3;
}
.video-header .video-controls button:hover {
  opacity: 0.8;
}
.mobile-device .video-header .video-controls {
  display: none;
}

#team2 .heading2 {
  margin-bottom: 25px;
}

.call-to-action {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}
.call-to-action a {
  overflow: hidden;
  display: block;
}
.call-to-action img {
  width: 100%;
  transition: all 0.4s ease-in-out 0s;
}
.call-to-action img:hover {
  transform: scale(1.1);
}
.call-to-action .bottom {
  padding: 0 10px;
  text-align: left;
}
.call-to-action .bottom p {
  width: 80%;
}
.call-to-action h3 {
  margin: 25px 0 10px;
  font-size: 24px;
  line-height: 36px;
}
.call-to-action .external-link {
  font-style: italic;
  text-decoration: underline;
  transition: color 0.4s ease-in-out 0s;
}

.showcase-section {
  position: relative;
}
.showcase-section .button {
  padding: 15px 55px;
}
.showcase-section .showcase-filter {
  position: relative;
  top: 0;
  right: 40px;
  margin: 10px 0 0 330px;
}
.showcase-section .showcase-filter li {
  margin: 10px 0 0;
}
@media only screen and (max-width: 767px) {
  .showcase-section .heading2 {
    margin-bottom: 20px;
  }
  .showcase-section .showcase-filter {
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
  }
}

#portfolio-section.showcase-section .panel-grid-cell,
#gallery-section.showcase-section .panel-grid-cell {
  position: relative;
}
@media only screen and (min-width: 768px) {
  #portfolio-section.showcase-section .showcase-filter,
  #gallery-section.showcase-section .showcase-filter {
    position: absolute;
    top: 55px;
  }
}

#packed-gallery .showcase-items {
  margin-bottom: 0 !important;
}

/*---- Our Team section -----------*/
ul.member-list {
  border-bottom: 1px solid #fe5000;
  margin: 0 0 20px 0;
}
ul.member-list li {
  display: inline;
  margin: 0 50px 0 0;
}
ul.member-list li a {
  color: #292929;
  display: inline-block;
  font-family: "Lato", Arial, Helvetica, Verdana, sans-serif;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 52px;
  transition: color 0.2s ease-in-out 0s;
}
ul.member-list li a.visible,
ul.member-list li a.flex-active {
  border-bottom: 3px solid #fe5000;
}
ul.member-list li a:hover {
  color: #fe5000;
}

.team-slider-profiles {
  margin-top: 60px;
  overflow: hidden;
  z-index: 2;
  /* Fixed background fix */
}
.team-slider-profiles .employee-title {
  font-style: italic;
}
.team-slider-profiles .member-title {
  padding-bottom: 15px;
  margin-top: 35px;
  margin-bottom: 20px;
  border-bottom: 1px solid #b7b7b7;
  font-size: 36px;
  line-height: 48px;
}
@media only screen and (max-width: 1024px) {
  .team-slider-profiles .member-title {
    font-size: 28px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 959px) {
  .team-slider-profiles .member-title {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .team-slider-profiles .member-title {
    font-size: 24px;
    line-height: 36px;
  }
}
.team-slider-profiles .team-member h3 {
  font-size: 24px;
  line-height: 36px;
}
@media only screen and (max-width: 767px) {
  .team-slider-profiles .team-member h3 {
    font-size: 20px;
    line-height: 32px;
  }
}
.team-slider-profiles .member-content {
  margin-bottom: 20px;
  border-bottom: 1px solid #b7b7b7;
}
.team-slider-profiles .footer .follow-text {
  display: inline;
  float: left;
  margin-right: 20px;
  font-family: "Lato", Arial, Helvetica, Verdana, sans-serif;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
}
.team-slider-profiles > ul > li {
  display: none;
  position: relative;
}

.profile {
  position: relative;
  margin: 0 0 50px;
  overflow: hidden;
}

.profile-header,
.widget .profile-header {
  position: relative;
  display: inline-block;
}
.profile-header .image-area,
.widget .profile-header .image-area {
  display: inline-block;
}
.profile-header img,
.widget .profile-header img {
  float: left;
  max-width: 320px;
}
.profile-header img:hover,
.widget .profile-header img:hover {
  background: #fe5000;
}
.profile-header .img-hover,
.widget .profile-header .img-hover {
  position: absolute;
  width: 100%;
  height: 100%;
}
.profile-header .socials,
.widget .profile-header .socials {
  visibility: hidden;
  display: table;
  background: #fe5000;
  /* The Fallback */
  background: rgba(254, 80, 0, 0.7);
  width: auto;
  margin: 0 auto;
  position: relative;
  top: -90px;
  padding: 2px 5px;
}
.profile-header .socials a,
.widget .profile-header .socials a {
  line-height: 18px;
  margin: 0 3px;
  display: inline-block;
  color: #fff;
}
.profile-header .socials a:hover i,
.widget .profile-header .socials a:hover i {
  color: #ececec;
}
.profile-header .socials a:active i,
.widget .profile-header .socials a:active i {
  color: #ececec;
}
.profile-header .socials i,
.widget .profile-header .socials i {
  font-size: 16px;
  position: relative;
}
.profile-header:hover .socials,
.widget .profile-header:hover .socials {
  visibility: visible;
}
@media only screen and (max-width: 767px) {
  .profile-header,
  .widget .profile-header {
    display: block;
    width: 100%;
    color: #f29c74;
  }
}

.profile-content {
  margin: 10px 0 0;
}
.profile-content h3 {
  margin: 0;
}
.profile-content p.employee-title {
  display: block;
  text-align: left;
}
.profile-content p {
  margin: 0 0 10px;
  text-align: left;
}

/* Make that flip-flop possible */
.profile:nth-child(even) {
  clear: left;
}
.profile:nth-child(even) .fivecol {
  float: right;
}
.profile:nth-child(even) .fivecol .profile-header {
  float: right;
}
.profile:nth-child(even) .profile-content h3 {
  text-align: left;
}
.profile:nth-child(even) .profile-content p.employee-title {
  display: block;
  text-align: left;
}
.profile:nth-child(even) .profile-content p {
  margin: 0 0 10px;
  text-align: left;
}

/* responsive layout */
@media only screen and (max-width: 767px) {
  .profile-header,
  .profile-content,
  .profile .fivecol {
    width: 100% !important;
    float: none !important;
  }

  .profile .fivecol {
    display: block;
    text-align: center;
  }

  .profile-content h3,
  .profile-content p.employee-title {
    text-align: center !important;
  }

  .profile-header img {
    float: none;
    margin: 0 auto;
  }

  .profile-header .socials,
  .widget .profile-header .socials {
    visibility: visible;
    top: 0;
    margin-top: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .profile .profile-content {
    margin-top: 0;
    padding-left: 20px;
    box-sizing: border-box;
  }
  .profile:nth-child(even) .profile-content {
    padding-right: 20px;
  }
}
/* ------- JQuery Parallax -----------------*/
.parallax-section {
  position: relative;
  overflow: hidden;
}

.normal-background,
.parallax-background {
  -ms-background-size: cover !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.normal-background {
  background-position: center center;
}

.parallax-background.fixed {
  background-attachment: fixed !important;
}

/* ------------------------ Portfolio Support ----------------------------------- */
/*-------------- Portfolio Templates -------------- */
.showcase-template .hentry .entry-text-wrap,
.post-snippets .hentry .entry-text-wrap {
  text-align: left;
  padding-top: 20px;
}

.post-snippets .hentry .entry-text-wrap.nothumbnail {
  padding-top: 0;
}

.showcase-template .hentry .entry-title,
.post-snippets .hentry .entry-title {
  font-size: 18px;
  line-height: 28px;
}

.showcase-template .hentry .entry-summary,
.post-snippets .hentry .entry-summary {
  padding: 10px 0;
  border-top: 1px solid #bbb;
  margin: 10px 0 0;
}

.showcase-template .hfeed .clear {
  padding: 25px 0;
}

.showcase-template .thumbnail,
.post-snippets img {
  width: 100%;
}

/* Show Portfolio shortcode */
.portfolio-title h3,
.showcase-filter {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.portfolio-title h3::after,
.showcase-filter::after {
  clear: both;
  content: "";
  display: table;
}

.portfolio-title h3 {
  font-size: 36px;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .portfolio-title h3 {
    font-size: 28px;
  }
}

.showcase-filter {
  margin-bottom: 40px;
}

/*----------- Portfolio Isotope support ------- */
ul.image-grid {
  list-style-type: none;
  margin: 0;
}
ul.image-grid li {
  box-sizing: border-box;
}

div.image-grid .hentry,
.post-snippets .hentry {
  box-sizing: border-box;
}

ul.image-grid img {
  width: 100%;
}

#content .showcase-items {
  margin-bottom: 60px;
}
.page-template-template-full-width #content .showcase-items {
  margin-bottom: 0;
}

.showcase-filter,
#showcase-links {
  list-style-type: none;
  margin: 40px 0 40px 0;
  padding-bottom: 30px;
  text-align: right;
}
.showcase-template .showcase-filter,
.showcase-template #showcase-links {
  margin: 15px 0;
}
.showcase-filter li,
#showcase-links li {
  display: inline-block;
  margin: 0 0px 0 0;
}
.showcase-filter .filter-text,
#showcase-links .filter-text {
  font-size: 13px;
}
.showcase-filter a,
#showcase-links a {
  color: #292929;
  text-transform: none;
  display: inline-block;
  cursor: pointer;
  padding: 0 8px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-style: italic;
  letter-spacing: 1px;
  border: 1px solid #292929;
  border-radius: 2px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  border-background-clip: padding-box;
  transition: all 0.3s ease-in-out;
}
.showcase-filter a:hover,
.showcase-filter a.active,
#showcase-links a:hover,
#showcase-links a.active {
  color: #fefefe !important;
  background: #fe5000;
  border-color: #fe5000;
}

/*----------- Portfolio Single Post ------- */
.portfolio-info {
  margin: 10px 0;
}

.portfolio-label {
  text-transform: uppercase;
  display: block;
  color: #999790;
  border-top: 1px dashed #b3b0a8;
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 28px;
}

.portfolio-sidebar p {
  margin: 15px 0 5px;
  font-size: 14px;
  font-weight: 600;
  color: #555050;
}

.portfolio-description {
  margin-top: 15px;
  margin-bottom: 35px;
  font-size: 14px;
  line-height: 26px;
}
.portfolio-description .portfolio-label {
  margin-top: 10px;
}

/* The next and previous portfolio entries in a single portfolio page */
.single-portfolio .loop-nav {
  clear: both;
  font-weight: 600;
}

/*---------- Full Width Snippets of Posts, raw HTML etc. ---------- */
.post-snippets .clear {
  margin: 20px 0;
  display: block;
  height: 1px;
}

/*---------------- Post Snippets ----------------------------------------------*/
.post-snippets-title {
  margin-bottom: 15px;
  word-spacing: 0;
}

.post-snippets .hentry .entry-title {
  word-spacing: 0;
  margin: 0;
  font-family: "Lato", Arial, Helvetica, Verdana, sans-serif;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
  color: #2c2c2c;
  margin: 10px 0 5px;
}
.post-snippets .hentry .entry-title a {
  display: block;
  color: #292929;
  transition: color 0.3s ease-in-out 0s;
}
.post-snippets .hentry .entry-title a:hover {
  color: #fe5000;
}
.post-snippets .hentry .entry-summary {
  margin-top: 10px !important;
}
.post-snippets .byline {
  color: #56595c;
  font-size: 14px;
  margin: 0;
  border: none;
  padding: 0;
}
.post-snippets .byline a {
  font-style: italic;
}
.post-snippets .published {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #aaa;
}

/* ========================= Media Queries ====================== */
/* --------------------- Desktops and laptops -------------------------------- */
/* -------------------------- Small screens -------------------------------------- */
/* -------------------------------------- Smaller than standard 960 (devices and browsers) -------------------------------------- */
/* --------------------------------------Tablet Portrait size to standard 960 (devices and browsers)-------------------------------------- */
@media only screen and (max-width: 767px) {
  #styleswitcher {
    display: none;
  }
}
/* --------------------------------------Mobile Landscape Size to Tablet Portrait (devices and browsers)-------------------------------------- */
/* --------------------------------------Mobile Portrait Size to Mobile Landscape Size (devices and browsers) --------------------------------------*/
/* -------------------------------------- Retina displays like iPhone 4+ and iPad 3+ --------------------------------------*/
