@import "entypo.css";
/**
 *
 * Primary Color 
 *
 * Set one color for all global variables. Global variables are
 * placed in /assets/less/variables.less
 */
/**
 *
 * Imports
 *
 * Imports all base styles, variables and mixins.
 * All files are placed in /assets/less/
 */
/**
 * Imports
 */
/**
 * Custom Responsive Classes
 */
.hide-mobile {
  display: block;
}
@media (max-width: 576px) {
  .hide-mobile {
    display: none;
  }
}
.show-mobile {
  display: none;
}
@media (max-width: 576px) {
  .show-mobile {
    display: block;
  }
}
.hide-tablet {
  display: block;
}
@media (max-width: 768px) {
  .hide-tablet {
    display: none;
  }
}
.show-tablet {
  display: none;
}
@media (max-width: 768px) {
  .show-tablet {
    display: block;
  }
}
.hide-desktop {
  display: block;
}
@media (max-width: 992px) {
  .hide-desktop {
    display: none;
  }
}
.show-desktop {
  display: none;
}
@media (max-width: 992px) {
  .show-desktop {
    display: block;
  }
}
.hide-large {
  display: block;
}
@media (max-width: 1200px) {
  .hide-large {
    display: none;
  }
}
.show-large {
  display: none;
}
@media (max-width: 1200px) {
  .show-large {
    display: block;
  }
}
/**
 * Mixins
 */
/**
 * Variables and options
 */
/**
 * Responsive Utilities
 */
/**
 * Import DEMO
 */
.primary-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #f39200;
}
.background-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #ffffff;
}
.dark-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #333333;
}
.light-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #666666;
}
.border-color {
  color: #000000;
  padding: 10px;
  display: block;
  background-color: #e5e5e5;
}
.success-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #70c270;
}
.warning-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #c27070;
}
.danger-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #c27070;
}
.info-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #c27070;
}
.white {
  color: #000000;
  padding: 10px;
  display: block;
  background-color: #ffffff;
}
.black {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #000000;
}
.shadow {
  color: #000000;
  padding: 10px;
  display: block;
  background-color: #ebebeb;
}
/** 
 * Base
 */
html,
body {
  font-size: 16px;
  height: 100%;
  color: #666666;
  font-weight: 300;
  line-height: 1.6;
}
html.open,
body.open {
  overflow: hidden;
}
h1 {
  font-size: 140%;
  font-weight: 600;
  margin-top: 0px;
}
@media all and (max-width: 768px) {
  h1 {
    font-size: 1.3em;
  }
}
h2 {
  font-size: 120%;
  font-weight: 600;
  margin-top: 0px;
}
@media all and (max-width: 768px) {
  h2 {
    font-size: 1.3em;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  line-height: 1.4;
  color: #333333;
}
article {
  margin-bottom: 20px;
}
article:last-of-type {
  margin-bottom: 0px;
}
.container {
  max-width: 1200px;
}
a:hover {
  text-decoration: none;
}
/**
 * Helpers 
 */
img.alignleft {
  margin: 0 10px 10px 0;
  float: left;
}
img.alignright {
  margin: 0 0 10px 10px;
  float: right;
}
img.aligncenter {
  display: block;
  margin: 0 auto;
  text-align: center;
  margin: 0 0 0 10px;
}
.screen-reader-text {
  display: none;
}
/** 
 * Navigation: Fixes
 */
.mobile-fix {
  margin: 4.5px 0 !important;
}
.navbar .navbar-nav {
  list-style: none;
}
.navbar .navbar-nav > li {
  list-style: none;
}
.navbar .navbar-nav > li > a {
  padding: 0px 20px;
}
.navbar .logo img {
  max-width: 290px;
  max-height: 90px;
}
.navbar .logo.text {
  padding: 20px;
}
@media all and (max-width: 768px) {
  .navbar .logo.text {
    padding: 20px;
    margin: 4.5px 0 !important;
  }
}
@media all and (max-width: 768px) {
  .navbar .logo {
    max-width: 200px;
  }
}
/**
 * Navigation: Submenu
 */
.navbar-custom {
  margin-bottom: 20px;
  z-index: 9000;
}
.navbar-custom .navbar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-custom .navbar-nav > .menu-item {
  position: relative;
  list-style: none;
  display: inline-block;
  padding: 15px 0;
}
.navbar-custom .navbar-nav > .menu-item.current-menu-item > a,
.navbar-custom .navbar-nav > .menu-item.current-menu-parent > a {
  color: #333333;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -oz-border-radius: 3px !important;
  border-radius: 3px !important;
}
.navbar-custom .navbar-nav > .menu-item > a {
  padding: 5px 10px;
  color: #333333;
  display: block;
  text-decoration: none !important;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -oz-border-radius: 3px !important;
  border-radius: 3px !important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.navbar-custom .navbar-nav > .menu-item .sub-menu {
  margin: 0;
  padding: 15px;
  display: none;
  list-style: none;
  position: absolute;
  min-width: 200px;
  background-color: #fff;
  border-color: #f39200;
  border-width: 2px 0px 0px 0px;
  border-style: solid;
  z-index: 9005;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navbar-custom .navbar-nav > .menu-item .sub-menu > .menu-item > a {
  display: block;
  padding: 5px 10px;
  color: #333333;
  text-decoration: none !important;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -oz-border-radius: 3px !important;
  border-radius: 3px !important;
  font-weight: 500;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.navbar-custom .navbar-nav > .menu-item .sub-menu > .menu-item > a:hover {
  background-color: #ffa927;
  color: #fff;
}
.navbar-custom .navbar-nav > .menu-item .sub-menu > .menu-item.current-menu-item > a {
  color: #fff;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -oz-border-radius: 3px !important;
  border-radius: 3px !important;
  background-color: #f39200;
}
/** 
 * Navigation: Mobile 
 */
#mobile-button {
  cursor: pointer;
  font-size: 2em;
}
@media all and (max-width: 576px) {
  #mobile-button {
    font-size: 0;
  }
}
#mobile-button .bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #666666;
  transition: all 0.2s;
}
#mobile-button .bar + .bar {
  margin-top: 4px;
}
#mobile-button .tob-bar {
  z-index: 3;
}
#mobile-button .mid-bar {
  z-index: 2;
}
#mobile-button .bot-bar {
  z-index: 1;
}
#mobile-button.open .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}
#mobile-button.open .mid-bar {
  opacity: 0;
}
#mobile-button.open .bot-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}
#mobile-shadow {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
  z-index: 9050;
}
#mobile-shadow.open {
  display: block;
}
#mobile-menu {
  position: fixed;
  right: -270px;
  top: 0;
  width: 260px;
  height: 100%;
  overflow-x: hidden;
  background: #fff;
  list-style: none;
  z-index: 9150;
  transition: all .2s linear;
}
#mobile-menu.open {
  right: 0px;
}
#mobile-menu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#mobile-menu > ul > li > a {
  position: relative;
  text-decoration: none;
  color: #333;
  display: block;
  padding: 15px 30px;
  border-bottom: 1px solid #f4f4f4;
}
#mobile-menu > ul > li > a:hover {
  background: #f4f4f4;
  color: #333;
}
#mobile-menu > ul > li > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
}
#mobile-menu > ul > li > ul > li > a {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 15px 30px;
}
#mobile-menu .menu-item-has-children > a:after {
  position: absolute;
  right: 30px;
  content: "\2b";
  font-family: 'entypo';
}
#mobile-menu .sub-menu {
  display: none;
}
.admin-bar #mobile-menu {
  height: calc( 100% - 46px );
  top: 46px;
}
/** 
 * Sidebar 
 */
#sidebar .widget {
  margin-bottom: 20px;
}
#sidebar .widget:last-of-type {
  margin-bottom: 0px;
}
/**
 * Footer
 */
#page-footer {
  position: relative;
  bottom: 0;
  padding: 70px 0px;
  background-color: #fafafa;
}
#page-footer .imc-logo-footer {
  text-align: center;
  margin: 0 auto 50px auto;
}
#page-footer .imc-logo-footer img {
  max-width: 170px;
}
#page-footer #footer-menu {
  max-width: 700px;
  margin: 0 auto;
}
#page-footer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
  position: relative;
}
@media (max-width: 768px) {
  #page-footer nav ul {
    text-align: center;
  }
}
#page-footer nav ul:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #f39200;
  bottom: 0;
  left: 0;
  position: absolute;
}
#page-footer nav ul li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
#page-footer nav ul li a {
  padding: 20px;
  display: block;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: .78em;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#page-footer nav ul li a:hover {
  color: #f39200;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media all and (max-width: 576px) {
  #page-footer nav ul li {
    display: block;
    *display: block;
  }
}
/**
 * Sections
 */
.devhats-area {
  width: 100%;
  height: 150px;
  margin-bottom: 25px;
  position: relative;
}
.devhats-area-inner {
  display: table;
  margin: 0 auto;
  height: 100%;
  width: 100%;
  border: 4px dashed #ddd;
}
[class*="devhats-section-"] {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  font-size: 120%;
  color: #ddd;
  font-weight: 700;
  text-transform: uppercase;
}
[class*="devhats-section-"] .span {
  display: inline-block;
}
/**
 * Forms
 */
.form-control {
  padding: 10px 15px;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -oz-border-radius: 3px !important;
  border-radius: 3px !important;
}
.form-control:hover,
.form-control:focus {
  border-color: #f39200;
}
.btn.btn-theme {
  color: #fff;
  padding: 10px 15px;
  background-color: #f39200;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -oz-border-radius: 3px !important;
  border-radius: 3px !important;
}
.btn.btn-theme:hover,
.btn.btn-theme:active,
.btn.btn-theme:focus {
  background-color: #da8300;
}
.alert-warning {
  color: #c27070;
  background-color: #ffffff;
}
.alert-success {
  color: #70c270;
  background-color: #ffffff;
}
.alert {
  border: none !important;
}
.req {
  color: #c27070;
}
/**
 * 
 * Start
 *
 */
.imc-logo-footer img {
  display: block;
  margin: 20px auto;
}
#badge-imc {
  position: fixed;
  right: 0;
  top: 200px;
  z-index: 9999;
  padding: 10px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-color: rgba(255, 255, 255, 0.7);
}
#badge-imc a {
  display: block;
  margin-bottom: 30px;
}
#badge-imc a:last-of-type {
  margin-bottom: 0px;
}
#badge-imc a img {
  max-width: 150px;
}
#badge-imc:hover {
  background-color: #ffffff;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media all and (max-width: 768px) {
  #badge-imc {
    display: none;
  }
}
a {
  color: #f39200;
}
a:hover {
  color: #8d5500;
}
body {
  font-family: 'Open Sans', sans-serif;
  color: #666666;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333333;
  font-weight: 600;
  margin-bottom: 20px;
}
.container {
  max-width: 1100px;
}
@media (max-width: 768px) {
  .nopad-tablet {
    padding: 0;
  }
}
.logo img {
  height: 80px;
}
.logo svg {
  height: 80px;
}
.navbar-custom {
  margin: 0 auto;
  background-color: #ffffff;
}
@media all and (max-width: 576px) {
  .navbar-custom {
    padding: 0;
  }
}
.navbar-custom .navbar-nav > .menu-item {
  padding: 35px 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.navbar-custom .navbar-nav > .menu-item a {
  color: #333333;
  text-transform: uppercase;
  font-size: .83em;
  font-weight: 700;
}
.navbar-custom .navbar-nav .sub-menu > li > a {
  color: #333333;
  text-transform: none;
  font-size: .88em;
}
.navbar-custom .navbar-nav .sub-menu > li:hover a {
  color: #f39200;
}
.navbar-custom .navbar-nav .sub-menu > li > .sub-menu {
  left: 99%;
  right: 0px;
  top: 0px;
  transform: none;
}
.navbar-fixed {
  width: 100%;
  position: fixed;
}
.navbar-fixed .navbar-nav > .menu-item {
  padding: 10px 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#mobile-menu > ul > li > .sub-menu > li > .sub-menu {
  display: block !important;
  list-style: none;
  padding: 5px 10px 15px 40px;
}
#mobile-menu > ul > li > .sub-menu > li > .sub-menu > li {
  padding: 3px 0;
}
#mobile-menu > ul > li > .sub-menu > li > .sub-menu > li a {
  color: #333333;
}
@keyframes heroZoom {
  from {
    opacity: 0;
    transform: translateY(30px) scale(1.05);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes galleryZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}
.home .hero-bg {
  min-height: 700px;
}
@media (max-width: 576px) {
  .home .hero-bg {
    min-height: 230px;
  }
}
.hero-bg {
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.hero-bg .hero-bg_img {
  background-size: cover;
  background-position: center center;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  -webkit-transition: 0.2s easein 0.2s ease-in-out;
  -moz-transition: 0.2s easein 0.2s ease-in-out;
  -oz-transition: 0.2s easein 0.2s ease-in-out;
  transition: 0.2s easein 0.2s ease-in-out;
  animation: heroZoom .3s linear;
}
@media (max-width: 576px) {
  .hero-bg {
    min-height: 230px;
  }
}
.infobox {
  background: #ffffff;
  z-index: 3;
  position: relative;
}
@media (max-width: 768px) {
  .infobox {
    margin-top: 0px;
  }
}
.infobox .infobox-wrapper .box {
  padding: 30px 50px;
  position: relative;
}
@media (max-width: 768px) {
  .infobox .infobox-wrapper .box {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
  }
}
.infobox .infobox-wrapper .box:before {
  content: '';
  position: absolute;
  height: calc(100% - 40%);
  top: 20%;
  right: 0;
  width: 1px;
  background-color: #f39200;
  opacity: .3;
}
@media (max-width: 768px) {
  .infobox .infobox-wrapper .box:before {
    content: none;
  }
}
.infobox .infobox-wrapper .box > i {
  font-size: 2.5em;
  color: #f39200;
}
.infobox .infobox-wrapper .box .headline {
  display: block;
  color: #333333;
  font-weight: 600;
  margin: 20px 0px 20px 0px;
}
.infobox .infobox-wrapper .box .text {
  font-size: .88em;
}
.infobox .infobox-wrapper .box .btn-icon {
  margin: 10px 0px;
  display: block;
}
@media (max-width: 768px) {
  .infobox .infobox-wrapper .box .btn-icon {
    text-align: left;
    display: inline-block;
  }
}
.infobox .infobox-wrapper .box .btn-icon:hover {
  cursor: pointer;
}
.infobox .infobox-wrapper .box table {
  width: 100%;
  font-size: .88em;
}
.infobox .infobox-wrapper .box table td:nth-child(even) {
  text-align: right;
}
@media (max-width: 768px) {
  .infobox .infobox-wrapper .box table {
    max-width: 300px;
    margin: 0 auto;
  }
  .infobox .infobox-wrapper .box table td:nth-child(odd) {
    text-align: left;
  }
}
.infobox .infobox-wrapper .box .note {
  font-size: .67em;
  font-weight: 500;
  line-height: 1.7em;
  display: inline-block;
  margin: 20px auto 10px auto;
}
.infobox .infobox-wrapper .mid .btn-grey {
  margin: 10px auto;
}
.infobox .infobox-wrapper .right:before,
.infobox .infobox-wrapper .mid:before {
  content: none;
}
.btn-icon {
  background-color: #f39200;
  display: inline-block;
  width: 200px;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn-icon span {
  color: #ffffff;
  padding: 10px 15px;
  text-align: center;
  display: inline-block;
  width: 80%;
  font-size: .88em;
  font-weight: 600;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn-icon i {
  color: #ffffff;
  display: inline-block;
  padding: 0 10px;
  background-color: #ffa927;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 20%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn-icon i::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn-icon:hover {
  background-color: #ffa927;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn-icon:hover i {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn-icon:hover span {
  width: 100% !important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn-grey {
  font-size: .88em;
  padding: 10px 15px;
  background-color: #f2f2f2;
  color: #999999;
  font-weight: 600;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
}
.btn-grey:hover {
  color: #ffffff;
  background-color: #f39200;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.modul {
  margin: 80px auto;
}
.modul-text-bild > .row {
  align-items: center;
}
@media (max-width: 768px) {
  .modul-text-bild .content {
    margin: 30px auto;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .modul-text-bild .btn-icon {
    margin: 0 auto;
    display: block;
  }
}
.page-template-default article,
.blog article,
.post-template-default article {
  margin: 80px auto;
  position: relative;
}
.page-template-default article .post-title,
.blog article .post-title,
.post-template-default article .post-title {
  background-color: #f39200;
  padding: 15px 30px;
  position: relative;
  display: inline-block;
  top: -20px;
  left: 30px;
  min-width: 170px;
}
.page-template-default article .post-title h1,
.blog article .post-title h1,
.post-template-default article .post-title h1,
.page-template-default article .post-title h2,
.blog article .post-title h2,
.post-template-default article .post-title h2 {
  color: #ffffff;
  margin: 0;
  font-size: 1.1em;
  text-transform: uppercase;
}
.page-template-default article .post-title h1 a,
.blog article .post-title h1 a,
.post-template-default article .post-title h1 a,
.page-template-default article .post-title h2 a,
.blog article .post-title h2 a,
.post-template-default article .post-title h2 a {
  color: #ffffff;
}
.page-template-default article .post-content,
.blog article .post-content,
.post-template-default article .post-content {
  padding: 60px 60px 30px 60px;
  background: #ffffff;
  position: relative;
  border-left: 2px solid #f39200;
}
.page-template-default article .post-content h2,
.blog article .post-content h2,
.post-template-default article .post-content h2,
.page-template-default article .post-content h3,
.blog article .post-content h3,
.post-template-default article .post-content h3,
.page-template-default article .post-content h4,
.blog article .post-content h4,
.post-template-default article .post-content h4,
.page-template-default article .post-content h5,
.blog article .post-content h5,
.post-template-default article .post-content h5,
.page-template-default article .post-content h6,
.blog article .post-content h6,
.post-template-default article .post-content h6 {
  font-size: 1.3em;
  margin: 50px 0 25px 0;
}
.page-template-default article .post-content strong,
.blog article .post-content strong,
.post-template-default article .post-content strong {
  font-size: 1em;
  color: #333333;
  font-weight: 700;
}
@media (max-width: 576px) {
  .page-template-default article .post-content,
  .blog article .post-content,
  .post-template-default article .post-content {
    padding: 60px 10px 30px 30px;
  }
}
.page-template-default article .post-content img,
.blog article .post-content img,
.post-template-default article .post-content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}
.page-template-default article .post-content .wp-caption,
.blog article .post-content .wp-caption,
.post-template-default article .post-content .wp-caption {
  max-width: 100%;
}
.page-template-default article .post-content .wp-caption-text,
.blog article .post-content .wp-caption-text,
.post-template-default article .post-content .wp-caption-text {
  font-size: .88em;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 40px;
}
.page-template-default article .post-content blockquote,
.blog article .post-content blockquote,
.post-template-default article .post-content blockquote {
  font-size: 1.3em;
  position: relative;
  padding: 90px 20px 20px 20px;
  background-color: #fffcf8;
}
.page-template-default article .post-content blockquote p:last-of-type,
.blog article .post-content blockquote p:last-of-type,
.post-template-default article .post-content blockquote p:last-of-type {
  font-style: italic;
  font-size: .68em;
}
.page-template-default article .post-content blockquote:before,
.blog article .post-content blockquote:before,
.post-template-default article .post-content blockquote:before {
  content: '\ea02';
  position: absolute;
  font-family: entypo;
  font-size: 1.5em;
  line-height: 1.5em;
  text-align: center;
  left: 0px;
  right: 0;
  margin: 0 auto;
  top: 10px;
  color: #f39200;
  padding: 8px;
  -webkit-border-radius: 100% !important;
  -moz-border-radius: 100% !important;
  -oz-border-radius: 100% !important;
  border-radius: 100% !important;
  background-color: #ffffff;
  display: inline-block;
  width: 60px;
  height: 60px;
  border: 2px solid #f39200;
}
@media (max-width: 576px) {
  .page-template-default article .post-content blockquote,
  .blog article .post-content blockquote,
  .post-template-default article .post-content blockquote {
    font-size: 1.1em;
    padding: 90px 20px 20px 20px;
  }
  .page-template-default article .post-content blockquote:before,
  .blog article .post-content blockquote:before,
  .post-template-default article .post-content blockquote:before {
    font-size: 1.5em;
    top: 10px;
  }
}
.img-aside {
  position: absolute;
  right: -35%;
  top: 20px;
}
@media (max-width: 768px) {
  .img-aside {
    position: initial;
    right: initial;
    top: initial;
  }
}
.post-table-of-content {
  padding: 40px;
  background-color: #fffcf8;
  display: inline-block;
  margin: 30px 0px;
}
.post-table-of-content > span {
  margin-bottom: 25px;
  display: block;
  font-weight: 500;
  font-size: .88em;
}
.post-table-of-content ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.post-table-of-content ol li {
  counter-increment: item;
  margin-bottom: 10px;
  position: relative;
}
.post-table-of-content ol li:last-of-type {
  margin-bottom: 0;
}
.post-table-of-content ol li :before {
  margin-right: 20px;
  content: counter(item);
  background: #f39200;
  color: #ffffff;
  display: inline-block;
  text-align: center;
  width: 20px;
  height: 20px;
  line-height: 1.8;
  font-size: .7em;
  position: relative;
  top: -3px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.post-table-of-content ol li :after {
  content: '\e924';
  position: absolute;
  left: 2px;
  top: 0px;
  font-family: 'entypo';
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transform: translate(0px, -16px);
  -webkit-transform: translate(0px, -16px);
  -moz-transform: translate(0px, -16px);
  -o-transform: translate(0px, -16px);
  -ms-transform: translate(0px, -16px);
}
.post-table-of-content ol li:hover :before {
  opacity: 0;
  transform: translate(0px, 16px);
  -webkit-transform: translate(0px, 16px);
  -moz-transform: translate(0px, 16px);
  -o-transform: translate(0px, 16px);
  -ms-transform: translate(0px, 16px);
}
.post-table-of-content ol li:hover :after {
  opacity: 0;
  transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  opacity: 1;
  color: #f39200;
}
.vita {
  padding: 80px 15px;
}
@media (max-width: 576px) {
  .vita {
    padding: 40px 15px;
  }
}
.vita h1 {
  background-color: #f39200;
  display: inline-block;
  padding: 15px 30px;
  color: #ffffff;
  font-size: 1.1em;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .vita h1 {
    text-align: center;
    display: block;
  }
}
.vita .vita-meta > span {
  padding: 10px 30px;
  display: block;
}
@media (max-width: 576px) {
  .vita .vita-meta > span {
    text-align: center;
  }
}
.vita .vita-meta .vita-meta_text {
  margin: 10px 00px 10px 0px;
}
@media (max-width: 576px) {
  .vita .vita-meta .vita-meta_text {
    text-align: center;
  }
}
.vita .vita-meta .vita-meta_links {
  list-style: none;
  padding-left: 25px;
}
.vita .vita-meta .vita-meta_links li {
  position: relative;
  margin: 7px 0;
}
.vita .vita-meta .vita-meta_links li:before {
  position: absolute;
  content: '';
  background: #f39200;
  width: 6px;
  height: 6px;
  left: -15px;
  top: 10px;
}
.vita .vita-meta .vita-meta_links li a {
  color: #333333;
  font-weight: 600;
  font-size: .88em;
}
.vita .vita-meta .vita-meta_hobbies strong {
  color: #333333;
  font-weight: 600;
}
.vita article {
  margin: 80px auto;
  position: relative;
}
.vita article .post-title {
  background-color: #fafafa;
  padding: 15px 30px;
  position: absolute;
  top: -20px;
  left: 30px;
  min-width: 170px;
}
.vita article .post-title h2 {
  color: #333333;
  margin: 0;
  font-size: 1.1em;
  text-transform: uppercase;
}
.vita article .post-content {
  padding: 60px 60px 30px 60px;
  background: #ffffff;
  border-left: 2px solid #f39200;
}
@media (max-width: 576px) {
  .vita article .post-content {
    padding: 60px 10px 30px 30px;
  }
}
.vita article .post-content .milestone span {
  display: block;
  position: relative;
  font-weight: 600;
  color: #333333;
}
.vita article .post-content .milestone span:before,
.vita article .post-content .milestone span:after {
  content: '';
  background-color: #f39200;
  position: absolute;
}
.vita article .post-content .milestone span:before {
  width: 30px;
  height: 2px;
  left: -60px;
  top: 10px;
}
@media (max-width: 576px) {
  .vita article .post-content .milestone span:before {
    content: none;
  }
}
.vita article .post-content .milestone span:after {
  width: 12px;
  height: 12px;
  left: -32px;
  top: 5px;
}
@media (max-width: 576px) {
  .vita article .post-content .milestone span:after {
    left: -36px;
  }
}
.page-template-page-tabbed article {
  margin: 80px auto;
  position: relative;
}
.page-template-page-tabbed article .post-title {
  background-color: #f39200;
  padding: 15px 30px;
  position: absolute;
  top: -20px;
  left: 30px;
  min-width: 170px;
}
.page-template-page-tabbed article .post-title h1 {
  color: #ffffff;
  margin: 0;
  font-size: 1.1em;
  text-transform: uppercase;
}
.page-template-page-tabbed article .post-content {
  padding: 60px 60px 30px 60px;
  background: #fafafa;
}
@media (max-width: 576px) {
  .page-template-page-tabbed article .post-content {
    padding: 60px 10px 30px 30px;
  }
}
.page-template-page-tabbed article .post-content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}
.page-template-page-tabbed .owl-dots {
  position: absolute;
  top: 100px;
  right: -255px;
  max-width: 160px;
  width: 160px;
}
.page-template-page-tabbed .owl-dots .owl-dot {
  display: block;
  position: relative;
  margin: 0 0 7px 0;
}
.page-template-page-tabbed .owl-dots .owl-dot p {
  margin: 0;
  font-weight: 700;
  text-align: left;
  font-size: .88em;
}
.page-template-page-tabbed .owl-dots .owl-dot:before {
  width: 50px;
  height: 1px;
  content: '';
  position: absolute;
  top: 10px;
  left: -60px;
  background-color: #e5e5e5;
}
.page-template-page-tabbed .owl-dots .owl-dot:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 100% !important;
  -moz-border-radius: 100% !important;
  -oz-border-radius: 100% !important;
  border-radius: 100% !important;
  left: -70px;
  top: 6px;
  background-color: #e5e5e5;
}
.page-template-page-tabbed .owl-dots .active:after {
  background-color: #f39200;
}
.page-template-page-tabbed .owl-dots .active:before {
  background-color: #f39200;
}
.page-template-default article,
.page-template-page-tabbed article {
  /*margin-top:-100px;*/
}
.doc-card {
  position: relative;
}
@media (max-width: 768px) {
  .doc-card {
    max-width: 400px;
    margin: 0 auto;
  }
}
.doc-card img {
  max-width: 300px;
}
@media (max-width: 940px) {
  .doc-card img {
    max-width: 100%;
  }
}
.doc-card .box {
  padding: 20px 30px;
  background: #ffffff;
  position: relative;
  right: -25px;
  max-width: 300px;
  top: -40px;
  border-top: 3px solid #f39200;
}
@media (max-width: 768px) {
  .doc-card .box {
    max-width: 100%;
    position: relative;
    right: initial;
  }
}
.doc-card .box h1,
.doc-card .box h2 {
  margin-top: 0px;
  font-size: .98em;
  margin-bottom: 5px;
}
.doc-card .box > span {
  font-size: .88em;
  display: block;
  margin-bottom: 15px;
  font-style: italic;
}
.doc-card .box .btn-icon {
  width: 130px;
  position: absolute;
  top: -32px;
  right: 0px;
}
.doc-card .box .btn-icon span {
  width: 60%;
  padding: 5px 15px;
}
.doc-card .box .btn-icon i {
  width: 40%;
}
.employee-card {
  margin: 20px 0;
}
@media (max-width: 768px) {
  .employee-card {
    text-align: center;
  }
}
.employee-card img {
  max-width: 200px;
  margin-bottom: 20px;
}
.employee-card span {
  display: block;
  font-weight: 600;
  font-size: 1em;
  color: #333333;
}
.employee-card p {
  font-size: .88em;
  max-width: 180px;
}
@media (max-width: 768px) {
  .employee-card p {
    max-width: initial;
  }
}
.team {
  padding: 80px 15px;
}
.employees {
  margin: 80px auto;
}
.modul-review {
  background-color: #fafafa;
  padding: 80px 0px;
}
.grw-widget-title {
  text-align: center;
}
.google-reviews-widget {
  width: 100% !important;
  display: block !important;
  font-family: 'Open Sans', sans-serif !important;
}
.google-reviews-widget .wp-gr .wp-google-list .wp-google-place .wp-google-left {
  display: none !important;
}
.google-reviews-widget .wp-gr .wp-google-list .wp-google-place .wp-google-right {
  text-align: center !important;
  margin-bottom: 80px !important;
  display: none !important;
  width: 100% !important;
}
.google-reviews-widget .wp-gr .wp-google-list .wp-google-content-inner .wp-google-reviews {
  display: flex !important;
  flex-wrap: wrap !important;
  flex-direction: row !important
					width: 100% !important;
}
.google-reviews-widget .wp-gr .wp-google-list .wp-google-content-inner .wp-google-reviews .wp-google-review {
  position: relative !important;
  padding-top: 50px !important;
  margin-top: 80px !important;
}
@media (min-width: 768px) {
  .google-reviews-widget .wp-gr .wp-google-list .wp-google-content-inner .wp-google-reviews .wp-google-review {
    flex: 1 33% !important;
  }
}
@media (max-width: 768px) {
  .google-reviews-widget .wp-gr .wp-google-list .wp-google-content-inner .wp-google-reviews .wp-google-review {
    flex: 1 50% !important;
  }
}
@media (max-width: 576px) {
  .google-reviews-widget .wp-gr .wp-google-list .wp-google-content-inner .wp-google-reviews .wp-google-review {
    flex: 1 100% !important;
  }
}
.google-reviews-widget .wp-gr .wp-google-list .wp-google-content-inner .wp-google-reviews .wp-google-review .wp-google-left {
  position: absolute !important;
  top: -15px !important;
  left: 30px !important;
}
.google-reviews-widget .wp-gr .wp-google-list .wp-google-content-inner .wp-google-reviews .wp-google-review .wp-google-left > img {
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  -oz-border-radius: 0px !important;
  border-radius: 0px !important;
}
.google-reviews-widget .wp-gr .wp-google-list .wp-google-content-inner .wp-google-reviews .wp-google-review .wp-google-right {
  padding-left: 30px !important;
  height: 90px !important;
  border-left: 2px solid #f39200 !important;
}
.google-reviews-widget .wp-gr .wp-google-list .wp-google-content-inner .wp-google-reviews .wp-google-review .wp-google-right > a {
  font-family: 'Open Sans', sans-serif !important;
  color: #333333 !important;
}
.google-reviews-widget .wp-gr .wp-google-list .wp-google-content-inner .wp-google-reviews .wp-google-review .wp-google-right .wp-google-time {
  font-family: 'Open Sans', sans-serif !important;
  color: #666666 !important;
}
.google-reviews-widget .wp-gr .wp-google-list .wp-google-content-inner .wp-google-reviews .wp-google-review .wp-google-right .wp-google-feedback .wp-google-stars .wp-stars .wp-star svg path {
  fill: #f39200 !important;
}
.google-reviews-widget .wp-gr .wp-google-list .wp-google-content-inner .wp-google-reviews .wp-google-review .wp-google-right .wp-google-feedback .wp-google-text {
  font-family: 'Open Sans', sans-serif !important;
  color: #666666 !important;
}
.google-reviews-widget .wp-gr .wp-google-list .wp-google-content-inner .wp-google-reviews .wp-google-review .wp-google-right .wp-google-feedback .wp-google-text .tt {
  display: none !important;
}
.google-reviews-widget .wp-gr .wp-google-list .wp-google-content-inner .wp-google-reviews .wp-google-review .wp-google-right .wp-google-feedback .wp-google-text .ttk {
  color: #f39200 !important;
  margin-top: 10px !important;
}
.google-reviews-widget .wp-gr .wp-google-list .wp-google-content-inner .wp-google-reviews .wp-google-review .wp-google-right .wp-google-feedback .wp-google-text .ttk:hover {
  cursor: pointer !important;
}
.google-reviews-widget .wp-gr .wp-google-list .wp-google-content-inner .wp-google-reviews .wp-google-review .wp-google-right .wp-google-feedback .wp-google-text .ttn {
  margin-top: 10px !important;
  color: #666666 !important;
}
.google-reviews-widget .wp-gr .wp-google-list .wp-google-content-inner .wp-google-reviews .wp-google-review .wp-google-right .wp-google-feedback .wp-google-text.active .tt {
  position: absolute !important;
  z-index: 9999 !important;
  top: calc(110% + 10px) !important;
  background-color: #ffffff !important;
  padding: 40px 20px 20px 20px!important;
  display: block !important;
  border: 1px solid #e5e5e5 !important;
}
.google-reviews-widget .wp-gr .wp-google-list .wp-google-content-inner .wp-google-reviews .wp-google-review .wp-google-right .wp-google-feedback .wp-google-text.active .tt:before {
  width: 0 !important;
  height: 0 !important;
  border-style: solid !important;
  border-width: 0 10px 15px 10px!important;
  border-color: transparent transparent #fff transparent!important;
  content: '' !important;
  position: absolute !important;
  top: -15px !important;
  z-index: 9999 !important;
}
.google-reviews-widget .wp-gr .wp-google-list .wp-google-content-inner .wp-google-reviews .wp-google-review .wp-google-right .wp-google-feedback .wp-google-text.active .tt:after {
  width: 0 !important;
  height: 0 !important;
  border-style: solid !important;
  border-width: 0 11px 16px 11px!important;
  border-color: transparent transparent #e5e5e5 transparent !important;
  content: '' !important;
  position: absolute !important;
  top: -16px !important;
  left: 19px !important;
  z-index: 9998 !important;
}
.google-reviews-widget .wp-gr .wp-google-list .wp-google-content-inner .wp-google-reviews .wp-google-review .wp-google-right .wp-google-feedback .wp-google-text.active .ttk {
  position: absolute !important;
  z-index: 99999999 !important;
  margin-top: 0px !important;
  top: calc(110% + 20px) !important;
  right: 10px !important;
}
.google-reviews-widget .wp-gr .wp-google-list .wp-google-content-inner .wp-google-reviews .wp-google-review .wp-google-right .wp-google-feedback .wp-google-text.active .ttk:hover {
  cursor: pointer !important;
}
.google-reviews-widget .wp-gr .wp-google-list .wp-google-content-inner .wp-google-url {
  display: block !important;
  margin: 80px auto 40px auto!important;
  text-align: center !important;
  max-width: 230px !important;
  font-size: 14.08px !important;
  padding: 10px 15px!important;
  background-color: #f2f2f2 !important;
  color: #999999 !important;
  font-weight: 600 !important;
  -webkit-transition: all 0.2s ease-in-out !important;
  -moz-transition: all 0.2s ease-in-out !important;
  -oz-transition: all 0.2s ease-in-out !important;
  transition: all 0.2s ease-in-out !important;
}
.google-reviews-widget .wp-gr .wp-google-list .wp-google-content-inner .wp-google-url:hover {
  color: #ffffff !important;
  background-color: #f39200 !important;
  -webkit-transition: all 0.2s ease-in-out !important;
  -moz-transition: all 0.2s ease-in-out !important;
  -oz-transition: all 0.2s ease-in-out !important;
  transition: all 0.2s ease-in-out !important;
}
/**
 * Remove Margin From Modules Container
 */
.no-modules-margin {
  margin: -100px auto 0px;
}
/**
 * Modules
 */
.modules {
  margin: 80px auto;
}
.modules .post-title {
  text-align: center;
  background-color: #f39200;
  color: #ffffff;
  padding: 15px 30px;
  display: inline-block;
  font-size: .78em;
  text-transform: uppercase;
}
.modules .module-none {
  margin: -100px auto 0px;
  position: relative;
  min-height: 150px;
  border-style: dashed;
  border-width: 2px;
  border-color: #e5e5e5;
}
.modules .module-none p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modules .module-gallery {
  margin: -100px auto 0px;
}
.modules .module-logos {
  padding: 30px 0px 20px 0px;
  text-align: center;
}
.modules .module-logos h2,
.modules .module-logos h1 {
  text-align: center;
  background-color: #e5e5e5;
  color: #333333;
  padding: 15px 30px;
  display: inline-block;
  font-size: .78em;
  text-transform: uppercase;
  margin: 30px auto 40px auto;
}
.modules .module-logos .item {
  display: block;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.modules .module-logos .item img {
  margin: 20px auto;
  position: relative;
  filter: grayscale(100);
  opacity: .5;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.modules .module-logos .item img:hover {
  filter: grayscale(0);
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.modules .module-logos .col-md-3:nth-of-type(odd) .item:after {
  content: '';
  width: 1px;
  height: calc(100% - 40px);
  background-color: #ffe6c0;
  position: absolute;
  right: -15px;
  top: 20px;
}
@media (max-width: 768px) {
  .modules .module-logos .col-md-3:nth-of-type(odd) .item:after {
    content: none;
  }
}
.modules .module-logos .col-md-3:nth-of-type(odd) .item:before {
  content: '';
  width: 1px;
  height: calc(100% - 40px);
  background-color: #ffe6c0;
  position: absolute;
  left: -15px;
  top: 20px;
}
.home .modules {
  margin: 80px auto 0px auto;
}
.gallery .gallery-item {
  display: block;
  margin: 15px auto;
  overflow: hidden;
}
.gallery .gallery-item .gallery-item_img {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 350px;
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .gallery .gallery-item .gallery-item_img {
    min-height: 150px;
  }
}
@media (max-width: 576px) {
  .gallery .gallery-item .gallery-item_img {
    min-height: 80px;
  }
}
.gallery .gallery-item .gallery-item_shadow {
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.gallery .gallery-item .gallery-item_shadow i {
  color: #f39200;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 100%);
  opacity: 0;
  font-size: 2.5em;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding: 10px;
  background: #ffffff;
  -webkit-border-radius: 100% !important;
  -moz-border-radius: 100% !important;
  -oz-border-radius: 100% !important;
  border-radius: 100% !important;
  line-height: 1;
}
.gallery .gallery-item:hover {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.gallery .gallery-item:hover .gallery-item_shadow {
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.gallery .gallery-item:hover .gallery-item_shadow i {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.gallery .gallery-item:hover .gallery-item_img {
  animation: galleryZoom .3s linear;
  transform: scale(1.05);
}
/**
 * Featherlight Gallery &
 * Lightbox
 */
.error404 .jumbotron {
  background: #ffffff;
  text-align: center;
  height: 90vh;
}
.error404 .jumbotron .btn {
  background-color: #f39200;
  border: none;
}
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select,
.wpcf7-form .wpcf7-checkbox {
  border: 2px solid #e5e5e5;
  padding: 10px;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -oz-border-radius: 3px !important;
  border-radius: 3px !important;
  width: 100%;
}
.wpcf7-form label {
  color: #333333;
  font-weight: 600;
  width: 100%;
}
.wpcf7-form input[type="submit"] {
  background-color: #f39200;
  color: #ffffff;
  border-width: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.wpcf7-form input[type="submit"]:hover {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  background-color: #ffa927;
}
.wpcf7-form .wpcf7-checkbox {
  display: block;
}
.wpcf7-form .wpcf7-checkbox input[type="checkbox"] {
  width: 40px;
}
:focus {
  outline: #f39200 auto 5px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.contact-form {
  padding: 100px 15px;
}
.gmap {
  min-height: 500px;
  width: 100%;
  background: #fafafa;
}
.goup {
  display: inline-block;
  background-color: #f39200;
  position: relative;
  width: 50px;
  height: 50px;
  bottom: 0px;
  left: 60px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.goup i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  color: #ffffff;
}
.goup:hover {
  background-color: #ffa927;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .goup {
    left: 30px;
  }
}
.credits {
  text-align: left;
  font-size: .8em;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 10px auto 0px auto;
  max-width: 700px;
}
@media (max-width: 768px) {
  .credits {
    text-align: center;
  }
}
.credits a {
  color: #e2492e;
}
.ticker {
  overflow: hidden;
  background: #f39200;
  padding: 10px 0;
}
.ticker .ticker-container {
  animation-name: ticker;
  animation-duration: 35s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .ticker .ticker-container {
    animation-name: ticker-mobile;
  }
}
.ticker span {
  white-space: nowrap;
  display: inline-block;
  color: #ffffff;
  font-weight: 600;
}
@-webkit-keyframes ticker-mobile {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateX(-250%);
    opacity: 0;
  }
}
@-moz-keyframes ticker-mobile {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateX(-250%);
    opacity: 0;
  }
}
@-o-keyframes ticker-mobile {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateX(-250%);
    opacity: 0;
  }
}
@keyframes ticker-mobile {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateX(-250%);
    opacity: 0;
  }
}
@-webkit-keyframes ticker {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateX(0%);
    opacity: 0;
  }
}
@-moz-keyframes ticker {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateX(0%);
    opacity: 0;
  }
}
@-o-keyframes ticker {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateX(0%);
    opacity: 0;
  }
}
@keyframes ticker {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translateX(0%);
    opacity: 0;
  }
}
.module-frontpage-title {
  text-align: center;
}
.module-frontpage-title span {
  display: inline-block;
  text-align: center;
  background-color: #f39200;
  color: #ffffff;
  font-size: 1.4em;
  padding: 10px 20px;
}
.module-rating label {
  display: block;
  font-weight: 600;
  font-size: .88em;
  margin: 15px 0 0 0;
  color: #333333;
}
.module-rating .stars label {
  opacity: .7;
  color: #f39200;
  display: inline-block;
  margin: 0 0 20px 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.module-rating .stars label i {
  font-size: 3em;
}
.module-rating .stars label:hover {
  opacity: 1;
  cursor: pointer;
}
.module-rating .stars input {
  opacity: 0;
  display: none;
  visibility: none;
}
.module-rating .stars input[type="radio"]:checked ~ label {
  opacity: .2;
}
.module-rating .stars input[type="radio"]:checked ~ label:hover {
  color: #f39200;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.module-rating .stars > span {
  display: block;
  font-weight: 600;
  font-size: .88em;
  color: #333333;
}
.module-rating .rating-report textarea {
  min-height: 200px;
}
.module-rating input[type="submit"] {
  margin: 37px 0 0 0;
  font-weight: 600;
}
.module-rating input[type="submit"]:hover {
  cursor: pointer;
}
.module-rating .alert {
  display: block;
  font-weight: 500 !important;
  font-size: .88em;
  font-style: italic;
}
.module-rating .rating-success span {
  text-align: center;
  color: #f39200;
  display: block;
  font-size: 1.4em;
  padding: 100px 0;
}
.modul-rating-entries h2 {
  font-weight: 700;
  padding: 20px;
  text-align: center;
}
.modul-rating-entries .stars ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.modul-rating-entries .stars ul li {
  display: inline-block;
}
.modul-rating-entries .stars ul li i {
  color: #e9e9e9;
}
.modul-rating-entries .stars ul li.active i {
  color: #f39200;
}
.modul-rating-entries .modul-rating-entries_result {
  background-color: #fafafa;
  padding: 20px;
}
.modul-rating-entries .modul-rating-entries_result .modul-rating-entries_result_meta {
  float: left;
  width: 60%;
}
.modul-rating-entries .modul-rating-entries_result .modul-rating-entries_result_meta > span {
  display: block;
}
.modul-rating-entries .modul-rating-entries_result .modul-rating-entries_result_meta > span:first-of-type {
  color: #333333;
  font-size: 1.2em;
  font-weight: 600;
}
.modul-rating-entries .modul-rating-entries_result .modul-rating-entries_result_meta > span:last-of-type {
  color: #f39200;
}
@media (max-width: 768px) {
  .modul-rating-entries .modul-rating-entries_result .modul-rating-entries_result_meta {
    float: none;
    width: 100%;
  }
}
.modul-rating-entries .modul-rating-entries_result .stars {
  float: right;
  width: 40%;
}
.modul-rating-entries .modul-rating-entries_result .stars ul li i {
  font-size: 2em;
}
@media (max-width: 768px) {
  .modul-rating-entries .modul-rating-entries_result .stars {
    float: none;
    width: 100%;
  }
}
.modul-rating-entries .modul-rating-entries_result:after {
  display: table;
  clear: both;
  content: '';
}
.modul-rating-entries .modul-rating-entries_entry {
  padding: 20px 20px 40px 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}
.modul-rating-entries .modul-rating-entries_entry:last-of-type {
  border: none;
}
.modul-rating-entries .modul-rating-entries_entry .rater-name {
  color: #333333;
  font-size: 1.1em;
  font-weight: 600;
  margin: 10px 0 0px 0;
}
.modul-rating-entries .modul-rating-entries_entry .stars {
  margin: 0 0 10px 0;
}
.cta-emergency span {
  display: block;
}
.cta-emergency span:first-of-type {
  font-weight: 600;
  font-size: 2em;
}
@media (max-width: 768px) {
  .cta-emergency span:first-of-type {
    font-size: 1.3em;
  }
}
.cta-emergency span:first-of-type i {
  font-size: 1.3em;
  color: #f39200;
  margin-right: 7px;
}
.cta-emergency span:last-of-type {
  font-size: .88em;
  max-width: 300px;
  font-style: italic;
}
.cta-emergency a {
  display: inline-block;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 8px;
  font-size: 1.6em;
}
@media (max-width: 768px) {
  .cta-emergency a {
    font-size: 1.3em;
  }
}
.single-employee .item {
  display: block;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.single-employee .item img {
  margin: 20px auto;
  position: relative;
  filter: grayscale(100);
  opacity: .5;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.single-employee .item img:hover {
  filter: grayscale(0);
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -oz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.es-collapse h1:hover,
.es-collapse h2:hover,
.es-collapse h3:hover,
.es-collapse h4:hover,
.es-collapse h5:hover,
.es-collapse h6:hover {
  cursor: pointer;
}
.linked-slider .slide-link {
  display: block;
  position: relative;
  transition: .2s opacity;
}
.linked-slider .slide-link:hover {
  opacity: .7;
  transition: .2s opacity;
}
.linked-slider .slide-link:hover h2 {
  transform: translate(-50%, -50%);
  transition: .2s all;
}
.linked-slider .slide-link h2 {
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translate(-50%, 90%);
  background-color: #f39200;
  color: #ffffff;
  padding: 7px 15px;
  font-weight: 300;
  transition: .2s all;
  font-size: 2em;
}
@media all and (max-width: 768px) {
  .linked-slider .slide-link h2 {
    transform: translate(-50%, -50%);
    font-size: initial;
  }
}
/*STATICMAPHACK*/
@media (min-width: 769px) {
  .page-id-72 .md-11 {
    flex: 0 0 99% !important;
  }
}
