.section_1 {}


/* ---------- Accordion ---------- */
.accordion {}

.accItem {
    border-radius: 20px;
    box-shadow: 0 0 15px #00000030;

    &:not(:last-child) {
        margin-bottom: 40px;
    }
}

.accItem:last-child {
    border-bottom: none;
}

.accTrigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 0 0 20px 20px;
    border-bottom: 2px solid transparent;
    background: none;
    cursor: pointer;
    padding: 20px 24px;
    text-align: left;
    font-family: inherit;
    transition: all 0.5s;
}

.accTrigger[aria-expanded="true"] {
    border-radius: 0;
    border-color: #000;
}

.accTrigger:hover {
    background: var(--panel);
}

.accTrigger .idx {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;

    img {
        display: inline-block;
    }
}

.accTrigger .ttl {
    flex: 1;
    width: calc(100% - 80px);
    text-transform: capitalize;
}


/* accent colours per theme */


/* ---------- Container ---------- */
.accContainer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
    background: var(--panel);
}

.accContainer .inner {
    display: flex;
    align-items: center;
    padding: 20px 24px 28px;
}

.grid {
    display: flex;
    flex-wrap: wrap;
}

.innerFlex {
    display: flex;
    flex-wrap: wrap;

    .imagWrap {
        width: 600px;
        position: relative;

        figure {
            overflow: hidden;
            position: relative;
            border-radius: 15px;

            img {
                width: 100%;
                height: 100%;
            }

            .figT {
                right: 20px;
                bottom: 20px;
                padding: 8px 15px;
                color: var(--black);
                border-radius: 25px;
                position: absolute;
                background-color: var(--white);
            }
        }

        .imgCont {
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            position: absolute;

            .imgContInner {
                padding: 30px;
                height: 100%;
                display: flex;
                justify-content: space-between;
                flex-direction: column;
            }
        }
    }

    .grid {
        padding-left: 30px;
        width: calc(100% - 600px);
    }
}



/* ---------- Number box ---------- */
.numBox {
    width: calc(100% / 3);
    padding: 30px 15px 30px 0;
    display: flex;
    align-items: center;

    .numBoxInner {
        position: relative;
        padding-left: 15px;

        &:before,
        &:after {
            top: 0;
            left: 0;
            width: 2px;
            content: '';
            position: absolute;
        }

        &:before {
            height: 30px;
        }

        &:after {
            width: 2px;
            bottom: 0;
            background-color: transparent;
            border-left: 2px dotted transparent;
        }
    }
}

.accordBlue {
    .numBox {
        .numBoxInner {

            &:before,
            &:after {
                background-color: var(--blue);
            }

            &:after {
                background-color: transparent;
                border-left: 2px dotted var(--blue);
            }
        }
    }
}

.accordOrange {
    .numBox {
        .numBoxInner {

            &:before,
            &:after {
                background-color: var(--orange);
            }

            &:after {
                background-color: transparent;
                border-left: 2px dotted var(--orange);
            }
        }
    }
}

.accordOrangeTwo {
    .numBox {
        .numBoxInner {

            &:before,
            &:after {
                background-color: #f58220;
            }

            &:after {
                background-color: transparent;
                border-left: 2px dotted #f58220;
            }
        }
    }
}

.bg_F58220 {
    background-color: #f58220;
}

.accordGreen {
    background-color: #dae5d7;

    .numBox {
        .numBoxInner {

            &:before,
            &:after {
                background-color: var(--green);
            }

            &:after {
                background-color: transparent;
                border-left: 2px dotted var(--green);
            }
        }
    }
}

.accordGreenLt {
    background-color: #eaefe7;

    .numBox {
        .numBoxInner {

            &:before,
            &:after {
                background-color: var(--green);
            }

            &:after {
                background-color: transparent;
                border-left: 2px dotted var(--green);
            }
        }
    }
}

.t-ops .numBox {
    border-left-color: var(--orange);
}

.t-sus .numBox,
.t-env .numBox,
.t-soc .numBox,
.t-gov .numBox {
    border-left-color: var(--green);
}

.numBox .val {
    font-size: 30px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 3px;
}

.t-ops .numBox .val {
    color: var(--orange);
}

.t-sus .numBox .val,
.t-env .numBox .val,
.t-soc .numBox .val,
.t-gov .numBox .val {
    color: var(--green-deep);
}

.numBox .pre {}

.numBox .suf {}

.numBox .num {
    font-variant-numeric: tabular-nums;
}

.numBox .lbl {
    font-size: 13.5px;
    /* color: var(--muted); */
    /* margin-top: 8px; */
    line-height: 1.4;
    color: #000;
}

@media (max-width:1440px) {
    .numBox {
        width: calc(100% / 2);
        padding: 20px 15px 20px 0;
    }
}

@media (max-width:1200px) {
    .numBox {
        .fz_40 {
            font-size: 28px !important;
        }
    }

    .accContainer .inner {
        align-items: initial;
    }

    .innerFlex {
        .imagWrap {
            width: 440px;
            position: relative;

            figure {
                height: 100%;
            }

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center center;
            }
        }

        .grid {
            padding-left: 30px;
            width: calc(100% - 440px);
        }
    }
}

@media (max-width:1100px) {
    .innerFlex {
        .imagWrap {
            width: 440px;
        }

        .grid {
            padding-left: 20px;
            width: calc(100% - 440px);
        }
    }
}

@media (max-width: 1024px) {
    .innerFlex {
        .imagWrap {
            width: 100%;
        }

        .grid {
            padding-left: 0px;
            width: 100%;
            padding-top: 20px;
        }
    }
}

@media (max-width:768px) {
    .innerFlex {
        .imagWrap {
            width: 100%;
            height: 300px;
        }
    }

    .accTrigger .idx {
        width: 60px;
        height: 60px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px;
    }

    .numBox {
        width: 100%;
        padding: 20px 15px 20px 0;
    }

    .innerFlex {
        .imagWrap {
            .imgCont {
                .imgContInner {
                    .fz_26 {
                        font-size: 20px !important;
                    }

                    .fz_40 {
                        font-size: 24px !important;
                    }

                    .fz_60 {
                        font-size: 30px !important;
                    }
                }
            }
        }
    }
}

@media (max-width:575px) {
    .innerFlex {
        .imagWrap {
            .imgCont {
                .imgContInner {
                    .fz_26 {
                        font-size: 17px !important;
                    }

                    .fz_60 {
                        font-size: 24px !important;
                    }

                    .fz_40 {
                        font-size: 20px !important;
                    }
                }
            }
        }
    }
}