@charset "utf-8";
/* CSS Document */

#contenthp {
background-color:#fff;
padding:0;
  display: flex;
  flex-wrap: wrap;
	filter: drop-shadow(0 0 30px #999);
}

#content-left {
float:left;
width:50%;
padding:30px;
padding-bottom:0;
	background-color: #fff;
}

#content-left h2, #content-left a {
color:#000;
font-weight:400;
}
#content-right h2, #content-right a {
color:#000;
font-weight:400;
}


#content-right {
float:left;
width:50%;
padding:30px;
padding-bottom:0;
	background-color: #fff;
}



.button3 {
   position: relative;
     width: fit-content;
    padding: 13px;
    text-decoration: none;
     line-height: 19px;
    color: #313133;
    background: rgba(218, 222, 65, 1);
    text-align: center;
    z-index: 1;
    border-radius: 25px;
    cursor: pointer;
    margin: 10px 0;
    display: block;
    font-weight: 100;
    font-size: 19px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.button3::before {
    content: '';
    opacity: 0;
    transition: all .3s ease-in-out 0s;
}

.button3:hover,
.button3:focus {
    color: 000;
    background-color:#ccc;
}

.button3:hover::before,
.button3:focus::before {
    opacity: 1;
}

.button3::after {
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 6px solid #dade41;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring3 1.5s infinite;
}

.button3:hover::after,
.button3:focus::after {
    animation: none;
    display: none;
}

@keyframes ring3 {
    0% {
        width: 30px;
        height: 30px;
        opacity: 1;
    }
    100% {
        width: 70px;
        height: 70px;
        opacity: 0;
    }
}

/* Verwijdert bullets van ul's waarvan de li een .button3 link bevat */
ul li a.button3 {
    display: inline-block;  /* zodat ze naast elkaar komen */
    text-decoration: none;
}

ul li a.button3 {
    list-style: none;       /* bullet verwijderen van de link */
}

ul li a.button3::before {
    content: none;          /* geen extra content zoals bullets */
}

/* Plaats de knoppen naast elkaar door de parent ul te maken flex */
ul li a.button3 {
    display: inline-block;
}

/* Flex voor de parent ul automatisch toepassen via li > a.button3 */
ul:has(li > a.button3) {
    list-style: none;       /* verwijdert bullets van de hele lijst */
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;              /* ruimte tussen knoppen */
}

ul:has(li > a.button3) li {
    margin: 0;              /* verwijdert standaard li-marge */
}

/* Mobiel: knoppen onder elkaar en gecentreerd */
@media (max-width: 768px) {
    ul:has(li > a.button3) {
        flex-direction: column;       /* stapelen */
        align-items: center;          /* centreren */
        gap: 10px;                    /* ruimte tussen knoppen */
    }

    ul:has(li > a.button3) li {
        width: 100%;                  /* optioneel: volledige breedte */
        text-align: center;           /* tekst centreren */
    }

    ul:has(li > a.button3) li a.button3 {
        width: auto;                  /* knop past automatisch */
    }
}



#content-right ul {
    list-style: none;
    padding: 0;
}

#content-right ul li::before {
    content: "\f00c";
     font-family: "FontAwesome";
    font-weight: 900; 
    color: #dade41; 
    margin-right: 8px;
}
