/*------------------------------------------------------------------
[BASE.CSS - Grid and basic styles]
[Table of contents]

1. Normalize CSS
2. Basic WordPress styles
3. Bootstrap Grid
4. Bootstrap Helper Classes
5. Video Background Styles
6. Lazy Videos
7. Base Colors, Links, Tags
8. Duotone colors
9. Header Styles
10. Forms, Buttons
11. Form inputs
	11.1 Alternate Form styles
	11.2 Dark Form Styles
	11.3 Dark Alt Form Styles
	11.4 Dark Third Form Styles
12. Lightbox
13. Slick Carousel
14. Captions
15. WP Gallery
16. Pagination
17. Comments
18. Page 404
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
	1. Normalize CSS
-------------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
mark {
  background-color: transparent;
}
body {
  line-height: 1;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*,
*:focus {
  outline: none !important;
}
/*------------------------------------------------------------------
	2. Basic WordPress styles
-------------------------------------------------------------------*/
img.alignright,
.wp-caption.alignright {
  float: right;
  margin: 0 0 28px 28px;
}
img.alignleft,
.wp-caption.alignleft {
  float: left;
  margin: 0 28px 28px 0;
}
img.aligncenter,
.wp-caption.aligncenter {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  margin-bottom: 30px;
}
.wp-caption img {
  width: 100%;
  height: auto;
}
.button-align-left {
  text-align: left;
}
.button-align-right {
  text-align: right;
}
.button-align-center {
  text-align: center;
}
.alignright {
  float: right;
}
.alignleft {
  float: left;
}
.aligncenter {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.alignnone {
  max-width: 100%;
}
.wp-caption-text {
  font-style: italic;
  text-align: center;
}
.img-shortcode {
  display: block;
}
/*------------------------------------------------------------------
	3. Bootstrap Grid
-------------------------------------------------------------------*/
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
.pb-section > .container {
  padding-left: 0;
  padding-right: 0;
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.pb-section > .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.page-template-page-template-no-header-footer .pb-section > .container,
.page-template-page-template-no-header-footer .pb-section > .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}
.stretch_row_content_no_paddings > .container-fluid,
.stretch_row_content_no_paddings > .container-fluid > .row > .grid-column,
.stretch_row_content_no_paddings > .container-fluid > .row > .layout-col {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.stretch_row_content_no_paddings > .container-fluid > .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}
/*------------------------------------------------------------------
	4. Bootstrap Helper Classes
-------------------------------------------------------------------*/
@media screen and (min-width: 992px) {
  .hidden-md {
    display: none !important;
  }
}
@media screen and (max-width: 992px) {
  .hidden-sm {
    display: none !important;
  }
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-align-right {
  text-align: right;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}
.affix {
  position: fixed;
}
.centered {
  text-align: center;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
  .bgimage-hidden-xs {
    background-image: none !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1199px) {
  .bgimage-hidden-lg {
    background-image: none !important;
  }
}
@media (max-width: 1199px) {
  .bgimage-hidden-md {
    background-image: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.stretch_row_content_no_paddings > .container-fluid,
.stretch_row_content_no_paddings > .container-fluid > .row > .grid-column,
.stretch_row_content_no_paddings > .container-fluid > .row > .layout-col {
  padding-left: 0;
  padding-right: 0;
}
.stretch_row_content_no_paddings > .container-fluid > .row {
  margin-left: 0;
  margin-right: 0;
}
.stretch_row {
  display: block;
}
.centered {
  text-align: center;
}
/*------------------------------------------------------------------
	5. Video Background Styles
-------------------------------------------------------------------*/
.video-bg-section {
  position: relative;
}
.video-bg-section .background-video {
  background-position: top center;
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
}
.video-bg-section video,
.video-bg-section source {
  bottom: 0;
  left: 0;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
}
.video-bg-section .ytplayer-container {
  bottom: 0;
  height: 100%;
  left: 0;
  min-width: 100%;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.video-bg-section .placeholder-image {
  height: 100%;
  left: 0;
  min-height: 100%;
  min-width: 100%;
  position: fixed;
  top: 0;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
}
.video-bg-section .ytplayer-shield {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.video-bg-section .ytplayer-player {
  position: absolute;
}
.video-bg-section.loaded .ytplayer-container {
  display: block;
}
.video-bg-section.loaded .placeholder-image {
  opacity: 0;
}
.responsive-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.responsive-video-wrapper iframe,
.responsive-video-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*------------------------------------------------------------------
	6. Lazy Videos
-------------------------------------------------------------------*/
.lazy-video {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: block;
  transition: all 200ms ease-out;
  cursor: pointer;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.lazy-video .play {
  background-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.2s ease-out;
}
.lazy-video .play:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
.lazy-video .play {
  background-color: rgba(0, 0, 0, 0.4);
}
.lazy-video .play:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
  z-index: 3;
}
.lazy-video.no-play-button .play {
  display: none;
}
.lazy-video .prev-title {
  position: absolute;
  bottom: 5%;
  left: 60px;
  right: 60px;
  text-align: center;
  top: 50%;
  margin-top: 100px;
  color: #fff;
  z-index: 10;
  line-height: 22px;
  font-family: Roboto Slab;
  font-size: 42px;
  font-weight: 100;
}
.parallax-section .layout-col {
  z-index: 100;
}
.fw-alert {
  margin-bottom: 30px !important;
}
legend {
  display: inline-block;
}
.field-wrap {
  margin-bottom: 30px;
}
.full-height {
  height: 100%;
}
.full-width {
  width: 100%;
}
.drawSVG svg * {
  fill: none;
  stroke: currentColor;
}
/*------------------------------------------------------------------
	7. Base Colors, Links, Tags
-------------------------------------------------------------------*/
::selection {
  background: #1cbbb4;
  color: #ffffff;
}
::-moz-selection {
  background: #1cbbb4;
  color: #ffffff;
}
html {
  font-size: 62.5%;
  height: 100% !important;
}
body {
  height: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  background-color: #ffffff;
  color: #87878d;
  font-size: 16px;
  font-family: Roboto;
  line-height: 26px;
  font-weight: 400;
  text-transform: none;
  font-variant: normal;
  font-style: normal;
  background-image: url();
  background-repeat: ;
  background-position: ;
  background-size: ;
  background-attachment: ;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 24px;
  }
}
body.layout-type-framed,
body.layout-type-boxed {
  background-image: url();
  background-repeat: ;
  background-position: ;
  background-size: ;
  background-attachment: ;
  background-color: #f3f4f6;
}
body.layout-type-framed #wrap,
body.layout-type-boxed #wrap {
  background-image: url();
  background-repeat: ;
  background-position: ;
  background-size: ;
  background-attachment: ;
  background-color: #ffffff;
  max-width: 1300px;
}
body.layout-type-framed #wrap {
  margin: 30px auto;
  border-radius: 3px;
}
body.layout-type-boxed #wrap {
  margin: 0 auto;
}
a {
  text-decoration: none;
  color: #28282c;
  -webkit-transition: color 0.15s;
  -moz-transition: color 0.15s;
  -o-transition: color 0.15s;
  transition: color 0.15s;
}
a:hover {
  color: #1cbbb4;
}
mark {
  padding-left: 2px;
  padding-right: 2px;
  color: #ffffff;
  background-color: #1cbbb4;
}
strong,
b {
  font-weight: bold;
  color: #28282c;
}
i,
em,
q,
address {
  font-style: italic;
}
img {
  max-width: 100%;
  height: auto;
}
input[type='number'] {
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none !important;
}
select::-ms-expand {
  display: none;
}
input,
select,
textarea {
  max-width: 100%;
}
textarea {
  overflow: auto;
  resize: none;
}
table {
  width: 100%;
  font-size: 14px;
  line-height: 1.35em;
}
table thead,
table tfoot,
table thead th {
  background-color: #f3f4f6;
  color: #28282c;
  font-family: Roboto Slab;
  font-size: 16px;
  line-height: 1.35em;
  font-weight: 600;
}
table td,
table th,
table caption {
  padding: 20px 30px;
}
table th {
  text-align: left;
}
table tbody tr td,
table tbody tr th {
  border-bottom: 1px solid #e1e1e1;
}
table caption {
  text-align: center;
}
table tbody tr:hover td,
table tbody tr:hover th {
  background-color: #ffffff;
}
table tbody tr:hover td.desc-col {
  color: #1cbbb4;
}
table td.desc-col {
  color: #28282c;
}
table a {
  color: #28282c;
}
table a:hover {
  color: #1cbbb4;
}
@media screen and (max-width: 767px) {
  table {
    overflow-x: auto;
    display: block;
  }
}
pre,
code,
tt,
var {
  font-family: "Courier New", monospace;
}
code,
tt,
var {
  padding: 0 8px;
}
pre {
  display: block;
  padding: 10px;
  overflow-x: auto;
  width: 100%;
}
code,
tt,
var,
pre {
  background-color: #f3f4f6;
  border: 1px solid #e1e1e1;
}
hr {
  border: 0;
  height: 1px;
  margin: 30px 0;
  background-color: #e1e1e1;
}
dl {
  padding-left: 45px;
}
dl dt {
  margin-right: 5px;
  float: left;
  color: #28282c;
  font-family: Roboto Slab;
  font-weight: bold;
}
dl dd {
  margin-bottom: 18px;
}
ol,
ul {
  padding-left: 30px;
  margin-left: 30px;
}
ol li,
ul li {
  display: list-item;
  padding-left: 5px;
}
ol li,
ul li,
ol ol,
ul ol,
ol ul,
ul ul {
  margin-bottom: 18px;
}
ol ul,
ul ul,
ol ol,
ul ol {
  margin-top: 18px;
  margin-left: 10px;
}
.li-content svg {
  width: 16px;
  height: auto;
  margin-right: 11px;
}
.ie .li-content svg {
  height: 16px;
}
.li-content svg path {
  fill: #1cbbb4;
}
ol.ol,
ul.ul {
  color: #1cbbb4;
}
ol.ol .li-content,
ul.ul .li-content {
  color: #87878d;
}
.iconic {
  list-style: none;
  padding-left: 15px;
}
.iconic li {
  position: relative;
}
.iconic i.icon {
  position: absolute;
  left: 0;
  top: 6px;
  margin-right: 15px;
  color: #1cbbb4;
}
.iconic .li-content {
  padding-left: 15px;
  display: block;
}
ul {
  list-style-type: square;
  list-style-position: outside;
}
ul ul {
  list-style-type: disc;
}
ul ul ul {
  list-style-type: circle;
}
ol {
  list-style-type: decimal;
  list-style-position: outside;
}
p,
table,
ul,
ol,
dl,
pre,
address,
audio,
video,
iframe,
blockquote,
embed,
canvas,
form,
fieldset,
.form-row,
.post-gallery,
.mejs-container,
.shortcode-lazy-video {
  margin-bottom: 30px;
}
.dropcap p:first-child:first-letter {
  float: left;
  font-size: 50px;
  font-family: Roboto Slab;
  color: #28282c;
  line-height: 1em;
  padding-left: 0;
  margin-right: 15px;
  font-weight: bold;
}
.dropcap.style-circle p:first-child:first-letter {
  color: #ffffff;
  background: #28282c;
  font-size: 38px;
  border-radius: 50%;
  padding: 13px 15px;
  margin-top: 5px;
}
.dropcap.style-rounded p:first-child:first-letter {
  color: #ffffff;
  background: #00bff3;
  font-size: 38px;
  border-radius: 3px;
  padding: 13px 15px;
  margin-top: 5px;
}
.dropcap.style-boxed p:first-child:first-letter {
  border: 3px solid #28282c;
  font-size: 38px;
  padding: 13px 15px;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .dropcap p:first-child:first-letter {
    font-size: 46px;
    line-height: 1em;
  }
  .dropcap.style-circle p:first-child:first-letter,
  .dropcap.style-rounded p:first-child:first-letter,
  .dropcap.style-boxed p:first-child:first-letter {
    font-size: 38px;
  }
}
blockquote,
q {
  display: block;
  font-family: Roboto Slab;
  font-size: 24px;
  line-height: 30px;
  color: #28282c;
  background: #f3f4f6;
  padding: 45px 55px 45px 45px;
  position: relative;
}
blockquote cite,
q cite {
  font-size: 19px;
  font-family: Roboto;
  font-weight: normal;
  line-height: 1.35em;
  color: #87878d;
  font-style: italic;
}
blockquote p,
q p {
  margin-bottom: 10px;
}
blockquote p:last-of-type,
q p:last-of-type {
  margin-bottom: 0;
}
blockquote.no-margin {
  margin-bottom: 0;
}
blockquote:before,
q:before {
  content: '';
  position: absolute;
  height: 3px;
  background: #1cbbb4;
  left: 45px;
  right: 45px;
  top: 0;
}
@media screen and (max-width: 767px) {
  blockquote,
  q {
    font-size: 24px;
    line-height: 30px;
  }
}
/*------------------------------------------------------------------
	8. Duotone colors
-------------------------------------------------------------------*/
.duotone-turquoise:after,
.duotone-green:after,
.duotone-red:after,
.duotone-green:after,
.duotone-orange:after,
.duotone-purple:after,
.duotone-grey:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-filter: contrast(1.4);
  filter: contrast(1.4);
}
.duotone-turquoise {
  background-color: rgba(28, 187, 180, 0.2);
}
.duotone-turquoise:after {
  background-color: rgba(28, 187, 180, 0.5);
}
.duotone-green {
  background-color: rgba(57, 181, 74, 0.3);
}
.duotone-green:after {
  background-color: rgba(57, 181, 74, 0.5);
}
.duotone-red {
  background-color: rgba(240, 78, 78, 0.3);
}
.duotone-red:after {
  background-color: rgba(240, 78, 78, 0.5);
}
.duotone-orange {
  background-color: rgba(255, 158, 17, 0.3);
}
.duotone-orange:after {
  background-color: rgba(255, 158, 17, 0.5);
}
.duotone-purple {
  background-color: rgba(103, 57, 182, 0.3);
}
.duotone-purple:after {
  background-color: rgba(103, 57, 182, 0.5);
}
.duotone-blue {
  background-color: rgba(0, 191, 243, 0.3);
}
.duotone-blue:after {
  background-color: rgba(0, 191, 243, 0.6);
}
.duotone-grey {
  background-color: rgba(223, 223, 224, 0.3);
}
.duotone-grey:after {
  background-color: rgba(223, 223, 224, 0.5);
}
.duotone-bg {
  overflow-x: hidden;
}
.duotone-bg > .container {
  position: relative;
}
.duotone-bg .duotone-mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.duotone-bg .duotone-mask:after {
  content: '';
  width: 100%;
  height: 100%;
}
/*------------------------------------------------------------------
	9. Header Styles
-------------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #28282c;
  margin-bottom: 26px;
  -webkit-transition: color 0.15s;
  -moz-transition: color 0.15s;
  -o-transition: color 0.15s;
  transition: color 0.15s;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #1cbbb4;
  text-decoration: underline;
}
.accent-line {
  position: relative;
}
.accent-line:after {
  content: '';
  position: absolute;
  height: 2px;
  width: 50%;
  background: #1cbbb4;
  bottom: -10px;
  left: 0;
}
h4,
h5,
h6 {
  margin-bottom: 18px;
}
h1,
.h1 {
  font-size: 42px;
  font-family: Roboto Slab;
  line-height: 48px;
  font-weight: 800;
  text-transform: none;
  font-variant: normal;
  font-style: normal;
}
h2,
.h2 {
  font-size: 38px;
  font-family: Roboto Slab;
  line-height: 44px;
  font-weight: 800;
  text-transform: none;
  font-variant: normal;
  font-style: normal;
}
h3,
.h3 {
  font-size: 32px;
  font-family: Roboto Slab;
  line-height: 38px;
  font-weight: 800;
  text-transform: none;
  font-variant: normal;
  font-style: normal;
}
h4,
.h4 {
  font-size: 28px;
  font-family: Roboto Slab;
  line-height: 35px;
  font-weight: 800;
  text-transform: none;
  font-variant: normal;
  font-style: normal;
}
h5,
.h5 {
  font-size: 24px;
  font-family: Roboto Slab;
  line-height: 30px;
  font-weight: 800;
  text-transform: none;
  font-variant: normal;
  font-style: normal;
}
h6,
.h6 {
  font-size: 18px;
  font-family: Roboto Slab;
  line-height: 25px;
  font-weight: 800;
  text-transform: none;
  font-variant: normal;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  h1,
  .h1 {
    font-size: 42px;
    line-height: 48px;
  }
  h2,
  .h2 {
    font-size: 38px;
    line-height: 44px;
  }
  h3,
  .h3 {
    font-size: 24px;
    line-height: 28px;
  }
  h4,
  .h4 {
    font-size: 28px;
    line-height: 35px;
  }
  h5,
  .h5 {
    font-size: 24px;
    line-height: 30px;
  }
  h6,
  .h6 {
    font-size: 18px;
    line-height: 25px;
  }
}
/*------------------------------------------------------------------
	10. Forms, Buttons
-------------------------------------------------------------------*/
input[placeholder] {
  text-overflow: ellipsis;
}
::-webkit-input-placeholder {
  text-overflow: ellipsis;
}
input::-moz-placeholder {
  text-overflow: ellipsis;
}
input:-moz-placeholder {
  text-overflow: ellipsis;
}
input:-ms-input-placeholder {
  text-overflow: ellipsis;
}
.button,
input[type=reset],
input[type=submit],
button,
input[type=button] {
  display: inline-block;
  font-weight: 500;
  user-select: none;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.button-ink {
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.button-ink-animate {
  -webkit-animation: rippleButtonAnimation 0.65s linear;
  -moz-animation: rippleButtonAnimation 0.65s linear;
  -ms-animation: rippleButtonAnimation 0.65s linear;
  -o-animation: rippleButtonAnimation 0.65s linear;
  animation: rippleButtonAnimation 0.65s linear;
}
@-webkit-keyframes rippleButtonAnimation {
  100% {
    opacity: 0;
    -webkit-transform: scale(2.5);
  }
}
@-moz-keyframes rippleButtonAnimation {
  100% {
    opacity: 0;
    -moz-transform: scale(2.5);
  }
}
@-o-keyframes rippleButtonAnimation {
  100% {
    opacity: 0;
    -o-transform: scale(2.5);
  }
}
@keyframes rippleButtonAnimation {
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}
.icon-position-left .button-icon {
  margin-right: 14px;
}
.icon-position-right .button-icon {
  margin-left: 14px;
}
input[type=reset],
input[type=submit],
button,
input[type=button] {
  cursor: pointer;
  border: 0;
  font-size: 16px;
  line-height: 1.9em;
  font-family: Roboto;
}
.button,
input[type=reset],
input[type=submit],
button,
input[type=button] {
  padding: 15px 30px;
}
.button.stroke {
  padding: 13px 28px;
}
.button.stroke {
  border-width: 2px;
  border-style: solid;
}
.button,
input[type=reset],
input[type=submit],
button,
input[type=button] {
  border-radius: 3px;
  overflow: hidden;
}
/** button sizes **/
.button.size-small {
  font-size: 14px;
}
.button.size-large {
  font-size: 22px;
}
.button.size-small {
  padding: 7px 22px;
}
.button.stroke.size-small {
  padding: 5px 20px;
}
.button.size-large {
  padding: 20px 50px;
}
.button.stroke.size-large {
  padding: 18px 48px;
}
/**
	Black buttons
**/
.button,
.button.style-black,
input[type=reset],
input[type=submit],
button,
input[type=button] {
  background-color: #28282c;
  color: #ffffff;
}
.button .button-ink,
.button.style-black .button-ink,
input[type=reset] .button-ink,
input[type=submit] .button-ink,
button .button-ink,
input[type=button] .button-ink {
  background-color: #1cbbb4;
}
.button:hover,
.button.style-black:hover,
input[type=reset]:hover,
input[type=submit]:hover,
button:hover,
input[type=button]:hover {
  background-color: #404047;
}
.button.style-black.stroke {
  background-color: #ffffff;
  border-color: #28282c;
  color: #28282c;
}
.button.style-black.stroke:hover {
  border-color: #1cbbb4;
  color: #1cbbb4;
}
/**
	White style
**/
.button.style-white {
  background-color: #fff;
  color: #28282c;
}
.button.style-white .button-ink {
  background-color: rgba(255, 255, 255, 0.4);
}
.button.style-white:hover {
  background-color: rgba(255, 255, 255, 0.7);
}
/**
	White stroke buttons
**/
.button.style-white.stroke {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.button.style-white.stroke .button-ink {
  background-color: rgba(255, 255, 255, 0.4);
}
.button.style-white.stroke:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
/**
	Turquoise buttons
**/
.button.style-turquoise {
  background-color: #1cbbb4;
  color: #ffffff;
}
.button.style-turquoise .button-ink {
  background-color: #158f89;
}
.button.style-turquoise:hover {
  background-color: #2bdfd7;
}
.button.style-turquoise.stroke {
  background-color: #ffffff;
  border-color: #1cbbb4;
  color: #1cbbb4;
}
.button.style-turquoise.stroke:hover {
  border-color: #158f89;
  color: #158f89;
}
/**
	Grey buttons
**/
.button.style-grey {
  background-color: #e9e9e9;
  color: #28282c;
  text-transform: uppercase;
}
.button.style-grey .button-ink {
  background-color: #2bdfd7;
}
.button.style-grey:hover {
  background-color: #1cbbb4;
  color: #ffffff;
}
/**
	Red buttons
**/
.button.style-red {
  background-color: #f04e4e;
  color: #ffffff;
}
.button.style-red .button-ink {
  background-color: #ec1f1f;
}
.button.style-red:hover {
  background-color: #f47d7d;
}
.button.style-red.stroke {
  background-color: #ffffff;
  border-color: #f04e4e;
  color: #f04e4e;
}
.button.style-red.stroke:hover {
  border-color: #ec1f1f;
  color: #ec1f1f;
}
/**
	Green buttons
**/
.button.style-green {
  background-color: #39b54a;
  color: #ffffff;
}
.button.style-green .button-ink {
  background-color: #2d8e3a;
}
.button.style-green:hover {
  background-color: #57ca67;
}
.button.style-green.stroke {
  background-color: #ffffff;
  border-color: #39b54a;
  color: #39b54a;
}
.button.style-green.stroke:hover {
  border-color: #2d8e3a;
  color: #2d8e3a;
}
/**
	Orange buttons
**/
.button.style-orange {
  background-color: #ff9e11;
  color: #ffffff;
}
.button.style-orange .button-ink {
  background-color: #dd8300;
}
.button.style-orange:hover {
  background-color: #ffb344;
}
.button.style-orange.stroke {
  background-color: #ffffff;
  border-color: #ff9e11;
  color: #ff9e11;
}
.button.style-orange.stroke:hover {
  border-color: #dd8300;
  color: #dd8300;
}
/**
	LightGreen buttons
**/
.button.style-light-green {
  background-color: #8dc63f;
  color: #ffffff;
}
.button.style-light-green .button-ink {
  background-color: #72a230;
}
.button.style-light-green:hover {
  background-color: #a4d266;
}
.button.style-light-green.stroke {
  background-color: #ffffff;
  border-color: #8dc63f;
  color: #8dc63f;
}
.button.style-light-green.stroke:hover {
  border-color: #72a230;
  color: #72a230;
}
/**
	Blue buttons
**/
.button.style-blue {
  background-color: #00bff3;
  color: #ffffff;
}
.button.style-blue .button-ink {
  background-color: #0097c0;
}
.button.style-blue:hover {
  background-color: #27d1ff;
}
.button.style-blue.stroke {
  background-color: #ffffff;
  border-color: #00bff3;
  color: #00bff3;
}
.button.style-blue.stroke:hover {
  border-color: #0097c0;
  color: #0097c0;
}
/**
	Purple buttons
**/
.button.style-purple {
  background-color: #6739b6;
  color: #ffffff;
}
.button.style-purple .button-ink {
  background-color: #512d8f;
}
.button.style-purple:hover {
  background-color: #8257cb;
}
.button.style-purple.stroke {
  background-color: #ffffff;
  border-color: #6739b6;
  color: #6739b6;
}
.button.style-purple.stroke:hover {
  border-color: #512d8f;
  color: #512d8f;
}
/*------------------------------------------------------------------
	11. Form inputs
-------------------------------------------------------------------*/
form label {
  font-family: Roboto Slab;
  font-weight: bold;
  color: #28282c;
  margin-bottom: 10px;
}
form .fs-checkbox label {
  font-family: Roboto;
  font-weight: normal;
  color: #87878d;
}
form label sup {
  display: none;
}
form p {
  margin-bottom: 0;
}
form em {
  font-size: 14px;
  line-height: 1.5em;
  font-style: italic;
  padding-top: 5px;
  display: block;
}
form .field-text label,
form .field-select label,
form .field-textarea label {
  display: block;
}
form .form-error {
  color: #f04e4e !important;
  font-size: 14px;
  font-style: italic;
}
form .form-builder-item {
  margin-bottom: 20px;
}
.fw_form_fw_form label sup {
  display: none;
}
.fw_form_fw_form h2 {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 18px;
}
.fw_form_fw_form .fw-flash-type-success {
  list-style: none;
  padding-left: 0;
  margin: 0 0 30px 0;
  font-family: Roboto;
  font-size: 28px;
  line-height: 35px;
  font-style: normal;
  color: #28282c;
}
.fw_form_fw_form .field-checkbox .options,
.fw_form_fw_form .custom-radio .options {
  margin: 9px 0;
}
@media screen and (max-width: 767px) {
  .fw_form_fw_form h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .fw_form_fw_form .fw-flash-type-success {
    font-size: 28px;
    line-height: 35px;
  }
}
input[type=text],
input[type=email],
input[type=password],
input[type=url],
input[type=number],
input[type=search],
input[type=tel],
button,
textarea {
  -webkit-appearance: none !important;
}
.no-custom-input input[type=text],
.no-custom-input input[type=email],
.no-custom-input input[type=password],
.no-custom-input input[type=url],
.no-custom-input input[type=number],
.no-custom-input input[type=search],
.no-custom-input input[type=tel] {
  -webkit-appearance: textfield !important;
}
.no-custom-input button {
  -webkit-appearance: button !important;
}
.no-custom-input textarea {
  -webkit-appearance: textarea !important;
}
.no-custom-input input[type=radio] {
  -webkit-appearance: radio !important;
}
.no-custom-input input[type=checkbox] {
  -webkit-appearance: checkbox !important;
}
input[type=text],
input[type=email],
input[type=password],
input[type=url],
input[type=number],
input[type=search],
input[type=tel],
textarea,
select {
  width: 100%;
  max-width: 100%;
  display: block;
  font-family: Roboto;
  font-size: 16px;
  background-color: #ffffff;
  padding: 16px 20px;
  border-radius: 3px;
  border: 2px solid #e1e1e1;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
input[type=text]:hover,
input[type=email]:hover,
input[type=password]:hover,
input[type=url]:hover,
input[type=number]:hover,
input[type=search]:hover,
input[type=tel]:hover,
textarea:hover,
select:hover,
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=url]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=tel]:focus,
textarea:focus,
select:focus {
  border-color: #1cbbb4;
  background-color: #ffffff;
  color: #28282c;
}
textarea {
  min-height: 180px;
}
/** custom checkboxes **/
.fs-checkbox.fs-checkbox-enabled {
  cursor: pointer;
  margin: 0;
  overflow: hidden;
}
.fs-checkbox.fs-checkbox-enabled:focus {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  outline: none;
}
.fs-checkbox,
.fs-checkbox:after,
.fs-checkbox:before,
.fs-checkbox *,
.fs-checkbox *:after,
.fs-checkbox *:before {
  box-sizing: border-box;
  -webkit-transition: none;
  transition: none;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}
.fs-checkbox-element_wrapper {
  position: relative;
  border: 0;
  height: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  width: 0;
}
.fs-checkbox-element {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  -webkit-transition: none;
  transition: none;
}
.fs-checkbox-label {
  cursor: pointer;
  display: block;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.fs-checkbox-marker {
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 2px solid #e1e1e1;
  border-radius: 3px;
  cursor: pointer;
  display: block;
  float: left;
  margin: 6px 10px 0 0;
}
.fs-checkbox-flag {
  width: 100%;
  height: 100%;
  margin: 0;
}
.fs-checkbox-flag:before {
  width: 4px;
  height: 7px;
  border: 2px solid #e1e1e1;
  border-top: 0;
  border-left: 0;
  content: '';
  display: block;
  margin: 2px 0 0 4px;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  -webkit-transform: rotate(45deg) scale(0);
  -ms-transform: rotate(45deg) scale(0);
  transform: rotate(45deg) scale(0);
}
.fs-checkbox-checked .fs-checkbox-flag:before {
  -webkit-transform: rotate(45deg) scale(1);
  -ms-transform: rotate(45deg) scale(1);
  transform: rotate(45deg) scale(1);
}
.no-csstransforms .fs-checkbox-flag:before {
  width: 100%;
  height: 100%;
  content: "\2713";
  display: none;
  line-height: 1;
  text-align: center;
}
.no-csstransforms .fs-checkbox-checked .fs-checkbox-flag:before {
  display: block;
}
.fs-checkbox-radio .fs-checkbox-marker {
  border-radius: 100%;
}
.fs-checkbox-radio .fs-checkbox-flag {
  background: #e1e1e1;
  border: 4px solid #ffffff;
  border-radius: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
}
.fs-checkbox:hover .fs-checkbox-marker,
.fs-checkbox-checked .fs-checkbox-marker,
.fs-checkbox-checked .fs-checkbox-flag:before {
  border-color: #1cbbb4;
}
.fs-checkbox-checked.fs-checkbox-radio .fs-checkbox-flag {
  background-color: #1cbbb4;
}
.fs-checkbox-radio .fs-checkbox-flag:before {
  display: none;
}
.fs-checkbox-radio.fs-checkbox-checked .fs-checkbox-flag {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.fs-checkbox-radio.fs-checkbox-checked .fs-checkbox-flag:before {
  display: none;
}
.no-csstransforms .fs-checkbox-radio .fs-checkbox-flag:before {
  display: none;
}
.no-csstransforms .fs-checkbox-radio.fs-checkbox-checked .fs-checkbox-flag:before {
  display: block;
}
.fs-checkbox-focus .fs-checkbox-marker {
  border-color: #e1e1e1;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.fs-checkbox-disabled {
  cursor: default;
  opacity: 0.5;
}
.fs-checkbox-disabled .fs-checkbox-label {
  cursor: default;
}
.fs-checkbox-disabled .fs-checkbox-marker {
  border-color: #e1e1e1;
  cursor: default;
}
/** custom dropdown **/
.fs-dropdown {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  max-width: 100%;
}
.fs-dropdown .button-ink {
  display: none !important;
}
.fs-dropdown:focus {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  outline: none;
}
.fs-dropdown,
.fs-dropdown:after,
.fs-dropdown:before,
.fs-dropdown *,
.fs-dropdown *:after,
.fs-dropdown *:before {
  box-sizing: border-box;
  -webkit-transition: none;
  transition: none;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}
.fs-dropdown-element {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  opacity: 0;
  z-index: -1;
  outline: 0;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
}
.fs-dropdown-element,
.fs-dropdown-element:focus {
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
}
.no-opacity .fs-dropdown-element {
  left: -999999px;
}
.fs-dropdown-mobile .fs-dropdown-element {
  z-index: 7;
}
.fs-dropdown-mobile.fs-dropdown-multiple .fs-dropdown-element {
  z-index: -1;
}
.fs-dropdown-selected {
  width: 100%;
  position: relative;
  background: #ffffff;
  border: 2px solid #e1e1e1;
  color: #87878d;
  cursor: pointer;
  display: block;
  height: 57px;
  margin: 0;
  overflow-y: hidden;
  padding: 0 27px;
  text-align: left;
  text-overflow: ellipsis;
  z-index: 2;
  font-weight: normal;
  text-transform: none;
  border-radius: 3px;
}
.fs-dropdown-selected:after {
  position: absolute;
  content: '';
  z-index: 3;
}
.fs-dropdown-selected:after {
  width: 55px;
  right: -1px;
  top: -1px;
  bottom: -1px;
  background-color: #e1e1e1;
  -webkit-border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomright: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  background-position: center center;
  background-size: 12px 8px;
  background-repeat: no-repeat;
}
.fs-dropdown-selected:hover,
.fs-dropdown-selected:focus,
.fs-dropdown-open .fs-dropdown-selected,
.fs-dropdown-focus .fs-dropdown-selected {
  background: #ffffff;
  border-color: #1cbbb4;
}
.fs-dropdown-selected:hover:after {
  background-color: #1cbbb4;
}
.fs-dropdown-options {
  width: 100%;
  max-height: 250px;
  position: absolute;
  top: 100%;
  left: 0;
  border: 1px solid #e1e1e1;
  border-width: 0 1px 1px;
  border-radius: 0 0 3px 3px;
  background-color: #ffffff;
  display: none;
  margin: 0;
  overflow: auto;
  overflow-x: hidden;
  padding: 10px 0;
  z-index: 50;
}
.fs-dropdown-options.fs-scrollbar {
  position: absolute;
}
.no-opacity .fs-dropdown-options {
  width: auto;
}
.fs-dropdown-item {
  width: 100%;
  background: #ffffff;
  text-transform: none;
  font-weight: normal;
  color: #87878d;
  cursor: pointer;
  display: block;
  margin: 0;
  overflow: hidden;
  padding: 2px 60px 2px 27px;
  text-align: left;
  text-decoration: none;
  text-overflow: ellipsis;
}
.fs-dropdown-item:hover {
  background: #ffffff;
  color: #1cbbb4 !important;
}
.fs-dropdown-item_placeholder {
  display: none;
}
.fs-dropdown-item_selected {
  color: #1cbbb4;
}
.fs-dropdown-item_selected:before,
.fs-dropdown-item:hover:before {
  content: '';
  position: absolute;
  left: 20px;
  width: 20px;
  height: 25px;
  background-repeat: no-repeat;
  background-size: 8px 8px;
  background-position: left center;
}
.fs-dropdown-open {
  z-index: 3;
}
.fs-dropdown-open .fs-dropdown-options {
  display: block;
  border-radius: 0 0 3px 3px;
}
.fs-dropdown-open .fs-dropdown-selected {
  z-index: 51;
  border-radius: 3px 3px 0 0;
}
.fs-dropdown-cover.fs-dropdown-open .fs-dropdown-selected {
  z-index: 49;
}
.fs-dropdown-cover .fs-dropdown-options {
  top: 0;
  border-radius: 3px;
  border-width: 1px;
}
.fs-dropdown-cover .fs-dropdown-item:first-child {
  border-radius: 3px 3px 0 0;
}
.fs-dropdown-bottom .fs-dropdown-options {
  top: auto;
  bottom: 100%;
  border-width: 1px 1px 0;
}
.fs-dropdown-bottom .fs-dropdown-item:last-child {
  border: none;
}
.fs-dropdown-bottom.fs-dropdown-open .fs-dropdown-selected {
  border-radius: 0 0 3px 3px;
}
.fs-dropdown-bottom.fs-dropdown-open .fs-dropdown-options {
  border-radius: 3px 3px 0 0;
}
.fs-dropdown-bottom.fs-dropdown-cover .fs-dropdown-options {
  top: auto;
  bottom: 0;
}
.fs-dropdown-bottom.fs-dropdown-cover.fs-dropdown-open .fs-dropdown-selected {
  border-radius: 3px;
}
.fs-dropdown-bottom.fs-dropdown-cover.fs-dropdown-open .fs-dropdown-options {
  border-radius: 3px;
}
.fs-dropdown-options.fs-scrollbar {
  overflow: hidden;
}
.fs-dropdown-options.fs-scrollbar .fs-scrollbar-content {
  max-height: 260px;
  height: auto;
}
.fs-dropdown-options.fs-scrollbar.fs-scrollbar-active .fs-scrollbar-content {
  padding: 10px 0;
}
.fs-dropdown-item_disabled {
  cursor: default;
  opacity: .5;
}
.fs-dropdown-open {
  z-index: 3;
}
.fs-dropdown-open .fs-dropdown-options {
  display: block;
}
.fs-dropdown-open .fs-dropdown-selected {
  z-index: 6;
}
.fs-dropdown-cover.fs-dropdown-open .fs-dropdown-selected {
  z-index: 4;
}
.fs-dropdown-cover .fs-dropdown-options {
  top: 0;
}
.fs-dropdown-bottom .fs-dropdown-options {
  top: auto;
  bottom: 100%;
}
.fs-dropdown-bottom.fs-dropdown-cover .fs-dropdown-options {
  top: auto;
  bottom: 0;
}
.fs-dropdown-multiple .fs-dropdown-options {
  width: 100%;
  position: static;
  display: block;
}
.fs-dropdown-disabled {
  opacity: .5;
}
.fs-dropdown-disabled .fs-dropdown-selected {
  cursor: default;
}
.fs-dropdown-disabled .fs-dropdown-group,
.fs-dropdown-disabled .fs-dropdown-item {
  cursor: default;
}
.fs-dropdown-options.fs-scrollbar {
  overflow: hidden;
}
.fs-scrollbar {
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
}
.fs-scrollbar,
.fs-scrollbar * {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}
.fs-scrollbar,
.fs-scrollbar-content,
.fs-scrollbar-bar,
.fs-scrollbar-track,
.fs-scrollbar-handle {
  box-sizing: border-box;
}
.fs-scrollbar-content {
  position: relative;
  z-index: 1;
  height: 100%;
  overflow: auto;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.fs-scrollbar-content::-webkit-scrollbar,
.fs-scrollbar-content::-webkit-scrollbar-button,
.fs-scrollbar-content::-webkit-scrollbar-track,
.fs-scrollbar-content::-webkit-scrollbar-track-piece,
.fs-scrollbar-content::-webkit-scrollbar-thumb,
.fs-scrollbar-content::-webkit-scrollbar-corner,
.fs-scrollbar-content::-webkit-resizer {
  background: transparent;
  opacity: 0;
}
.fs-scrollbar-bar {
  width: 50px;
  height: 90%;
  position: absolute;
  right: 0;
  top: 5%;
  bottom: 5%;
  z-index: 2;
  background: #ffffff;
  display: none;
}
.fs-scrollbar-track {
  width: 100%;
  height: 100%;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}
.fs-scrollbar-handle {
  width: 4px;
  height: 20px;
  position: absolute;
  top: 35px;
  right: 22px;
  z-index: 2;
  background: #e1e1e1;
  border-radius: 3px;
  cursor: pointer;
}
.fs-scrollbar-horizontal .fs-scrollbar-content {
  overflow: auto;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 16px 0;
}
.fs-scrollbar-horizontal .fs-scrollbar-bar {
  width: 100%;
  height: 16px;
  top: auto;
  bottom: 0;
  border-width: 1px 0 0 0;
}
.fs-scrollbar-horizontal .fs-scrollbar-handle {
  width: 20px;
  height: 10px;
  top: auto;
  right: auto;
  bottom: 3px;
}
.fs-scrollbar-setup .fs-scrollbar-content,
.fs-scrollbar-active .fs-scrollbar-content {
  padding: 20px;
}
.fs-scrollbar-setup .fs-scrollbar-bar,
.fs-scrollbar-active .fs-scrollbar-bar {
  display: block;
}
/*------------------------------------------------------------------
	11.1 Alternate Form styles
-------------------------------------------------------------------*/
.form-style-alt input[type=text],
.form-style-alt input[type=email],
.form-style-alt input[type=password],
.form-style-alt input[type=url],
.form-style-alt input[type=number],
.form-style-alt input[type=search],
.form-style-alt input[type=tel],
.form-style-alt textarea,
.form-style-alt select {
  background-color: #f3f4f6;
}
.form-style-alt input[type=text]:hover,
.form-style-alt input[type=email]:hover,
.form-style-alt input[type=password]:hover,
.form-style-alt input[type=url]:hover,
.form-style-alt input[type=number]:hover,
.form-style-alt input[type=search]:hover,
.form-style-alt input[type=tel]:hover,
.form-style-alt textarea:hover,
.form-style-alt select:hover,
.form-style-alt input[type=text]:focus,
.form-style-alt input[type=email]:focus,
.form-style-alt input[type=password]:focus,
.form-style-alt input[type=url]:focus,
.form-style-alt input[type=number]:focus,
.form-style-alt input[type=search]:focus,
.form-style-alt input[type=tel]:focus,
.form-style-alt textarea:focus,
.form-style-alt select:focus {
  background-color: #ffffff;
}
.form-style-alt .fs-checkbox-marker,
.form-style-alt .fs-dropdown-selected {
  background-color: #f3f4f6;
}
.form-style-alt .fs-checkbox:hover .fs-checkbox-marker,
.form-style-alt .fs-checkbox-checked .fs-checkbox-marker {
  background-color: #ffffff;
}
.form-style-alt .fs-dropdown-selected:hover,
.form-style-alt .fs-dropdown-selected:focus,
.form-style-alt .fs-dropdown-open .fs-dropdown-selected,
.form-style-alt .fs-dropdown-focus .fs-dropdown-selected {
  background: #ffffff;
}
/*------------------------------------------------------------------
	11.2 Dark Form Styles
-------------------------------------------------------------------*/
.form-style-dark form label {
  color: #ffffff;
}
.form-style-dark .fw_form_fw_form h2 {
  color: #ffffff;
}
.form-style-dark .fw_form_fw_form .fw-flash-type-success {
  color: #ffffff;
}
.form-style-dark input[type=text],
.form-style-dark input[type=email],
.form-style-dark input[type=password],
.form-style-dark input[type=url],
.form-style-dark input[type=number],
.form-style-dark input[type=search],
.form-style-dark input[type=tel],
.form-style-dark textarea,
.form-style-dark select {
  background-color: #222225;
  border-color: #3a3a40;
  color: #87878d;
}
.form-style-dark input[type=text]:hover,
.form-style-dark input[type=email]:hover,
.form-style-dark input[type=password]:hover,
.form-style-dark input[type=url]:hover,
.form-style-dark input[type=number]:hover,
.form-style-dark input[type=search]:hover,
.form-style-dark input[type=tel]:hover,
.form-style-dark textarea:hover,
.form-style-dark select:hover,
.form-style-dark input[type=text]:focus,
.form-style-dark input[type=email]:focus,
.form-style-dark input[type=password]:focus,
.form-style-dark input[type=url]:focus,
.form-style-dark input[type=number]:focus,
.form-style-dark input[type=search]:focus,
.form-style-dark input[type=tel]:focus,
.form-style-dark textarea:focus,
.form-style-dark select:focus {
  border-color: #1cbbb4;
  background-color: #222225;
  color: #87878d;
}
.form-style-dark .fs-checkbox-marker {
  background: #222225;
  border-color: #3a3a40;
}
.form-style-dark .fs-checkbox-flag:before {
  border-color: #1cbbb4;
}
.form-style-dark .fs-checkbox-radio .fs-checkbox-flag {
  border-color: #222225;
}
.form-style-dark .fs-checkbox-focus .fs-checkbox-marker {
  border-color: #1cbbb4;
}
.form-style-dark .fs-checkbox-disabled .fs-checkbox-marker {
  border-color: #3a3a40;
}
.form-style-dark .fs-dropdown-selected {
  background: #222225;
  border-color: #3a3a40;
  color: #87878d;
}
.form-style-dark .fs-dropdown-selected:after {
  background-color: #3a3a40;
}
.form-style-dark .fs-dropdown-selected:hover,
.form-style-dark .fs-dropdown-selected:focus,
.form-style-dark .fs-dropdown-open .fs-dropdown-selected,
.form-style-dark .fs-dropdown-focus .fs-dropdown-selected {
  border-color: #1cbbb4;
}
.form-style-dark .fs-dropdown-selected:hover:after {
  background-color: #1cbbb4;
}
.form-style-dark .fs-dropdown-options {
  border-color: #3a3a40;
  background-color: #222225;
}
.form-style-dark .fs-dropdown-item {
  background: #222225;
  color: #87878d;
}
.form-style-dark .fs-dropdown-item:hover {
  background: #222225;
  color: #1cbbb4 !important;
}
.form-style-dark .fs-dropdown-item_selected {
  color: #1cbbb4;
}
.form-style-dark .fs-scrollbar-bar {
  background: #222225;
}
.form-style-dark .fs-scrollbar-track {
  background: #222225;
}
.form-style-dark .fs-scrollbar-handle {
  background: #3a3a40;
}
/*------------------------------------------------------------------
	11.3 Dark Alt Form Styles
-------------------------------------------------------------------*/
.form-style-dark_alt form label {
  color: #ffffff;
}
.form-style-dark_alt .fw_form_fw_form h2 {
  color: #ffffff;
}
.form-style-dark_alt .fw_form_fw_form .fw-flash-type-success {
  color: #ffffff;
}
.form-style-dark_alt input[type=text],
.form-style-dark_alt input[type=email],
.form-style-dark_alt input[type=password],
.form-style-dark_alt input[type=url],
.form-style-dark_alt input[type=number],
.form-style-dark_alt input[type=search],
.form-style-dark_alt input[type=tel],
.form-style-dark_alt textarea,
.form-style-dark_alt select {
  background-color: #222225;
  border-color: #3a3a40;
  color: #87878d;
}
.form-style-dark_alt input[type=text]:hover,
.form-style-dark_alt input[type=email]:hover,
.form-style-dark_alt input[type=password]:hover,
.form-style-dark_alt input[type=url]:hover,
.form-style-dark_alt input[type=number]:hover,
.form-style-dark_alt input[type=search]:hover,
.form-style-dark_alt input[type=tel]:hover,
.form-style-dark_alt textarea:hover,
.form-style-dark_alt select:hover,
.form-style-dark_alt input[type=text]:focus,
.form-style-dark_alt input[type=email]:focus,
.form-style-dark_alt input[type=password]:focus,
.form-style-dark_alt input[type=url]:focus,
.form-style-dark_alt input[type=number]:focus,
.form-style-dark_alt input[type=search]:focus,
.form-style-dark_alt input[type=tel]:focus,
.form-style-dark_alt textarea:focus,
.form-style-dark_alt select:focus {
  border-color: #1cbbb4;
  background-color: #ffffff;
  color: #87878d;
}
.form-style-dark_alt .fs-checkbox-marker {
  background: #222225;
  border-color: #3a3a40;
}
.form-style-dark_alt .fs-checkbox-flag:before {
  border-color: #1cbbb4;
}
.form-style-dark_alt .fs-checkbox-radio .fs-checkbox-flag {
  border-color: #222225;
}
.form-style-dark_alt .fs-checkbox-focus .fs-checkbox-marker {
  border-color: #1cbbb4;
}
.form-style-dark_alt .fs-checkbox-disabled .fs-checkbox-marker {
  border-color: #3a3a40;
}
.form-style-dark_alt .fs-dropdown-selected {
  background: #222225;
  border-color: #3a3a40;
  color: #87878d;
}
.form-style-dark_alt .fs-dropdown-selected:after {
  background-color: #3a3a40;
}
.form-style-dark_alt .fs-dropdown-selected:hover,
.form-style-dark_alt .fs-dropdown-selected:focus,
.form-style-dark_alt .fs-dropdown-open .fs-dropdown-selected,
.form-style-dark_alt .fs-dropdown-focus .fs-dropdown-selected {
  border-color: #1cbbb4;
  background-color: #ffffff;
}
.form-style-dark_alt .fs-dropdown-selected:hover:after {
  background-color: #1cbbb4;
}
.form-style-dark_alt .fs-dropdown-options {
  border-color: #3a3a40;
  background-color: #222225;
}
.form-style-dark_alt .fs-dropdown-item {
  background: #222225;
  color: #87878d;
}
.form-style-dark_alt .fs-dropdown-item:hover {
  background: #222225;
  color: #1cbbb4 !important;
}
.form-style-dark_alt .fs-dropdown-item_selected {
  color: #1cbbb4;
}
.form-style-dark_alt .fs-scrollbar-bar {
  background: #222225;
}
.form-style-dark_alt .fs-scrollbar-track {
  background: #222225;
}
.form-style-dark_alt .fs-scrollbar-handle {
  background: #3a3a40;
}
/*------------------------------------------------------------------
	11.4 Dark Third Form Styles
-------------------------------------------------------------------*/
.form-style-dark_third form label {
  color: #ffffff;
}
.form-style-dark_third .fw_form_fw_form h2 {
  color: #ffffff;
}
.form-style-dark_third .fw_form_fw_form .fw-flash-type-success {
  color: #ffffff;
}
.form-style-dark_third input[type=text],
.form-style-dark_third input[type=email],
.form-style-dark_third input[type=password],
.form-style-dark_third input[type=url],
.form-style-dark_third input[type=number],
.form-style-dark_third input[type=search],
.form-style-dark_third input[type=tel],
.form-style-dark_third textarea,
.form-style-dark_third select {
  background-color: #ffffff;
  border-color: #ffffff;
}
.form-style-dark_third input[type=text]:hover,
.form-style-dark_third input[type=email]:hover,
.form-style-dark_third input[type=password]:hover,
.form-style-dark_third input[type=url]:hover,
.form-style-dark_third input[type=number]:hover,
.form-style-dark_third input[type=search]:hover,
.form-style-dark_third input[type=tel]:hover,
.form-style-dark_third textarea:hover,
.form-style-dark_third select:hover,
.form-style-dark_third input[type=text]:focus,
.form-style-dark_third input[type=email]:focus,
.form-style-dark_third input[type=password]:focus,
.form-style-dark_third input[type=url]:focus,
.form-style-dark_third input[type=number]:focus,
.form-style-dark_third input[type=search]:focus,
.form-style-dark_third input[type=tel]:focus,
.form-style-dark_third textarea:focus,
.form-style-dark_third select:focus {
  border-color: #1cbbb4;
  background-color: #ffffff;
  color: #28282c;
}
.form-style-dark_third .fs-checkbox-marker {
  background: #ffffff;
  border-color: #ffffff;
}
.form-style-dark_third .fs-checkbox-flag:before {
  border-color: #ffffff;
}
.form-style-dark_third .fs-checkbox-radio .fs-checkbox-flag {
  background: #e1e1e1;
  border-color: #ffffff;
}
.form-style-dark_third .fs-checkbox:hover .fs-checkbox-marker,
.form-style-dark_third .fs-checkbox-checked .fs-checkbox-marker,
.form-style-dark_third .fs-checkbox-checked .fs-checkbox-flag:before {
  border-color: #1cbbb4;
}
.form-style-dark_third .fs-checkbox-checked.fs-checkbox-radio .fs-checkbox-flag {
  background-color: #1cbbb4;
}
.form-style-dark_third .fs-checkbox-focus .fs-checkbox-marker {
  border-color: #ffffff;
}
.form-style-dark_third .fs-checkbox-disabled .fs-checkbox-marker {
  border-color: #ffffff;
}
.form-style-dark_third .fs-dropdown-selected {
  background: #ffffff;
  border-color: #ffffff;
  color: #87878d;
}
.form-style-dark_third .fs-dropdown-selected:after {
  background-color: #e1e1e1;
}
.form-style-dark_third .fs-dropdown-selected:hover,
.form-style-dark_third .fs-dropdown-selected:focus,
.form-style-dark_third .fs-dropdown-open .fs-dropdown-selected,
.form-style-dark_third .fs-dropdown-focus .fs-dropdown-selected {
  background: #ffffff;
  border-color: #1cbbb4;
}
.form-style-dark_third .fs-dropdown-selected:hover:after {
  background-color: #1cbbb4;
}
.form-style-dark_third .fs-dropdown-options {
  border-color: #e1e1e1;
  background-color: #ffffff;
}
.form-style-dark_third .fs-dropdown-item {
  background: #ffffff;
  color: #87878d;
}
.form-style-dark_third .fs-dropdown-item:hover {
  background: #ffffff;
  color: #1cbbb4 !important;
}
.form-style-dark_third .fs-dropdown-item_selected {
  color: #1cbbb4;
}
.form-style-dark_third .fs-scrollbar-bar {
  background: #ffffff;
}
.form-style-dark_third .fs-scrollbar-track {
  background: #ffffff;
}
.form-style-dark_third .fs-scrollbar-handle {
  background: #e1e1e1;
}
/*------------------------------------------------------------------
	12. Lightbox
-------------------------------------------------------------------*/
.nivo-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99998;
  width: 100%;
  height: 100%;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.nivo-lightbox-overlay.nivo-lightbox-open {
  visibility: visible;
  opacity: 1;
}
.nivo-lightbox-wrap {
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 10%;
  right: 10%;
}
.nivo-lightbox-content {
  width: 100%;
  height: 100%;
}
.nivo-lightbox-title-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  text-align: center;
}
.nivo-lightbox-nav {
  display: none;
}
.nivo-lightbox-prev {
  position: absolute;
  top: 50%;
  left: 0;
}
.nivo-lightbox-next {
  position: absolute;
  top: 50%;
  right: 0;
}
.nivo-lightbox-close {
  position: absolute;
  top: 5%;
  right: 2%;
}
.nivo-lightbox-image {
  text-align: center;
}
.nivo-lightbox-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  vertical-align: middle;
}
.nivo-lightbox-content iframe {
  width: 100%;
  height: 100%;
}
.nivo-lightbox-inline,
.nivo-lightbox-ajax {
  max-height: 100%;
  overflow: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.nivo-lightbox-error {
  display: table;
  text-align: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-shadow: 0 1px 1px #000;
}
.nivo-lightbox-error p {
  display: table-cell;
  vertical-align: middle;
}
.nivo-lightbox-notouch .nivo-lightbox-effect-fall {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/* fall */
.nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall {
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
  perspective: 1000px;
}
.nivo-lightbox-effect-fall .nivo-lightbox-wrap {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: translateZ(300px);
  -moz-transform: translateZ(300px);
  -ms-transform: translateZ(300px);
  transform: translateZ(300px);
}
.nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
  background: #777;
  background: rgba(0, 0, 0, 0.85);
}
.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
  background: url(../../../images/lightbox/loading.gif) no-repeat 50% 50%;
}
.nivo-lightbox-theme-default .nivo-lightbox-nav {
  top: 10%;
  width: 8%;
  height: 80%;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: 0.5;
}
.nivo-lightbox-theme-default .nivo-lightbox-nav:hover {
  opacity: 1;
}
.nivo-lightbox-theme-default .nivo-lightbox-prev {
  background-image: url(../../../images/lightbox/prev.png);
  border-radius: 0 3px 3px 0;
}
.nivo-lightbox-theme-default .nivo-lightbox-next {
  background-image: url(../../../images/lightbox/next.png);
  border-radius: 3px 0 0 3px;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 30px 30px;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
}
.nivo-lightbox-theme-default .nivo-lightbox-close:hover {
  opacity: 1;
}
.nivo-lightbox-theme-default .nivo-lightbox-title-wrap {
  bottom: -7%;
}
.nivo-lightbox-theme-default .nivo-lightbox-title {
  font-style: normal;
  font-weight: normal;
  background: #000;
  color: #fff;
  padding: 7px 15px;
}
.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
  padding: 40px;
}
@media (-webkit-min-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (min--moz-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
    background-image: url(../../../images/lightbox/loading@2x.gif);
    background-size: 32px 32px;
  }
  .nivo-lightbox-theme-default .nivo-lightbox-prev {
    background-image: url(../../../images/lightbox/prev@2x.png);
    background-size: 48px 48px;
  }
  .nivo-lightbox-theme-default .nivo-lightbox-next {
    background-image: url(../../../images/lightbox/next@2x.png);
    background-size: 48px 48px;
  }
}
/*------------------------------------------------------------------
	13. Slick Carousel
-------------------------------------------------------------------*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}
.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev {
  left: 0;
}
.slick-next {
  right: 0;
}
/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: -35px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots button:before,
.slick-dots button:after,
.slick-dots .button-ink {
  display: none !important;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
  background: #e1e1e1;
  border-radius: 50%;
}
.slick-dots li:hover,
.slick-dots li.slick-active {
  background: #1cbbb4;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}
/*------------------------------------------------------------------
	14. Captions
-------------------------------------------------------------------*/
.wp-caption {
  background-color: #f3f4f6;
  padding: 10px;
  width: auto !important;
  border-radius: 3px;
  box-sizing: border-box;
}
.wp-caption img {
  max-width: 100%;
}
.wp-caption-text {
  margin-bottom: 0 !important;
  padding-left: 10px;
  padding-right: 10px;
  font-family: Roboto Slab;
  color: #28282c;
  line-height: 1.35em;
  font-style: normal;
  text-align: left;
}
/*------------------------------------------------------------------
	15. WP Gallery
-------------------------------------------------------------------*/
.gallery .gallery-item {
  padding-left: 0;
}
.gallery .gallery-icon {
  display: block;
  float: none;
  margin-right: 0;
}
.gallery .gallery-caption {
  text-align: center;
}
/*------------------------------------------------------------------
	16. Pagination
-------------------------------------------------------------------*/
.pagination a,
.pagination span {
  display: inline-block;
  margin-right: 5px;
  border: 2px solid #e1e1e1;
  padding: 5px 13px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-align: center;
  font-family: Roboto Slab;
  font-weight: bold;
}
.pagination a:hover {
  border-color: #1cbbb4;
}
.pagination .next,
.pagination .prev {
  display: none;
}
.ajax-pagination {
  text-align: center;
}
.prev-next-links {
  margin-top: 18px;
  padding-top: 42px;
  padding-bottom: 25px;
  border-top: 2px solid #e1e1e1;
  background-position: center 45px;
  background-repeat: no-repeat;
  background-size: 34px 34px;
  font-family: Roboto Slab;
  font-weight: bold;
}
.prev-next-links .prev-post {
  float: left;
}
.prev-next-links .prev-post a {
  padding-left: 60px;
}
.prev-next-links .next-post {
  float: right;
}
.prev-next-links .next-post a {
  padding-right: 60px;
}
.prev-next-links .prev-post,
.prev-next-links .next-post {
  position: relative;
  line-height: 40px;
}
.prev-next-links .prev-post a,
.prev-next-links .next-post a {
  display: inline-block;
}
.prev-next-links .prev-post a:before,
.prev-next-links .next-post a:before {
  content: '';
  width: 40px;
  height: 40px;
  border: 2px solid #e1e1e1;
  position: absolute;
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: border-color 0.2s;
  -moz-transition: border-color 0.2s;
  -o-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.prev-next-links .prev-post a:hover:before,
.prev-next-links .next-post a:hover:before {
  border-color: #1cbbb4;
}
.prev-next-links .prev-post a:before {
  left: 0;
}
.prev-next-links .next-post a:before {
  right: 0;
}
@media screen and (max-width: 992px) {
  .prev-next-links {
    background-image: none !important;
  }
}
@media screen and (max-width: 767px) {
  .prev-next-links {
    padding-bottom: 8px;
  }
  .prev-next-links .prev-post,
  .prev-next-links .next-post {
    float: none;
    display: block;
    margin-bottom: 18px;
  }
  .prev-next-links .next-post {
    padding-left: 60px;
    padding-right: 0;
  }
  .prev-next-links .next-post a:before {
    right: auto;
    left: 0;
  }
}
/*------------------------------------------------------------------
	17. Comments
-------------------------------------------------------------------*/
#comments {
  margin-top: 18px;
  border: 2px solid #eeeeee;
  padding: 30px 35px 0 35px;
}
#comments .form-submit {
  display: inline-block;
  position: relative;
}
#comments .no-comments-text {
  font-size: 14px;
}
#comments #respond {
  background: #eeeeee;
  padding: 30px 35px 30px 35px;
  margin-left: -35px;
  margin-right: -35px;
}
#comments #respond form {
  margin-bottom: 0;
}
#comments .reply-desc {
  font-size: 14px;
  line-height: 1.35em;
  margin-bottom: 30px;
}
#comments h2.comments-title,
#comments .comment-reply-title {
  margin-bottom: 10px;
  line-height: 1.35em;
}
#comments #cancel-comment-reply-link {
  float: right;
  font-size: 16px;
}
#comments .comment-body {
  position: relative;
  border-bottom: 2px solid #eeeeee;
  margin-bottom: 30px;
}
#comments ul.comments-list {
  list-style: none;
  margin: 40px 0 40px 0;
  padding: 0;
}
#comments ul.comments-list #respond {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 30px;
}
#comments ul.comments-list li {
  font-style: normal;
  line-height: 1.5em;
}
#comments ul.comments-list .children {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
}
#comments ul.comments-list .children .comment-body {
  padding-left: 100px;
}
#comments ul.comments-list .children .children .comment-body {
  padding-left: 200px;
}
#comments ul.comments-list .photo img {
  position: absolute;
  border-radius: 50%;
}
#comments ul.comments-list .comment-text {
  padding-left: 100px;
  min-height: 80px;
}
#comments ul.comments-list .comment-text .comment-text > ul,
#comments ul.comments-list .comment-text .comment-text > ol {
  margin-bottom: 30px;
}
#comments ul.comments-list footer {
  margin-top: -8px;
  margin-bottom: 30px;
}
#comments ul.comments-list header {
  margin-bottom: 10px;
  font-family: Roboto Slab;
  font-weight: bold;
  color: #28282c;
}
#comments ul.comments-list .comment-reply-link {
  font-weight: bold;
  color: #404047;
  text-transform: uppercase;
  font-size: 12px;
  margin-right: 30px;
}
#comments ul.comments-list .comment-time {
  text-transform: uppercase;
  margin-right: 30px;
  color: #a1a1a6;
  font-size: 12px;
}
#comments ul.comments-list > li.comment:last-of-type .comment-body {
  margin-bottom: 0;
  border-bottom: 0;
}
#comments.no-avatars ul.comments-list .comment-text {
  padding-left: 0;
}
#comments-nav {
  margin-bottom: 70px;
}
@media screen and (max-width: 992px) {
  #comments form label {
    line-height: normal;
  }
  #comments .col-label {
    display: none;
  }
  #comments .children .comment-body,
  #comments .children .children .comment-body {
    padding-left: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  #comments {
    padding: 15px 15px 0 15px;
  }
  #comments ul.comments-list .children {
    padding-left: 0;
  }
  #comments .comments-thread-expanded:after {
    display: none;
  }
  #comments ul.comments-list .photo img {
    width: 50px;
  }
  #comments ul.comments-list .comment-text {
    padding-left: 70px;
    min-height: 50px;
  }
  #comments #respond {
    padding: 15px;
    margin-left: -15px;
    margin-right: -15px;
  }
  #comments #cancel-comment-reply-link {
    float: none;
    display: block;
  }
}
/*------------------------------------------------------------------
	18. Page 404
-------------------------------------------------------------------*/
.page-404-content {
  text-align: center;
  padding: 0 15px 90px 15px;
}
.page-404-content h1 {
  color: #1cbbb4;
  font-size: 312px;
  line-height: 312px;
}
.page-404-content h2 {
  font-size: 48px;
  line-height: 1.25em;
}
.page-404-content form.search-form {
  display: block;
  max-width: 370px;
  text-align: center;
  margin: 0 auto 30px auto;
}
.page-404-content.style-modern {
  color: #fff;
  padding: 70px 15px 90px 15px;
}
.page-404-content.style-modern h1,
.page-404-content.style-modern h2,
.page-404-content.style-modern p {
  color: #fff;
}
.page-404-content.style-modern .button {
  margin: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  font-size: 16px;
}
.page-404-content.style-modern .button .button-ink {
  display: none;
}
.page-404-content.style-modern .button:hover {
  background: transparent;
  color: #fff;
  text-decoration: underline;
}
@media screen and (max-width: 992px) {
  .page-404-content h1 {
    font-size: 150px;
    line-height: 150px;
  }
  .page-404-content h2 {
    font-size: 28px;
    line-height: 1.25em;
  }
}
.post-password-form p {
  margin-bottom: 14px;
}
@media screen and (min-width: 992px) {
  .hide-on-desktop {
    display: none !important;
  }
}
@media screen and (max-width: 992px) {
  .hide-on-tablets {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .hide-on-phones {
    display: none !important;
  }
}
.fix-safari-attachment {
  background-attachment: scroll !important;
}
