@font-face {
    font-family: "Josefin Sans Thin";
    src: url(../fonts/JosefinSans.ttf);
}
*{
    padding: 0;
    margin: 0;
    font-family: "Josefin Sans Thin";
}
:root{
    --text: #313131;
    --bkg: #f8f8f8;
    --white: #fff;
    --active: #62dd82;
    --textSize: 20px;
}
body{
    background: var(--bkg);
}

/*==========NAV==========*/
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img{
    width: 100%;
    display: block;
    margin: auto 0;
}
nav li{
    list-style: none;
}
nav a{
    text-decoration: none;
    color: var(--white);
    font-size: var(--textSize);
}
nav a:hover, .social i:hover{
    color: var(--active);
}
nav a{
    text-decoration: none;
    color: var(--white);
    font-size: var(--textSize);
}
.active{
    color: var(--active);
}
.social i{
    color: var(--white);
    cursor: pointer;
    margin: 0 5px;
    font-size: 20px;
}
#f:hover{
    color: #3b5bba;
}
#y:hover{
    color: red;
}

/*==========HEADER===========*/
.home{
    width: 100%;
    height: 100vh;
    position: relative;
    background-image: url(../imgs/grqnny.jpg);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}
.cta_wrap{
    display: flex;
    height: 87%;
}
.text_wrap{
    flex-basis: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text_wrap *{
    color: #fff;
}
.cta_wrap h2{
    display: block;
    text-align: center;
}
.cta_wrap h1{
    display: block;
    text-align: center;
    padding-bottom: 20px;
}
.links{
    display: block;
    margin-top: 30px;
}
.links a{
    padding: 20px;
    border: 2px solid var(--white);
    border-radius: 40px;
    text-decoration: none;
    margin-right: 20px;
}
.links a:hover{
    background-color: var(--white);
    color: var(--active);
}
.cta{
    background-color: var(--active);
    border: 2px solid var(--active) !important;
}

/*========== ABOUT ==========*/
#about{
    height: 100vh;
    display: flex;
    flex-wrap: nowrap;
}
.a_img, .a_text{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.i_container{
    height: 60%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
}
.small_header{
    font-size: 2.2rem;
    display: block;
}
.button{
    text-decoration: none;
    background-color: var(--active);
    color: var(--white);
    padding: 20px;
    border-radius: 40px;
}
.button:hover{
    border: 1px solid var(--active);
    background-color: var(--white);
    color: var(--active);
}
.t_container p{
    font-size: var(--textSize);
    display: block;
    text-align: justify;
    margin-bottom: 50px;
}
.line{
    width: 115px;
    height: 4px;
    background: var(--active);
    border-radius: 20px;
    margin-bottom: 50px;
}

/*========== OBJECTIVES ==========*/
#objectives{
    width: 100%;
    margin-bottom: 20px;
}
.heading{
    display: block;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 70px;
}
#objectives ul{
    width: 80%;
    margin: 20px auto;
    display: block;
    padding-left: 20px;
}
#objectives li{
    list-style: none;
    margin-bottom: 20px;
    font-size: 20px;
    display: flex;
}
#objectives li i{
    font-size: 20px;
}
#objectives li span{
    margin-right: 10px;
    margin-bottom: 25px;
}

/*========== STORIES ==========*/
#stories, .p_stories{
    display: block;
    padding: 20px;
}
.story_wrap{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 100px;
    width: 90%;
    margin: 5px auto;
}
.ps_grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 120px;
    width: 90%;
    margin: 5px auto;
}
.story{
    /* flex-basis: 24%; */
    border-radius: 30px;
    background-color: var(--white);
    margin-bottom: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    min-width: 300px;
    max-width: 400px;
}
.story h4{
    display: block;
    padding: 10px;
    font-size: 22px;
}
.story a{
    color: var(--active);
    text-decoration: none;
}
.story a:hover{
    text-decoration: underline;
}
.story p{
    display: block;
    padding: 10px;
    font-size: 16px;
    text-align: justify;
    margin-bottom: 20px;
    line-height: 28px;
}
.s_img{
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
}
.more{
    display: block;
    margin: 50px auto;
    display: flex;
    justify-content: end;
    width: 90%;
}

/*========== JOIN ==========*/
#join{
    width: 100%;
    background-image: url(../imgs/belle.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    color: var(--white);
    position: relative;
    height: 350px;
    margin-bottom: 80px;
}
.bkg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(49, 49, 49, 0.4);
}
#join h1{
    display: block;
    padding: 40px 0;
    font-size: 3rem;
}
#join p{
    display: block;
    padding: 40px 0;
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.j_cta{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.j_text{
    text-align: center;
    display: block;
    padding: 20px 0;
    color: #6b6b6b;
    font-size: var(--textSize);
}
.j_wrap{
    display: flex;
    padding: 20px 0;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}
.j_box{
    margin: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 30px;
}
.j_box a{
    text-decoration: none;
}
.j_box a:hover{
    text-decoration: underline;
}
.j_wrap i{
    color: var(--active);
    font-size: 2rem;
    padding: 30px;
}
.j_wrap h4{
    color: var(--text);
    font-size: 1rem;
    padding: 30px;
}

/*========== FOOTER ==========*/
footer{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: var(--text);
    padding: 10px 0;
}
footer *{
    color: #6b6b6b;
    flex-basis: 19%;
}
footer h4{
    display: block;
    margin-bottom: 15px;
    color: var(--bkg);
}
footer a{
    display: block;
    margin-bottom: 25px;
    text-decoration: none;
}
footer a:hover{
    color: var(--active);
}
.contact *{
    display: block;
    margin-bottom: 10px;
}


/*========== ABOUT PAGE ==========*/
.page_header{
    width: 100%;
    height: 80vh;
    position: relative;
    background-image: url(../imgs/peace2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.a_title{
    display: block;
    height: 80%;
}
.title_flex{
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: end;
}
.a_title h1{
    font-size: 2rem;
    padding: 20px;
    background: #ffffffad;
    height: 40px;
    width: 30%;
    text-align: center;
    color: var(--active);
    position: absolute;
    bottom: 0;
    left: 30%;
}
.about_text{
    display: block;
}
.about_text p{
    display: block;
    padding: 20px;
    text-align: justify;
}
.goals{
    display: block;
}
.goal{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: 50px;
}
.goal i{
    color: var(--active);
}
.goal p{
    color: #6b6b6b;
}
.principles{
    display: block;
    margin-top: 40px;
    margin-bottom: 20px;
}
.p_grid{
    width: 70%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 50px;
}
.principle{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 30px;
}
.principle i{
    text-align: center;
    color: var(--active);
    display: block;
    font-size: 3rem;
    padding: 40px;
}
.principle h4{
    text-align: center;
    display: block;
}
.principle p{
    padding: 10px;
    color: #6b6b6b;
    text-align: justify;
    font-size: 12px;
    margin: 15px;
}

/*========== PROJECTS ==========*/
.projects{
    width: 100%;
    height: 100vh;
}
.p_flex{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.p_flex h6{
    text-align: center;
    color: #6b6b6b;
    font-size: 24px;
}

/*========== CONTACT PAGE ==========*/
.p_contact{
    display: block;
    padding: 20px;
}
.pc_wrap{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.adress *{
    padding: 10px 0;
}
.adress p{
    color: #6b6b6b;
}
form label{
    color: #6b6b6b;
    margin-bottom: 10px;
}
form p{
    color: #6b6b6b;
    margin-bottom: 10px;
    text-align: center;
    padding: 20px 0;
}
form input, form textarea{
    width: 95%;
    margin-bottom: 20px;
}
form input{
    height: 40px;
    border: none;
    border-bottom: 2px solid #313131;
    background: transparent;
}
form textarea{
    border: none;
    border-bottom: 2px solid #313131;
    background: transparent;
}

/*========== READ PAGE ==========*/
.read{
    width: 100%;
    text-align: center;
}
.read img{
    padding: 30px;
}
.read p{
    width: 70%;
    text-align: justify;
    margin: 0 auto;
    padding-bottom: 20px;
}
.wrapper{
    width: 1005;
}