/*

    DISEÑO Y CÓDIGO POR: 
	CYANMAGENTA DESIGN, 2016
        
    *****************************************
		
*/

.contenido_educacion{
	width: 100%;
	margin-top:-50px;
	padding-bottom:80px;
	text-align: center;
	color:#666;
	font-size: 11pt;
	overflow:hidden;
	background-image: url(../images/bg_educacion.png);
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
	background-attachment: relative;
	background-position: center top;
}

.accordion {
  display: inline-block;
  font-size: inherit;
  margin: 0px;
  position: relative;
  width:80%;
  text-align:left;
}

.accordion input {
  display: none;
  position: absolute;
  visibility: hidden;
  left: 50%;
  top: 50%;
  z-index: 1;
}

.accordion__header {
  background-color: #1c75bc;
  border: 1px solid #00AEEF;
  border-bottom-width: 0px;
  color: #FFFFFF;
  cursor: pointer;
  transition: background 0.2s;
  padding: 20px;
  position: relative;
  z-index: 2;
  text-align:center;
}
.accordion__header:hover {
  background-color: #00AEEF;
  color: white;
}
.accordion__header:hover:before, .accordion__header:hover:after {
  background-color: white;
}
.accordion__header:before, .accordion__header:after {
  background-color: #FFF;
  content: '';
  display: block;
  position: absolute;
  z-index: 3;
}
.accordion__header:before {
  height: 2px;
  margin-top: -1px;
  top: 50%;
  right: 20px;
  width: 8px;
}
.accordion__header:after {
  height: 8px;
  margin-top: -4px;
  top: 50%;
  right: 23px;
  width: 2px;
}
.accordion input:checked ~ .accordion__header {
  background: #00AEEF;
  border-color: #00AEEF;
  color: white;
}
.accordion input:checked ~ .accordion__header:hover {
  background-color: #1c75bc;
  border-color: #00AEEF;
  color: white;
}
.accordion input:checked ~ .accordion__header:before {
  background-color: white;
}
.accordion input:checked ~ .accordion__header:after {
  display: none;
}
.accordion:first-child .accordion__header {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.accordion:last-child .accordion__header {
  border-bottom-width: 1px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.accordion:last-child input:checked ~ .accordion__header {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.accordion__content {
  background-color: background: -webkit-linear-gradient(top, rgba(248,248,248,0) 0%, rgba(248,248,248,0.7) 75%);
	background: linear-gradient(to bottom, rgba(248,248,248,0.7) 0%, rgba(248,248,248,0.7) 50%);;
  border: 1px solid #00AEEF;
  border-width: 0px 1px;
  display: none;
  padding: 20px;
}
.accordion input:checked ~ .accordion__content {
  display: block;
}
.accordion:last-child .accordion__content {
  border-bottom-width: 1px;
  border-radius: 0px 0px 4px 4px;
}
.accordion__content h6 {
  color: #00AEEF;
  font-size: 18px;
  margin-bottom: 5px;
}
