:root {
    --blackish: #1C1C13;
    --pinK: #F18A73;
    --soft-orange: #F7A77B;
    --yellow-orange: #F9EE86;
  }

@font-face {
    font-family: "mainfont";
    src: url("fonts/NotoSans-Regular.ttf");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "bodyfont";
    src: url("fonts/Karla-Regular.ttf");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "mainfont";
    src: url("fonts/NotoSans-Bold.ttf");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "bodyfont";
    src: url("fonts/Karla-Bold.ttf");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "logofont";
    src: url("fonts/Ubuntu-Medium.ttf");
    font-weight: 500;
    font-style: normal;
}

.cursor {
    cursor: none;
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    transition: 0.3s;
    transform: translate(-50%, -50%0);
    pointer-events: none;
    mix-blend-mode: difference;
}

ul li:hover ~ .cursor {
    transform: scale(6);
}

.no-cursor {
    cursor: none;
}

html { 
    scroll-behavior: smooth;
}

ul {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding-right: 10vw;
    padding-left:10vw;
    padding-top: 5vh;
    overflow: hidden;
    background-color: var(--blackish);
}

ul .logo {
    justify-content: flex-end;
}

li {
    float:right;
}

li a {
    font-family: bodyfont;
    font-weight: 400;
    font-size: 20px;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}


li .donatebtn {
    border-radius: 999px;
    border-width: 0.2px;
    font-size: 20px;
    font-weight: 700;
    display: block;
    color: white;
    background-color: var(--pinK);
    text-align: center;
    padding-top: 5px;
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 5px;
    word-break: keep-all;
    text-align:center;
    align-self: center;
    width: fit-content;
    border-color: var(--pinK);
}

.navbtn {
    padding: 24px, 8px;
}

li .donatebtn:hover {
    background-color: white;
    color: var(--pink);
    border-color: white;
}

li a:hover {
    background-color: var(--blackish);
    color: var(--pinK); 
}

.sidebar {
    position: fixed;
    top:0;
    right:0;
    height: 100vh;
    width:250px;
    z-index: 999;
    background-color: white;
    box-shadow: -10px 0px 10px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
}

.sidebar li {
    width:100%;
    padding: 0;
    flex-direction: column-reverse;
    float: center;
}

.sidebar li a {
    color: var(--blackish)
}

.sidebar li a:hover {
    background-color: white;
    color: var(--pinK)
}

.sidebar .navbtn {
    width: auto;
}

.menubtn {
    display: none;
}

#menubtnsvg {
    fill: white;
}

#menubtnsvg:hover {
    fill: var(--pinK)
}

#closebtnsvg {
    fill: var(--blackish);
}

#closebtnsvg:hover {
    fill: var(--pinK);
}

.closebtn a {
    text-align: left;
}

.logo {
    float: left;
    width: 10%;
    height: auto;
    margin-top: 0;
    margin-right: auto;
}

.logo img {
    width: 100%;
    height: auto;
    
}

body {
    margin: 0;
    padding:0;
    overflow-x: hidden;
}

.container {
    height: 100vh;
}

.section {
    height: 86%;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    background-size: cover;
    font-size: 3em;
    flex-wrap: nowrap;
}

.mini {
    width: 100%;
    margin: 0 auto;
    height: auto;
    display: flex;
    background-color: var(--yellow-orange);
    text-align: center;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
}

.filler {
    height: 15%;
}

.hero {
    margin-top:-2vh;
    padding-left: 6vw;
    padding-right: 6vw;
    background-color: var(--blackish);
    color: white;
    font-family: logofont;
    font-weight: 700;
    font-size: 14vh;
}

.ourmission {
    height: 100%;
    background-color: var(--soft-orange);
    background-image: linear-gradient( var(--blackish) 16%, var(--soft-orange) 16%, var(--soft-orange) 84%, var(--blackish) 84%, var(--blackish) 100% );
    flex-direction: row;  
    flex-wrap:  nowrap;
    justify-content: space-evenly;
}


.ourmission img {
    height: 600px;
    width: 40%;
    align-self: center;
    object-fit: cover;

}

.mobileImg {
    display: none;
}

.mission-text {
    width: 550px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.ourmission-head {
    font-family: mainfont;
    font-weight: 700;
    font-size: 45px;
    text-align: center;
    color: var(--soft-orange);
}

.mission-body {
    font-family: bodyfont;
    font-weight: 400;
    font-size: 26px;
    color: white;
    text-align: center;
    
}

.mis-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main {
    width: 100%;
    max-width: 95%;
    margin: 0, auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    align-content: center;
    flex-wrap: nowrap;
}

.getinvolved {
    height: auto;
    background-color: var(--blackish);
    display: flex;
    align-items: center;
    border: none;
    align-content: center;
    justify-content: flex-start;
    padding: 5%;
}

.getinvo-head {
    font-family: mainfont;
    font-weight: 700;
    font-size: 45px;
    text-align: center;
    color: white;
    margin-top: 0;
}

.getinvo-div {
    overflow: hidden;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
}

.worked-head {
    font-family: mainfont;
    font-weight: 700;
    font-size: 45px;
    text-align: center;
    color: var(--blackish);
}

.bluef {
    position: relative;
    display: flex;
}

.getinvo-text {
    font-family: bodyfont;
    font-weight: 400;
    font-size: 1.6vw;
    text-align: center;
    color: var(--blackish);
    padding-left: 3vh;
    padding-right: 3vh;
}

.hero-text {
    text-align: center;
    position: relative;
    letter-spacing: 1vw;
}

h1.hero-text {
    font-size: 28vh;
    line-height: 20%;
    margin-bottom: 8vh;
    margin-top: 8vh;
}

h1.small {
    font-size: 15.75vh;
}

.tagline {
    text-align: center  ;
    font-family: bodyfont;
    font-weight: 400;
    color: var(--yellow-orange);
    font-size: 8.2vh;
    margin-top: 2vh;
}

.flex-box {
    display: flex;
    float: right;
    padding-right: 15vh;
    padding-top: 15vw;
}

.learnmorebtn {
    display: block;
    border-radius: 999px;
    font-family: bodyfont;
    font-weight: 700;
    border: none;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-left: 4%;
    padding-right: 4%;
    background-color: white;
    font-size: 22px;
    color: var(--blackish);
    word-break: keep-all;
    text-align: center;
    text-decoration: none;  
}

.learnmorebtn, a {
    text-decoration: none;
}

.learnmorebtn:hover {
    background: var(--blackish);
    color: white;
}

.card {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 27vw;
    height: 40vw;
    border-radius: 20px;
    transition: box-shadow .3s;
    opacity:0;

}

.joincrd {
    background-color: var(--soft-orange);
}

.donatecrd {
    background-color: var(--pinK);
}

.followcrd {
    background-color: var(--yellow-orange);
}

.joinbtn {
    border-radius: 999px;
    font-family: mainfont;
    font-weight: 700;
    display: inline-block;
    width: 70%;
    border: none;
    padding: 5%;
    background-color: white;
    font-size: 25px;
    color: var(--soft-orange);
    word-break: keep-all;
    text-align:center;
    align-self: center;
    margin-top: 8%
}

.donatebtn2 {
    border-radius: 999px;
    font-family: mainfont;
    font-weight: 700;
    display: inline-block;
    width: 70%;
    border: none;
    padding: 5%;
    background-color: white;
    font-size: 25px;
    color: var(--pinK);
    word-break: keep-all;
    text-align:center;
    align-self: center;
    margin-top: 8%
}

.followbtn {
    border-radius: 999px;
    font-family: mainfont;
    font-weight: 700;
    display: inline-block;
    width: 70%;
    border: none;
    padding: 5%;
    background-color: white;
    font-size: 25px;
    color: var(--yellow-orange);
    word-break: keep-all;
    text-align:center;
    align-self: center;
    margin-top: 8%
}

.mgroup {
    margin: 10%;
}

.ball {
    position: absolute;
    border-radius: 100%;
    opacity: 0.7;
}

/*Footer stuff */

footer {
    background-color: var(--blackish);
    color: var(--pinK);
    display: flex;
    height: 40%;
    overflow: hidden;
    justify-content: space-between;

}

.st {
    color: var(--pinK);
    float:left;
    height:auto;
    width: 20%;
    border:none;
    padding-left: 2vh;
    padding-right: 2vh;
    font-family: bodyfont;
    font-weight: 700;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-top: 1.05vw;
}
.nd {
    color: white;
    float:left;
    width:30%;
    height:auto;
    border:none;
    padding-left: 0;
    padding-right: 2vh;
    font-family: bodyfont;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    text-align: start;
    overflow: hidden;
    }

.nd h3 {
    font-size: 35px;
}

.rd {
    color: var(--blackish);
    overflow: hidden;
}   

.footimg {
    height: auto;
    width: auto;
}

.socials {
    display: inline;
    margin-top: auto;
    justify-content: space-evenly;
    align-content: center;
    text-align: justify;
}

.socials img {
    fill: var(--pinK) !important;
}

input[type = text] {
    color: var(--blackish);
    background-color: white;
    border-radius: 8px;
    padding: 4%;
    border: none;
    width: 90%;
    font-family: bodyfont;
    font-weight: 700;
}

input[type = submit] {
    margin-top: 2vh;
    color: var(--blackish);
    background-color: var(--pinK);
    border-radius: 999px;
    padding-top: 2%;
    padding-bottom: 2%;
    padding-right: 5%;
    padding-left: 5%;
    border:none;
    font-family: mainfont;
    font-weight: 700;
}

input[type=text]:focus {
    border-color: var(--blackish);
    color: var(--pinK);
}

.cursor {
    position: absolute;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    background: white;
    transition: 250ms ease-out;
    mix-blend-mode: difference;
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(4);
    transition: transform 0.5s ease-in-out;
    mix-blend-mode: difference;
  }


/*Ends Here*/


.moving-image:hover{
    animation-play-state: paused;
}

@keyframes marquee{
    0%{transform: translateX(100%);}
    100%{transform: translateX(-100%);}
}


.slide-right {
	-webkit-animation: slide-right 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-right 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.slide-up {
    animation-name: slide-up;
    animation-duration: 0.6s;
    animation-delay: calc(var(--animation-order) * 100ms);
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.250, 0.460, 0.450, 0.940);
}

@-webkit-keyframes slide-right {
    0% {
      -webkit-transform: translateX(-100px);
              transform: translateX(-100px);
    }
    100% {
      -webkit-transform: translateX(0px);
              transform: translateX(0px);
    }
  }
  @keyframes slide-right {
    0% {
        -webkit-transform: translateX(-100px);
                transform: translateX(-100px);
      }
      100% {
        -webkit-transform: translateX(0px);
                transform: translateX(0px);
      }
  }

  @keyframes slide-up {
    0% {
        -webkit-transform: translateY(100px);
                transform: translateY(100px);
                
      }
      100% {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
                opacity: 1;
      }
  }


  @-webkit-keyframes slide-up {
    0% {
        -webkit-transform: translateY(100px);
                transform: translateY(100px);
      }
      100% {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
                opacity: 1;
      }
  }
    


  .card:hover{
    box-shadow: 0 0 100px rgb(0, 0, 0);
  }



/* Mobile & Tablet Css */

@media screen and (max-width: 950px) {
    .hideOnMobile {
        display: none;
    }

    .menubtn {
        display: block;
    }

    h1.hero-text {
        font-size: 15vw;
        margin-bottom: 7vh;
        margin-top: 7vh;
        line-height: 50%    ;
    }

    h1.small {
        font-size: 9vw;
    }   

    .h1 {
        margin-left: auto;
        margin-right: auto;
    }

    .tagline {
        font-size: 4vw
    }

    .section {
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .ourmission {
        flex-direction: row;
        background-image: none;
        height: auto;
        padding-bottom: 1rem;
    }

    .mobileImg {
        display: flex;
        flex-direction:column;
        height: auto;
        background-color: var(--blackish);
        align-items: center;
        justify-content: center;
    }

    .mobileImg img{
        width: 95%;
        height: auto;
        padding-bottom: 10%;
    }

    .getinvo-text {
        font-size: 25px;
    }

    .getinvo-div {
        flex-direction: column;
        align-items: center;

    }
    
    .card {
        width: 70%;
        height: auto;
        --animation-order : 1;
    }

    .donatecrd {
        margin-top: 10%;
        margin-left: 0;
    }

    .followcrd {
        margin-top: 10%;
        margin-left: 0;
    }

    .joinbtn {
        width: 40%;
    }

    .donatebtn2 {
        width: 40%;
    }

    .nd h3 {
        font-size: 30px;
    }

    footer {
        justify-content: space-evenly;
        height: auto;   
    }

    .st {
        width: auto;
    }

    .nd {
        width: auto;
    }

    .worked-head {
        font-size: 30px;
    }

}

@media screen and (max-width: 780px) {
    h1.hero-text {
        font-size: 20vw;
        margin-bottom: 1rem;
    }

    h1.small {
        font-size: 12vw;
    }
}

@media screen and (max-width: 500px) {

    .sidebar {
        width: 100%
    }

    .mission-body {
        padding-left: 5vw;
        padding-right: 5vw;
    }

    h1.hero-text {
        font-size: 24vw;
        margin-bottom: 3vh;
        margin-top: 3vh;
        line-height: 30%;
    }

    h1.small {
        font-size: 12vw;
    }

    .tagline {
        font-size: 6vw;
    }
    

}

/* @media screen and (max-width: 600px) {
    .navlink.responsive {position: relative;}
    .navlink.responsive a.icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .navlink.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  }

@media screen and (max-width: 600px) {
.navlink a{display: none;}
.navlink a.icon {
    float: right;
    display: block;
    }
}

@media screen and (max-width: 600px) {

    .tagline {
        display: none;
    }
    h1.hero-text {
        display: flex;
        justify-content: center;
        font-size: 50px;
        line-height: 50%;
    }
    .ourmission {
        display: none;
    }

} */