:root {
    --primary: #227093;
    --secondary: #ff5252;
    --background: #eee;
    --highlight: #ffda79;
    /* Theme color */
    --theme: var(--primary);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}
.sectioncreate
{
    background: linear-gradient(181.07deg, #CFE1FF -5.43%, rgba(255, 255, 255, 0.15) 60.79%);
    padding: 60px 0 0;
}
.sectioncreateActivities
{
    padding: 0 0 60px 0;
}
.sectioncreate .container
{
    text-align: center;
}
.sectioncreate .container .heroImg
{
    max-width: 500px;
    margin: 20px 0;
}
.sectioncreate .toolsHighlight
{
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #EDF4FF, #fbf0fc);  
    border-radius: 16px;
    padding: 14px;
}
.sectioncreate .toolsHighlight img
{
    width: 32px;    
}
.sectioncreate .toolsHighlight a
{
    color: #5F44F4; 
    text-decoration: none;
    font-weight: 600;
}
.sectioncreate .toolsHighlight a:hover
{
    text-decoration: underline;
}
.accordionsGridTitle{
    font-size: 30px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 30px;
    margin-top: 80px;
    text-align: center;
}
.accordionsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    place-content: center;
    place-items: start;
    margin: 0;
}
.tab__content a {
    font-weight: 600;
    color: #124694;
    text-decoration: none;
}
.tab__content a:hover {
    text-decoration: underline;
}


/* Core styles/functionality */
.tab input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.tab__content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s;
    text-align: start;
    padding: 0px 0px;
}

.tab input:checked~.tab__content {
    max-height: 25rem;
    padding: 6px 0px;
}

.accordion {
    border-radius: 16px;
    overflow: hidden;
    background-color: #F8F8F8;
    color: #333;
    padding: 8px 14px;
}


.catSkills .accordion {
    background-color: #e7f4ff;
}
.catClassroom .accordion {
    background-color: #f3eeff;
}
.catComf .accordion {
    background-color: #ecfded;
}
.catUncomf .accordion {
    background-color: #fff1e3;
}

.accordion img {
    pointer-events: none;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    margin: 8px 0px;
}
.accordion .activityTitle
{
    font-weight: 600;
    text-align: center;
    font-size: 18px;
}


.tab__label,
.tab__close {
    display: flex;
    cursor: pointer;
    align-items: center;
}

.tab__label {
    justify-content: space-between;
    padding: 6px 0px;
    font-weight: 600;
}

.tab__label::after {
    content: "\276F";
    width: 18px;
    height: 18px;
    text-align: center;
    transform: rotate(90deg);
    transition: all 0.35s;
    font-family: sans-serif;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

.tab input:checked+.tab__label::after {
    transform: rotate(270deg);
}

.tab__content p {
    margin: 0;
}

.tab__close {
    justify-content: flex-end;
    padding: 12px;
}

.accordion--radio {
    --theme: var(--secondary);
}

/* Arrow animation */
.tab input:not(:checked)+.tab__label:hover::after {
    animation: bounce .5s infinite;
}

@keyframes bounce {
    25% {
        transform: rotate(90deg) translate(.25rem);
    }

    75% {
        transform: rotate(90deg) translate(-.25rem);
    }
}

@media (min-width: 991px) and (max-width: 1400px) {
    .accordionsGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 990px) {
    .accordionsGrid {
        grid-template-columns: repeat(1, 1fr);
    }
    .sectioncreate .container .heroImg
    {
        max-width: 90%;
    }
}