/* SECTION BANNER START */
.section-banner {
    display: grid;
    grid-template-columns: 100%;
    min-height: 150px;
    margin-top: 75px;
    margin-bottom: 25px;
}

.section-banner .banner-content {
    padding: 25px;
    margin-right: 0px;

    display: flex;
    flex-direction: column;
    justify-content: center;/* Center content vertically */
    align-items: center;/* Center content horizontally */
}

.section-banner .banner-content h2 {
    margin: 0;
    font-size: 32px;

    display: block;
}

.section-banner .banner-img {
    display: none;
}

.section-blue .banner-content {
    background-color: rgb(var(--color-new-blue));
    color: #fff;
}
.section-blue .banner-img {
    background-image: url("../../report-rapport/intro/section-blue-banner.jpg");
    background-position-x: center;
    background-position-y: center;
    background-size: 100%;
}
.section-blue h3 {
    color: rgb(var(--color-new-blue));
}

.section-brown .banner-content {
    background-color: rgb(var(--color-new-brown));
    color: #fff;
}
.section-brown .banner-img {
    background-image: url("../../report-rapport/intro/section-brown-banner.jpg");
    background-position-x: center;
    background-position-y: center;
    background-size: 100%;
}
.section-brown h3 {
    color: rgb(var(--color-new-brown));
}

.section-green .banner-content {
    background-color: rgb(var(--color-new-green));
    color: #fff;
}
.section-green .banner-img {
    background-image: url("../../report-rapport/intro/section-green-banner.jpg");
    background-position-x: center;
    background-position-y: center;
    background-size: 100%;
}
.section-green h3 {
    color: rgb(var(--color-new-green));
}


.section-yellow .banner-content {
    background-color: rgb(var(--color-new-yellow));
    color: #fff;
}
.section-yellow .banner-img {
    background-image: url("../../report-rapport/intro/section-yellow-banner.jpg");
    background-position-x: center;
    background-position-y: center;
    background-size: 100%;
}
.section-yellow h3 {
    color: rgb(var(--color-new-yellow));
}
/* SECTION BANNER END */

/* CUSTOM FIGURES START */
figure.panel-default.panel {
    max-width: 100%;
}

.section-blue .boxAttachedTitle {
    color: #fff;
    background-color: rgb(var(--color-new-blue)); /* #f5f5f5 */
}

.section-brown .boxAttachedTitle {
    color: #fff;
    background-color: rgb(var(--color-new-brown)); /* #f5f5f5 */
}

.section-green .boxAttachedTitle {
    color: #fff;
    background-color: rgb(var(--color-new-green)); /* #f5f5f5 */
}

.section-yellow .boxAttachedTitle {
    color: #fff;
    background-color: rgb(var(--color-new-yellow)); /* #f5f5f5 */
}

.boxAttachedTitle {
    width: 100%;
    font-size: 16px;
    padding: 15px;
    border-bottom: solid 1px #8e8e8e;
    border-radius: 3px 3px 0 0;

    display: flex;
    flex-direction: column;
    justify-content: center;/* Center content vertically */
    align-items: start;/* Center content horizontally */
}

.boxAttachedTitle p {
    font-family: "Lato", sans-serif;
    margin-bottom: 0px;
}

.boxAttachedTitle p br {
    margin-bottom: 3px;
}

.boxAttachedTitle .lead {
    font-size: 20px;
}

.boxAttached .panel-heading {
    background-color: white;
    border-bottom: solid 1px #8e8e8e;
}

.boxAttached .boxAttachedDouble {
    display: flex;
    flex-direction: column;
    justify-content: center;/* Center content vertically */
    align-items: start;/* Center content horizontally */
}

.boxAttached .boxAttachedDouble .double-first {
    border-bottom: solid 1px #8e8e8e;
    width: 100%;
}

.boxAttached .boxAttachedDouble .double-second {
    width: 100%;
}

/* CUSTOM FIGURES END */

/* CHAPTER WELLS START */
.chapter-well {
    width: 100%;
    margin: 35px 0;
    border: solid 3px #000;
    border-radius: 10px;
    min-height: 150px;
    padding: 0px 35px 25px 35px;
}

.chapter-well h4 {
    text-align: center;
    max-width: 750px;
    margin: 25px auto;
}

.section-blue .chapter-well {
    border-color: rgb(var(--color-new-blue));
}
.section-blue .chapter-well h4 {
    color: rgb(var(--color-new-blue));
}

.section-brown .chapter-well {
    border-color: rgb(var(--color-new-brown));
}
.section-brown .chapter-well h4 {
    color: rgb(var(--color-new-brown));
}

.section-green .chapter-well {
    border-color: rgb(var(--color-new-green));
}
.section-green .chapter-well h4 {
    color: rgb(var(--color-new-green));
}

.section-yellow .chapter-well {
    border-color: rgb(var(--color-new-yellow));
}
.section-yellow .chapter-well h4 {
    color: rgb(var(--color-new-yellow));
}
/* CHAPTER WELLS END */

/* BIG MIDDLE START */
.bigMiddle {
    text-align: center;
    font-size: 26px;
    max-width: 800px;
    margin: 50px auto;
    font-weight: 800;
    line-height: 36px;
}

.section-blue .bigMiddle {
    color: rgb(var(--color-new-blue));
}

.section-brown .bigMiddle {
    color: rgb(var(--color-new-brown));
}

.section-green .bigMiddle {
    color: rgb(var(--color-new-green));
}

.section-yellow .bigMiddle {
    color: rgb(var(--color-new-yellow));
}
/* BIG MIDDLE END */

/* DATE HIGHLIGHT START */
.date-highlight {
    max-width: 700px;
    border-left: solid rgb(var(--color-new-brown)) 15px;
    padding: 15px 10px 15px 25px;
    margin: 75px auto;

    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.date-highlight p strong {
    color: rgb(var(--color-new-brown));
    font-size: 26px;
}
/* DATE HIGHLIGHT END */

/* CHEVRON BAR START */
.maple-center {
    background-image: url("./../../report-rapport/icons/maple-leaf.svg");
    background-position: center;
    background-size: 250px;
    background-repeat: no-repeat;
    min-height: 250px;
    color: #fff;
    margin: 25px 0;

    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */

    text-align: center;
    font-weight: 800;
    line-height: 25px;
    padding-top: 40px;
}

.chevron-bar {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    gap: 10px;
}

.chevron-bar li {
    flex: 1;
    padding: 10px 35px 10px 50px;
    color: #fff;
    background: rgb(var(--color-new-green));
    display: flex;
    align-items: center;

    justify-content: space-between;
    gap: 10px;
}

.chevron-bar li .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;

    width: 100%;
}

.chevron-bar li .text h5 {
    font-size: 20px;
}

.chevron-bar li .text p {
    font-size: 16px;
}

.chevron-bar li img {
    display: none;
}

/* chevron shapes */
.chevron-bar li:nth-child(1) {
    clip-path: polygon(0% 0%,
            calc(100% - 25px) 0%,
            100% 50%,
            calc(100% - 25px) 100%,
            0% 100%,
            25px 50%);
}

.chevron-bar li:nth-child(2) {
    clip-path: polygon(0% 0%,
            calc(100% - 25px) 0%,
            100% 50%,
            calc(100% - 25px) 100%,
            0% 100%,
            25px 50%);
}

.chevron-bar li:nth-child(3) {
    clip-path: polygon(0% 0%,
            calc(100% - 25px) 0%,
            100% 50%,
            calc(100% - 25px) 100%,
            0% 100%,
            25px 50%);
}

.chevron-bar img {
    max-width: 50px;
}
/* CHEVRON BAR END */

/* ICONS DIV START */
.icons-div {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 35px;
    
    outline: solid 1px rgb(var(--color-new-green));
}

.icons-div .icons-container {
    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
}

.icons-div .light-bg, .icons-div .dark-bg {
    font-weight: 800;
    padding: 5px;
    margin: 0;
    text-align: center;
}

.icons-div .light-bg {
    font-size: 24px;
    background-color: #fff;
    color: rgb(var(--color-new-green));
}

.icons-div .dark-bg {
    background-color: rgb(var(--color-new-green));
    color: #fff;
}

.icons-div .icons-content {
    margin-left: 15px;
}

.icons-div img {
    max-height: 150px;
    max-width: 150px;
    margin: 35px 0;
}
/* ICONS DIV END */

.section-brown .media-list .glyphicon-ok:before {
    color: rgb(var(--color-new-brown))!important;
}

/*SMALL TABLET/MOBILE STYLING*/
@media screen and (min-width: 550px) {
    .chevron-bar li img {
        display: initial;
        max-width: 80px;
        height: auto;
        flex-shrink: 0;
    }
}

/*TABLET/MOBILE STYLING*/
@media screen and (min-width: 768px) {
    .section-banner {
        grid-template-columns: 45% 55%;
        min-height: 250px;
    }

    .section-banner .banner-content {
        margin-right: 15px;
    }
    
    .section-banner .banner-img {
        display: initial;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .boxAttachedTitle {
        font-size: 18px;
    }
    .boxAttachedTitle .lead {
        font-size: 24px;
    }

    .boxAttached .boxAttachedDouble {
        flex-direction: row;
        justify-content: center;/* Center content vertically */
        align-items: start;/* Center content horizontally */
    }

    .boxAttached .boxAttachedDouble .double-first {
        border-right: solid 1px #8e8e8e;
        border-bottom: none;
        border-bottom-left-radius: 3px;
        width: 50%;
    }

    .boxAttached .boxAttachedDouble .double-second {
        border-bottom-right-radius: 3px;
        width: 50%;
    }
    
    .boxAttached .boxAttachedDouble .double-second .panel-footer {
        margin-top: -0.5px;
    }
}

/*DESKTOP STYLING*/
@media screen and (min-width: 992px) {
    .icons-div .icons-container {
        flex-direction: row;
    }

    .icons-div img {
        min-width: 150px;
        margin: 0 35px;
    }
}

/*DESKTOP STYLING*/
@media screen and (min-width: 1200px) {
    .section-yellow .banner-img {
        background-position-y: top -50px;
    }
    
    .chevron-bar {
        margin: auto;
        max-width: 800px;
    }
}