@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Roboto", sans-serif;
}

body{
    background: #000000;
}

/* BANNER--------------------START----------------HERE------------- */

.banner{    
    background-image: url(images/banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    width: 100%;
    min-height: 115vh;
}

.banner .banner-content{
    width: 75%;
    margin: 0 auto;
    /* position: absolute;
    bottom: 60px;
    left: 50%; */
    /* transform: translateX(-50%); */
}

.banner h1{
    color: #37B34A;
    font-size: 53px;
    font-family: "Nunito Sans", sans-serif;
}

.banner h2{
    color:#37B34A;
    font-family: "Nunito Sans", sans-serif;
}

.banner .bttn{
    background: #FFF;
    color: #37B34A;
    border: 2px solid #FFF;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.banner .bttn:hover{
    background: transparent;
    color: #FFF;
}

@media only screen and (max-width: 1200px){
    .banner h1{
        font-size: 46px;
    }
    .banner .banner-content{
        width: 80%;
    }
}
@media only screen and (max-width: 992px){
    .banner h1{
        font-size: 40px;
    }
    .banner .banner-content{
        width: 100%;
    }
}
@media only screen and (max-width: 767px){
    .banner h1{
        font-size: 25px;
    }
    .banner p{
        font-size: 12px;
    }
    .banner h2{
        font-size: 22px;
        margin: 0 !important;
    }
    .banner .bttn{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }
}

/* BANNER--------------------ENDS----------------HERE------------- */

/* MISSION--------------------START----------------HERE------------- */

.gif{
    position: absolute;
    width: 200px;
}

@media only screen and (max-width: 992px){
    .mission p{
        font-size: 16px !important;
    }
    #gif-1{
        top: -100px !important;
    }
    #gif-2{
        bottom: -100px !important;
    }
}
@media only screen and (max-width: 767px){  
    .mission h1{
        font-size: 35px;
    }
    .mission p{
        margin: 0 !important;
    }
    .mission .mission-content{
        text-align: center;
    }
    .gif{
        display: none;
    }
}

/* MISSION--------------------ENDS----------------HERE------------- */

/* WHY--------------------SATRT----------------HERE------------- */

.why li{
    color:#7a7a7a;
    font-size: 18px;
}

@media only screen and (max-width: 992px){
    .why li{
        font-size: 16px;
        padding: 6px 0 !important;
    }
    .why .img{
        padding: 0 !important;
    }
}
@media only screen and (max-width: 767px){  
    .why .why-content{
        margin: 20px 0;
        text-align: center;
    }
    .why li{
        font-size: 14px;
        text-align: left;
    }
}

/* WHY--------------------ENDS----------------HERE------------- */

/* MEMBER--------------------START----------------HERE------------- */

.member{
    background: #37B34A;
    padding: 60px 0;
}

.member table{
    width: 100%;
}

.member thead {
    color: #37B34A;
    background: #fff;
}

.member th, td {
    padding: 12px 20px;
    text-align: left;
}

.member tbody tr{
    color: #FFF;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}

.member tbody tr:hover {
    background: #FFF;
    color: #37B34A;
}

.member th {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member .table-content{
    border: 1px solid #FFF;
    width: 60%;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

@media only screen and (max-width: 1200px){
    .join .join-content{
        width: 65% !important;
    }
}
@media only screen and (max-width: 992px){
    .join .join-content{
        width: 80% !important;
    }
    .member .table-content{
        width: 80% !important;
    }
}
@media only screen and (max-width: 767px){
    .join .join-content{
        width: 100% !important;
    }
    .member .table-content{
        width: 100% !important;
    }
    .member th, td{
        padding: 12px 15px;
    }
    .member td{
        font-size: 14px;
    }
    .join a.fs-4{
        font-size: 18px !important;
    }
    .join p {
        font-size: 15px !important;
    }
}

/* MEMBER--------------------ENDS----------------HERE------------- */

/* JOIN--------------------START----------------HERE------------- */

.join{
    margin-top: 60px;
    padding: 60px 0 0 0;
    border-top: 1px solid #FFF;
}

/* JOIN--------------------ENDS----------------HERE------------- */

/* DESC---------------START---------------HERE--------------- */

.desc{
    border-bottom: 5px solid #D0D0D0;
    padding: 60px 0 60px 0;
}

.desc label{
    color: #FFFF;
}

.desc #name{
    flex-grow: 1; 
    background-color: transparent; 
    border: none; 
    border: 1px solid #FFF; 
    color: #FFF; 
    padding: 0 10px;
    margin-left: 5px;
}

.desc #name::placeholder{
    color: #FFF;
}

.desc #name:focus{
    outline: none;
}

.desc .desc-txt{
    width: 80%;
    margin: 0 auto;
    padding: 0 12px;
}

.desc form #row-1{
    width: 80%;
    margin: 0 auto;
}

@media only screen and (max-width: 992px){
    .desc .desc-txt{
        width: 100%;
    }
    .desc form #row-1{
        width: 100%;
    }
}
@media only screen and (max-width: 767px){
    .desc label{
        font-size: 12px;
    }
    .desc #name{
        width: 45%;
        font-size: 14px;
    }
    .desc p{
        font-size: 14px;
    }
    .desc h6{
        font-size: 12px;
    }
    .desc h1{
        font-size: 25px;
    }
}

/* DESC---------------ENDS---------------HERE--------------- */

/* SUB---------------STRAT---------------HERE--------------- */


select option{
    background: #000;
}

.sub h1{
    padding-top: 100px;
    margin-top: 100px;
    border-top: 8px solid #D0D0D0;
}

.sub{
    width: 80%;
    margin: 0 auto;
    padding: 0 12px;
}

.sub .sub-txt{
    width: 500px
}

.sub .bttn{
    width: 130px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #FFF;
    color: #000;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid #FFF;
    transition: all 0.3s ease-in-out;
}

.sub .bttn:hover{
    background: transparent;
    color: #FFF;
}

@media only screen and (max-width: 992px){
    .sub{
        width: 100%;
    }
}
@media only screen and (max-width: 767px){
    .sub .sub-txt{
        width: 100%;
    }
    .sub span {
        font-size: 13px;
    }
}

/* SUB---------------ENDS---------------HERE--------------- */