@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');
/* font-family: 'PT Sans', sans-serif; */
/* font-family: 'Dancing Script', cursive; */

/* CSS Rules for Javascript Transition */
.reveal
{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: all 1s ease-in-out;
}
.reveal.active
{
    transform: translateY(0px);
    opacity: 1;
}

/* CSS Rules for header */
.header.header-scrolled
{
    background-color: #e5e3e4;
    opacity: 0.85;
}

/* CSS Rules for all */
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
    font-family: 'PT Sans', sans-serif;
}
body
{
    background: white;
}

/* CSS Rules for Index.html */
/* CSS Rules for header */
.header
{
    border: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 10px 11%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    transition: all .5s ease-in-out;
}
.logo img
{
    border: transparent;
    width: 25%;
}
.nav-links
{
    border: transparent;
    width: 100%;
    padding: 0 1%;
    height: auto;
    text-align: center;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.nav-links a
{
    margin: 1% 3%;
    color: black;
    font-size: 20px;
    font-weight: 500;
    transition: all .5s ease-in-out;
}
.nav-links a:hover
{
    text-decoration: overline;
    color: orange;
}
@media screen and (max-width: 600px)
{
    .header
    {
        min-width: 0;
        flex-direction: column;
    }
    .logo img
    {
        display: grid;
        margin: auto;
        width: 60%;
    }
    .nav-links
    {
        width: 100%;
    }
    .nav-links a
    {
        font-size: 15px;
        margin-top: 5px;
    }
}

/* CSS Rules for intro section */
.intro
{
    border: transparent;
    background-image: url(/Images/CT-Hero.png);
    background-position: center;
    background-size: cover;
    background-repeat: none;
    padding: 5% 10%;
    transition: all .5s ease-in-out;
}
.intro-txt
{
    border: transparent;
    display: grid;
    padding: 1% 0;
    margin: 25% 10% 6% 2%;
}
.intro-txt h2
{
    border: transparent;
    width: 40%;
    padding: 0.5%;
    background-image: linear-gradient(to right, #000000 0%, #e6b800 50%, #ffcc00 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    font-size: 50px;
}
.intro-txt h3
{
    border: transparent;
    width: 40%;
    padding: 0.5%;
    color: black;
    font-size: 25px;
}
.intro-txt p
{
    border: transparent;
    font-family: 'Dancing Script', cursive;
    font-size: 20px;
    font-weight: 500;
}
@media screen and (max-width: 600px)
{
    .intro
    {
        min-width: 0;
    }
    .intro-txt
    {
        margin: 110% 0% 70%;
    }
    .intro-txt h2
    {
        width: 100%;
        font-size: 40px;
    }
    .intro-txt h3
    {
        width: 100%;
        font-size: 20px;
    }
    .intro-txt p
    {
        font-size: 15px;
        margin-top: 20px;
    }
}

/* CSS Rules for About Us Section */
.About
{
    border-top: outset #e6b800;
    width: 70%;
    margin: 5% auto;
    padding: 1% 1% 3%;
    transition: all .5s ease-in-out;
}
.About p
{
    text-align: center;
}
@media screen and (max-width: 600px)
{
    .About
    {
        min-width: 0;
        width: 90%;
        margin: 10% auto;
    }
    .About p
    {
        font-size: 12px;
    }
}

/* CSS Rules for Org-Info Section */
.org-info
{
    border: transparent;
    width: 100%;
    margin: auto;
    padding: 0 5%;
    transition: all .5s ease-in-out;
}
.org-info-div
{
    border: transparent;
    width: 50%;
    margin: auto;
    padding: 2%;
    display: grid;
    transition: all .5s ease-in-out;
}
.org-info-div h2
{
    border: transparent;
    margin: auto;
    width: 90%;
    text-align: center;
    font-size: 60px;
    color: #e6b800;
    transition: all .5s ease-in-out;
}
.org-info-div h4
{
    border: transparent;
    margin: auto;
    width: 90%;
    text-align: center;
    font-size: 15px;
    font-style: italic;
    transition: all .5s ease-in-out;
}
.org-info hr
{
    border-top: outset #e6b800;
    width: 80%;
    margin: auto;
}
.org-info-div:hover
{
    .org-info-div,h2
    {
        transform: scale(1.1);
        text-shadow: 5px 5px 20px;
    }
    .org-info-div,h4
    {
        transform: scale(1.05);
    }
}
@media screen and (max-width: 600px)
{
    .org-info
    {
        min-width: 0;
    }
    .org-info-div
    {
        width: 100%;
    }
    .org-info-div h2
    {
        width: 90%;
        font-size: 35px;
    }
    .org-info-div h4
    {
        width: 90%;
        font-size: 12px;
    }
    .org-info hr
    {
        width: 85%;
    }
}
/* CSS Rules for VM Section */
.VM
{
    border: transparent;
    margin: 4% auto;
    transition: all .5s ease-in-out;
}
.vision, .mission
{
    border: transparent;
    box-shadow: #e6b800 5px 5px 15px;
    border-radius: 5px ;
    width: 70%;
    padding: 1% 5%;
    margin: 3% auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.vision img, .mission img
{
    width: 30%;
    border-radius: 5px;
}
.row-reverse
{
    flex-direction: row-reverse;
}
.VM-txt
{
    border: transparent;
    margin: 0 2%;
}
.VM-txt h2
{
    font-size: 40px;
    color: #e6b800;
}
.VM-txt p
{
    margin: 3% 0;
}
@media screen and (max-width: 600px)
{
    .VM
    {
        min-width: 0;
        margin: 7% auto;
    }
    .vision, .mission
    {
        width: 80%;
        flex-direction: column;
        margin: 10% auto;
    }
    .vision img, .mission img
    {
        width: 60%;
        margin: 5% auto;
    }
    .VM-txt h2
    {
        text-align: center;
        font-size: 35px;
        margin: 5% auto;
    }
    .VM-txt h3
    {
        text-align: center;
        font-size: 15px;
    }
    .VM-txt p
    {
        text-align: center;
    }
}

/* Title */
.heading-title
{
    border: transparent;
    margin: 5% auto 1%;
    padding: 0 15%;
}
.heading-title h1
{
    font-size: 50px;
    color: #e6b800;
    text-align: center;
    transition: all .5s ease-in-out;
    animation: flash 2s infinite;
}
@keyframes flash
{
    0%
    {
        text-shadow: none;
    }
    50%
    {
        text-shadow: 5px 5px 15px;
    }
    100%
    {
        text-shadow: none;
    }
}
@media screen and (max-width: 600px)
{
    .heading-title
    {
        min-width: 0;
    }
    .heading-title h1
    {
        font-size: 30px;
    }
}

/* CSS Rules for What We Do section */
.WWD
{
    border: transparent;
    margin: auto;
    padding: 1% 5%;
    display: flex;
    justify-content: space-around;
    align-items: top center;
    transition: all .5s ease-in-out;
}
.WWD-div
{
    border: 3px outset #e6b800;
    border-radius: 10px;
    overflow: hidden;
    width: 30%;
    transition: all .5s ease-in-out;
}
.WWD-div:hover
{
    transform: scale(1.02);
    box-shadow: #e6b800 5px 5px 15px;
}
.WWD-div img
{
    width: 100%;
}
.WWD-div-txt
{
    border: transparent;
    padding: 3%;
}
.WWD-div-txt h3
{
    color: #e6b800;
    font-size: 25px;
    text-align: center;
    margin-bottom: 2%;
}
.WWD-div-txt p
{
    text-align: center;
    margin: 1% auto;
}
@media screen and (max-width: 600px)
{
    .WWD
    {
        min-width: 0;
        flex-direction: column;
    }
    .WWD-div
    {
        margin: 5% auto;
        width: 90%;
    }
}

/* CSS Rules for programs section */
.programs-ad
{
    border: transparent;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: top center;
    margin: auto;
    padding: 0 4%;
}
.programs-ad-div
{
    border: 3px outset #e6b800;
    border-radius: 5px;
    overflow: hidden;
    width: 30%;
    display: grid;
}
.programs-ad-div img
{
    width: 100%;
}
.programs-ad-div h2
{
    border: transparent;
    text-align: center;
    margin: 3% auto;
    color: #e6b800;
}
.borderless-div
{
    border: none;
}
.programs-ad-div a, .see-more
{
    margin: auto;
    width: 40%;
    transition: all .5s ease-in-out;
}
.programs-ad-div a, .see-more:hover
{
    transform: scale(1.05);
}
@media screen and (max-width: 600px)
{
    .programs-ad
    {
        min-width: 0;
        flex-direction: column;
    }
    .programs-ad-div
    {
        margin: 3% auto;
        width: 90%;
    }
    .programs-ad-div a, .see-more
    {
        margin: 2% auto;
    }
}

/* CSS Rules for footer */
.footer
{
    border: transparent;
    background: #e5e3e4;
    padding: 1% 0;
    margin: 1% auto 0;
    width: 100%;
    transition: all .5s ease-in-out;
}
.footer-links
{
    border: transparent;
    width: 85%;
    margin: 3% auto;
    display: flex;
    justify-content: space-evenly;
    align-items: top center;
}
.footer-social-links
{
    border: transparent;
    box-shadow: 5px 5px 15px;
    border-radius: 5px;
    padding: 1%;
    width: 35%;
    display: grid;
}
.fsl-div
{
    border: transparent;
    width: 100%;
    margin: 1% 0;
    display: flex;
    align-items: center;
}
.fsl-div img
{
    width: 10%;
    margin: 0 4%;
}
.fsl-div a
{
    border: transparent;
    background-image: linear-gradient(to right, #000000 0%, #e6b800 50%, black 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    font-weight: 600;
    transition: all .5s ease-in-out;
}
.fsl-div a:hover, .footer-hyper-links a:hover
{
    text-decoration: #e6b800 2px underline;
}
.footer-hyper-links
{
    border: transparent;
    box-shadow: 5px 5px 15px;
    border-radius: 5px;
    padding-bottom: 1%;
    display: grid;
    align-items: center;
    width: 35%;
}
.footer-hyper-links a
{
    border: transparent;
    text-align: center;
    margin: auto;
    background-image: linear-gradient(to right, #000000 0%, #e6b800 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    font-size: 20px;
    font-weight: 600;
    transition: all .5s ease-in-out;
}
.footer-title
{
    border: transparent;
    margin: 3% auto;
    background-image: linear-gradient(to right, #000000 0%, #e6b800 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}
.footer-copyright
{
    border: transparent;
}
.footer-copyright h5
{
    border: transparent;
    width: 45%;
    margin: auto;
    text-align: center;
    background-image: linear-gradient(to right, #000000 0%, #e6b800 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    font-size: 16px;
    font-style: italic;
}
@media screen and (max-width: 600px)
{
    .footer
    {
        min-width: 0;
    }
    .footer-links
    {
        flex-direction: column;
    }
    .footer-social-links
    {
        width: 90%;
        margin: 5% auto;
    }
    .fsl-div a
    {
        font-size: 13px;
    }
    .footer-hyper-links
    {
        width: 90%;
        margin: 5% auto;
    }
    .footer-hyper-links a
    {
        font-size: 15px;
        margin: 1% 0;
    }
    .footer-copyright h5
    {
        font-size: 10px;
        width: 90%;
    }
}

/* CSS Rules for team.html */
/* CSS Rules for team intro section */
.overall-intro
{
    border: transparent;
    background-image: url(/Images/CT-Hero-2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 1% 0;
    transition: all .5s ease-in-out;
}
.overall-intro-txt
{
    border: transparent;
    margin: 10% 10% 5%;
    display: grid;
}
.overall-intro-txt h2
{
    border: transparent;
    margin: 2% auto;
    font-size: 50px;
    background-image: linear-gradient(to right, #000000 0%, #e6b800 50%, #ffcc00 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}
.overall-intro-txt p
{
    border: transparent;
    margin: auto;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    font-family: 'Dancing Script', cursive;
}
@media screen and (max-width: 600px)
{
    .overall-intro
    {
        min-width: 0;
    }
    .overall-intro-txt
    {
        margin: 50% 10% 20%;
    }
    .overall-intro-txt h2
    {
        margin-bottom: 5%;
    }
}

/* CSS Rules for team intro */
.org-info-intro
{
    border: transparent;
    width: 100%;
    display: grid;
    transition: all .5s ease-in-out;
}
.org-info-intro img
{
    margin: 5% auto 0;
    width: 15%;
}
.org-info-intro-txt
{
    border: transparent;
    margin: 3% auto;
    width: 50%;
    display: grid;
}
.org-info-intro-txt h2
{
    margin: auto;
    color: #e6b800;
    font-size: 25px;
}
.org-info-intro-txt h5
{
    text-align: center;
    font-style: italic;
    margin: 2% auto;
}
@media screen and (max-width: 600px)
{
    .org-info-intro
    {
        min-width: 0;
    }
    .org-info-intro img
    {
        width: 45%;
    }
    .org-info-intro-txt
    {
        width: 90%;
    }
    .org-info-intro-txt h2
    {
        font-size: 20px;
    }
    .org-info-intro-txt h5
    {
        font-size: 10px;
    }
}

/* CSS Rules for Team Info section */
.team-info
{
    border: transparent;
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: top center;
    transition: all .5s ease-in-out;
}
.team-info-div
{
    border: transparent;
    background: #f2f2f2;
    border-radius: 5px;
    width: 45%;
    margin: 2% auto;
    padding: 2%;
    display: grid;
    transition: all .5s ease-in-out;
}
.team-info-div:hover
{
    transform: scale(1.02);
}
.team-info-div img
{
    border-radius: 5px;
    width: 50%;
    margin: auto;
}
.team-info-div-txt
{
    border: transparent;
    margin: auto;
    display: grid;
}
.team-info-div-txt h2
{
    border: transparent;
    margin: auto;
    color: #e6b800;
}
.team-info-div-txt h3
{
    border: transparent;
    margin: 1% auto;
}
.team-info-div-txt p
{
    text-align: center;
    margin: 1% auto;
}
@media screen and (max-width: 600px)
{
    .team-info
    {
        min-width: 0;
    }
    .team-info-div
    {
        width: 90%;
        margin: 5% auto;
    }
    .team-info-div img
    {
        width: 60%;
    }
    .team-info-div-txt p
    {
        font-size: 13px;
    }
}

/* CSS Rules for team partners section */
.partners-title
{
    border: transparent;
    margin: 5% auto 0%;
    text-align: center;
    color: #e6b800;
    transition: all .5s ease-in-out;
}
.partners
{
    border: transparent;
    border-radius: 10px;
    background: #f2f2f2;
    width: 35%;
    padding: 2% 0 2% 10%;
    margin: auto;
    transition: all .5s ease-in-out;
}
.partners:hover
{
    transform: scale(1.01);
}
.partners ul li
{
    padding-inline-start: 2ch;
    list-style-type: '👉';
}
.partners ol li
{
    padding-inline-start: 5ch;
    list-style-type: decimal;
}
@media screen and (max-width: 600px)
{
    .partners
    {
        min-width: 0;
        width: 70%;
        font-size: 12px;
        padding: 2% 0 2% 15%;
    }
}
/* CSS Rules for donation intro section */
.donation-intro
{
    border: transparent;
    width: 100%;
    padding: 1%;
    display: flex;
    justify-content: space-around;
    align-items: top center;
    transition: all .5s ease-in-out;
}
.donation-intro-div
{
    border: transparent;
    /* box-shadow: #e6b800 5px 5px 15px; */
    border-radius: 5px;
    margin: 0 1%;
    padding: 1%;
    display: grid;
    transition: all .5s ease-in-out;
}
.donation-intro-div:hover
{
    transform: scale(1.02);
}
.donation-intro-div h2
{
    border: transparent;
    margin: 2% auto;
    text-align: center;
    color: #e6b800;
}
.donation-intro-div p
{
    margin: auto;
    text-align: center;
}
.donation-intro-div li
{
    margin: 0 5%;
}
@media screen and (max-width: 600px)
{
    .donation-intro
    {
        min-width: 0;
        flex-direction: column;
    }
    .donation-intro-div
    {
        width: 70%;
        margin: 3% auto;
        padding: 3%;
    }
    .donation-intro-div h2
    {
        margin: 5% auto;
    }
    .donation-intro-div p
    {
        font-size: 15px;
    }
}

/* CSS Rules for donations container section */
.donation-container
{
    border: transparent;
    width: 100%;
    margin: auto;
    transition: all .5s ease-in-out;
}
.donation-info
{
    border: transparent;
    padding: 3%;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: top center;
}
.donation-info-div
{
    border: transparent;
    border-radius: 5px;
    width: 70%;
    margin: 0 2%;
    padding: 2%;
}
.donation-info-div img
{
    border-radius: 5px;
    width: 100%;
}
.donation-info-div-txt
{
    border: transparent;
    display: grid;
}
.donation-info-div-txt h2
{
    border: transparent;
    margin: auto;
    color: #e6b800;
}
.donation-info-div-txt p
{
    margin: 2% 5%;
    text-align: center;
}
@media screen and (max-width: 600px)
{
    .donation-container
    {
        min-width: 0;
    }
    .donation-info
    {
        flex-direction: column;
    }
    .donation-info-div
    {
        margin: 2% auto;
        width: 80%;
    }
    .donation-info-div-txt h2
    {
        font-size: 20px;
    }
    .donation-info-div-txt p
    {
        font-size: 15px;
    }
}

/* CSS Rules for Contacts Page */
/* CSS Rules for intro section */
.contact-intro
{
    border: transparent;
    background-image: url(/Images/CT-Hero-3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 1% 0;
    transition: all .5s ease-in-out;
}
.contact-intro-txt
{
    border: transparent;
    margin: 10% 10% 5%;
    display: grid;
}
.contact-intro-txt h2
{
    border: transparent;
    margin: 2% auto;
    font-size: 50px;
    background-image: linear-gradient(to right, #000000 0%, #e6b800 50%, #ffcc00 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}
.contact-intro-txt p
{
    border: transparent;
    margin: auto;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    font-family: 'Dancing Script', cursive;
}
@media screen and (max-width: 600px)
{
    .contact-intro
    {
        min-width: 0;
    }
    .contact-intro-txt
    {
        margin: 50% 10% 20%;
    }
    .contact-intro-txt h2
    {
        margin-bottom: 5%;
    }
    .contact-intro-txt p
    {
        color: white;
    }
}

/* CSS Rules for Contacts info section */
.contact-info
{
    border: transparent;
    width: 100%;
    transition: all .5s ease-in-out;
}
.contact-info form
{
    border: transparent;
    background-image: url(/Images/CT-Hero-2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    width: 60%;
    padding: 5% 4% 3%;
    margin: auto;
    display: grid;
}
.contact-info input[type=text]
{
    border: 1.5px inset #e6b800;
    border-radius: 5px;
    width: 100%;
    padding: 1%;
    margin: 1% 0;
}
.contact-info textarea
{
    border: 1.5px inset #e6b800;
    border-radius: 5px;
    width: 100%;
    padding: 1%;
    margin: 1% 0;
}
.contact-info input[type=submit]
{
    border: 3px outset #e6b800;
    background: none;
    border-radius: 5px;
    margin: auto;
    padding: 2% 5%;
    font-size: 15px;
    color: #e6b800;
    font-weight: 600;
    transition: all .5s ease-in-out;
}
.contact-info input[type=submit]:hover
{
    background: #e6b800;
    color: white;
    cursor: pointer;
}
@media screen and (max-width: 600px)
{
    .contact-info
    {
        min-width: 0;
    }
    .contact-info form
    {
        width: 90%;
        padding: 10% 5% 5%;
    }
    .contact-info input[type=text]
    {
        padding: 1% 2%;
    }
    .contact-info textarea
    {
        padding: 1% 2%;
    }
}

/* CSS Rules for maps section */
.map
{
    border: transparent;
    width: 100%;
    height: auto;
    overflow: hidden;
    transition: all .5s ease-in-out;
}
.map iframe
{
    margin: auto;
    width: 100%;
    height: 450px;
}
@media screen and (max-width: 600px)
{
    .map
    {
        min-width: 0;
    }
    .map iframe
    {
        height: 250px;
    }
}

/* CSS Rules for Projects Page */
.projects-info
{
    border: transparent;
    width: 100%;
    margin: auto;
    transition: all .5s ease-in-out;
}
.projects-info-G
{
    border: transparent;
    width: 90%;
    margin: auto;
    padding: 1%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: top center;
}
.projects-info-div
{
    border: 3px outset #e6b800;
    border-radius: 5px;
    margin: 2% auto;
    width: 30%;
    overflow: hidden;
    transition: all .5s ease-in-out;
}
.projects-info-div img
{
    width: 100%;
}
.projects-info-div-txt
{
    border: transparent;
    display: grid;
    padding: 5%;
}
.projects-info-div-txt h2
{
    border: transparent;
    color: #e6b800;
    text-align: center;
    margin: auto;
}
.projects-info-div-txt p
{
    border: transparent;
    text-align: center;
    margin-top: 20px;
}
@media screen and (max-width: 600px)
{
    .projects-info
    {
        min-width: 0;
    }
    .projects-info-G
    {
        width: 100%;
        flex-direction: column;
    }
    .projects-info-div
    {
        width: 90%;
        margin: 2% auto;
    }
    .projects-info-div-txt p
    {
        font-size: 14px;
    }
}