/* Dynamic Text Block */

.dynamic-text{
    display: flex;
    flex-wrap: wrap;
    column-gap: .25em;
    /* justify-content: center; */
    /* font-weight: 300;
    font-size: var(--size-l); */
}


/* @media screen and (min-width: 992px) {
    .dynamic-text{
        font-size: var(--size-xxl);
    }
}
 */

.symbol {
  width: .9em;
  height: .9em;
  display: inline-block;
  vertical-align: -0.1em; /* tweak this value as needed */
}

.whitespace-nowrap{
    white-space: nowrap;
}

.triangle > .symbol { /* <-- Updated selector */
    margin-left: -0.075em;
    margin-right: -0.075em;
}

.square > .symbol { /* <-- Updated selector */
    margin-left: -0.03em;
    margin-right: -0.03em;
}

.circle > .symbol { /* <-- Updated selector */
    margin-left: -0.03em;
    margin-right: -0.03em;
}


h1, h2, h3, h4, h5, h6 {
    margin-top: -0.2em;
}

p{
    margin-top: -0.2em;
    line-height: 1.3em;
}

.list-block li{
    line-height: 1.2em;
}

.child-item-label{
    margin-bottom: var(--size-l);
}


#header{
    -webkit-backdrop-filter: blur(50px);
    background-color: rgba(255, 255, 255, 0.51);
    backdrop-filter: blur(50px);
}



@media screen and (min-width: 992px) {

    .child-item a img{
        transform: translateY(0);
        transition: transform 0.3s ease;
    }

    .child-item a img:hover{
        transform: translateY(-1rem);
    }

}