/*DONATE*/
.donate {
    /*The donate section uses the same css as volunteer section*/
    overflow: hidden;
    width: 100%;
    display: table;
    padding: 65px 0% 2% 0%;
}

.donate-bullet {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 350;
    line-height: 1.5;
    margin-left: 30px;
}

/*WTD*/
.wtd {
    background-color: #F3F0EF;
    padding: 3% 0%;
    width: 100%;
    height: fit-content;
    display: table;
}

.wtd-con {
    width: 45%;
    padding: 2.5%;
    float: left;
}

.wtd-header {
    margin-top: 4%;
    letter-spacing: 2px;
    margin-bottom: 0;
    margin-left: 3%;
    text-align: left;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #2D2D2D;
}

.wtd-desc {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 350;
    line-height: 2;
    color: #2D2D2D;
}

/*VOLUNTEER*/
.volunteer {
    overflow: hidden;
    display: table;
    width: 100%;
    padding: 3% 0%;
}

.vol-text {
    display: table-row;
    float: left;
    padding: 5%;
    width: 40%;
}

.vol-header {
    margin-top: 36px;
    letter-spacing: 2px;
    font-family: "DM Sans", sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #2D2D2D;
}

.vol-desc {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 350;
    line-height: 2;
    color: #2D2D2D;
}

.vol-link {
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
    color: #277FC4;
    font-size: 14px;
    font-weight: 300;
}

.vol-link:hover {
    text-decoration: underline;
    text-decoration-color: #277FC4;
}

.vol-button {
    border: 2px solid #277FC4;
    background-color: #f6f6f6;
    padding: 10px 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    border-radius: 8px;
    transition-duration: 0.5s;
}

.vol-button:hover {
    transition-duration: 0.5s;
    background-color: #e2e2e2;
    box-shadow: 0 5px 5px 0 rgba(0,0,0,0.24), 0 5px 5px 0 rgba(0,0,0,0.19);
}

.vol-button-image {
    vertical-align: bottom;
    margin-left: 10px;
    display: inline;
    width: 24px;
    height: 24px;
}

.vol-image {
    display: table-row;
    float: left;
    padding: 5%;
    width: 40%;
}

.vol-image-resp {
    display: none;
}

.fd-img {
    margin-top: 6%;
    width: 100%;
    height: auto;
}

.vol::after {
    content: "";
    clear: both;
    display: table;
}

/*QUOTE*/
.quote {
    overflow: hidden;
    background-color: #2d2d2d;
    text-align: center;
    padding: 10% 20%;
}

.quote-text {
    color: white;
    font-family: "DM Sans", sans-serif;
    font-size: 36px;
    letter-spacing: 1px;
    font-weight: 250;
    line-height: 1.5;
}

/*~~~~~~~~~~~~~~MOBILE~~~~~~~~~~~~~~~~~*/

/*Modern Phone*/
@media screen and (max-width: 800px){
    /*DONATE & VOLUNTEER*/
    .vol-text {
        display: block;
        float: none;
        padding: 5%;
        width: 90%;
        margin-bottom: 2%;
    }

    .vol-header {
        line-height: 0;
    }

    .vol-image {
        display: none;
    }

    .vol-image-resp {
        display: block;
        float: none;
        padding: none;
        width: 100%;
    }

    .fd-img {
        margin-top: 1%;
        width: 100%;
        height: auto;
    }

    /*WTD*/
    .wtd-con {
        width: 90%;
        padding: 5%;
        float: none;
    }

    .wtd-con:last-child {
        margin-top: 5%;
    }

    /*QUOTE*/
    .quote {
        padding-top: 20%;
        padding-bottom: 20%;
    }

    .quote-text {
        color: white;
        font-family: "DM Sans", sans-serif;
        font-size: 24px;
        font-weight: 225;
        line-height: 1.5;
    }
}