/* styles inherited from past report years */
:root {
    --orange: #F3911F;
    --bright-tan: #FBF0E4;
    --dark-tan: #F4D9BC;
    --dark-purple: #88114C;
    --purple: #AA1F60;
    --bright-purpole: #E7CFDB;
    --black: #2F2F2F;
}

.orange {
    color: #F3911F;
}

*, ::after, ::before {
    box-sizing: border-box;
}

p {
    font-weight: 400;
}

blockquote {
    font-weight: 600;
    font-size: 1.1rem;
    vertical-align: initial;
    font-style: italic;
    color: var(--dark-purple);
    display: inline-block;
    clear: both;
    float: none;
    padding: 25px 10% 25px 2%;
}

.pb-0 {
    padding-bottom: 0;
}

span {
    font-weight: 400;
}

.border-fr a {
    color: var(--purple);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;

}

h1, h2, h3, h4, h5, h6,b {
    font-weight: 700;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.3rem;
}

h3 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.5rem;
}

a {
    text-decoration: none;
}

li {
    text-decoration: none;
}

ul {
    list-style-type: none;
}
ul.bullets {
    list-style-type: disc !important;
}

.bold {
    font-weight: 700;
}

.no-bold .wrapper {
    font-weight: 400;
}

.center {
    text-align: center !important;
    width: 100%;
}



.uppercase {
    text-transform: uppercase;
}

.wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 20px;
}

.max-80 {
    max-width: 70%;
    min-width: 320px;
}
.mb-30 {
    margin-bottom: 30px;
}

.showMenu {
    display: flex !important;
}

.navbar {
    z-index: 2002;
    position: relative;
    margin-top: -90px;
    margin-bottom: -100px;
    background-color: transparent;
}

.wrapper-nav {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    width: 100%;
}

.logo {
   max-height: 40px;
    cursor: pointer;
    visibility: hidden;
}

.nav-menu {
    display: flex;
    color: var(--purple);
}

.nav-menu p {
    padding: 0 25px;
    cursor: pointer;
    font-weight: bold;
    color: var(--purple);
}

.border-fr {
    border-right: 1px solid var(--purple);
}

.container-menu {
    display: flex;
    padding: 0 25px;
    align-items: flex-start;
}

.container-menu span {
    font-weight: bold;
    padding-right: 10px;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    cursor: pointer;
    padding-top: 0;
    width: 30px;
    height: 13px;
    margin: 6px 0 0 2px;
    background-image: url("./images/hamburger.png");
    background-position: bottom left;
    background-size: 30px 13px;
    background-repeat: no-repeat;
}
.hamburger-menu#sticky-menu1 {
    margin-left: 10px;
    margin-top: 3px;
}

/*navbar*/
.wrapper-navbar {
    position: static;
    opacity: 0;
    top: -20vh;
    background-color: white;
    width: 100%;
    padding: 15px 2%;
    z-index: 2011;
    box-shadow: 2px 2px 5px rgb(0 0 0 /4%);
    transition: 0.5s;
}

.add-top {
    top: 0;
    position: sticky;
}

.show {
    opacity: 1;
    transition: 0.5s;
}

.container-navbar {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--purple);
}

.container-logo-navbar > img {
    max-height: 40px;
    cursor: pointer;
}

img {
    vertical-align: middle;
    border-style: none;
}

.open-menu {
    display: flex;
    align-items: center;
    width: 250px;
    cursor: pointer;
    margin-right: 1%;
}
.open-menu a {
    color: var(--purple);
}

.container-menu-navbar {
    font-weight: bold;
    font-size: 1em;
    text-transform: uppercase;
    cursor: pointer;
    padding-left: 1.7em;
}

.border-fr-purple {
    border-right: 2px solid var(--purple);
    padding-right: 35px;
    cursor: pointer;
}


/*trigger menu*/
.nav-menu-trigger {
    display: flex;
    flex-direction: column;
}

.nav-menu-trigger .nav-menu {
    justify-content: flex-end;
    padding: 40px;
}

.trigger-menu {
    background-color: var(--orange);
    display: none;
    z-index: 2012;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    height: 100%;
    padding-bottom: 40px;
}

.hamburger-menu-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: white;
    padding-left: 20px;
}

.hamburger-menu-trigger a {
    letter-spacing: 1px;
    line-height: 1.2;
    cursor: pointer;
    color: white;
    padding: 15px 5px;
}
.hamburger-menu-trigger a:hover {
    color: #88114C;
    text-decoration: none;
}

.hamburger-menu-trigger a.active {
    color: #88114C;
}

.btn-trigger {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    transition: .5s;
    cursor: pointer;
    background-color: var(--orange);
}

.btn-trigger > div:first-child {
    transform: rotate(90deg);
}

.btn-trigger.active > div:first-child {
    transform: rotate(0);
}

.btn-trigger > div {
    position: absolute;
    width: 45%;
    height: 5px;
    background-color: rgba(255, 255, 255, 1);
    transition: .5s;
}

.btn-trigger.active {
    background-color: var(--black);
}

.btn-trigger:after {
    font-size: .8em;
    width: max-content;
    position: absolute;
    text-transform: uppercase;
    font-weight: 700;
}



.link-social-media {
    padding: 25px ;
}

.link-media {
    display: inline-block;
    padding: 5px 7px;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.link-media:hover {
    color: #88114C;
}

.link-media .fab:hover,
.link-media .far:hover{
    color: #88114C;
}

.x-btn {
    width: 48px;
    height: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: transparent;
    cursor: pointer;
    transition: transform .5s;
    transform: rotate(45deg);
}

.x-btn:before {
    transform: rotate(90deg);
}

.x-btn:before, .x-btn:after {
    width: 50%;
    height: 2px;
    content: '';
    position: absolute;
    background-color: white;
}

.trigger-menu .nav-menu .x-btn {
    padding-top: 14px;
}

/*hero*/
.hero {
    height: 100vh;
    position: relative;
}

@keyframes ripple_v2{
    0% { transform: scale(0); opacity:0;}
    50% { transform: scale(.5); opacity:.5; }
    100% { transform: scale(1); opacity:1; }
}

@keyframes ripple_purple_v2{
    0% { transform: scale(0); opacity:0;}
    50% { transform: scale(.5); opacity:.3; }
    100% { transform: scale(1); opacity:.62; }
}

@keyframes ripple_green_v2{
    0% { transform: scale(0); opacity:0;}
    50% { transform: scale(.5); opacity:.2; }
    100% { transform: scale(1); opacity:.42; }
}


@keyframes ripple{
    0% { transform: scale(1); opacity:0;}
    50% { transform: scale(1.3); opacity:1; }
    100% { transform: scale(1.6); opacity:0; }
}

@keyframes ripple_purple{
    0% { transform: scale(1); opacity:0;}
    50% { transform: scale(1.3); opacity:.62; }
    100% { transform: scale(1.6); opacity:0; }
}

@keyframes ripple_green{
    0% { transform: scale(1); opacity:0;}
    50% { transform: scale(1.3); opacity:.42; }
    100% { transform: scale(1.6); opacity:0; }
}

/*accordion*/
.plus-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--orange);
    cursor: pointer;
}

.plus-btn:before, .plus-btn:after {
    width: 45%;
    height: 7px;
    content: '';
    position: absolute;
    background-color: white;
    transition: 0.5s;
}

.plus-btn:after {
    transform: rotate(90deg);
    transition-property: transform;
}

.collapsed-text.collapse.show + .plus-btn:after
{
    transform: rotate(180deg);
}

.collapsed-text.collapse.show + .plus-btn
{
    background-color: var(--black);
}

.heading-and-plus {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.crossroad-header-container {
    margin-top: 70px;
    z-index: 2;
}

.crossroad-header {
    height: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0;
}

.text-justify p {
    text-align: justify;
}

.crossroad-header h4 {
    padding-bottom: 15px;
}

.crossroad-header h1 {
    color: var(--orange);
    padding-bottom: 35px;
}

.wrapper-letter1-img-text {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
}

.wrapper-letter1-img-text:first-child {
    padding-right: 1.5em;
}

.wrapper-letter1-text {
    padding-right: 4em;
    padding-top: 1.5em;
    margin-left: 2em;
    width: calc(100% - 175px);
}

.letter-img {
    background-image: url(./images/simone-p.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    height: 175px;
    width: 175px;
}

.letter-img2 {
    background-image: url(./images/heather-s.png);
}

.scroll-top{
    opacity: 0;
    transition: .5s;
}

.scroll-top.show {
    opacity: 1;
}



.collapsed-text {
    display: flex;
    flex-direction: column;
}

.crossroad-header-container {
    position: relative;
}

.collapsed-text a {
    color: var(--black);
    cursor: pointer;
    text-decoration: none;
}
img.legacy-circle {
    width: 98%;
    height: auto;
    margin: 5% auto 0 0;
    padding: 0;
}

.wrapper-for-each {
    display: flex;
    flex-wrap: wrap;
}

.about-crossroads .wrapper-for-each .col-50 h3 {
    padding-bottom: 3px;
}

.about-crossroads .col-25 {
    padding-top: 0;
}


.col-20 {
    flex: 1;
    padding-top: 11vh;
    padding-bottom: 7vh;
    width: 10%;
}

.col-25 {
    flex: 1;
    padding: 20px 15px;
    width: 70%;
}

.col-33 {
    flex: 1;
    padding: 20px 15px;
    width: 33.3%;
}

.col-50 {
    flex: 1;
    width: 50%;
    padding: 30px 6% 30px 0;
}

.col-75 {
    flex: 3;
    padding: 20px 15px;
    width: 70%;
    padding-right: 5%;
}

.wrapper-for-each .col-25 h3 {
    padding-bottom: 30px;
    padding-right: 15%;
}

.wrapper-icon {
    padding-bottom: 4vh;
    width: 20%;
   display: flex;
}

.wrapper-icon-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wrapper-icon-text p {
    text-align: center;
    font-size: 1.2em;
    max-width: 200px;
}

.volunteer {
    background-image: url("./images/volunteer-purple.png");
}

.volunteer:hover {
    background-image: url("./images/volunteer-orange.png");
}

.donate {
    background-image: url("./images/donate-purple.png");
}

.donate:hover {
    background-image: url("./images/donate-orange.png");
}

.empowering {
    position: relative;
}

.empowering .wrapper {
    padding-bottom: 25px;
}

.img-empowering {
    width: 100%;
    height: 100%;
}

.our-donors,
.project-profiles {
    padding: 4em 0;
    background-color: #fff;
}

.our-donors a {
    text-decoration: none;
    color: black;
}
.our-donors a:hover,
.project-profiles a:hover {
    font-weight: bold;
}

.our-partners {
    padding-top: 4em;
}

.our-volunteers {
    padding-top: 4em;
    padding-bottom: 4em;
}

.heading-and-plus {
    border-top: 3px solid var(--orange);
    padding: 2em 0;
    align-items: center;
    cursor: pointer;
}

.heading-and-plus h4 {
    max-width: 90%;
    font-size: 1.8em;
    margin: 0;
}

.our-donors .collapsed-text,
.project-profiles .collapsed-text,
.our-partners .collapsed-text,
.our-volunteers .collapsed-text {
    border-top: 1px solid var(--orange);
    padding-top: 30px;
}

.our-donors .collapsed-text.col-parent,
.project-profiles .collapsed-text.col-parent {
    flex-direction: row;
    flex-wrap: wrap;
}

.col-parent-full-width {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
}
.our-volunteers .two-col {
    display: flex;
}

.acc {
    flex: 1;
    margin-bottom: 10px;
}

.two-col .heading-and-plus {
    align-items: center;
}

.our-volunteers .col-50 {
    padding-right: 0;
    padding-left: 20px;
}

.our-volunteers .col-50.orange {
    display: flex;
    justify-content: center;
}

.our-partners .col-50.orange {
    display: flex;
    justify-content: center;
}

.our-donors .col-50.orange,
.project-profiles .col-50.orange {
    display: flex;
    justify-content: center;
}

.our-donors .col-33,
.project-profiles .col-33 {
    width: 33%;
}

.our-partners a {
    color: var(--black);
    padding-bottom: 1em;
}

.board {
    padding: 4em 0;
}

.board h1 {
    padding-bottom: 20px;
}

.full-modal-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1em;
}

.statement {
    width: 100%;
    margin-bottom: 80px;
}

.tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}

.statement tr.p-bot td {
    padding-bottom: 1.3em;
}

.tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}

table.financials-legend {
    width: 95%;
    max-width: 450px;
    margin: 25px auto 25px auto;
    padding: 0;
}
table.financials-legend td {
    border: 5px solid white;
    padding: 0;
}
table.financials-legend tr.totals td {
    font-weight: bold;
}
table.financials-legend td.legend-color {
    width: 25px;
    height: 25px;
}
table.financials-legend td.legend-label {
    width: auto;
    text-align: left;
}
table.financials-legend td.legend-value {
    width: 150px;
    text-align: right;
}
table.financials-legend td.legend-color span {
    display: block;
    width: 22px;
    height: 22px;
    top: 0;
    left: 0;
}
table.financials-legend td.legend-color span#gac,
table.financials-legend td.legend-color span#international {
    background-color: #ab1d60;
}
table.financials-legend td.legend-color span#volunteer,
table.financials-legend td.legend-color span#admin {
    background-color: #f3911f;
}
table.financials-legend td.legend-color span#donations,
table.financials-legend td.legend-color span#public {
    background-color: #8a9b01;
}
table.financials-legend td.legend-color span#quebec,
table.financials-legend td.legend-color span#fundraising {
    background-color: #3ab2eb;
}
table.financials-legend td.legend-color span#covid {
    background-color: #f4d9bb;
}
table.financials-legend td.legend-color span#income {
    background-color: #99cc33;
}
.our-partners table td {
    padding: 1%;
    background-color: #E7CFDD;
}
.our-volunteers table td {
    background-color: transparent;
    padding: 1%;
}

.p-bot {
    border-bottom: 2px solid #2F2F2F;
}

.p-top {
    border-top: 2px solid var(--orange);
}

.statement td:first-child {
    width: calc(100% - 400px);
    text-align: left;
}

.statement td {
    width: 220px;
    text-align: right;
    padding: 8px 0;
    position: relative;
}

.statement tr.statement-sub-header > td {
    padding-top: 1.3em;
}

.statement tr.statement-sub-footer > td {
    padding-bottom: 1.3em;
}

.td {
    display: table-cell;
    vertical-align: inherit;
}

.statement tr.p-bot td {
    padding-bottom: 1.3em;
}

.cintl {
    text-align: center;
    padding-top: 40px ;
    text-decoration: underline;
    font-size: 35px;
    font-weight: 600;
    cursor: pointer;
}

.cintl a {
    color: white;
}

.cintl a:hover {
    color: var(--orange);
}

.fab,
.far {
    padding: 0.5em;
}

.fab:hover, .far:hover {
    cursor: pointer;
    color: var(--orange);
}
.become > a {
    background-color: var(--purple);
    border-radius: 50% ;
    padding: 14% 0;
    margin: 1% 2% 1% 2%;
    position: relative;
}
.become > a:hover {
    background-color: var(--orange);
}
.become span {
    position: absolute;
    bottom: -25%;
    color: black !important
}

@media screen and (max-width: 992px) {

    h1 {
        font-size: 2.2em;
    }

    .col-25, .col-75, .col-33 {
        padding-left: 0;
        padding-right: 0;
    }

    .open-menu {
        justify-content: flex-end;
    }

    .border-fr-purple {
        padding-right: 15px;
    }

    .container-menu-navbar {
        padding-left: 15px;
    }

    .container-navbar {
        align-items: center;
    }

    .hamburger-menu-trigger {
        padding-left: 0;
        text-align: center;
    }

    .nav-menu-trigger .nav-menu {
        padding: 40px 0;
    }

    .btn-trigger {
        height: 18px;
        width: 18px;
    }

    .btn-trigger > div {
        width: 11%;
        height: 8px;
    }    

    .hero {
        min-height: 660px;
    }

    .container-menu {
        padding: 0 15px;
    }
    .nav-menu p {
        padding: 0 15px;
    }

    .wrapper-nav {
        padding: 30px 0;
    }

    .wrapper {
        padding: 0 15px;
    }
    .wrapper {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }

    .wrapper-letter1-img-text:first-child {
        padding-right: 0;
    }

    .wrapper-letter1-img-text {
        margin-bottom: 20px;
    }

    .wrapper-letter1-text {
        padding-right: 0;
    }

    .wrapper-for-each {
        flex-direction: column;
    }

    .col-50 {
        width: 100%;
        padding-right: 0;
    }

    .about-crossroads .col-50 {
        padding-bottom: 3vh;
    }

    .about-crossroads .wrapper-for-each {
        align-items: center;
    }

    .about-crossroads .wrapper-for-each:first-child {
        align-items: flex-start;
    }

    .about-crossroads .col-25 {
        padding: 20px 0;
        width: 100%;
    }

    .about-crossroads .col-25 h3 {
        padding-bottom: 0;
    }

    .about-crossroads .wrapper-icon {
        padding-bottom: 0px;
        width: 20%;
        height: auto;
    }

    .wrapper-for-each-mobile {
        display: flex;
    }

    .our-donors,
    .project-profiles {
        padding-bottom: 40px;
    }

    .our-donors .col-50.orange,
    .project-profiles .col-50.orange,
    .our-partners .col-50.orange,
    .our-volunteers .col-50.orange{
        justify-content: flex-start;
    }

    .our-volunteers .two-col {
        display: flex;
        flex-direction: column;
    }

    .heading-and-plus h4 {
        width: calc(100% - 55px);
    }

    .our-donors .collapsed-text.col-parent,
    .project-profiles .collapsed-text.col-parent {
        flex-direction: column;
    }

    .our-donors .col-33,
    .project-profiles .col-33 {
        padding: 0;
        width: 100%;
    }

    .cintl {
        text-decoration: none;
        font-size: 20px;
    }

    .col-33 {
        width: 100%;
    }
}

section {
    position: relative;
}

@media all and (max-width: 992px)  {
        
    #crossroad-header .text-justify {
        text-align: left !important;
    }
    .about-crossroads {
        padding-bottom: 100px;
    }
}

/* footer on mobile */
@media all and (max-width: 992px) {
    .become span {
        width: 100%;
        left: 0;
    }
}