@charset "utf-8";
/* CSS Document */

/* ===================================*/
/* FONT FACE                          */
/* ===================================*/

@font-face {
    font-family: 'varelaregular';
    src: url('../fonts/varela-regular-webfont.woff2') format('woff2'),
         url('../fonts/varela-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'varela_roundregular';
    src: url('../fonts/varelaround-regular-webfont.woff2') format('woff2'),
         url('../fonts/varelaround-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/* ===================================*/
/*  BASIC SETUP                       */
/* ===================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: #fff;
    color: #6D6E71;
    font-family: 'varela_roundregular', sans-serif;
    font-weight: 300;
    font-size: 16px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.clearfix {zoom: 1;}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}
/* ===================================*/
/* REUSABLE COMPONENTS                */
/* ===================================*/

.row {
    max-width: 1180px;
    margin: 1% auto;
}
.row-full {width:100%; max-width:100%}
.relative {position: relative;}

section {
    /*padding: 80px 0;*/
}

img {
    width:100%;
    height:auto;
    margin:0;
    padding:0;
}

.main {
    margin: 0 auto;
    direction: rtl;
    text-align: right;
    padding-right: 30px;
}
.sidemenu {
    margin: 0 auto;
    direction: rtl;
}

.maincopy {
    direction: rtl;
    text-align: right; 
    font-size: 120%;
}
.maincopy:after {
    display:block;
    content:" ";
    height:1px;
    padding:5px 0;
    border-bottom:1px solid rgba(0,0,0,0.2);
}

div.copy {
    direction: rtl;
    text-align: right;
}
div.copy:before,
div.copy:after{
    display: block;
    content: " ";
    width: 100%;
    margin-top: 5px;
    margin-bottom: 10px;
    height:2px;
    border-bottom:2px solid #f16623; 
    border-top:none;
}

.sidebox {
    margin:0 auto;
    padding: 0;
    /*border-bottom: 2px solid rgba(0,0,0,0.30);*/
    position: relative;
    padding-bottom: 10px;
}

.sidebox::after {
    display: block;
    height: 1px;
    background-color: rgba(0,0,0,0.20);
    content: " ";
    width: 100%;
    margin: 0 auto;
    margin-top: 5px;
    margin-bottom: 10px;
}

.sidecopy{
    padding-top: 5px;
    font-size: 110%;
    text-align: right;
}
/****SIDE MENU ACCORDION**********/
.accordion {
    cursor: pointer;
    width: 100%;
    border:none;
    text-align: right;
    outline: none;
    transition: 0.4s;
}

.active, .accordion:hover {
    color:#f16623;
}

.panel {
    padding: 0 18px;
    display: none;
    background-color: white;
}
.panel li{
    padding:10px 0;
    list-style: none;
    font-size: 110%;
}
.panel li:before {
  content: "\f104";
  font-family: 'FontAwesome';
  padding-left:5px;
  display: inline-block;
  width: 0.5em;  
}
/*****************************/

.sideposter {
    display:block;
    margin:0 auto;
    max-width: 280px;
    position: relative;    
}

.relatedbox {
    margin:0 auto;
    padding: 0;
    display: -ms-flexbox;
      display: -webkit-box;
      display: flex;
    
    /*border-bottom: 2px solid rgba(0,0,0,0.30);*/
    position: relative;
}
.row .related{
    padding:0;
}

/*--- aligning the related for large screens---*/
.col-lg-4:first-child,
.col-lg-4:nth-child(3){
    padding:0 0 0 20px;
    margin:0;/**/
}
.col-lg-4:nth-child(2),
.col-lg-4:nth-child(5){
    padding:0 10px 0 10px;
    margin:0;/**/
}
.col-lg-4:last-child,
.col-lg-4:nth-child(6){
    padding:0 20px 0 0;
    margin:0;/**/
}
/*--- / aligning the related for large screens---*/

.relatedposter {
    display:block;
    margin:0 auto;
    /*max-width: 256px;*/
    width:100%;
    height:auto;
    position: relative;    
}
.relatedcopy{
    padding: 5px 10px 0 0;
    margin:0 0 10px 0 ;
    font-weight:400;
    font-size: 110%;
    text-align: right;
}
#related::after {
    display:block;
    content:" ";
    height:2px;
    padding:0;
    margin:5px;
    border-top:2px solid #f16623;
}

/*===============================*/
/* GOOGLEMAP                     */
/*===============================*/

.gmap {
    width:100%;
    height:350px;
    margin:0 auto;
    padding:0;
}

/*===============================*/
/*  PLAYER BUTTON                */
/*===============================*/
.overlay-play-btn {
    box-sizing: border-box;
    width: 98%;
    height: auto;
    padding: 40px calc(50% - 40px);/**/
    position: absolute;
    z-index:2;
    top: -5px;
    display: block;
    opacity: 0.85;
    cursor: pointer;
    background: rgba(0,0,0,0);
    transition: opacity 150ms/*;*/
    -webkit-transform: scale(1.00);
    -ms-transform: scale(1.00);
    transform: scale(1.00);
    -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    }

.overlay-play-btn:hover {
    opacity: 1;
    /*background: rgba(0,0,0,0.2);*/
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
    }

/*===============================*/
/* HEADINGS                      */
/*===============================*/

h1{ 
    font-size: 140%; 
    color: #6D6E71;
    font-weight: 400;
    line-height: 1.3em;
    display:block;
    text-align: right;
    text-rendering: optimizeLegibility;
}

h2 {
    font-size: 130%;
    color: #6D6E71;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

h3 {
    font-size: 120%;
    margin:-2px 15px 0 0;
    
}
h4 {
    font-size: 120%;
    display:block;
    margin:-2px 15px 0 0;
    color: #6D6E71;
}
h5, h5 a:link, h5 a:visited {
    font-size: 100%;
    margin:5px 15px 0 0;/**/
    color: #a7a7a7;
    text-decoration: underline;
}
h5 a:hover, h5 a:active {
    font-size: 100%;
    margin:5px 15px 0 0;/**/
    color: #f16623;
    text-decoration: underline;
}
h6{ 
    font-size: 150%; 
    color: #6D6E71;
    font-weight: 400;
    line-height: 1em;
    display:inline;
    text-align: right;
 /*   text-rendering: optimizeLegibility; */ 
}
/*===============================*/
/*   LINKS                       */
/*===============================*/
a:link,
a:visited {
    color: #6D6E71;
    text-decoration: none;
    /*padding-bottom: 1px;*/
}

a:hover,
a:active {
    color: #f16623;
    /* border-bottom: 1px solid transparent;*/
}

/* =================================*/
/* NAV                              */
/* =================================*/
header{
    padding-top:10px;
    border-bottom: 1px solid rgba(0,0,0,0.20);
    height:100px;
    position:relative;
    z-index:999;
    width:100%;
    margin:0 auto;
    max-width:1180px;
}
.logos {
    float:left;
    white-space: nowrap;
}
.nav {
    float:right;
}

/*nav {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin:0 auto;
  padding: 0;
  max-width: 1180px;
    /*display:inline-block;
}*/


/* =================================*/
/* Responsive Menu                  */
/* =================================*/
ul {
    margin: 0px;
    padding: 0px;
}
.top-menu {
    list-style: none;
    margin: 0;
    padding: 0; 
    width:100%;
    font-size: 130%;
    padding-top:10px;
    direction:rtl;/**/
}
.top-menu li{
    list-style: none;
}
.top-menu li ul {
    display:none;
}
.top-menu > li {
    display: block;
    margin: 0;
    padding: 0 5px;
    border: 0px;
    float: right;
}
.top-menu li a {
    color:#6d6e71;
}
.top-menu > li > a {
    display: block;
    position: relative;
    margin: 0;
    border: 0px;
    padding: 20px 5px 0 0;
    text-decoration: none;
    font-weight: 400;
    color: #6D6E71;
    text-align: right;
}
.top-menu li.menu-active > a {
    background: #fff !important;
    color:#f16623;
}
.top-menu li .menu-active {
    position: relative;
}
.top-menu > li > a > .arrow:after {  
    display: inline;
    font-family: FontAwesome;
    height: auto;
    content: "\f107";
    font-weight: 300;
    text-shadow: none;
    display: inline-block;
}
.top-menu li ul.sub-menu li > a > .arrow:before {
    content: "\f107" !important;
}
.top-menu > li > ul.sub-menu {
    display: none;
    list-style: none;
    clear: both;
    position: absolute;
    margin:0;
}
.top-menu li ul.sub-menu {
    background: #ffffff;
    -webkit-box-shadow: 0px 6px 20px -4px rgba(0,0,0,0.46);
    -moz-box-shadow: 0px 6px 20px -4px rgba(0,0,0,0.46);
    box-shadow: 0px 6px 20px -4px rgba(0,0,0,0.46);
}
.top-menu li ul.sub-menu > li {
    width: 100%;
    white-space: nowrap;
}
.top-menu li ul.sub-menu li a {
    display: block;
    margin: 0px 0px;
    padding: 10px 20px;
    text-align: right;
    position:relative;
    right:0;
    border:none;
    text-decoration: none;
    text-decoration: none;
    font-weight: normal;
}
.top-menu > li > ul.sub-menu > li a:hover {
    position: relative;
   background-color:rgba(0,0,0,0.2) !important;
    color:#fff;
}
.top-menu > li > ul.sub-menu > li ul.sub-menu {
    position: absolute;
    left: 200px;
    top: 0px;
    display: none;
    list-style: none;
}
.top-menu > li > ul.sub-menu > li ul.sub-menu > li ul.sub-menu {
    position: absolute;
    left: 200px;
    top: 0px;
    display: none;
    list-style: none;
}
.top-menu > li > ul.sub-menu li > a > .arrow:after {
    float: right;
    margin-top: 1px;
    margin-right: 0px;
    display: inline;
    font-size: 16px;
    font-family: FontAwesome;
    height: auto;
    content: "\f104";
    font-weight: 300;
    text-shadow: none;
}

/* Menu Toggle Btn               */
/*===============================*/

.menu-toggle {
    display: none;
    float: left;
    width: 100%;
}


.menu-toggle #menu-btn {
    float: none;
    /*padding: 8px;*/
    cursor: pointer;
    margin: 10px;
    height: 50px;
    width:auto;
}
.logo-toggle {
    width:60px;
    height:auto;
}
.logo-cameras-mobile{
    display:none;
    }

.hide-menu {
    display: none;
}

/* Accordion Menu Styles         */
/*===============================*/

ul[data-menu-style="accordion"] {
    width: 200px;
}
ul[data-menu-style="accordion"] > li {    
    display: block;
    margin: 0;
    padding: 0;
    border: 0px;
    float: none !important;
}
ul[data-menu-style="accordion"] > li:first-child {
    border-top: 2px solid #FD5025;
}
ul[data-menu-style="accordion"] li ul.sub-menu > li {
    width: 100%;
}
ul[data-menu-style="accordion"] > li > a > .arrow:before {
    float: right;
    content: "\f107";
}
ul[data-menu-style="accordion"] li.menu-active > a > .arrow:after {
    content: "\f107" !important;
}
ul[data-menu-style="accordion"] > li > ul.sub-menu {
    position: static;
}
ul[data-menu-style="accordion"] > li > a i {
    padding-right: 10px;
    color: #FF5737;
}
ul[data-menu-style="accordion"] > li > ul.sub-menu > li ul.sub-menu {
    position: static;
}
ul[data-menu-style="accordion"] > li > ul.sub-menu > li ul.sub-menu > li ul.sub-menu {
    position: static;
}
ul[data-menu-style="accordion"] > li {
    border-bottom: 1px solid #242424;
}
ul[data-menu-style="accordion"] li a:hover {
    background: #272727 !important;
}
ul[data-menu-style="accordion"] ul.sub-menu li.menu-active > a > .arrow:before {
    content: "\f107" !important;
}

/* Vertical Menu Styles          */
/*===============================*/

ul[data-menu-style="vertical"] {
    width: 200px;
}
ul[data-menu-style="vertical"] > li {
    float: none;
}
ul[data-menu-style="vertical"] > li:first-child {
    /*border-top: 2px solid #FD5025;*/
}
ul[data-menu-style="vertical"] li ul.sub-menu > li {
    width: 100%;
}
ul[data-menu-style="vertical"] > li > a > .arrow:before {
    float: right;
    content: "\f107";
}
ul[data-menu-style="vertical"] > li.menu-active {
position:relative;
}
ul[data-menu-style="vertical"] > li > ul.sub-menu {
    position: absolute;
    left:200px;
    top:0px;
    width:200px;
}
ul[data-menu-style="vertical"] > li > a i {
    padding-right: 10px;
    color: #f16623;
}
ul[data-menu-style="vertical"]> li > ul.sub-menu > li ul.sub-menu {
    position: absolute;
    width:200px;
    left: 200px;
}
ul[data-menu-style="vertical"] > li > ul.sub-menu > li ul.sub-menu > li ul.sub-menu {
    position: absolute;
    width:200px;
    left: 200px;
}
ul[data-menu-style="vertical"] > li {
    border-bottom: 1px solid rgba(0,0,0,0,2);
}
ul[data-menu-style="vertical"] li a:hover {
    background: #ffffff !important;
}

/*===============================*/
/* HEADER LOGOS                  */
/*===============================*/
.logo-cameras-nav{
    width:auto;
    height:60px;
    float: right;
    vertical-align: top;
}
.logo-cameras-mobile {
    display:none;
}
.logo-rishon-nav{
    width:auto;
    height:70px;
}
.logo-bitachon-nav{
    width:auto;
    height:80px;
}

/* ===================================*/
/* FOOTER                             */
/* ===================================*/

footer {
    background-color: rgba(0,0,0,0.2);
    margin:0 auto;
    padding:1% 0 2% 0;
}

.footer-row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin:0 auto;
  padding: 0;
  max-width: 1180px;
}

.footer-nav {
    list-style: none;
    float: right;
}

ul.footer-nav {
    font-size:110%;
    font-weight: 400;
    line-height:1.5em;
    padding: 15px 0;
    direction: rtl;
}

.footer-nav li,
.footer-nav li a:link,
.footer-nav li a:visited {
    text-decoration: none;
    border: 0;
    padding:0 2px 0 2px;
    text-align: right;
    color: #6d6e71;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    display:inline-block;
}

.footer-nav li a:hover,
.footer-nav li a:active {
    color: #f16623;
    background:none;
    text-decoration: underline;
}

/* -----FOOTER LOGOS ----- */
.logo-cameras{
    width:auto;
    height:60px;
    line-height: 1.5em;
    float:right;
    /*paddding-right:20px;*/
}
.logo-cameras-sm {
    display:none;
}
.logo-rishon{
    width:auto;
    height:60px;
    line-height: 1.5em;
    float:left;
}
.logo-bitachon{
    width:auto;
    height:60px;
    line-height: 1.5em;
    float:left;
}

/*=================================*/
/* FORM                            */
/*=================================*/

*, *:before, *:after {
    box-sizing: border-box;
}
button, input[type='button'], input[type='submit'] {
    cursor: pointer;
    border: 0;
}
button, input {
    display: inline-block;
    -webkit-appearance: none;
    outline: none;
    color: inherit;
    overflow: visible;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
}
.button, input {
    display: inline-block;
    -webkit-appearance: none;
    outline: none;
    color: inherit;
    overflow: visible;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
}

/*=================accessibility button====*/
.btn_accessibility {
    top:auto !important;
    bottom:50px !important;
}





















