/* CSS (essential parts) */
{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.navbar
{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
}
.hamburger
{
	display: none;
	background: transparent;
	border: 0;
	color: #fff;
	font-size: 22px;
	padding: 12px;
}

/* top-level menu */
.menu
{
	display: flex;
	justify-content: flex-end;
	/* gap: 20px;  spacing between menu items */
	text-align: left;
}
.menu > li
{
	list-style: none;
	position: relative;
	border-right: 1px dotted #7b7b7b;
}
.menu > li:last-child {
	border: none;
}
/* IMPORTANT: make li relative */
.menu a
{
	display: block;
	padding: .8em 1em;
	margin: 0;
	font-family: "Open Sans",Arial,sans-serif;
	color: #f0556c;
	text-decoration: none;
	font-size: .9rem;
	font-weight: 600;
	text-transform: uppercase;
	transition: all 0.20s linear 0s;
	-o-transition: all 0.20s linear 0s;
	-ms-transition: all 0.20s linear 0s;
	-moz-transition: all 0.20s linear 0s;
	-webkit-transition: all 0.20s linear 0s;
}

.menu,
.submenu
{
	list-style: none;   /* removes bullets */
	padding-left: 0;    /* remove default indent */
	margin: 0;          /* reset margins */
}

/* show an arrow using standard Unicode so no icon font is required */
.has-submenu > a::after
{
	content: "▾";            /* down arrow for top-level submenu */
	margin-left: 5px;
	font-size: 1rem;
	vertical-align: middle;
}
.submenu .has-submenu > a::after
{
	content: "▸";            /* right arrow for nested (3rd level) parent */
}

/* dropdown (2nd level) */
.submenu
{
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	min-width: 220px;
	z-index: 1000;
	


}
.submenu li
{
	position: relative;
	border-top: none;
	border-right: none;
	border-bottom: 1px dotted #b4b4b4;
	border-left: none;
}
/* IMPORTANT: each li relative for 3rd level */
.submenu li a
{
	background: none repeat scroll 0 0 rgba(250, 250, 250, 0.90);
	color: #f0556c;
	padding: 10px;
	font-weight: 600;
}

/* 3rd level (submenu inside submenu): position to right of parent li */
.submenu .submenu
{
	position: absolute;
	top: 0;            /* align top of 3rd-level with the parent submenu item */
	left: 100%;
	display: none;
	min-width: 200px;
	border-left: 1px solid #ddd;
}

/* Show dropdowns on hover (desktop) and when focused (keyboard) */
.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu
{
	display: block;
}

/* Keep parent link dark while submenu is open */
.has-submenu:hover > a,
.has-submenu:focus-within > a
{
	background: none repeat scroll 0 0 rgba(177, 53, 126, .9);
	color: #ffffff;
}

/* submenu hover styles */
.submenu li a:hover
{
	background: none repeat scroll 0 0 rgba(177, 53, 126, .9);
	color: #ffffff;
}

/* show deeper levels on hover/focus */
.submenu li.has-submenu:hover > .submenu,
.submenu li.has-submenu:focus-within > .submenu
{
	display: block;
}

/* arrows for any nested submenu */
.submenu .has-submenu > a::after
{
	content: "▸"; /* right arrow for deeper levels */
	margin-left: 5px;
	font-size: 1rem;
}

/* quick-menu -FrontPage - START*/

.quick-menu-wrap
{
  width: 100%;
}
.quick-menu ul
{
  display: flex;
  justify-content: space-around;
  padding: 1rem;
  list-style: none;
}

.quick-menu li
{
  width: 20%;
  border-right: 1px solid white;
}
.quick-menu li:last-child
{
  border: none;
}

.quick-menu li a
{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 10px 5px;
  width: 110px;
  text-align: center;
}
.quick-menu li a .label
{
  font-size: 1rem;
  font-weight: 600;
}

.quick-menu a {
 color:  #b1357e; /*#006ecc*/
}
.quick-menu a .icon
{
  background-color: currentColor;
  color:  #b1357e; /*#006ecc*/
  width: 72px;
  height: 72px;
  stroke-width: 3;
}

.quick-menu a:hover .icon
{
  background-color: currentColor;
  color: #fff;
}

.quick-menu a:hover
{
  background: none repeat scroll 0 0 rgba(240, 85, 108, .8);
  border-radius: 10px;
  box-shadow: 2px 3px 20px rgba(0,0,0,.5);
  color: #fff;
  cursor: pointer;
}


/* Breadcrumb
--------------------------*/
#breadcrumb {
  position: relative;
  width: 100%;
  margin: 1rem auto .7rem;
  padding: 0;
padding-left: 10px;
  z-index: 3;
}

.breadcrumb-items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-items .icon.home{
  position: relative;
  top: -2px;        /* lifts icon upward */
  color: #e91e63;   /* pink tone */
  font-size: 16px;  /* adjust as per design */
  margin-right: 6px;
}

.breadcrumb-item{
display: flex;
align-items: center;
font-size: 1rem;
font-weight: 600;
color: #7c7c7c;
}

.breadcrumb-item a{
color: #f0556c;
}

.breadcrumb-item .icon{
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0 8px;
}


@media (min-width: 768px)
{
	.has-submenu:hover > .submenu
	{
		display: block;
	}
}

/* Responsive: hamburger + stacked menu */
@media (max-width: 768px)
{
	.navbar
	{
		position: relative;
		width: 100%;
		display: block;
		z-index: 1000;
		background: #1e73be;
	}

	.hamburger
	{
		position: absolute;
		display: block;
		top: -55px;
		right: 0px;
		z-index: 1001;
		background: #1e73be;
		border: none;
		font-size: 24px;
		color: #fff;
	}

	.menu
	{
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		width: 100%;
		display: none;
		flex-direction: column;
		background: #1e73be;
		z-index: 999;
	}

	.menu.active
	{
		display: flex;
	}

	.menu li
	{
		width: 100%;
	}

	.menu a,
	.submenu a
	{
		padding: 14px 0;
		padding-left: 10px;
		color: #fff;
		font-weight: 700;
		text-decoration: none;
	}

	.submenu,
	.submenu .submenu
	{
		position: static;
		display: none;
		background: none repeat scroll 0 0 rgba(250, 250, 250, 0.90);
		border: none;
		padding-left: 0;

	}
	.submenu li
	{
		width: 100%;
	}

	/* REMOVE hover-based dropdowns */
	.has-submenu:hover > .submenu,
	.has-submenu:focus-within > .submenu,
	.submenu li.has-submenu:hover > .submenu,
	.submenu li.has-submenu:focus-within > .submenu
	{
		display: none;
	}

	/* Only show submenu when .active is toggled via JS */
	.has-submenu.active > .submenu,
	.submenu li.has-submenu.active > .submenu,
	.submenu .has-submenu.active > .submenu
	{
		display: block;
	}

	.submenu li a
	{
		color: #125e98;
		font-weight: 700;
	}
	  /* Breadcrumb */
  #breadcrumb {
    padding: 6px 0;
  }
  .breadcrumb {
    font-size: 0.8rem;
  }
  .breadcrumb-item-seperator {
    margin: 0 6px;
  }
  /* Layout -> Page layout */
  .no-sidebar .main-container,
  .sidebar-left .main-container,
  .sidebar-right .main-container,
  .two-sidebar .main-container {
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
  }
}
