body {
    font-family: 'Montserrat', sans-serif;
	background: white;
}

ul li {
    margin-right: 50px;
}

h2.main-title {
    font-family: 'Oswald', sans-serif;
}

.media-box {
    display: flex;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 20px;
    background: linear-gradient(51deg, rgba(11, 29, 38, 0.00) 10.49%, #0B1D26 183.09%), url(media/autistic.jpg) lightgray -52.378px -123.561px / 205.031% 132.5% no-repeat;
    box-shadow: 0px 20px 48.34px 0px rgba(25, 200, 219, 0.10);
    height: 560px;
}

.person-box {
    border-radius: 20px;
    background: linear-gradient(82deg, #3E4549 2.25%, #6C727E 79.87%), #FFF;
    box-shadow: 0px 20px 48.34px 0px rgba(25, 200, 219, 0.10);
}

.key-box {
    display: flex;
    padding: 40px 30px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 20px;
    box-shadow: 0px 20px 48.34px 0px rgba(25, 200, 219, 0.10);
}

.key-box .inner {
    background: rgba(25, 200, 219, 0.10);
    width: 62px;
    min-width: 62px;
    max-height: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.key-box h2 {
    color: #2D2D2D;
    font-family: 'Oswald';
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; /* 31.2px */
    letter-spacing: -0.48px;
    text-transform: uppercase;
    margin-left: 24px;
}

.key-box p {
    color: #2D2D2D;
    font-family: 'Montserrat';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.cropped {
    display: flex;
    box-shadow: 0px 20px 48.34px 0px rgba(25, 200, 219, 0.10);
    height: 560px;
    width: 385px;
}

.key-box-new {
    display: flex;
    padding: 16px 20px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 20px;
    box-shadow: 0px 20px 48.34px 0px rgba(25, 200, 219, 0.10);
    font-weight: 600 !important;
}

.key-box-new b {
    font-weight: 400 !important;
}

.member-card {
    border-radius: 20px;
    background: var(--neutrals-white, #FFF);
    box-shadow: 0px 20px 48.34px 0px rgba(25, 200, 219, 0.10);
    height: 495px;
    min-height: 495px;
    max-height: 495px;
    display: flex;
    flex-direction: column;
    align-items: space-between;
    justify-content: flex-start;
}

.member-card h3 {
    height: 100%;
}

.key-box-new .inner {
    background: rgba(25, 200, 219, 0.10);
    width: 53px;
    min-width: 53px;
    max-height: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.key-box-new .inner img {
    width: 28px;
    height: 28px;
}


.key-box-new h2 {
    color: var(--Onboarding-background-grey, #2D2D2D);
    font-family: Oswald;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
    text-transform: uppercase;
    margin-left: 20px;
}

.accordion .container {
    position: relative;
    border-radius: 8px;
    width: 100%;
}

/* Positions the labels relative to the .container. Adds padding to the top and bottom and increases font size. Also makes its cursor a pointer */

.accordion .label {
    font-family: Oswald;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
    letter-spacing: 0.4px;
    text-transform: uppercase;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    cursor: pointer;
}

.accordion .label::before {
    content: '+';
    color: black;
    position: absolute;
    top: 50%;
    right: -5px;
    font-size: 30px;
    transform: translateY(-50%);
}

/* Hides the content (height: 0), decreases font size, justifies text and adds transition */

.accordion .content {
    position: relative;
    height: 0;
    font-size: 20px;
    text-align: justify;
    overflow: hidden;
    transition: 0.5s;
    color: #111927;
    font-family: 'Montserrat';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 200% */
    display: none;
    width: 100%;
}


.accordion .container.active .content {
    height: fit-content;
    position: relative;
    text-align: justify;
    overflow: hidden;
    transition: 0.5s;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    color: #111927;
    font-family: 'Montserrat';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 200% */
    display: flex;
}


.accordion .container.active .label {
    background: #fff;
}

.container.active {
    border: 1px solid #19C8DB;
}

/* Changes from plus sign to negative sign once active */

.accordion .container.active .label::before {
    content: '-';
    font-size: 30px;
}