/*
 Theme Name: Offix
 Version: 1.3
 Text Domain: theme
 */
/* mobile menu - mn */
div#mn-trigger {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  position: fixed;
  z-index: 9999;
  top: 17px;
  left: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 5px;
  background: #0a66a3;
}
div#mn-trigger div#mn-icon {
  position: relative;
  width: 30px;
  height: 40px;
  cursor: pointer;
}
div#mn-trigger div#mn-icon .mn-line {
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  opacity: 1;
  border-radius: 9px;
  background: white;
}
div#mn-trigger div#mn-icon .mn-line:nth-child(1) {
  top: 7px;
}
div#mn-trigger div#mn-icon .mn-line:nth-child(2), div#mn-trigger div#mn-icon .mn-line:nth-child(3) {
  top: 18px;
}
div#mn-trigger div#mn-icon .mn-line:nth-child(4) {
  top: 29px;
}
div#mn-menu {
  -webkit-box-shadow: 2px 0 5px 2px rgba(0, 0, 0, .75);
  -moz-box-shadow: 2px 0 5px 2px rgba(0, 0, 0, .75);
  box-shadow: 2px 0 5px 2px rgba(0, 0, 0, .75);
  -webkit-transition: all 150ms ease;
  -moz-transition: all 150ms ease;
  -ms-transition: all 150ms ease;
  -o-transition: all 150ms ease;
  transition: all 150ms ease;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  padding: 20px;
  background: #0a66a3;
  -webkit-transform: translateX(250px);
  transform: translateX(250px);
}
div#mn-menu ul:not(.sub-menu) > li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
div#mn-menu ul:not(.sub-menu) > li:last-child {
  border-bottom: none;
}
div#mn-menu ul:not(.sub-menu) > li > a {
  font-size: 18px;
  display: block;
  color: #fff;
}
div#mn-menu ul:not(.sub-menu) > li.menu-item-has-children > a:after {
  font-family: 'FontAwesome';
  float: left;
  content: '\f107';
}
div#mn-menu ul:not(.sub-menu) ul.sub-menu {
  display: none;
}
div#mn-menu ul:not(.sub-menu) ul.sub-menu li a {
  font-size: 16px;
  display: block;
  padding: 5px 0;
  color: #fff;
}
div#mn-menu ul:not(.sub-menu) ul.sub-menu li a:first-child {
  margin-top: 10px;
}
div#mn-overlay {
  -webkit-transition: all 150ms ease;
  -moz-transition: all 150ms ease;
  -ms-transition: all 150ms ease;
  -o-transition: all 150ms ease;
  transition: all 150ms ease;
  opacity: 0;
}
body.mn-active {
  overflow: hidden;
}
body.mn-active #site-wrap {
  overflow: hidden;
}
body.mn-active div#mn-trigger div#mn-icon span:nth-child(1), body.mn-active div#mn-trigger div#mn-icon span:nth-child(4) {
  top: 16px;
  left: 50%;
  width: 0;
}
body.mn-active div#mn-trigger div#mn-icon span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
body.mn-active div#mn-trigger div#mn-icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
body.mn-active div#mn-menu {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
body.mn-active #mn-overlay {
  position: fixed;
  z-index: 9998;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: rgba(0, 0, 0, .7);
}
/* ==========================================================================
 Reset - http://meyerweb.com/eric/tools/css/reset/ 
 ========================================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
/* ==========================================================================
 Universal Box Sizing with Inheritance + Vendor Prefixes
 ========================================================================== */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
/* ==========================================================================
 Clearfix
 ========================================================================== */
.clearfix:before, .clearfix:after {
  display: table;
  content: ' ';
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1;
}
/* ==========================================================================
 Forms
 ========================================================================== */
input[type='button'], input[type='reset'], input[type='submit'], button {
  font-family: 'Open Sans Hebrew', serif;
  width: 100%;
  cursor: pointer;
  color: #fff;
  border: 1px solid #eee;
  background-color: #0a66a3;
  cursor: pointer;
}
button:hover, input[type='button']:hover, input[type='reset']:hover, input[type='submit']:hover {
  opacity: 0.9;
}
input[type='text'], input[type='email'], input[type='url'], input[type='password'], input[type='search'], input[type='number'], input[type='tel'], input[type='range'], input[type='date'], input[type='month'], input[type='week'], input[type='time'], input[type='datetime'], input[type='datetime-local'], input[type='color'], input[type='submit'], select, textarea {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: 'Open Sans Hebrew', serif;
  width: 100%;
  padding: 10px 15px;
  color: #000;
  border: 1px solid #eee;
}
input[type='submit'], button {
  color: #fff;
  font-family: 'Open Sans Hebrew', serif;
}
button {
  border: none;
}
::-webkit-input-placeholder {
  color: #000;
}
:-moz-placeholder {
  color: #000;
}
::-moz-placeholder {
  color: #000;
}
:-ms-input-placeholder {
  color: #000;
}
/* ==========================================================================
 Embeds
 ========================================================================== */
embed, iframe, object, img {
  max-width: 100%;
}
/* ==========================================================================
 Text Styles
 ========================================================================== */
em {
  font-style: italic;
}
strong {
  font-weight: bold;
}
/* ==========================================================================
 Layout
 ========================================================================== */
html {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 62.5%;
  overflow-x: hidden;
}
body {
  font-size: 16px;
  font-size: 1.6rem;
  direction: rtl;
  font-family: 'Open Sans Hebrew', serif;
  overflow-x: hidden;
  color: #626667;
  background-repeat: no-repeat;
  -webkit-appearance: none;
}
#site-wrap {
  position: relative;
  min-height: 100%;
}
.container {
  position: relative;
  width: 100%;
  max-width: 1170px;
  margin: auto;
}
.post-edit-link {
  position: absolute;
  z-index: 1;
}
/* ==========================================================================
 Helpers and Misc
 ========================================================================== */
.loader {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: auto;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.map_canvas {
  width: 300px;
  height: 200px;
}
.trans {
  -webkit-transition: all 150ms ease;
  transition: all 150ms ease;
}
.entry-image img, .post-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}
.mobile-only {
  display: none !important;
}
.desktop-only {
  display: block !important;
}
.fade-in {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  opacity: 0;
}
[type='submit'] {
  font-weight: bold;
}
/* ==========================================================================
 Titles
 ========================================================================== */
h1, h2, h3, h4, h5, .entry-title {
  font-weight: bold;
  display: block;
  margin-bottom: 20px;
  color: #0569ac;
}
h1 {
  font-size: 30px;
  font-size: 3rem;
}
h2 {
  font-size: 22px;
  font-size: 2.2rem;
}
h3 {
  font-size: 20px;
  font-size: 2rem;
}
h4 {
  font-size: 18px;
  font-size: 1.8rem;
}
h5 {
  font-size: 16px;
  font-size: 1.6rem;
}
.sprite, .icon {
  display: block;
  background-image: url(assets/img/sprite.png);
  background-repeat: no-repeat;
}
.icon {
  display: inline-block;
}
.icon-envelope {
  width: 25px;
  height: 19px;
  background-position: -5px -5px;
}
.icon-life-preserver {
  width: 26px;
  height: 26px;
  background-position: -40px -5px;
}
.icon-computer {
  width: 26px;
  height: 22px;
  background-position: -5px -41px;
}
.icon-arrow-up {
  width: 51px;
  height: 51px;
  background-position: -41px -41px;
}
.icon-dot {
  width: 15px;
  height: 15px;
  background-position: -76px -5px;
}
.icon-enlarge {
  width: 32px;
  height: 32px;
  background-position: -103px -5px;
}
/* ==========================================================================
 Alignments
 ========================================================================== */
.alignleft {
  display: inline;
  float: left;
  margin-right: 20px;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 20px;
}
.aligncenter {
  display: block;
  clear: both;
  margin-right: auto;
  margin-left: auto;
}
/* ==========================================================================
 Text Styles
 ========================================================================== */
.bold {
  font-weight: bold;
}
.italic {
  font-style: italic;
}
.underline {
  text-decoration: underline;
}
/* ==========================================================================
 Links
 ========================================================================== */
a {
  text-decoration: none;
  color: inherit;
}
/* ==========================================================================
 Entry Content
 ========================================================================== */
.entry-content {
  line-height: 23px;
}
.entry-content p, .entry-content ul, .entry-content ol {
  margin-bottom: 20px;
}
.entry-content ul, .entry-content ol {
  padding-right: 40px;
  list-style-position: outside;
}
.entry-content ul {
  list-style-type: disc;
}
.entry-content ol {
  list-style-type: decimal;
}
.entry-content a {
  color: #428bca;
}
.entry-content a:hover {
  text-decoration: underline;
}
.entry-content img {
  height: auto;
}
article > .entry-content {
  padding-left: 70px;
}
/* ==========================================================================
 Icons
 ========================================================================== */
.sprite {
  display: inline-block;
  /*background-image: url(assets/img/sprite.png);*/
  background-repeat: no-repeat;
}
/* ==========================================================================
 Skiplinks
 ========================================================================== */
.skiplinks a {
  font-weight: bold;
  position: absolute;
  top: -3em;
  color: #fff;
}
.skiplinks a:focus {
  font-size: 46px;
  font-size: 4.6rem;
  font-weight: bold;
  line-height: 150px;
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 75%;
  max-width: 550px;
  height: 150px;
  margin: auto;
  padding: 0 30px;
  text-align: center;
  background: rgba(0, 0, 0, .8);
}
/* ==========================================================================
 Header
 ========================================================================== */
.home .site-header {
  position: absolute;
  z-index: 5;
  width: 100%;
}
.site-header .header-top {
  padding: 8px 0;
  background-color: rgba(255, 255, 255, .81);
}
.site-header .site-logo {
  float: right;
}
.site-header .site-logo img {
  max-width: 100%;
}
.site-header .top-nav-wrap {
  float: left;
  margin-top: 18px;
}
.site-header .top-nav-wrap .top-nav ul li {
  float: right;
}
.site-header .top-nav-wrap .top-nav ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  height: 44px;
  margin-left: 8px;
  padding: 0 12px;
  color: #fff;
  background: #0a66a3;
}
.site-header .top-nav-wrap .top-nav ul li a img {
  margin-right: 0;
}
.site-header .top-nav-wrap .top-nav ul li a:hover {
  opacity: 0.85;
}
.site-header .top-nav-wrap .top-nav ul li:last-child a {
  margin-left: 0;
}
.site-header .top-nav-wrap .info {
  font-size: 22px;
  display: block;
  float: left;
  margin-top: 20px;
  color: #000;
}
#header-titles {
  height: 400px;
}
#header-titles .pagetitle-row {
  margin-top: 330px;
}
#header-titles .pagetitle-row .entry-title {
  margin-bottom: 0;
  color: #0569ac;
}
/* ==========================================================================
 Main Menu
 ========================================================================== */
.nav-row {
  background: #404040;
}
.nav-row #site-navigation ul:not(.sub-menu) > li {
  position: relative;
  float: right;
  margin-left: 35px;
}
.nav-row #site-navigation ul:not(.sub-menu) > li:last-child {
  margin-left: 0;
}
.nav-row #site-navigation ul:not(.sub-menu) > li > a {
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-transition: all 150ms ease;
  -moz-transition: all 150ms ease;
  -ms-transition: all 150ms ease;
  -o-transition: all 150ms ease;
  transition: all 150ms ease;
  font-weight: bold;
  display: block;
  padding: 16px 20px;
  color: #fff;
}
.nav-row #site-navigation ul:not(.sub-menu) > li.current-post-ancestor a, .nav-row #site-navigation ul:not(.sub-menu) > li.current-menu-parent a, .nav-row #site-navigation ul:not(.sub-menu) > li.current-menu-item a, .nav-row #site-navigation ul:not(.sub-menu) > li:hover a {
  background: #0a66a3;
}
.nav-row #site-navigation ul:not(.sub-menu) > li.current-post-ancestor:hover a, .nav-row #site-navigation ul:not(.sub-menu) > li.current-menu-parent:hover a, .nav-row #site-navigation ul:not(.sub-menu) > li.current-menu-item:hover a, .nav-row #site-navigation ul:not(.sub-menu) > li:hover:hover a {
  color: #fff;
}
.nav-row #site-navigation ul:not(.sub-menu) > li:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
}
.nav-row #site-navigation ul:not(.sub-menu) > li ul.sub-menu {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  position: absolute;
  z-index: 10;
  top: 100%;
  right: 0;
  visibility: hidden;
  width: 215px;
  margin: 0 auto;
  opacity: 0;
  border-top: 3px solid #a0ce4e;
  background: #edecec;
  box-shadow: 1px 1px 30px rgba(0, 0, 0, .06);
}
.nav-row #site-navigation ul:not(.sub-menu) > li ul.sub-menu li a {
  font-size: 13px;
  display: block;
  padding: 9px 20px;
  color: #fff;
  border-bottom: 1px solid #e3e2e3;
}
.nav-row #site-navigation ul:not(.sub-menu) > li ul.sub-menu li a:hover {
  color: #000;
  background: #eee;
}
.nav-row #site-navigation ul:not(.sub-menu) > li ul.sub-menu li.current-menu-item {
  background: #f5f5f5;
}
/* ==========================================================================
 Contact Forms
 ========================================================================== */
.wpcf7 .wpcf7-response-output {
  clear: both;
  margin: 0;
  padding: 0;
  border: none;
}
.wpcf7 .wpcf7-not-valid {
  border: 1px solid red !important;
}
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .wpcf7-validation-errors {
  color: red;
}
.wpcf7 .wpcf7-mail-sent-ok {
  font-weight: bold;
  padding: 15px;
  color: green;
  border: 2px solid green;
}
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 5px;
}
.wpcf7 input, .wpcf7 select, .wpcf7 textarea {
  padding: 10px;
}
/* ==========================================================================
 Footer
 ========================================================================== */
footer {
  line-height: 23px;
  margin-top: 60px;
  padding: 22px 0 90px;
  color: #fff;
  background: url(assets/img/bg-footer.jpg) no-repeat;
  background-size: cover;
}
footer .footer-widgets {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  position: relative;
}
footer .footer-widgets .widget .widget-title {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  display: block;
  margin-bottom: 15px;
  color: #fff;
}
footer .footer-widgets .widget:first-child {
  flex: 0 1 470px;
  -ms-flex: 0 1 470px;
  -webkit-box-flex: 0;
}
footer .footer-widgets .widget:nth-child(2), footer .footer-widgets .widget:nth-child(3) {
  flex: 0 1 195px;
  -ms-flex: 0 1 195px;
  -webkit-box-flex: 0;
}
footer .footer-widgets .widget:last-child img {
  float: left;
  margin-bottom: 10px;
}
footer .footer-widgets .widget_nav_menu ul li {
  margin-bottom: 10px;
}
footer .footer-widgets .widget_nav_menu ul li a {
  font-size: 14px;
  font-size: 1.4rem;
  text-decoration: underline;
}
footer .footer-widgets .widget_nav_menu ul li a:hover {
  opacity: 0.7;
}
footer .footer-widgets .widget_black_studio_tinymce a {
  display: block;
  margin-bottom: 10px;
}
/* ==========================================================================
 Sliders
 ========================================================================== */
.slider-wrap li .slide {
  position: relative;
}
/* ==========================================================================
 Home Slider
 ========================================================================== */
.slider-home-wrap {
  position: relative;
}
.slider-home-wrap .slide-bg {
  position: relative;
  z-index: -1;
  width: 100%;
  height: 770px;
  padding-top: 172px;
  background-position: center center;
  background-size: cover;
}
.slider-home-wrap *:focus {
  outline: none;
}
.slider-home-wrap .slider-in-wrap {
  position: absolute;
  top: 230px;
  right: 0;
  left: 0;
  margin: auto;
}
.slider-home-wrap .slider-in-wrap .slider-home .slide {
  position: relative;
}
.slider-home-wrap .slider-in-wrap .slider-home .slide .over-slider {
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 28px;
  width: 466px;
  height: 462px;
  padding: 30px 60px 0;
  text-align: center;
  color: #fff;
  background: url(assets/img/bg-overslider.png) no-repeat;
}
.slider-home-wrap .slider-in-wrap .slider-home .slide .over-slider .entry-text {
  overflow: hidden;
  height: 280px;
  margin-bottom: 24px;
}
.slider-home-wrap .slider-in-wrap .slider-home .slide .over-slider .entry-text .title {
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: bold;
  margin-bottom: 0;
  color: #f9a53d;
}
.slider-home-wrap .slider-in-wrap .slider-home .slide .over-slider .logo {
  position: relative;
  height: 86px;
  margin-bottom: 20px;
}
.slider-home-wrap .slider-in-wrap .slider-home .slide .over-slider .logo img {
  max-width: 135px;
  height: 100%;
  margin: auto;
}
.slider-home-wrap .slider-in-wrap .slider-home .slide .over-slider .logo-silver img {
  max-width: 125px;
  height: 54px;
  margin: auto;
}
.slider-home-wrap .slider-bottom-title {
  font-size: 47px;
  font-weight: normal;
  line-height: 1.3;
  position: relative;
  top: -1px;
  margin-bottom: 0;
  padding: 9px 0;
  text-align: center;
  color: #fff;
  background: url(assets/img/bg-slider-bottom-title.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
}
.slider-home-wrap .slider-bottom-title .title {
  font-size: 47px;
  font-weight: bold;
  margin-bottom: 0;
  color: #fff;
}
/* ==========================================================================
 Breadcrumbs
 ========================================================================== */
.breadcrumbs {
  font-size: 14px;
  margin-top: -30px;
  text-align: left;
  color: #0a66a3;
}
.entry-title-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin-bottom: 0;
}
.entry-title-icon .icon-wrap {
  margin-left: 7px;
}
.content_areas {
  padding: 90px 0 80px;
}
.content_areas .content_area .entry-title {
  font-size: 20px;
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 10px;
}
.content_areas .content_area .entry-icon {
  position: relative;
  top: 8px;
  display: inline-block;
}
.content_areas .content_area .entry-content {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  color: #3d3d3d;
}
.wyg {
  height: 855px;
  padding: 105px 0 100px;
  background-position: center center;
  background-size: cover;
}
.wyg .entry-content {
  max-width: 450px;
  color: #404040;
}
.wyg .entry-content h3 {
  font-size: 30px;
  font-size: 3rem;
  margin-bottom: 30px;
  color: #404040;
}
.wyg .entry-content ul {
  padding-right: 0;
  list-style-type: none;
}
.wyg .entry-content ul li {
  margin-bottom: 30px;
  padding-right: 25px;
  background: url(assets/img/li-checked-bullet.png) top 2px right no-repeat;
}
.how_it_works {
  padding: 80px 0;
}
.how_it_works h2 {
  font-size: 30px;
  font-size: 3rem;
}
.how_it_works ul {
  *zoom: 1;
  padding-right: 0;
  list-style-type: none;
}
.how_it_works ul:before, .how_it_works ul:after {
  display: table;
  content: ' ';
}
.how_it_works ul:after {
  clear: both;
}
.how_it_works ul li {
  float: right;
  width: 50%;
  margin-bottom: 60px;
  padding: 0 70px;
  padding-right: 25px;
  background: url(assets/img/li-star.png) top 2px right no-repeat;
}
.services {
  padding: 80px 0;
  color: #fff;
  background-position: center center;
  background-size: cover;
}
.services .entry-title {
  font-size: 30px;
  font-size: 3rem;
  margin-bottom: 50px;
  color: #fff;
}
.services .service .entry-image {
  margin-bottom: 20px;
}
.services .service .entry-image img {
  width: auto;
  height: 100px;
  margin: auto;
}
.services .service .entry-caption {
  font-weight: normal;
  display: block;
  text-align: center;
  color: #fff;
}
.partners {
  padding: 80px 0 40px;
}
.partners .entry-title {
  font-size: 30px;
  font-size: 3rem;
  margin-bottom: 40px;
}
.partners .slider-partners-wrap {
  margin: 0 -25px;
}
.partners .slider-partners-wrap .slider-partners .slide .entry-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  height: 80px;
  padding: 0 25px;
}
.partners .slider-partners-wrap .slider-partners .slide .entry-image img {
  width: auto;
  max-height: 80px;
  margin: auto;
}
.form-fixed {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  position: fixed;
  top: 200px;
  left: 0;
  width: 300px;
  padding: 30px 15px 25px;
  background: #f9631a;
  -webkit-transform: translateX(-300px);
  transform: translateX(-300px);
  transform: translateX(-300px);
}
.form-fixed.form-open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.form-fixed .wpcf7 .wpcf7-response-output {
  color: #fff;
}
.form-fixed .wpcf7-form-control-wrap {
  margin-bottom: 15px;
}
.form-fixed .wpcf7-form-control-wrap ::-webkit-input-placeholder {
  color: #8d8d8d;
}
.form-fixed .wpcf7-form-control-wrap :-moz-placeholder {
  color: #8d8d8d;
}
.form-fixed .wpcf7-form-control-wrap ::-moz-placeholder {
  color: #8d8d8d;
}
.form-fixed .wpcf7-form-control-wrap :-ms-input-placeholder {
  color: #8d8d8d;
}
.form-fixed .wpcf7-form-control-wrap input, .form-fixed .wpcf7-form-control-wrap textarea {
  height: 40px;
}
.form-fixed .wpcf7-form-control-wrap textarea {
  height: 130px;
}
.form-fixed input[type='submit'] {
  font-weight: bold;
  color: #fff;
  border: none;
  background: #531400;
}
.form-fixed .toggle-form {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  font-size: 26px;
  font-size: 2.6rem;
  position: absolute;
  top: 17px;
  right: -132px;
  width: 150px;
  height: 115px;
  color: #fff;
  border-radius: 90px 90px 0 0;
  outline: none;
  background: #f9631a;
}
.form-fixed .toggle-form:hover {
  opacity: 1;
}
.posts .col-md-6 .post-item {
  max-width: 470px;
  margin-bottom: 60px;
  padding-bottom: 65px;
  border-bottom: 1px solid #dedede;
}
.posts .col-md-6 .post-item .entry-title {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
  display: block;
  margin-bottom: 15px;
  color: #404040;
}
.posts .col-md-6 .post-item .entry-meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.posts .col-md-6 .post-item .entry-meta .post-thumbnail {
  flex: 0 0 100px;
  -ms-flex: 0 0 100px;
  margin-left: 5px;
  -webkit-box-flex: 0;
}
.posts .col-md-6 .post-item .entry-meta .entry-excerpt {
  line-height: 22px;
}
ul.list-posts li a {
  -webkit-transition: all 150ms ease;
  -moz-transition: all 150ms ease;
  -ms-transition: all 150ms ease;
  -o-transition: all 150ms ease;
  transition: all 150ms ease;
  display: block;
  padding: 5px 10px;
  color: #363636;
}
ul.list-posts li.current-menu-item a, ul.list-posts li a:hover {
  color: #fff;
  background: #003d71;
}
.single .col-main {
  border-left: 1px solid #ccc;
}
.single .col-main article a {
  font-weight: bold;
  text-decoration: underline;
  color: #0a66a3;
}
.single .col-main article .entry-content {
  padding-left: 0;
}
.row-related {
  margin-top: 50px;
}
.row-related .related-articles .related-item {
  float: right;
  width: 115px;
  margin-left: 10px;
}
.row-related .related-articles .related-item:hover {
  opacity: 0.8;
}
.row-related .related-articles .related-item .post-thumbnail {
  margin-bottom: 10px;
}
.row-related .related-articles .related-item .entry-title {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
  text-align: center;
  color: #626667;
}
.page-template-contact .row-contact {
  margin-top: 20px;
}
.page-template-contact .row-contact .col-content .map_canvas {
  float: right;
  width: 250px;
}
.page-template-contact .row-contact .col-content .entry-title {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #0a66a3;
}
.page-template-contact .row-contact .col-content .entry-content {
  line-height: 30px;
  float: right;
  margin-right: 10px;
  color: #363636;
}
.page-template-contact .row-contact .col-content .entry-content a {
  color: #363636;
}
.page-template-contact .row-contact .col-cf {
  max-width: 460px;
  margin-top: -65px;
}
.page-template-contact .row-contact .col-cf .required {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-align: left;
  color: #0a66a3;
}
.page-template-contact .row-contact .col-cf .contact_form .wpcf7-form-control-wrap {
  margin-bottom: 25px;
}
.page-template-contact .row-contact .col-cf .contact_form .wpcf7-form-control-wrap ::-webkit-input-placeholder {
  color: #363636;
}
.page-template-contact .row-contact .col-cf .contact_form .wpcf7-form-control-wrap :-moz-placeholder {
  color: #363636;
}
.page-template-contact .row-contact .col-cf .contact_form .wpcf7-form-control-wrap ::-moz-placeholder {
  color: #363636;
}
.page-template-contact .row-contact .col-cf .contact_form .wpcf7-form-control-wrap :-ms-input-placeholder {
  color: #363636;
}
.page-template-contact .row-contact .col-cf .contact_form .wpcf7-form-control-wrap input, .page-template-contact .row-contact .col-cf .contact_form .wpcf7-form-control-wrap textarea {
  height: 38px;
  padding: 0 10px;
  border: 1px solid #363636;
  border: 1px solid #363636;
}
.page-template-contact .row-contact .col-cf .contact_form .wpcf7-form-control-wrap textarea {
  height: 130px;
  padding: 10px;
}
.page-template-contact .row-contact .col-cf .contact_form input[type='submit'] {
  font-size: 18px;
  font-weight: bold;
  height: 48px;
  color: #fff;
  border-radius: 10px;
  background: #0a66a3;
}
.list_products {
  margin: 80px 0;
}
.list_products a:hover {
  text-decoration: none;
}
.list_products .item {
  max-width: 270px;
  margin: auto;
}
.list_products .item .post-thumbnail {
  margin-bottom: 15px;
}
.list_products .item .post-thumbnail img {
  width: auto;
  margin: auto;
}
.list_products .item .text .entry-title {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: bold;
  display: block;
  margin-bottom: 0;
  text-align: center;
  color: #626667;
}
.list_products .item .text .entry-content {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 21px;
  padding-left: 0;
  color: #626667;
}
.row-image-and-content .image-and-content-in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  margin-left: -70px;
}
.row-image-and-content .image-and-content-in a:hover {
  text-decoration: none;
}
.row-image-and-content .image-and-content-in .item {
  padding: 0 15px;
}
.row-image-and-content .image-and-content-in .item .entry-image img {
  width: auto;
  height: 75px;
  margin: auto;
}
.row-image-and-content .image-and-content-in .item .text .entry-title {
  font-size: 17px;
  margin: 10px 0;
  text-align: center;
  color: #626667;
}
.row-image-and-content .image-and-content-in .item .text .entry-content {
  color: #626667;
}
.list {
  margin-top: 80px;
  list-style: none !important;
}
.list li {
  margin-bottom: 40px;
}
.list li .entry-title {
  font-size: 22px;
}
.list li .entry-title:before {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: -5px;
  content: '';
  background: url(assets/img/li-star.png) no-repeat;
}
.list li .entry-content {
  line-height: 1.4;
}
.list li .entry-content p {
  line-height: 1.4;
}
.list li .entry-content ul li {
  margin-bottom: 0;
}
.ltr {
  direction: ltr;
}
.scrolltop {
  position: fixed;
  bottom: 50px;
  display: none;
  float: left;
  width: 51px;
  height: 51px;
  margin: auto;
  border-radius: 50%;
  background: url(assets/img/bg-scrolltop.png) #fff no-repeat;
}
.testimonials {
  margin-left: -55px;
  padding-right: 0 !important;
  list-style-type: none !important;
}
.testimonials li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  min-height: 453px;
  margin-bottom: 50px;
  padding: 15px;
  padding-bottom: 90px;
  background: url(assets/img/bg-testimonial.png) no-repeat;
  background-size: 100% 100%;
}
.testimonials li .entry-image {
  position: relative;
  flex: 0 0 255px;
  -ms-flex: 0 0 255px;
  margin-left: 30px;
  -webkit-box-flex: 0;
}
.testimonials li .entry-image img {
  border: 1px solid #acacac;
}
.testimonials li .entry-image .icon-enlarge {
  position: absolute;
  top: 10px;
  right: 10px;
}
.testimonials li .entry-content {
  margin-top: 10px;
  margin-left: auto;
}
.testimonials li .entry-content .entry-title {
  font-size: 22px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  color: #0569ac;
}
.testimonials li .entry-content .entry-title p {
  margin-bottom: 0;
}
.testimonials li .entry-content .entry-subtitle {
  font-size: 14px;
  font-weight: bold;
  display: block;
  color: #404040;
}
.open-ticket-form {
  max-width: 950px;
}
.open-ticket-form .wpcf7-form-control-wrap {
  margin-bottom: 15px;
}
.remote-control-wrap {
  max-width: 400px;
  margin: auto;
}
.remote-control-wrap [type='text'] {
  margin-bottom: 5px;
}
.remote-control-wrap .fields-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.remote-control-wrap .fields-wrap label {
  width: 100%;
}
.remote-control-wrap [type='submit'] {
  display: block;
  width: 200px;
  margin: auto;
}
button.aicon_link {
  top: 190px;
}
.support-top {
  padding: 30px;
  border: 1px solid #0a66a3;
  background: #b5b7b9;
  margin-bottom: 20px;
}
/* End of width 1366px - Laptop */
/* End of width 1280px - Laptop */
@media only screen and (max-width: 1024px) {
  .form-fixed .toggle-form {
    right: -100px;
  }
}
/* End of width 1024px - iPad Viewport */
@media only screen and (max-width: 768px) {
  /* .widget-footer.widget.widget_nav_menu {*/
  /*     display: none;*/
  /* }*/
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
  .form-fixed {
    top: 115px;
    padding: 15px 15px 0;
  }
  .form-fixed .toggle-form {
    top: 0;
    right: -40px;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  .form-fixed {
    width: 260px;
    -webkit-transform: translateX(-260px);
    transform: translateX(-260px);
  }
  .form-fixed .wpcf7-form-control-wrap {
    margin-bottom: 5px;
  }
  .form-fixed .wpcf7-form-control-wrap input, .form-fixed .wpcf7-form-control-wrap textarea {
    font-size: 14px;
    height: 30px;
  }
  .form-fixed .wpcf7-form-control-wrap textarea {
    height: 80px;
  }
  footer .footer-widgets .widget:last-child img {
    float: none;
  }
  .row-image-and-content .image-and-content-in {
    display: block;
  }
  .row-image-and-content .image-and-content-in .smooth-scroll {
    display: block;
    float: right;
    width: 50%;
  }
  .single .col-main {
    padding-bottom: 40px;
  }
  .home section {
    height: auto;
    padding: 40px 0;
  }
  .home section.slider-wrap {
    padding: 0;
  }
  .home section.how_it_works {
    padding-bottom: 0;
  }
  .home footer {
    margin-top: 0;
  }
  .home .partners .slider-partners-wrap {
    margin: 0;
  }
  .home .slider-home-wrap .slider-bottom-title .title {
    font-size: 32px;
  }
  .content_area {
    margin-bottom: 25px;
  }
  .site-header .top-nav-wrap {
    position: relative;
    top: 45px;
  }
  .page-template-contact .row-contact .col-cf {
    clear: both;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }
  .page-template-contact .row-contact .col-content .entry-content, .page-template-contact .row-contact .col-content .map_canvas {
    float: none;
    width: 100%;
  }
  .page-template-contact .row-contact .col-content .map_canvas {
    margin-bottom: 15px;
  }
  .testimonials li {
    display: block;
  }
  .testimonials li .entry-image img {
    max-width: 255px;
    margin: auto;
  }
  .row-image-and-content .image-and-content-in, .testimonials {
    margin-left: 0;
  }
  .wyg .entry-content ul {
    padding: 15px;
    background: rgba(255, 255, 255, .75);
  }
}
/* End width 768px - iPad Portrait */
@media only screen and (max-width: 414px) {
  .site-header, .home .site-header {
    position: fixed;
    z-index: 99;
    top: 0;
    width: 100%;
    height: 105px;
    box-shadow: 0 2px 4px 0 rgba(165, 165, 165, .75);
  }
  .site-header .site-logo, .home .site-header .site-logo {
    float: none;
  }
  .site-header .site-logo img, .home .site-header .site-logo img {
    width: 100px;
  }
  .site-header .top-nav-wrap, .home .site-header .top-nav-wrap, .site-header .top-nav-wrap .info, .home .site-header .top-nav-wrap .info {
    top: 0;
    float: none;
    margin-top: 10px;
    text-align: center;
  }
  body:not(.home) {
    padding-top: 105px;
    background: none !important;
  }
  .slider-home-wrap .slide-bg {
    height: 100vh;
  }
  .slider-home-wrap .slider-in-wrap .slider-home .slide .over-slider {
    -webkit-transform: scale(0.65);
    transform: scale(0.65);
    -webkit-transform-origin: top right;
    transform-origin: top right;
  }
  .home .slider-home-wrap .slider-bottom-title {
    font-size: 22px;
  }
  .home .slider-home-wrap .slider-bottom-title .title {
    font-size: 22px;
  }
  .how_it_works ul li {
    width: 100%;
    margin-bottom: 25px;
    padding-left: 0;
  }
  .home .service {
    margin-bottom: 30px;
  }
  footer {
    padding-bottom: 40px;
  }
  footer .footer-widgets {
    display: block;
  }
  footer .footer-widgets .widget:last-child {
    margin-top: 20px;
  }
  footer .footer-widgets .widget:last-child img {
    position: relative;
  }
  #header-titles {
    height: auto;
  }
  #header-titles .pagetitle-row {
    margin-top: 30px;
  }
  article > .entry-content {
    padding-left: 0;
  }
  #header-titles .pagetitle-row .entry-title {
    margin-bottom: 10px;
    text-align: center;
  }
  .breadcrumbs {
    margin-top: 0;
    margin-bottom: 10px;
    text-align: right;
  }
  .row-image-and-content .image-and-content-in .smooth-scroll {
    float: none;
    width: 100%;
    margin-bottom: 25px;
  }
  .list {
    margin-top: 25px;
  }
  .entry-content ul {
    padding-right: 20px;
  }
  .list_products {
    margin: 40px 0 0;
  }
  .list_products .item {
    margin-bottom: 30px;
  }
  .testimonials li {
    padding-bottom: 30px;
    border: 1px solid #eee;
    background: none;
  }
}
/* End width 414px - iPhone 6 Plus, 6s Plus */
/* End width 375px - iPhone 6, 6s, 7 */
/* End width 360px - Galaxy S3, S4, S5, S6, S7 */
/* End width 320px - iPhone 3, 4, 4s, 5, 5s */
