
a {
	text-decoration:none;
}


a:link, a:visited, a:active, a:hover {
	text-decoration:none;
	 color: #fff ;
}
/* Accordion */
.accordion, .accordion * {
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
}



.accordion {
	overflow:hidden;
	box-shadow:0px 1px 3px rgba(0,0,0,0.25);
	border-radius:3px;
	background:#f6f6f6;
	width: 65%;
    margin: 0 auto;

}

/* Section Title */
.section-title {
	background:#f5f5f5;
	display:inline-block;
	border-bottom:1px solid #1a1a1a;
	width:100%;
	padding:15px;
	transition:all linear 0.15s;
	color:#fff;
	font-size:20px;
	text-shadow:0px 1px 0px #1b1b1b;
}

.section-title.active,
.section-title:hover {
	/*background:#505050;*/
	font-size:24px;
	background: #114987;
	/*background: linear-gradient(90deg, rgba(140,60,194,1) 1%, rgba(122,87,122,1) 29%, rgba(252,176,69,1) 100%);*/
	text-decoration:none;
}

.section:last-child .section-title {
	border-bottom:none;
}

.section-title:after {
/* Unicode character for "plus" sign (+) */	
    content: '\02795';
    font-size: 13px;
    color: #FFF;
    float: right;
    margin-left: 5px;
}

.section-title.active:after {
/* Unicode character for "minus" sign (-) */
    content: "\2796";
}

/* Section Content */
.section-content {
	display:none;
	padding:20px;
}


/*************************************************************/
.tile {
  height: 200px;
  width: 200px;
  margin: 10px;
  display: inline-block;
  text-decoration: none;
  color: #000;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  user-select: none;
  transition: all 0.2s ease-in-out;
  background-color: #fff;
  text-align: center;
}

.tile-tittle {
  margin: 0;
  width: 100%;
  padding: 0;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  text-transform: uppercase;
  border-bottom: 1px solid #d8d8d8;
  transition: all 0.2s ease-in-out;
  font-size: 15px;
  font-weight: 600;
}

.tile-tittle a{
	color: #000;
}
.tile-tittle a a:link, a:visited, a:active, a:hover{
	color: #000;
}

.tile:hover .tile-tittle {
  color: #4f3bff;
}
.material-symbols-outlined {
  color: #455a64;
}
.material-symbols-rounded {
  color: #455a64;
}
.tile-icon {
  width: 100%;
  height: 160px;
  box-sizing: border-box;
  padding-top: 22px;
}
.tile-icon:hover > span {
  color: #4f3bff;
}
.tile-icon:hover > svg {
  fill: #4f3bff;
}

.full-box {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
}


.tile-container {
  text-align: center;
  padding: 20px 25px;
}