﻿img {
  max-width: 100%;
  height: auto;
}
.main-nav-container {
  position: relative;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 99999;
  padding-bottom: 0;
  /*margin-top:17px;*/
}
.main-nav__blk {
  width: 100%;
  border-top: 1px solid #CACACA  ;
  border-bottom: 1px solid #CACACA;
}
.m-nav-menu__item {
  border-bottom: 1px solid #b3b3b3 ;
  display: block;
  font-size: 1.3em;
  background: #fff;
  margin: 0 0.5em;
  vertical-align: middle;
  height: 100%;
  padding: 1em 0.5em;
  text-align: right;
  font-family: Oron-Medium;
}
.m-nav-menu__item.active a {
  color: #1BDBC4;
  font-family: partner-bold, Oron-Bold;
}
.m-nav-menu__item:last-child {
  border-bottom: none;
}
/*** top block nav  ***/
.top-nav-container {
  display: table;
  width: 100%;
  /*width:99.98%;*/
  direction: rtl;
}
.top-nav-container .top-nav {
  display: table-row;
  background: #000;
  width: 100%;
}
.top-nav-container .top-nav__item {
  display: table-cell;
  color: #fff;
  width: 24%;
  text-align: center;
  box-sizing: border-box;
  padding: 0 0.4em;
  vertical-align: middle;
  font-size: 1.2em;
}
.top-nav-container .top-nav__item.active {
  border-bottom: 6px solid #54BFB5;
}
.top-nav-container .top-nav__item.active a {
  color: #54BFB5;
}
.top-nav-container .top-nav__item a {
  display: block;
  color: #fff;
  padding: 0 1em;
  max-width: 100px;
  margin: 0 auto;
}
/* -----------------------------------------------------------------------------
  CONTAINER OBJECTS
  
----------------------------------------------------------------------------- */
.o-container {
  width: 4.2em;
  display: inline-block;
  margin: 1em 0 2em;
  vertical-align: top;
}
/* -----------------------------------------------------------------------------
  GRID OBJECT
  
----------------------------------------------------------------------------- */
.o-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
/*.o-grid__item {
  padding: 24px;
}*/
/* -----------------------------------------------------------------------------
  HAMBURGER ICONS COMPONENT
  
----------------------------------------------------------------------------- */
/**
 * Toggle Switch Globals
 *
 * All switches should take on the class `c-hamburger` as well as their
 * variant that will give them unique properties. This class is an overview
 * class that acts as a reset for all versions of the icon.
 */
/*#region HAMBURGER*/
.c-hamburger {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 60px;
  height: 55px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.c-hamburger:focus {
  outline: none;
}
.c-hamburger span {
  display: block;
  position: absolute;
  top: 25px;
  left: 18px;
  right: 6px;
  height: 4px;
  background: #000;
}
.c-hamburger span::before,
.c-hamburger span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
  content: "";
}
.c-hamburger span::before {
  top: -10px;
}
.c-hamburger span::after {
  bottom: -10px;
}
/*#endregion*/
/**
 * Style 2
 * 
 * Hamburger to "x" (htx). Takes on a hamburger shape, bars slide
 * down to center and transform into an "x".
 */
.c-hamburger--htx {
  /*background-color: #ff3264;*/
  background-color: #fff;
}
.c-hamburger--htx span {
  -webkit-transition: background 0s 0.3s;
  transition: background 0s 0.3s;
}
.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
  -webkit-transition-duration: 0.3s, 0.3s;
  transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0s;
  transition-delay: 0.3s, 0s;
}
.c-hamburger--htx span::before {
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, transform;
}
.c-hamburger--htx span::after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
}
/* active state, i.e. menu open */
.c-hamburger--htx.is-active {
  /*background-color: #cb0032;*/
}
.c-hamburger--htx.is-active span {
  background: none;
}
.c-hamburger--htx.is-active span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-hamburger--htx.is-active span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
  -webkit-transition-delay: 0s, 0.3s;
  transition-delay: 0s, 0.3s;
}
/***---------------------------------------------------------------------------------***/
/**                             MEDIA QUERIES                                        **/
/***--------------------------------------------------------------------------------***/
/* Extra Small Devices*/
/* Extra Small Devices, Phones */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .m-nav-menu__item {
    font-size: 1.4em;
  }
  .o-container {
    width: 40px;
  }
  .c-hamburger {
    width: 36px;
  }
  .c-hamburger span {
    left: 4px;
  }
}
/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .m-nav-menu__item {
    font-size: 1.2em;
  }
  .o-container {
    width: 40px;
  }
  .top-nav-container .top-nav__item {
    font-size: 1.1em;
  }
  .top-nav-container .top-nav__item a {
    font-size: 100%;
  }
}
/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
  .top-nav-container .top-nav__item {
    font-size: 1.1em;
  }
}