.banner-bg {
    background-image: url(../images/handshake.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    height: 450px;
    width: 100%;
}

.banner-bg-gradient {
    background-image: linear-gradient(0deg, rgba(16, 151, 204, 0.9), rgba(112, 163, 146, 0.9));
    background-size: cover;
    height: inherit;
    padding: 55px;
}

.header-content-align {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 80px;
}

.header-text-main {
    color: var(--white);
    font-family: var(--font-family-myriadpro-bold);
    font-size: 54.8px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 65.8px;
}

.header-text-smaller {
    color: var(--white);
    font-family: var(--font-family-myriadpro-regular);
    font-size: var(--font-size-xxxxl);
    font-weight: 400;
    height: 242px;
    letter-spacing: 0;
    line-height: 26.4px;
    width: 453px;
}

.banner-block {
    width: 450px;
    height: inherit;
}

/* ---------------------- Team  */
.our-team-header {
    height: 45px;
}

.our-team-header p {
    color: var(--mine-shaft);
    font-family: var(--font-family-myriadpro-semibold);
    font-size: var(--font-size-xxxxxl);
    font-style: normal;
    font-weight: 600;
}

.our-team-container {
    display: flex;
    flex-flow: column;
}



.team-gallery-container {
    margin-top: 48px;
    height: 600px;
}

.team-card-space {
    width: 150px;
}

.team-card {
    width: 100%;
    text-align: center;
}

.gallery-scroll {
    overflow: auto;
    flex-direction: inherit;
    width: initial;
}

.gallery-image-header {
    background-color: #78B4B0;
    width: 100%;
    height: 333px;
    padding-top: 20px;
    min-width: 275px;
    /* --bs-gutter-x: 0; */
}

.user-image {
    height: 280px;
    margin: auto;
    width: auto;
    min-width: 275px;
    /* background-image: url(../images/members_bg.png);
    background-position: 50% 50%; */
}

.user-image img {
    height: inherit;
}

.member-name {
    color: var(--chelsea-cucumber);
    font-family: var(--font-family-myriadpro-bold);
    font-size: var(--font-size-xxxxl);
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 29px;
    min-height: 26px;
    white-space: nowrap;
}

.member-qualification {
    color: var(--chelsea-cucumber);
    font-family: var(--font-family-myriadpro-regular);
    font-size: 23px;
    letter-spacing: 0;
    line-height: 28px;
    margin-top: 7px;
    min-height: 25px;
    /* white-space: nowrap; */
}

.member-position {
    color: var(--mine-shaft);
    font-family: var(--font-family-myriadpro-bold);
    font-size: var(--font-size-xxl);
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 25px;
    white-space: nowrap;
}

.member-description {
    color: var(--mine-shaft);
    font-family: var(--font-family-calibri-light);
    font-size: var(--font-size-xxl);
    font-style: normal;
    font-weight: 300;
}

.read-more-bold {
    color: var(--mine-shaft);
    font-family: var(--font-family-calibri-bold);
    font-size: var(--font-size-xxl);
    font-style: normal;
    font-weight: 500;
}

.read-more-hidden {
    display: none;
}

.million-4 {
    background-image: url(../images/4mill.png);
    background-repeat: no-repeat;
    height: inherit;
    margin: auto;
    padding: auto;
}

.million-6 {
    background-image: url(../images/6mill.png);
    background-repeat: no-repeat;
    height: inherit;
    margin: auto;
    padding: auto;
}

.million-7 {
    background-image: url(../images/7mill.png);
    background-repeat: no-repeat;
    height: inherit;
    margin: auto;
    padding: auto;
}

.media {
    background-image: url(../images/media.png);
    background-repeat: no-repeat;
    height: inherit;
    margin: auto;
    padding: auto;
}

.achievements-heading {
    margin-top: 60px;
    color: var(--white);
    font-family: var(--font-family-myriadpro-bold);
    font-size: 54.8px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 65.8px;

}

.achievements-items {
    margin-top: 60px;
    height: 470px;
}

.trigger {
    input[type="checkbox"] {

        // Hide content via default
        &+span {
            visibility: hidden;
            opacity: 0;

            transition: visibility 0s linear 0.33s, opacity 0.33s linear;
        }

        // Show if checkbox is clicked
        &:checked+span {
            visibility: visible;
            opacity: 1;

            transition-delay: 0s;
        }
    }
}