/* common style  start*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

:root{
    --themeRed: #c72b20;
    --gray: #e0d2d2;
}
html{
    scroll-behavior: smooth;
}
button,
body {
    font-family: 'Poppins', sans-serif;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p{
    font-size: 14px;
    line-height: 26px;
}



.full-container{
    width: 100%;
}
.container{
    width: 1240px;
    margin: auto;

}

.section-Title{
    width: 300px;
    border-bottom: 3px solid var(--themeRed);
    text-align: center;
    font-size: 2rem;
    font-weight: 200;
    margin: 0 auto 50px;
    position: relative;
    padding: 10px 0;
    text-transform: uppercase;
}

.section-Title::after{
    display: inline-block;
    content: "";
    height: 15px;
    width: 15px;
    background-color: var(--themeRed);
    position: absolute;
    left: calc(50% - 10px);
    top:calc(75% - 7px);
    transform: rotate(45deg) translate(50%, 50%);
    border: 3px solid #fff;

}
#about-section p{
  font-weight: bold;
  
  
  text-align: justify;
}

section{
    padding: 100px 0;
    position: relative;
}


/* Common style end */

/* home style start */

header{

width: 100%;
background-color: rgba(210, 224, 209, 0.0);
position: fixed;
z-index: 2;
}

header .container{
    display: flex;
    justify-content: space-between;
    
}
header .container .logo{
    
    /* padding: 15px 0; */
    height: 120px;   
}

header .container .logo img{
    width: 100%;
    height: 120px;

}

header nav ul{
    list-style-type:none;
    height: auto;

}

header nav ul li {
    display: inline-block;
    
}

header nav ul li a{
    display: inline-block;
    height: 120px;
    line-height: 120px;
    padding:  0 15px;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: bolder;
    border-radius: 5px;
    color: var(--themeRed);
    transition: 0.3s;
}


header nav ul li a:hover{
    background-color: var(--themeRed);
    color: #000;
}
.banner{
    min-height: 100vh;
    width: 100%;
    background-image: url(/img/3.jpg);
    background-size:cover;
    background-position: center bottom;

    background-repeat: no-repeat;
    background-attachment: fixed;

}
.banner h1{
    margin-top: 230px;
    display: inline-block;
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 0 0 2px #000;
    width: 50%;
    line-height: 4.2rem;
    font-weight: 100;

}

.banner h1 span{
    background-color: var(--themeRed);
    display: inline-block;
    line-height: 3.5rem;
    padding: 10px 15px;
    font-weight: 600;
    border-radius: 5px;
}

.banner p{
    background-color: grey;
    color: #000;
    width: 50%;
    font-size: 20px;
    text-shadow: 0 0 2px #000;
    margin-top: 10px;
    padding: 20px;
    justify-content: center;
    text-align: justify;
    border-radius: 20px;
    opacity: 0.9;
}

.banner button{
    background-color: var(--themeRed);
    border: 0;
    outline: none;
    color: #fff;
    padding: 10px 15px;
    margin-top: 20px;
    margin-bottom: 60px;
    font-size: 13px;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
}


/* Home style ends */

/* About section start */
.text {
    text-align: justify;
}

#about-section .cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
    height: 345px;
}


#about-section .cards > div{
    width: 350px;
    background-color: var(--gray);
    padding: 35px;
    color: #444;
    text-align: center;
    /* justify-content: center; */
    border-radius: 5px;
    height: 350px;
    border: 2px solid #ccc;
    transition: 0.4s;
}
#about-section .cards > div:hover{
    width: 400px;
    margin-top: -20px;
    border-color: var(--themeRed);
    padding: 55px;
    height: auto;
    

}


#about-section .cards > div .title{
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

#about-section .cards > div p{
    font-size: 14px;
    margin-top: 15px;
    text-align: justify;
}

#about-section .cards > div button{
    border: 1px solid var(--themeRed);
    outline: none;
    padding: 7px 15px;
    margin-top: 15px;
    font-size: 12px;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.3s;
}

#about-section .cards > div:hover button{
    background-color: var(--themeRed);
    color: rgb(0, 0, 12);

}
/* About section end */

/* Program section Start */

.programs{
    background-color: #e2e2e2;
}
.programs p{
    font-size: 18px;
    text-align: justify;
    margin-bottom: 20px;
}


.programs .box-container{
display: grid;
grid-template-columns: repeat(3, 1fr);
}

.programs .box-container .box{
    background-color: #fff;
    text-align: center;
    padding-bottom: 25px;
    border-radius: 5px;
    box-shadow: 0 0 3px 0 #c5c5c5;
    position: relative;
    margin: 15px;
}
.programs .box-container .box .card-Image{
    width: 100%;
    height: 250px;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}

.programs .box-container .box .card-Image:after{
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    filter: grayscale(100%);
    transition: 0.4s;
}
.programs .box-container .box:nth-child(1) .card-Image,
.programs .box-container .box:nth-child(1) .card-Image:after{
    background-image: url(../img/program/program1.JPG);
}

.programs .box-container .box:nth-child(2) .card-Image,
.programs .box-container .box:nth-child(2) .card-Image:after{
    background-image: url(../img/program/Program2.JPG);
}
.programs .box-container .box:nth-child(3) .card-Image,
.programs .box-container .box:nth-child(3) .card-Image:after{
    background-image: url(../img/program/program3.jpg);
}
.programs .box-container .box:nth-child(4) .card-Image,
.programs .box-container .box:nth-child(4) .card-Image:after{
    background-image: url(../img/program/program4.JPG);
}
.programs .box-container .box:nth-child(5) .card-Image,
.programs .box-container .box:nth-child(5) .card-Image:after{
    background-image: url(../img/program/program5.JPG);
}
.programs .box-container .box:nth-child(6) .card-Image,
.programs .box-container .box:nth-child(6) .card-Image:after{
    background-image: url(../img/program/program6.jpg);
}


.programs .box-container .box:hover .card-Image::after{
    top: 100%;
}

.programs .box-container .box .program-Title{
    font-size: 16px;
    margin-top: 15px;
    font-weight: 600;
    color: #444;
}

.programs .box-container .box .donation-Count {
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-top: 10px;

}

.programs .box-container .box .donation-Count span{
    color: var(--themeRed);
}

.programs .box-container .box button {
    position: absolute;
    left: 50%;
    background-color: var(--themeRed);
    color: #fff;
    transform: translate(-50%);
    bottom: -15px;
    border-radius: 60px;
    padding: 7px 15px;
    border: 0;
    outline: none;
    cursor: pointer;
}
/* Program Section End */

/* Education Section Start */
.education{
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.education .video-player{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}
.education .section-Title {
    color: #fff;
    text-shadow: 0 0 4px #000;
}

.education .education-container{
    position: absolute;
    background-color: #00000096;
    width: 600px;
    top: 35vh;
    color: #fff;
    text-shadow: 0 0 3px #000;
    padding: 30px;
    border-radius: 10px;
}
.education .education-container h3{
    font-size: 35px;
    font-weight: 300;   
}

.education .education-container p{
    font-size: 15px;
    line-height: 20px;
    margin: 10px 0 30px;
}

.education .education-container button{
    background-color: var(--themeRed);
    border: 0;
    color: #fff;
    padding: 10px 25px;
    font-weight: bold;
    font-size: 14px;
    outline: none;
    border-radius: 12px;
    cursor: pointer;
    margin-left: 20px;
}
.education .education-container button:hover {
    background-color: blueviolet;
    border: 0;
    color: rgb(1, 3, 14);
    padding: 10px 25px;
    font-weight: bold;
    font-size: 14px;
    outline: none;
    border-radius: 12px;
    cursor: pointer;
    margin-left: 20px;
}
/* Education Section End */

/* Gallery Start  */
.gallery{
    background-color: #fff;
}
.gallery .gallery-Container{
    
    column-count: 4;
    column-gap: 20px;
}

.gallery .gallery-Container .item{
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.gallery .gallery-Container img{
    width: 100%;
    display: block;
    transition: 0.4s;
}
.gallery .gallery-Container .title{
    /* position: absolute; */
    background-color:var(--gray);
    padding: 5px;
    margin: 5px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
    opacity: 0;
    z-index: 1;
    transition: 0.4s;
}

.gallery .gallery-Container .item:hover .title {
    opacity: -0.1;
}

.gallery .gallery-Container .item:hover{
    transform: scale(1.2);
}

 .gallery button{
    background-color: var(--themeRed);
    border: 0;
    outline: none;
    color: #fff;
    padding: 10px 15px;
    margin-top: 20px;
    margin-bottom: 60px;
    font-size: 13px;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    margin-left: 600px;
} 


/* Gallery Section End */


/* Gallery Page HTML Design */

.banner-gallery button{
    background-color: var(--themeRed);
    border: 0;
    outline: none;
    color: #fff;
    padding: 10px 15px;
    margin-top: 20px;
    margin-bottom: 60px;
    font-size: 13px;
    border-radius: 13px;
    font-weight: 600;
    cursor: pointer;
}

.banner-gallery button:hover {
    background-color: yellow;
    border: 0;
    outline: none;
    color: #333;
    padding: 10px 15px;
    margin-top: 20px;
    margin-bottom: 60px;
    font-size: 13px;
    border-radius: 13px;
    font-weight: 600;
    cursor: pointer;
   
}

/* Gallery Page HTML Design End*/

/* Join section Start */
.join{
    background-image: url(/img/pattern.jpg);
    color: #fff;
}
.join .join-Title{
    font-size: 40px;
    font-weight: 100;
    text-align: center;
}
.join .join-Title span{
    font-weight: 800;
}
.join h3{
    text-align: center;
    margin-bottom: 30px;
}
.join p{
    text-align: justify;
    justify-content: center;
}

.join button {
    padding: 7px 15px;
    margin-top: 20px;
    border: 0;
    outline: none;
    font-weight: 600;
    font-size: 16px;
}

.join button.join-Now{
    margin-right: 10px;
    background-color: #424242;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
}

.join button.adoptBtn{
    background-color: var(--themeRed);
    border-radius: 10px;
    cursor: pointer;
}


/* Join section End */

/* Team Section Start  */

/* Program section Start */

.team{
    background-color: var(--gray);
}
.team p{
    font-size: 18px;
    text-align: justify;
    margin-bottom: 20px;
}


.team .box-container{
display: grid;
grid-template-columns: repeat(5, 1fr);
}

.team .box-container .box{
    background-color: #fff;
    text-align: center;
    padding-bottom: 25px;
    border-radius: 5px;
    box-shadow: 0 0 3px 0 #c5c5c5;
    position: relative;
    margin: 15px;
}
.team .box-container .box .card-Image{
    width: 100%;
    height: 300px;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}

.team .box-container .box .card-Image:after{
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    filter: grayscale(100%);
    transition: 0.4s;
}

.team .box-container .box:nth-child(1) .card-Image,
.team .box-container .box:nth-child(1) .card-Image:after{
    background-image: url(/img/team/1.jpg);
}

.team .box-container .box:nth-child(2) .card-Image,
.team .box-container .box:nth-child(2) .card-Image:after{
    background-image: url(/img/team/2.jpg);
}
.team .box-container .box:nth-child(3) .card-Image,
.team .box-container .box:nth-child(3) .card-Image:after{
    background-image: url(/img/team/3.jpg);
}
.team .box-container .box:nth-child(4) .card-Image,
.team .box-container .box:nth-child(4) .card-Image:after  {
    background-image: url(/img/team/4.jpg);
}
.team .box-container .box:nth-child(5) .card-Image,
.team .box-container .box:nth-child(5) .card-Image:after  {
    background-image: url(/img/team/5.jpg);
}


.team .box-container .box:hover .card-Image::after{
    top: 100%;
}

.team .box-container .box .program-Title{
    font-size: 16px;
    margin-top: 15px;
    font-weight: 600;
    color: #444;
}

/* Team Section End */



/* Contact Form page HTML Start */
.contact h3{
text-align: center;    
}

.contact .form-group {
    margin-bottom: 20px;
    margin-left: 160px;
    width: 80%;
  }
  .contact label {
    display: block;
    margin-bottom: 5px;
  }
  
  .contact input,
  .contact-Container textarea {
    width: 100%;
    padding: 10px;
    border: 1px #ddd solid;
  }
  
  .contact textarea {
    height: 200px;
  }
  
  .contact input:focus,
  .contact textarea:focus {
    outline: none;
    border-color: #f7c08a;
  }

.contact button{
    
        background-color: var(--themeRed);
        border: 0;
        outline: none;
        color: #fff;
        padding: 10px 15px;
        margin-top: 20px;
        margin-bottom: 60px;
        margin-left: 600px;
        font-size: 13px;
        border-radius: 3px;
        font-weight: 600;
        cursor: pointer;
    }
    .banner-contact button{
        background-color: var(--themeRed);
        border: 0;
        outline: none;
        color: #fff;
        padding: 10px 15px;
        margin-top: 20px;
        margin-bottom: 60px;
        font-size: 13px;
        border-radius: 13px;
        font-weight: 600;
        cursor: pointer;
    }
    
    .banner-contact button:hover {
        background-color: rgb(94, 139, 223);
        border: 0;
        outline: none;
        color: #333;
        padding: 10px 15px;
        margin-top: 20px;
        margin-bottom: 60px;
        font-size: 13px;
        border-radius: 13px;
        font-weight: 600;
        cursor: pointer;
       
    }
/* Contact form page HTML end */


/* haiti page design start */
.banner-haiti{
    min-height: 100vh;
    width: 100%;
    background-image: url(/img/haiti1.jpg);
    background-size:cover;
    background-position: center center;

    background-repeat: no-repeat;
    background-attachment: fixed;

}
.banner-haiti h1{
    margin-top: 230px;
    display: inline-block;
    font-size: 3.5rem;
text-transform: capitalize;
    color: white;
    text-shadow: 0 0 2px #000;
    width: 50%;
    line-height: 4.2rem;
    font-weight: 100;

}

/* .banner-haiti h1 span{
    background-color: goldenrod;
    display: inline-block;
    line-height: 3.5rem;
    padding: 10px 15px;
    font-weight: 600;
    border-radius: 5px;
} */

.banner-haiti h3{
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
}




.banner-haiti p{
    background-color: grey;
    color: #000;
    width: 50%;
    font-size: 20px;
    text-shadow: 0 0 2px #000;
    margin-top: 10px;
    padding: 20px;
    /* justify-content: center; */
    text-align: justify;
    border-radius: 20px;
    opacity: 0.9;
}

.banner-haiti button{
    background-color: var(--themeRed);
    border: 0;
    outline: none;
    color: #fff;
    padding: 10px 15px;
    margin-top: 20px;
    margin-bottom: 60px;
    font-size: 13px;
    border-radius: 13px;
    font-weight: 600;
    cursor: pointer;
}

.banner-haiti button:hover {
    background-color: yellow;
    border: 0;
    outline: none;
    color: #333;
    padding: 10px 15px;
    margin-top: 20px;
    margin-bottom: 60px;
    font-size: 13px;
    border-radius: 13px;
    font-weight: 600;
    cursor: pointer;
   
}
/* Haiti page design End */

/* Education Page HTML design start */

.banner-education button{
    background-color: var(--themeRed);
    border: 0;
    outline: none;
    color: #fff;
    padding: 10px 15px;
    margin-top: 20px;
    margin-bottom: 60px;
    font-size: 13px;
    border-radius: 13px;
    font-weight: 600;
    cursor: pointer;
}

.banner-education button:hover {
    background-color: rgb(74, 141, 230);
    border: 0;
    outline: none;
    color: #333;
    padding: 10px 15px;
    margin-top: 20px;
    margin-bottom: 60px;
    font-size: 13px;
    border-radius: 13px;
    font-weight: 600;
    cursor: pointer;
   
}

/* Education page HTML design end */


/* Read more Page design start   */

.readmore{
    background-color: cyan;
}

.readmore h3{
    color: #333;
    text-align: center;
    font-size: 30px;
}

.readmore h4{
    color: blue;
    text-align: center;
}



/* Read more page design end */

/* Footer */
footer{
    background-color: #181818;
    color: #7f7f7f;
    padding: 50px 0;
    font-size: 14px;
}


footer .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr ;
    grid-gap: 50px;

}
footer .title {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 2px solid ;
    margin-bottom: 30px;
    padding: 0 0 5px 0;
}

footer p{
    margin-bottom: 10px;
}
footer button{
    background-color: var(--themeRed);
    border: 0;
    outline: none;
    color: #fff;
    padding: 10px 15px;
    margin-top: 20px;
    margin-bottom: 60px;
    width: 40%;
    margin-left: 100px;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
}
footer .links-Container ul{
    list-style-type: none;
}

footer .links-Container ul li a{
    text-decoration: none;
    color: #7f7f7f;
    margin-bottom: 10px;
    display: inline-block;
}

footer .newsLetterContainer img{
    height: 100px ;
    margin-bottom: 11px;
}

footer .newsLetterContainer input {
    background-color: transparent;
    border: 1px solid #7f7f7f;
    outline: none;
    padding: 10px 15px;
    width: 100%;
    margin-top: 10px;
    color: #ccc;
    border-radius: 30px;
}
footer .copy p{
    text-align: center;
    margin-top: 40px;
}
/* Footer End */

/* Responsive Media Queries start */

@media screen and (max-width: 1140px){
    .container{
        width: 100%;
        padding: 0 15px;
    }
    .education .video-player{
        width: 1280px;
    }
    
}

@media screen and (max-width: 1080px) {
    .banner h1 {
        margin-top: 200px;
    }
    #about-section .cards {
        justify-content: space-around;
        height: auto;
    }
    #about-section .cards > div {
        margin: 10px 0;;
    }
    
}

@media screen and (max-width: 1024px) {
    .banner{
        background-position-x: 45%;
    }
    .banner h1 {
        font-size: 2.5rem;
    }
    .programs .box-container{
        grid-template-columns: repeat(2,1fr);
    }
    
}

@media screen and (max-width: 768px){
    header nav{
        position: relative;
        border: 2px solid #fff;
        height: 30px;
        width: 30px;
        margin-top: 20px;
        border-radius: 5px;
    }
    header nav:after{
        top: 17px;

    }
    header nav:before{
        top: 7px;

    }
    header nav:after,
    header nav:before {
        content: "";
        height: 2px;
        width: 17px;
        background-color: #fff;
        display: block;
        position: absolute;
        left: 5px;
    }
    header nav ul{
        position: absolute;
        right: -400px;
        top: 53px;
        transition: 0.5s;
    }
    header nav:hover ul{
        right: 0;

    }
    header nav ul li{
        display: block;
    }
header nav ul li a {
    width: 300px;
    background-color: rgba(0 , 0, 0, 0.2);
}
.banner {
    background-position-x: 65%;
}
.banner p{
    font-size: 14px;
}
.banner p,
.banner h1 {
    width: 70%;
}
#about-section .cards > div:hover{
    width: 350px;
}
.education .education-container {
    width: 96%;
}
.education .education-container h3{
    font-size: 30px;
    line-height: 35px;
}
.education .education-container p{
margin: 10px 0 20px;
}
.gallery .gallery-Container {
    column-count: 2;
}

}

@media screen and (max-width: 425px) {
    .banner h1 {
        margin-top: 150px;
        font-size: 2rem;
        line-height: 3rem;
    }
    .banner button{
        margin-bottom: 10px;
    }
    #about-section p{
        text-align: justify;
    }
    #about-section .cards > div:hover{
        width: 400px;
        margin-top: 10px;
        padding: 35px;
    }
    .programs .box-container {
        grid-template-columns: 1fr;
    }
    .education .video-player{
        width: 1400px;
    }
    .education .education-container {
        column-count: 1;
    }
    footer .container{
        grid-template-columns: 1fr;
    }
    
}

@media screen and (max-width: 320px) {
    .education .education-container h3{
        font-size: 18px;
        line-height: 24px;
    }
    .banner h1{
        margin-top: 100px;
    }
    
}



/* Responsive Media Queries end */