/*****************
FOOTER VERTICAL MENU
*******************/
.menu-v1 li{
	display:table;
	width:100%;
	padding: 6px 0;
}

.menu-v1 li:first-child ,
.menu-v1 li:last-child {
    
}

.menu-v1 li:before{
	content: "";
    display: block;
    background: var(--color-dark-blue);
    width: 10px;
    height: 10px;
    float: left;
    position: relative;
    top: 6px;
    margin-right: 10px;
    border-radius: 4px;
}

.menu-v1 li a {
    display: table;
	font-size: var(--font-size-p);
}

.menu-v1 li.active a {
	color:var(--color-dark-blue);
}


.address-menu li{
	display:flex;
	width:100%;
	padding: 6px 0;
}


.address-icon {
	display:block;
	width:26px;
	height:26px;
	background:red;
	margin-right:15px;
	min-width: 26px;
	position: relative;
    top: 0;
}


.address-icon.empty {
	display:block;
	width:26px;
	height:26px;
	background:transparent;
	margin-right:15px;
}


.address-icon.location{
    background: url(../images/template-images/svg/location-icon-1.svg) no-repeat center center;
	background-size:26px 26px;
}

.address-icon.email{
    background: url(../images/template-images/svg/email-icon-1.svg) no-repeat center center;
		background-size:26px 26px;
}

.address-icon.phone{
    background: url(../images/template-images/svg/phone-icon-1.svg) no-repeat center center;
		background-size:26px 26px;
}

/***********************
HORIZONTAL MAIN MENU
*****************/
.vertical-menu{
	display:table;
}

.vertical-menu li{
	position:relative;
	margin-bottom:20px;
	padding:0 0 0 20px;
}

.vertical-menu li:last-child{
	margin-bottom:0px;
}

.vertical-menu li.active a{
	color:var(--color-dark-blue);
}

.vertical-menu li::before {
  content: "■";
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top:-4px;
  transition:all ease .3s;
}

.vertical-menu li:hover{
	color:var(--color-orange);
	transition:all ease .3s;
}

.vertical-menu li.active::before{
	color:var(--color-orange);
}


.rightSidebar-menu{
	padding:20px;
	background: #F3F7FB;
	width:100%;
}




/*****************
HORIZONTAL MENU DESKTOP
*******************/
#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #menu-button {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#cssmenu:after,
#cssmenu > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
#cssmenu #menu-button {
  display: none;
}
#cssmenu {
  width: auto;
}
#cssmenu > ul > li {
  float: left;
  margin-right:10px;
}

#cssmenu > ul > li:last-child {
  margin-right:0px;
}


#cssmenu.align-center > ul {
  font-size: 0;
  text-align: center;
}
#cssmenu.align-center > ul > li {
  display: inline-block;
  float: none;
}
#cssmenu.align-center ul ul {
  text-align: left;
}
#cssmenu.align-right > ul > li {
  float: right;
}
#cssmenu.align-right ul ul {
  text-align: right;
}
#cssmenu > ul > li > a {
  padding: 10px 15px;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--color-white);
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
#cssmenu > ul > li:hover > a,
#cssmenu > ul > li.active > a {
  background: #354994;
  border-radius:0px;

}
#cssmenu > ul > li.has-sub > a {
  padding-right: 25px;
}
#cssmenu > ul > li.has-sub > a::after {
  position: absolute;
    top: 15px;
    right: 10px;
    width: 4px;
    height: 4px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #ffff;
    content: "";
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: border-color 0.2s ease;
    -moz-transition: border-color 0.2s ease;
    -ms-transition: border-color 0.2s ease;
    -o-transition: border-color 0.2s ease;
    transition: border-color 0.2s ease;
}
#cssmenu > ul > li.has-sub:hover > a::after {
  border-color: #009ae1;
}
#cssmenu ul ul {
  position: absolute;
  left: -9999px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
#cssmenu li:hover > ul {
  left: auto;
}
#cssmenu.align-right li:hover > ul {
  right: 0;
}
#cssmenu ul ul ul {
  margin-left: 100%;
  top: 0;
}
#cssmenu.align-right ul ul ul {
  margin-left: 0;
  margin-right: 100%;
}
#cssmenu ul ul li {
  height: auto;
  -webkit-transition: height .2s ease;
  -moz-transition: height .2s ease;
  -ms-transition: height .2s ease;
  -o-transition: height .2s ease;
  transition: height .2s ease;
}
 
#cssmenu ul ul li a {
  padding: 10px 20px;
  width: 260px;
  font-size: 0.9rem;
	line-height: 140%;
  background: #333333;
  background: var(--color-dark);background: #596db9;
  text-decoration: none;
   color: #fafafa;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
#cssmenu ul ul li:hover > a,
#cssmenu ul ul li a:hover {
  color: var(--color-white);
  background: var(--color-dark-blue);
}
#cssmenu ul ul li.has-sub > a::after {
  position: absolute;
  top: 13px;
  right: 10px;
  width: 4px;
  height: 4px;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  content: "";
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: border-color 0.2s ease;
  -moz-transition: border-color 0.2s ease;
  -ms-transition: border-color 0.2s ease;
  -o-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
#cssmenu.align-right ul ul li.has-sub > a::after {
  right: auto;
  left: 10px;
  border-bottom: 0;
  border-right: 0;
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}
#cssmenu ul ul li.has-sub:hover > a::after {
  border-color: #ffffff;
}


/******
MOBILE menu
**********************************/
.menu-icon {
	width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
	top: -10px;
}

.menu-icon span {
  background-color: #fff;
  height          : 2px;
  position        : absolute;
  width           : 100%;
  left            : 0;
  transition      : all 0.3s ease;
  border-radius   : 10px;
}

.menu-icon span:first-child {
	top: 8px;
    width: 20px;
    margin-left: 20px;
}

.menu-icon span:nth-child(2) {
	top: 18px;
    width: 30px;
    margin-left: 10px;
}

.menu-icon span:last-child {
  top: 28px;
  width:40px;
}


.is-clicked .menu-icon span:first-child,
.is-clicked .menu-icon span:nth-child(2) {
  transform: rotate(0deg);
  width: 40px;
  margin-left: 0px;
}

/***************
MENU MOBILE
**************************/
#cd-lateral-nav {
  position: fixed;
  height: 100%;
  right: 0;
  top: 0;
  visibility: hidden;
  /* the secondary navigation is covered by the main element */
  z-index: 2;
  z-index: 3;
  width: 460PX;
  background-color: #fafafa;
  overflow-y: auto;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s .4s;
  transition: transform .4s 0s, visibility 0s .4s;
  /* this creates the subtle slide in animation of the navigation */
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  padding: 80px 0 0 0;
	background-color: #ffffff;
}

#cd-lateral-nav.lateral-menu-is-open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s 0s;
  transition: transform .4s 0s, visibility 0s 0s;
  /* smooth the scrolling on touch devices - webkit browsers */
  -webkit-overflow-scrolling: touch;
}


#cd-lateral-nav.lateral-menu-is-open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s 0s;
  transition: transform .4s 0s, visibility 0s 0s;
  /* smooth the scrolling on touch devices - webkit browsers */
  -webkit-overflow-scrolling: touch;
}


.cd-navigation {
  margin: 10px 0 16px;
}
.cd-navigation .sub-menu {
	padding: 10px 15px 10px 15px;
    display: none;
    background: var(--color-light-blue);
}

.cd-navigation .sub-menu .sub-menu{
	padding: 10px 15px 10px 15px;
    display: none;
    background: var(--color-light-blue);
	background: #e8e9e9;
}

.cd-navigation a {
	display: block;
    line-height: 100%;
    font-size: 1.2rem;
    line-height: 140%;
    padding: 10px 40px 10px 0px;
    color: var(--color-dark);
    width: 100%;
}

.cd-navigation li.active ul li a,
.cd-navigation li.active ul li.active ul li a {
	color:var(--color-dark);
}

.cd-navigation li.active a,
.cd-navigation li.active ul li.active a,
.cd-navigation li.active ul li.active ul li.active a  {
	color:var(--color-orange);
}
 


.cd-navigation li {
    border-bottom: 1px solid var(--color-light-blue);
}

.cd-navigation li:last-child{
    border-bottom: 0px solid var(--color-light-blue);
}
 
.cd-navigation a.current {
  background-color: #3a4a4d;
  color: #FFF;
}

.cd-navigation li{
	position:relative;
}


/* style menu items which have a submenu  */
.cd-navigation .menu-arrow-expand {
  position: relative;
  /* this is the right arrow to show that the item has a submenu  */
}

.cd-navigation .menu-arrow-box {
	display: block;
    height: 11px;
    width: 8px;
    position: absolute;
    bottom: auto;
    z-index: 99999;
	width: 30px;
    height: 30px;
    top: 9px;
    right:0px;
	background:var(--color-dark-blue);
	border-radius:4px
}

.cd-navigation .menu-arrow-expand {
	    top: 32px;
    bottom: 0;
    display: block;
    height: 30px;
    width: 30px;
    left: 2px;
    right: 0;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../background/svg/menu-arrow-white.svg) no-repeat center center;
    background-size: 18px 18px;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    margin: auto;
}



.cd-navigation .menu-arrow-box.submenu-open .menu-arrow-expand{
  display:block;
  left: -4px;
	background:url(../background/svg/menu-arrow-white.svg) no-repeat center center;
    background-size: 18px 18px;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -o-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
 


#cd-menu-trigger {
    position: absolute;
    right: -5px;
    top: 12px;
    height: 40px;
    width: 40px;
    z-index: 9999999999999;
	display:none;
}

#cd-menu-trigger .cd-menu-text {
  height: 100%;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 600;
  display: none;
}
#cd-menu-trigger .cd-menu-icon {
  /* this span is the central line in the menu menu */
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 30px;
  height: 2px;
  background-color:var(--color-dark);
  /* these are the upper and lower lines in the menu menu */
  
}
#cd-menu-trigger .cd-menu-icon::before, #cd-menu-trigger .cd-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: inherit;
  left: 0;
}
#cd-menu-trigger .cd-menu-icon::before {
	bottom: 10px;
    width: 15px;
    margin-left: 15px;
}
#cd-menu-trigger .cd-menu-icon::after {
	top: 10px;
	width: 15px;
	margin-left: 15px;
}
#cd-menu-trigger.is-clicked .cd-menu-icon {
  background-color: rgba(255, 255, 255, 0);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before, 
#cd-menu-trigger.is-clicked .cd-menu-icon::after {
  background-color: var(--color-dark);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}



 
/* Medium - md */
@media screen and   (max-width:1200px) {
	
	#cd-menu-trigger {
	display:inherit;
	}

	#cd-lateral-nav {
	width:100%;
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
	}
}

