@charset "UTF-8";
/* ===== CONTAINER ===== */
.accordion {
  max-width: 800px;
  margin: 40px auto;
}

/* ===== ITEM ===== */
.accordion-item {
  background-col.or: transparent;
  margin-bottom: 15px;
  overflow: hidden;
  border-bottom: solid 1px #bcf706;
  color:#bcf706;
    font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Hide checkbox */
.accordion-item input {
  display: none;
}

/* ===== TITLE ===== */
.accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.accordion-title:hover {
}

/* ===== PLUS / MINUS ICON ===== */
.icon {
  position: relative;
  width: 18px;
  height: 18px;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  background: #bcf706;
  transition: 0.3s ease;
 
}

/* horizontal line */
.icon::before {
  width: 18px;
  height: 2px;
  top: 8px;
  left: 0;
}

/* vertical line */
.icon::after {
  width: 2px;
  height: 18px;
  left: 8px;
  top: 0;
}

/* ===== CONTENT ===== */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 20px;
  opacity: 0;
    font-family: "Kantumruy Pro", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

/* Open state */
.accordion-item input:checked ~ .accordion-content {
  max-height: 600px !important;
  height:auto !important;
  padding: 20px;
  opacity: 1;
}

/* Turn + into − */
.accordion-item input:checked + .accordion-title .icon::after {
  transform: scaleY(0);
}

.re-btn {text-align:center; padding:2%; margin:auto;}

.container-real{
    max-width:800px;
    margin:40px auto;
    display:flex;
    align-items:center;
    gap:20px;
    padding:0 10px;
	
}

.container-real h3{
	font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-style: normal;
  color:#bcf706;
	}
	
	.container-real a{font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-style: normal;
  color:#bcf706; font-size:12px}
	.container-real a:hover {}

.image-real img{
    width:100%;
    height:auto;
    display:block;
}

.image-real{
    flex:1;
}

.text-real{
    flex:1;
}

/* responsive */
@media (max-width:700px){

.container-real{
    flex-direction:column;
	height:600px !important
}

}
