 
 
 
/*****************
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;
}

.hor-menu-pos {
    position: fixed;
    top: 80px;
    z-index: 3;
    width: 100%;
    background: #202020;
}

.hor-menu{
	display:flex;
	padding:10px 0;
}

.hor-menu li{
	margin-right:10px;
	border-right:1px solid #3d3d3d;
	padding:0 10px 0 0;
}

.hor-menu li:last-child{
	margin-right:0px;
	border-right:0px solid #3d3d3d;
	padding:0 0 0 0;
}

.hor-menu li a{
	font-size:1rem
}

.hor-menu li.active a{
	color: #1ac7e6;
}





/*****************
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;
  float: left;
}


#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;
  line-height: 1;
}

#cssmenu > ul > li {
	float: left;
	margin-right:30px;

}

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

#cssmenu > ul > li > a {
	color: var(--color-dark);
    line-height: 16px;
    font-size: 1rem;
    text-decoration: none;
    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease;
    transition: color .2s ease;
	font-weight:600;
}



#cssmenu > ul > li:hover > a,
#cssmenu > ul > li.active > a {
	color: #075EE3;
}

#cssmenu > ul > li > ul > li.active > a {
  color: var(--color-hover);
 }

#cssmenu > ul > li.has-sub > a {
  padding-right: 25px;
}
#cssmenu > ul > li.has-sub > a::after {
  position: absolute;
  top: 20px;
  right: 10px;
  width: 5px;
  height: 5px;
  border-bottom: 2px solid #303030;
  border-right: 2px solid #303030;
  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: #C41D1C;
}
#cssmenu ul ul {
  position: absolute;
  left: -9999px;
  border:1px solid #f7f7f7;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
#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: 0;
  -webkit-transition: height .2s ease;
  -moz-transition: height .2s ease;
  -ms-transition: height .2s ease;
  -o-transition: height .2s ease;
  transition: height .2s ease;
  display: table;
}
#cssmenu ul li:hover > ul > li {
  height: 32px;
}
#cssmenu ul ul li a {
  padding: 10px 10px;
  width: 250px;
  font-size: 12px;
  line-height: 14px;
  background: #fff;
  text-decoration: none;
  -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 {
  background: #303030;
  color: #fff;
}
#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;
}

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

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

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

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

.menu-icon:hover span:nth-child(2) {
   width: 40px;
  margin-left: 0px;
}

.menu-icon:hover span:first-child,
.menu-icon:hover span:last-child {
}

.menu-icon:hover span:first-child {
  transform: rotate(0deg);
  width: 40px;
  margin-left: 0px;
}

.menu-icon:hover span:last-child {
  transform: rotate(-0deg);
  width: 40px;
  margin-left: 0px;
}




#cd-menu-trigger {
    position: absolute;
    right: 25px;
    top: 42px;
    height: 40px;
    width: 40px;
	z-index:9999999999999
}
#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);
}



#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: 100%;
  background-color: #fafafa;
  background-color: #ffffff;
  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: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  padding: 110px 0 0 0;
  padding: 10vh 0 0 0;
      background-color: rgba(255, 255, 255, 0.20) !important;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

#cd-lateral-nav.lateral-menu-is-open {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(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;
}



ul.megamenu{
}

ul.megamenu li{
	width:100%;
	padding:0 0 15px 0;
}
 

ul.megamenu li a{
	font-size:2.5rem;
	font-weight:700;
	text-transform: uppercase;
	opacity: 0;
	transform: translateX(-220px);
	transition: all .4s ease, transform .0s ease;
}

ul.megamenu li.active a{
	color:var(--color-dark-blue);
}

ul.megamenu li a:hover{
	padding:0 0 0 15px;
	transition: all .4s ease, transform .0s ease;
}


.megamenu li a.animate-in {
   transition: all .4s ease, transform .0s ease;
   opacity: 1;
  transform: translateX(0);
}
 
 
 
 
 
/* Medium - md */
@media screen and   (max-width: 768px) {
	#cd-lateral-nav {
	width:100%;
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
	}
}

