*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: 0;
	font-family: Arial, Helvetica, sans-serif;
}


/**Start index page's accordion css**/
.acc {
	margin-bottom: 10px;
  }

  .acc-head {
	padding: 7px 10px;
	font-size: 22px;
	position: relative;
	cursor: pointer;
   }

   .acc-head::before,
   .acc-head::after {
	content: '';
	position: absolute;
	top: 50%;
	background-color: #000000;
	transition: all .3s;
   }

   .acc-head::before {
	  right: 19px;
	  width: 3px;
	  height: 13px;
	  margin-top: -6px;
  }

  .acc-head::after {
	  right: 14px;
	  width: 13px;
	  height: 3px;
	  margin-top: -1px;
  }

  .acc-head p {
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 20px;
  }

  .acc-content {
	padding: 15px 10px;
	display: none;
	padding-top: 0;
  }
		  
  .acc-head.active::before {
	  transform: rotate(90deg);
  }
  /** //End index page's accordion css**/

.accordion {
	margin-left: 0;
	background: #fefefe;
	list-style-type: none
}

.accordion-item:first-child>:first-child {
	border-radius: 0
}

.accordion-item:last-child>:last-child {
	border-radius: 0
}

.accordion-title {
	position: relative;
	display: block;
	padding: 1.25rem 1rem;
	border: 1px solid #e6e6e6;
	border-bottom: 0;
	font-size: .75rem;
	line-height: 1;
	color: #1779ba
}

:last-child:not(.is-active)>.accordion-title {
	border-bottom: 1px solid #e6e6e6;
	border-radius: 0
}

.accordion-title:hover,
.accordion-title:focus {
	background-color: #e6e6e6
}

.accordion-title::before {
	position: absolute;
	top: 50%;
	right: 1rem;
	margin-top: -0.5rem;
	content: '+'
}

.is-active>.accordion-title::before {
	content: '\2013'
}

.accordion-content {
	display: none;
	padding: 1rem;
	border: 1px solid #e6e6e6;
	border-bottom: 0;
	background-color: #fefefe;
	color: #0a0a0a
}

:last-child>.accordion-content:last-child {
	border-bottom: 1px solid #e6e6e6
}

.is-accordion-submenu-parent>a {
	position: relative
}

.is-accordion-submenu-parent>a::after {
	display: block;
	width: 0;
	height: 0;
	border: inset 6px;
	content: '';
	border-bottom-width: 0;
	border-top-style: solid;
	border-color: #1779ba transparent transparent;
	position: absolute;
	top: 50%;
	margin-top: -3px;
	right: 1rem
}

.is-accordion-submenu-parent[aria-expanded='true']>a::after {
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%
}











