@font-face {
    font-family: poppins;
    src: url(/Poppins/Poppins-Light.ttf);
}

@font-face {
    font-family: publico;
    src: url(/publico/light/Publico\ Banner\ Web\ Light\ Regular.ttf);
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color1: #ffffff;
    --primary-color2: #F6F5EF;
    --primary-color3: #ffd2a4;
    --primary-color4: #012516;
    --primary-color5: #B7B3A4;
    --primary-textColor1: #000000;
    --buttonTransparent: #e37627;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    overflow-x: hidden;
}

.main {
    width: 100%;
    height: 100%;
}

::-webkit-scrollbar {
    display: none;
}

.get{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 4rem;
    height: 4rem;
    position: fixed;
    bottom: 5%;
    right: 5%;
    z-index: 999;
    text-decoration: none;
    background-color: var(--buttonTransparent);
    border: 2px solid var(--primary-color4);
    border-radius: 50%;
    color: var(--primary-color1);
}

.loader{
    width: 100%;
    height: 100%;
    background-color: var(--primary-color1);
    position: absolute;
    top: 0;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader img{
    width: 15vw;
}



/* NAVBAR SECTION STARTS */


.navbar {
    width: 100vw;
    height: 8vh;
    position: fixed;
    display: flex;
    top: 0;
    justify-content: space-between;
    align-items: flex-start;
    padding: .4rem 5rem;
    font-family: publico;
    z-index: 999;
    background-color: var(--primary-color2);
    transition: all .7s ease-in-out;
}

.navbarContainer {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
    margin-top: 1vw;
}

.navbar li {
    margin-bottom: 1.5vw;
    font-size: 1.3vw;
}

.navbar ul a {
    color: var(--primary-textColor1);
    text-decoration: none;
    transition: all .2s ease-in-out;
}

.navbar ul a:hover {
    color: #898989;
}

.logo {
    display: flex;
    gap: 1vw;
    /* font-family: publico2; */
}

.logo img {
    width: 2.7rem;
    height: 2.7rem;
}

.logo h1 {
    font-size: 2vw;
    margin: 0.3rem 0rem 0rem 0rem;
}

.logo a {
    text-decoration: none;
    color: var(--primary-textColor1);
}

.logoInfo p {
    font-size: 1vw;
}



.navbar button {
    border: none;
    border-radius: 1rem;
    padding: .4rem;
    text-align: center;
    font-weight: 500;
}

.nav-bottom {
    position: absolute;
    top: 100%;
    left: 0%;
    width: 100%;
    height: 0%;
    z-index: 9;
    background-color: var(--primary-color2);
    border-bottom: 1px solid var(--primary-textColor1);
}

.menuBtn {
    display: none;
}

.spanContainer {
    margin: .1rem 0rem 0rem 0rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .2rem;
    width: 2rem;
    height: 2rem;
    padding: 1vw;
    transition: all .2s ease-in-out
}

.spanContainer:hover {
    border-radius: 50%;
    background-color: var(--primary-color3);
}

.menuBtn span {
    width: 1.4rem;
    height: 2px;
    background-color: var(--primary-textColor1);
    transition: all .4s ease-in-out;

}

.navbar-height {
    height: 40vh;
}

.top {
    background-color: var(--primary-color3);
    transform: translateY(5px) rotate(45deg);
}

.spanCenter {
    opacity: 0;

}

.bottom {
    transform: translateY(-5px) rotate(-45deg);

}


/* NAVBAR SECTION ENDS */


/* HERO ABOUT SECTION STARTS */

.heroAbout {
    width: 100%;
    height: 100%;
}

.aboutContainer {
    width: 100%;
    height: 100%;
    background-color: var(--primary-color2);
    display: flex;
    gap: 2vw;
    padding: 3vw;
    margin: 3rem 0rem 0rem 0rem;
}

.aboutInfo {
    font-family: poppins;
    width: 50%;
    padding: 2vw;
    display: flex;
    flex-direction: column;
    gap: 2vh;
    height: 100%;
}

.aboutInfo h2 {
    font-size: 1.5vw;
}

.aboutInfo h1{
    font-size: 3vw;
    font-family: publico;
}

.aboutImage {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 80%;
    position: relative;
    overflow: hidden;
}

.imageback, .imageback1, .imageback2{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(0%);
    background-color: var(--primary-color2);
    overflow-x: hidden;
}

.aboutImage img {
    width: 90%;
    height: 90%;
}

.aboutCard {
    width: 100%;
    height: 42%;
    display: flex;
    gap: 2vw;
    padding: 1vh 6vw;
    justify-content: center;
    background-color: var(--primary-color2);
    padding: 5vh 1vw;
    font-family: publico;
    overflow: hidden;
}

.aboutCard .card {
    width: 28%;
    height: 100%;
    padding: 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vh;
    background-color: var(--primary-color1);
    border-radius: .7vw;
    position: relative;
    overflow: hidden;
    z-index: 99;
}

.card p{
    text-align: center;
    font-family: poppins;
}

.aboutCard .card i,
h2,
p {
    position: relative;
    z-index: 99;
}



.aboutCard .card::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    background-color: var(--buttonTransparent);
    transition: all .2s ease-in-out;
    z-index: 9;
}

.aboutCard .card:hover::before {
    transform: translateX(0);
}

.aboutCard .card:hover {
    color: var(--primary-color1);
}

/* HERO ABOUT SECTION ENDS */

.container2{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2rem;
    align-items: center;
    padding: 15vh 0 15vh 0;
}

/* HISTORY SECTION STARTS */

.infoSection{
    position: sticky;
    width: 100%;
    height: 100%;
    top: 0vh;
    font-family: poppins;
    background-color: var(--primary-color1);
}

.history {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2vh;
    margin: 2rem 0rem ;
}

.revealTextContainer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: publico;
}

.revealingText {
    position: absolute;
    font-size: 4vw;
    opacity: .2;
    width: 90%;
    left: 7%;
}

.revealingTextTop {
    position: absolute;
    font-size: 4vw;
    opacity: 1;
    white-space: nowrap;
    width: 0%;
    left: 7%;
    overflow: hidden;
    margin: 2rem 0rem;
}

.historyPage {
    width: 100%;
    height: 100%;
    padding: 2vw;
    display: flex;
    gap: 2vw;
}

.historyPageImage {
    width: 200%;
    height: 100%;
    position: relative;
}

.presentPageImage{
    width: 100%;
    height: 100%;
    position: relative;
}

.imageback1{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(0%);
    background-color: var(--primary-color1);
}

.historyPageImage img{
    width: 100%;
    height: 100%;
}

.historyPageInfo h2{
    font-family: publico;
}


/* HISTORY SECTION ENDS */


/* PRESENT SECTION STARTS */

.presentPage{
    width: 100%;
    height: 100%;
    padding: 2vw;
    display: flex;
    gap: 2vw;
}

.presentPageImage img{
    width: 100%;
    height:80%;
}

.imageback2{
    background-color: var(--primary-color1);
}

.presentPageInfo h2{
    font-family: publico;
}

/* PRESENT SECTION ENDS */



/* CHALLENGE SECTION STARTS */

.challenge {
    width: 100%;
    height: 110%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2vh;
    padding: 2vw;
    font-family: publico;
    background-color: var(--primary-color2);
}

.challenge h1 {
    font-size: 3vw;
    text-align: center;
}

.challengeContainer {
    width: 100%;
    height: 85%;
    display: flex;
    align-items: center;
    gap: 4vw;
}

.challengeContainer p {
    font-family: poppins;
}

.challengeLeft {
    display: flex;
    flex-direction: column;
    gap: 1vh;
}

.leftCard:nth-child(odd) {
    position: relative;
    right: -10%;
}

.leftCard,
.rightCard {
    width: 100%;
    padding: 1vw;
    display: flex;
    padding: 1vw;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    /* transition: all .2s ease-in-out; */
    border-radius: 3vw;
    background-color: var(--primary-color1);
}

.leftCard:hover {
    background-color: var(--buttonTransparent);
}

.rightCard:hover {
    background-color: var(--buttonTransparent);
}

.cardInfo {
    width: 73%;
}

.leftCard img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    border: 1px solid  black;
}

.challengeCenter {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1vh;
    align-items: center;
}

.challengeCenter img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
     border: 1px solid  black;

}

.challengeRight {
    display: flex;
    flex-direction: column;
    gap: 1vh;
}

.rightCard {
    text-align: end;
}

.rightCard:nth-child(odd) {
    position: relative;
    right: 10%;
}

.rightCard img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    border: 1px solid black;
}

/* CHALLENGE SECTION ENDS */




/* TEAM SECTION STARTS */

.team {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    font-family: publico;
    padding: 1vw 4vw;
    background-color: var(--primary-color1);
    margin-bottom: 2rem;
}
.teamInfo{
    width: 100%;
    font-size: 1.6vw;
    display: flex;
    flex-direction: column;
    gap: 2vh;
}
.teamInfo p{
    width: 70%;
    font-family: poppins;
}

.teamContainer {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 1vw;
    padding: 2vw ;
    align-items: center;
}
.comes{
    width: 100%;
    height: 65%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2vw;
}

.comes p{
    font-family: poppins;
    text-align: center;
    font-size: 1.6vw;
}

.teamMember {
    width: 50%;
    height: 60%;
    display: flex;
    flex-direction: column;
    gap: 1vh;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color2);
}

.teamMember p{
    font-family: poppins;
}

.teamMember img {
    width: 11rem;
    height: 100%;
}

/* TEAM SECTION ENDS */



/* FOOTER SECTION STARTS */

footer {
    width: 100%;
    height: 90%;
    background-color: var(--primary-color4);
    color: var(--primary-color1);
    display: flex;
    flex-direction: column;
    gap: 6vh;
    padding: 2vw;
    font-family: publico;
    justify-content: space-around;
}

.footerTop {
    width: 100%;
    padding: 3vw;
    display: flex;
    gap: 2vw;
    justify-content: space-between;
    align-items: center;
    font-family: poppins;
    border-bottom: 1px solid var(--primary-color1);
}

.partContainer{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: end;
    gap: 2rem;
}

.partContainer .part{
    width: 100%;
}

.footerTop .part {
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.part1{
    display: flex;
    align-items: center;
    justify-content: center;
}

.part h3 {
    font-size: 3vw;
}

.part img{
    width: 20vw;
}

.footerLinks {
    display: flex;
    flex-direction: column;
}

.footerContactInfo{
    display: flex;
    flex-direction: column;
    gap: .7vh;
    color: var(--primary-color1);
}

.footerLinks a {
    text-decoration: none;
    color: var(--primary-color1);
    width: 14vw;
    padding: .4vw;
}

.footerLinks a:hover{
    border-radius: 1vw;
    background-color: var(--primary-color2);
    color: var(--primary-textColor1);
}

.footerBottom {
    display: flex;
    flex-direction: column;
    gap: 1vh;
    text-align: center;
}

.footerBottom h1{
    font-size: 4vw;
}

/* FOOTER SECTION ENDS */




/* MEDIA QUERIES FOR RESPONSIVE DESIGN */

@media screen and (max-width:1168px) {
    .logo img{
        width: 2.7rem;
        height: 2.7rem;
    }
}
@media screen and (max-width:1076px) {
    .logo h1{
        margin: .4rem 0rem 0rem 0rem;
    }
}

@media  screen and (max-width:981px) {
    .logo img{
        width: 2.5rem;
        height: 2.5rem;
    }

     /* CHALLENEG */
     .challenge {
        height: 200%;
    }

    .challenge h1 {
        font-size: 6vw;
    }

    .challengeContainer {
        flex-direction: column;
        height: 100%;
        gap: 4vh;
    }

    .leftCard:nth-child(odd) {
        position: relative;
        right: 0%;
    }

    .rightCard:nth-child(odd) {
        position: relative;
        right: 0%;
    }

    .challengeLeft,
    .challengeRight {
        justify-content: center;
        align-items: center;
    }

    .challengeCenter img {
        width: 7rem;
        height: 7rem;
    }

    .leftCard,
    .rightCard {
        padding: 2vw;
        width: 80%;
        justify-content: space-between;
    }

    .leftCard img {
        width: 7rem;
        height: 7rem;
    }

    .rightCard img {
        width: 7rem;
        height: 7rem;
    }
    
}

@media screen and (max-width:900px) {

    
    .cursor {
        display: none;
    }
    .logo img{
        width: 2.3rem;
        height: 2.3rem;
    }

    .navbar li {
        font-size: 1.7vw;
    }

    .nav-elem h5 {
        font-size: 1.2vw;
    }
    
}

@media screen and (max-width:768px)  {
    .menuBtn{
        display: block;
        cursor: pointer;
    }

    .logo h1{
        font-size: 3.2vw;
        width: 29vw;
    }

    .navbar{
        overflow: hidden;
        border-bottom: 1px solid var(--primary-textColor1);
        padding: 1vw 4vw;
    }
   
    .navbarContainer{
        flex-direction: column;
    }

    .navbar ul{
        justify-content: space-around;
        flex-direction: column;

    }

    .nav-elem li{
        margin-bottom: 0px;
        margin-top: 2.2rem;
        font-size: 3vw;
        
    }
   

    /* TEAM CONTAINER */
    .team{
        height: 80%;
        margin-bottom: 1rem;
    }

    .teamContainer{
        justify-content: center;
        align-items: center;
        gap: 4vw;
    }
    .teamMember{
        align-items:center;
        justify-content: center;
        height: 60%;
        text-align: center;
        background-color: var(--primary-color1);
        padding: 2vw;
        border-radius: 1vw;
    }
    .teamMember img {
        width: 9rem;
        height: 9rem;
    }
    .teamMember h3{
        font-size: 2.5vw;
    }
    .teamMember p{
        font-size: 1.5vw;
    }


    
}

@media screen and (max-width:668px) {
    .nav-elem li{
        font-size: 2.7vw;
        margin-top: 1.1rem;
    }
    .nav-elem h5{
        font-size: 1.7vw;
        margin-bottom: .2rem;
    }

     /* ABOUT CARD CONTAINER */

     .heroAbout p{
        font-size: 2.2vw;
     }
    


}

@media screen and (max-width:576px) {

    .logo h1{
        font-size: 3.2vw;
        margin: .5rem 0rem 0rem 0rem;
    }
    .logo{
        align-items: center;
    }
    .logo img{
        margin: .5rem 0rem 0rem 0rem;
    }
    .logoInfo p{
        font-size: 1.6vw;
    }

    .navbar ul{
        flex-direction: column;
    }

    .nav-elem li{
        font-size: 3.5vw;
    }
    
    
    .menuBtn{
        margin-right: .8rem;
    }

    /* ABOUT CONTAINER */
    .heroAbout{
        height: 95%;
    }
    .aboutInfo h2{
        font-size: 3vw;
    }
    .aboutInfo h1{
        font-size: 5vw;
    }
    .aboutInfo p{
        font-size: 2.5vw;
    }
    .aboutImage{
        width: 50%;
        height: 60%;
    }
   

    /* REAVEAL CONTAINER */
    .revealingText {
        font-size: 7vw;
    }
    
    .revealingTextTop {
        font-size: 7vw;
    }
    .historyPage ,.presentPage{
        flex-direction: column;
    }
    .historyPageImage , .presentPageImage{
        width: 100%;
    }
    .historyPageInfo , .presentPageInfo{
        padding: 3vw;
    }
    .historyPageInfo p {
        font-size: 3.5vw;
    }
    .presentPageInfo p{
        font-size: 3.5vw;
    }
   
    /* TEAM CONTAINER */

    .team{
        height: 70%;
        margin-bottom: 1rem;
    }

    .teamContainer{
        justify-content: center;
        align-items: center;
        gap: 4vw;
    }
    .teamMember{
        align-items:center;
        justify-content: center;
        height: 35vh;
        text-align: center;
        background-color: var(--primary-color1);
        padding: 2vw;
        border-radius: 1vw;
    }
    .teamMember img {
        width: 8rem;
        height: 8rem;
    }
    .teamMember h3{
        font-size: 4vw;
    }
    .teamMember p{
        font-size: 3vw;
    }
    /* FOOTER */

    footer{
        height: 60%;
        justify-content: space-around;
    }
    .partContainer{
        width: 60%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .partContainer .part{
        width: 70%;
    }

    .partContainer .part h3{
        font-size: 1.2rem;
    }
    .part a{
        width: 38%;
    }
    .footerBottom h1{
        font-size: 8vw;
    }

    .part img{
        width: 30vw;
    }
   

}


/* ******** ALL HEIGHTED DEVICES ******* */

@media screen and (min-width:599px) and (min-height:1023px) {
    .logoInfo p {
        font-size: 1.6vw;
    }

    .cursor {
        display: none;
    }

    .menuBtn {
        margin-right: 1rem;
    }

    .navbar {
        width: 100vw;
        padding: 4vw 3vw;
        /* height: 8vh; */
    }

    .nav-elem li {
        font-size: 3.5vw;
        margin-top: 3.1rem;
    }

    .nav-elem h5 {
        font-size: 2.5vw;
        margin-bottom: .2rem;
    }

    .navbar-height {
        height: 35vh;
    }

    /* ABOUT CONTAINER */

    .heroAbout{
        height: 70%;
    }
    .aboutInfo{
        margin-top: 1rem;
    }
    .aboutInfo p{
        font-size: 2vw;
    }

    .aboutImage{
        margin-top: 3rem;
        width: 50%;
        height: 40%;
    }
   

    /* HISTORY AND PRESENT PAGE */

    .revealingText {
        font-size: 6vw;
    }
    
    .revealingTextTop {
        font-size: 6vw;
    }

     /* CHALLENEG */
     .challenge {
        height: 130%;
    }

    .challenge h1 {
        font-size: 6vw;
    }

    .challengeContainer {
        flex-direction: column;
        height: 100%;
        gap: 4vh;
    }

    .leftCard:nth-child(odd) {
        position: relative;
        right: 0%;
    }

    .rightCard:nth-child(odd) {
        position: relative;
        right: 0%;
    }

    .challengeLeft,
    .challengeRight {
        justify-content: center;
        align-items: center;
    }

    .challengeCenter img {
        width: 7rem;
        height: 7rem;
    }

    .leftCard,
    .rightCard {
        padding: 2vw;
        width: 80%;
        justify-content: space-between;
    }

    .leftCard img {
        width: 7rem;
        height: 7rem;
    }

    .rightCard img {
        width: 7rem;
        height: 7rem;
    }
   

    /* TEAM CONTAINER */

    .team{
        height: 100%;
        justify-content: space-around;
        gap: 0vh;
        margin-bottom: 1rem;
    }

    .teamContainer{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4vw;
    }
    .teamInfo{
        font-size: 3.3vw;
    }
    .teamInfo p{
        width: 100%;
    }
    .comes{
        flex-direction: column;
    }
    .comes p{
        font-size: 3.1vw;
    }
    .teamMember{
        width: 80%;
        align-items:center;
        justify-content: center;
        height: 22vh;
        text-align: center;
        padding: 2vw;
        border-radius: 1vw;
    }
    .teamMember img {
        width: 7rem;
        height: 7rem;
    }
    .teamMember h3{
        font-size: 4vw;
    }
    .teamMember p{
        font-size: 3vw;
    }
    /* FOOTER */

    footer{
        height: 60%;
        justify-content: space-around;
    }
    .partContainer{
        width: 60%;
    }
    .partContainer .part{
        width: 100%;
    }

    .partContainer .part h3{
        font-size: 1.5rem;
    }
    .part a{
        width: 48%;
        font-size: 2vw;
    }
    .footerBottom h1{
        font-size: 8vw;
    }
    .footerContactInfo h5{
        font-size: 2vw;
    }
    .part img{
        width: 30vw;
    }


   
}

@media screen and (min-width:819px) and (min-height:1023px) {
    .logo h1 {
        font-size: 2.6vw;
        margin: .5rem 0rem 0rem 0rem;
    }

    .logo {
        align-items: center;
    }

    .logo img {
        margin: .5rem 0rem 0rem 0rem;
    }

    .logoInfo p {
        font-size: 1.3vw;
    }

    .cursor {
        display: none;
    }

    .navbar ul {
        margin-right: 1.2rem;
    }

    .nav-elem li {
        font-size: 2vw;
        margin-top: 0rem;
    }

    .nav-elem h5 {
        font-size: 1.8vw;
        margin-top: .2rem;
    }

    .nav-bottom {
        width: 100%;
    }

     /* ABOUT CONTAINER */

     .heroAbout{
        height: 65%;
    }
    .heroAbout p{
        font-size: 2vw;
    }
    .aboutInfo{
        margin-top: 1rem;
    }
    .aboutImage{
        margin-top: 3rem;
        width: 50%;
        height: 40%;
    }
  

    /* HISTORY AND PRESENT PAGE */

    .revealingText {
        font-size: 6vw;
    }
    
    .revealingTextTop {
        font-size: 6vw;
    }

     /* CHALLENEG */
     .challenge {
        height: 120%;
    }

    .challenge h1 {
        font-size: 6vw;
    }

    .challengeContainer {
        flex-direction: column;
        height: 100%;
        gap: 4vh;
    }

    .leftCard:nth-child(odd) {
        position: relative;
        right: 0%;
    }

    .rightCard:nth-child(odd) {
        position: relative;
        right: 0%;
    }

    .challengeLeft,
    .challengeRight {
        justify-content: center;
        align-items: center;
    }

    .challengeCenter img {
        width: 6rem;
        height: 6rem;
    }

    .leftCard,
    .rightCard {
        padding: 2vw;
        width: 80%;
    }

    .leftCard img {
        width: 6rem;
        height: 6rem;
    }

    .rightCard img {
        width: 6rem;
        height: 6rem;
    }
    /* TEAM CONTAINER */

    .team{
        height: 90%;
        justify-content: space-around;
        gap: 0vh;
        margin-bottom: 1rem;
    }

    .teamContainer{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4vw;
    }
    .teamInfo{
        font-size: 3.5vw;
    }
    .teamInfo p{
        width: 100%;
    }
    .comes{
        flex-direction: row;
    }
    .comes p{
        width: 100%;
        font-size: 3.5vw;
    }
    .teamMember{
        width: 100%;
        align-items:center;
        justify-content: center;
        height: 22vh;
        text-align: center;
        background-color: var(--primary-color1);
        padding: 2vw;
        border-radius: 1vw;
    }
    .teamMember img {
        width: 7rem;
        height: 7rem;
    }
    .teamMember h3{
        font-size: 4vw;
    }
    .teamMember p{
        font-size: 3vw;
    }
    /* FOOTER */

    footer{
        height: 60%;
        justify-content: space-around;
    }
    .partContainer{
        width: 60%;
    }
    .partContainer .part{
        width: 100%;
    }

    .partContainer .part h3{
        font-size: 1.5rem;
    }
    .part a{
        width: 48%;
        font-size: 2vw;
    }
    .footerBottom h1{
        font-size: 8vw;
    }
    .footerContactInfo h5{
        font-size: 2vw;
    }
    .part img{
        width: 30vw;
    }
}

@media screen and (min-width:911px) and (min-height:1023px) {
    .navbar ul{
        margin-right: 4.5rem;
    }
    .nav-bottom{
        width: 100%;
    }
    .cursor{
        display: none;
    }
      /* CHALLENEG */
      .challenge {
        height: 130%;
    }

    .challenge h1 {
        font-size: 6vw;
    }

    .challengeContainer {
        flex-direction: column;
        height: 100%;
        gap: 4vh;
    }

    .leftCard:nth-child(odd) {
        position: relative;
        right: 0%;
    }

    .rightCard:nth-child(odd) {
        position: relative;
        right: 0%;
    }

    .challengeLeft,
    .challengeRight {
        justify-content: center;
        align-items: center;
    }

    .challengeCenter img {
        width: 8rem;
        height: 8rem;
    }

    .leftCard,
    .rightCard {
        padding: 2vw;
        width: 80%;
    }

    .leftCard img {
        width: 8rem;
        height: 8rem;
    }

    .rightCard img {
        width: 8rem;
        height: 8rem;
    }
}

@media screen and (min-width:1023px) and (min-height:1023px) {
    .logo h1 {
        font-size: 3.5vw;
        margin: 0rem 0rem 0rem 0rem;
    }

    .logo img {
        width: 3.3rem;
        height: 3.3rem;
        margin: 0rem 0rem 0rem 0rem;
    }

    .logoInfo p {
        font-size: 1.6vw;
    }
    /* .navbar{
        height: 7.5vh;
    } */

    .navbar ul {
        margin-right: 2rem;
    }

    .nav-bottom {
        width: 100%;
    }

    .cursor {
        display: none;
    }
     /* CHALLENEG */
     .challenge {
        height: 140%;
    }

    .challenge h1 {
        font-size: 6vw;
    }

    .challengeContainer {
        flex-direction: column;
        height: 100%;
        gap: 4vh;
    }

    .leftCard:nth-child(odd) {
        position: relative;
        right: 0%;
    }

    .rightCard:nth-child(odd) {
        position: relative;
        right: 0%;
    }

    .challengeLeft,
    .challengeRight {
        justify-content: center;
        align-items: center;
    }

    .challengeCenter img {
        width: 8rem;
        height: 8rem;
    }

    .leftCard,
    .rightCard {
        padding: 3vw;
        width: 90%;
        font-size: 2vw;
        justify-content: space-between;
    }

    .leftCard img {
        width: 8rem;
        height: 8rem;
    }

    .rightCard img {
        width: 8rem;
        height: 8rem;
    }
}


/* ******** ALL HEIGHTED DEVICES ******* */


/* ******** ALL MOBILE DEVICES ******* */

@media screen and (max-width:480px) and (min-width:400px) and (max-height:790px){

    .logo h1 {

        width: 100%;
        font-size: 4.5vw;
        margin: .4rem 0rem 0rem 0rem;
    }

    .logo {
        align-items: center;
    }

    .logo img {
        width: 2.4rem;
        height: 2.4rem;
        margin: .4rem 0rem 0rem 0rem;
    }

    .logoInfo {
        width: 100%;
    }

    .logoInfo p {
        font-size: 2.4vw;
    }

    .menuBtn {
        margin-right: .5rem;
    }

    .navbar {
        /* height: 8vh; */
        padding: 2vw 4vw;
    }

    .nav-elem li {
        font-size: 3.8vw;
        margin-top: 1.7rem;
    }

    .nav-elem h5 {
        font-size: 3.2vw;
    }

    /* ABOUT CONTAINER */

    .aboutContainer{
        flex-direction: column;
    }
    .aboutInfo{
        width: 100%;
    }
    .aboutInfo h2{
        font-size: 4vw;
    }
    .aboutInfo h1{
        font-size: 6vw;
    }
    .aboutInfo p{
        font-size: 2.8vw;
    }
    .aboutImage{
        width: 100%;
        height: 100%;
    }
    .aboutImage img {
        height: 100%;
    }

   

    /* HISTORY CONTAINER */

    .revealingText {
        font-size: 8vw;
    }
    
    .revealingTextTop {
        font-size: 8vw;
    }
    .historyPage ,.presentPage{
        flex-direction: column;
    }
    .historyPageImage , .presentPageImage{
        width: 100%;
    }
    .historyPageInfo , .presentPageInfo{
        padding: 3vw;
    }
    .historyPageInfo p{
        font-size: 4.2vw;
    }
    .presentPageInfo p{
        font-size: 4.2vw;
    }

      /* CHALLENEG */
      .challenge {
        height: 170%;
    }

    .challenge h1 {
        font-size: 6vw;
    }

    .challengeContainer {
        flex-direction: column;
        height: 100%;
        gap: 4vh;
    }

    .leftCard:nth-child(odd) {
        position: relative;
        right: 0%;
    }

    .rightCard:nth-child(odd) {
        position: relative;
        right: 0%;
    }

    .challengeLeft,
    .challengeRight {
        justify-content: center;
        align-items: center;
    }

    .challengeCenter img {
        width: 5rem;
        height: 5rem;
    }

    .leftCard,
    .rightCard {
        padding: 2vw;
        width: 80%;
    }

    .leftCard h2 , .rightCard h2{
        font-size: 3.5vw;
    }

    .leftCard img {
        width: 5rem;
        height: 5rem;
    }

    .rightCard img {
        width: 5rem;
        height: 5rem;
    }

  

    /* TEAM CONTAINER */

    
    .team{
        height: 100%;
        justify-content: space-around;
        gap: 0vh;
        margin-bottom: 1rem;
    }

    .teamContainer{
        /*flex-direction: column;*/
        justify-content: center;
        align-items: center;
        gap: 4vw;
    }
    .teamInfo{
        font-size: 4vw;
    }
    .teamInfo p{
        width: 100%;
    }
    .comes{
        flex-direction: column;
    }
    .comes p{
        font-size: 3.6vw;
    }
    .teamMember{
        width: 80%;
        align-items:center;
        justify-content: center;
        height: 20vh;
        text-align: center;
        padding: 2vw;
        border-radius: 1vw;
    }
    .teamMember img {
        width: 7rem;
        height: 7rem;
    }
    .teamMember h3{
        font-size: 4vw;
    }
    .teamMember p{
        font-size: 3vw;
    }
    /* FOOTER */

    footer{
        height: 60%;
        justify-content: space-around;
    }
    .partContainer{
        width: 60%;
        flex-direction: column;
    }
    .partContainer .part{
        width: 100%;
    }

    .partContainer .part h3{
        font-size: 1.2rem;
    }
    .part a{
        width: 38%;
    }
    .footerBottom h1{
        font-size: 8vw;
    }
    .part img{
        width: 30vw;
    }
     
}

@media screen and (max-width:400px) and (min-width:320px) and (max-height:790px){
    .logo h1 {
        width: 100%;
        font-size: 4.5vw;
        margin: .4rem 0rem 0rem 0rem;
    }

    .logo {
        align-items: center;
    }

    .logo img {
        width: 2.4rem;
        height: 2.4rem;
        margin: 0rem;
    }

    .logoInfo p {
        font-size: 2.4vw;
    }

    .navbar {
       /* height: 8vh; */
        padding: 2vw 4vw;
        padding-right: 5vw;
    }

    .nav-elem li {
        font-size: 4.1vw;
        margin-top: 1.8rem;
    }

    .nav-elem h5 {
        font-size: 3.3vw;
    }

    .menuBtn {
        margin-right: 0rem;
    }
    /* ABOUT CONTAINER */

    .aboutContainer{
        flex-direction: column;
    }
    .aboutInfo{
        width: 100%;
        height: 60%;
    }
    .aboutInfo h2{
        font-size: 4vw;
    }
    .aboutInfo h1{
        font-size: 6vw;
    }
    .aboutInfo p{
        font-size: 2.9vw;
    }
    .aboutImage{
        width: 100%;
        height: 100%;
    }
    .aboutImage img {
        height: 100%;
    }

   

    /* HISTORY CONTAINER */

    .revealingText {
        font-size: 8vw;
    }
    
    .revealingTextTop {
        font-size: 8vw;
    }
    .historyPage ,.presentPage{
        flex-direction: column;
    }
    .historyPageImage , .presentPageImage{
        width: 100%;
    }
    .historyPageInfo , .presentPageInfo{
        padding: 3vw;
    }
    .historyPageInfo p{
        font-size: 4.2vw;
    }
    .presentPageInfo p{
        font-size: 4.2vw;
    }

    /* CHALLENEG */
    .challenge {
        height: 160%;
    }

    .challenge h1 {
        font-size: 6vw;
    }

    .challengeContainer {
        flex-direction: column;
        height: 100%;
        gap: 4vh;
    }

    .leftCard:nth-child(odd) {
        position: relative;
        right: 0%;
    }

    .rightCard:nth-child(odd) {
        position: relative;
        right: 0%;
    }

    .challengeLeft,
    .challengeRight {
        justify-content: center;
        align-items: center;
    }

    .challengeCenter img {
        width: 5rem;
        height: 5rem;
    }

    .leftCard,
    .rightCard {
        padding: 2vw;
        width: 80%;
    }

    .cardInfo{
        font-size: 3vw;
    }

    .leftCard img {
        width: 5rem;
        height: 5rem;
    }

    .rightCard img {
        width: 5rem;
        height: 5rem;
    }
   

    /* TEAM CONTAINER */

    
    .team{
        height: 100%;
        justify-content: space-around;
        gap: 0vh;
        margin-bottom: 1rem;
    }

    .teamContainer{
        /*flex-direction: column;*/
        justify-content: center;
        align-items: center;
        gap: 4vw;
    }
    .teamInfo{
        font-size: 3.5vw;
    }
    .teamInfo p{
        width: 100%;
    }
    .comes{
        flex-direction: column;
        height: 100%;
    }
    .comes p{
        font-size: 3.6vw;
    }
    .teamMember{
        width: 80%;
        align-items:center;
        justify-content: center;
        height: 20vh;
        text-align: center;
        padding: 2vw;
        border-radius: 1vw;
    }
    .teamMember img {
        width: 7rem;
        height: 7rem;
    }
    .teamMember h3{
        font-size: 4vw;
    }
    .teamMember p{
        font-size: 3vw;
    }
    /* FOOTER */

    footer{
        height: 60%;
        justify-content: space-around;
    }
    .partContainer{
        width: 60%;
        flex-direction: column;
    }
    .partContainer .part{
        width: 100%;
    }

    .partContainer .part h3{
        font-size: 1.2rem;
    }
    .part a{
        width: 48%;
    }
    .footerBottom h1{
        font-size: 8vw;
    }
    .part img{
        width: 30vw;
    }
    .footerContactInfo{
        font-size: 4vw;
    }
    

}

/* MIN 791PX */

@media screen and (max-width:480px) and (min-width:400px) and (min-height:791px) {

    .logo h1 {
        width: 100%;
        font-size: 4.5vw;
        margin: .5rem 0rem 0rem 0rem;
    }

    .logo {
        align-items: center;
    }

    .logo img {
        width: 2.4rem;
        height: 2.4rem;
        margin: .5rem 0rem 0rem 0rem;
    }

    .logoInfo p {
        font-size: 2.4vw;
    }

    .menuBtn {
        margin: .6rem .6rem 0rem 0rem;
    }

    .navbar {
        /* height: 7.5vh; */
        padding: 2vw 4vw;
    }

    .nav-elem li {
        font-size: 4vw;
        margin-top: 3rem;
    }

    .nav-elem h5 {
        font-size: 3.6vw;
    }

    /* ABOUT CONTAINER */

    .aboutContainer{
        flex-direction: column;
    }
    .aboutInfo{
        width: 100%;
    }
    .aboutInfo h2{
        font-size: 4vw;
    }
    .aboutInfo h1{
        font-size: 6vw;
    }
    .aboutInfo p{
        font-size: 3.5vw;
    }
    .aboutImage{
        width: 100%;
        height: 100%;
    }

    .aboutImage img {
        height: 100%;
    }
   

    /* HISTORY CONTAINER */

    .revealingText {
        font-size: 8vw;
    }
    
    .revealingTextTop {
        font-size: 8vw;
    }
    .historyPage ,.presentPage{
        flex-direction: column;
    }
    .historyPageImage , .presentPageImage{
        width: 100%;
    }
    .historyPageInfo , .presentPageInfo{
        padding: 3vw;
    }

    /* CHALLENEG */
    .challenge {
        height: 160%;
    }

    .challenge h1 {
        font-size: 6vw;
    }

    .challengeContainer {
        flex-direction: column;
        height: 100%;
        gap: 4vh;
    }

    .leftCard:nth-child(odd) {
        position: relative;
        right: 0%;
    }

    .rightCard:nth-child(odd) {
        position: relative;
        right: 0%;
    }

    .challengeLeft,
    .challengeRight {
        justify-content: center;
        align-items: center;
    }

    .challengeCenter img {
        width: 5rem;
        height: 5rem;
    }

    .leftCard,
    .rightCard {
        padding: 2vw;
        width: 80%;
    }
    .leftCard h2 , .rightCard h2{
        font-size: 3.5vw;
    }

    .leftCard img {
        width: 5rem;
        height: 5rem;
    }

    .rightCard img {
        width: 5rem;
        height: 5rem;
    }

   


    /* TEAM CONTAINER */

    
    .team{
        height: 100%;
        justify-content: space-around;
        gap: 0vh;
        margin-bottom: 1rem;
    }

    .teamContainer{
        /*flex-direction: column;*/
        justify-content: center;
        align-items: center;
        gap: 4vw;
    }
    .teamInfo{
        font-size: 4vw;
    }
    .teamInfo p{
        width: 100%;
    }
    .comes{
        flex-direction: column;
    }
    .comes p{
        font-size: 3.5vw;
    }
    .teamMember{
        width: 80%;
        align-items:center;
        justify-content: center;
        height: 20vh;
        text-align: center;
        padding: 2vw;
        border-radius: 1vw;
    }
    .teamMember img {
        width: 7rem;
        height: 7rem;
    }
    .teamMember h3{
        font-size: 4vw;
    }
    .teamMember p{
        font-size: 3vw;
    }
     /* FOOTER */

     footer{
        height: 60%;
        justify-content: space-around;
    }
    .partContainer{
        width: 60%;
        flex-direction: column;
    }
    .partContainer .part{
        width: 100%;
    }

    .partContainer .part h3{
        font-size: 1.2rem;
    }
    .part a{
        width: 38%;
    }
    .footerBottom h1{
        font-size: 8vw;
    }
    .part img{
        width: 30vw;
    }
     
}

@media screen and (max-width:400px) and (min-width:320px) and (min-height:791px) {

    .logo h1 {
        width: 100%;
        font-size: 4vw;
        margin: .5rem 0rem 0rem 0rem;
    }

    .logo {
        align-items: center;
    }

    .logo img {
        width: 2.4rem;
        height: 2.4rem;
        margin: .5rem 0rem 0rem 0rem;
    }

    .logoInfo {
        width: 100%;
    }

    .logoInfo p {
        font-size: 2.4vw;
    }

    .menuBtn {
        margin: .6rem .6rem 0rem 0rem;
    }

    .navbar {
        width: 100vw;
        padding: 2vw 4vw;
        /* height: 8vh; */
    }

    .nav-elem li {
        font-size: 4vw;
        margin-top: 3rem;
    }

    .nav-elem h5 {
        font-size: 3.6vw;
    }
     /* ABOUT CONTAINER */


    .aboutContainer{
        flex-direction: column;
    }
    .aboutInfo{
        width: 100%;
        height: 60%;
    }
    .aboutInfo h2{
        font-size: 4vw;
    }
    .aboutInfo h1{
        font-size: 6vw;
    }
    .aboutInfo p{
        font-size: 3vw;
    }
    .aboutImage{
        width: 100%;
        height: 100%;
    }
    .aboutImage img {
        height: 100%;
    }


    /* HISTORY CONTAINER */

    .revealingText {
        font-size: 8vw;
    }
    
    .revealingTextTop {
        font-size: 8vw;
    }
    .historyPage ,.presentPage{
        flex-direction: column;
        overflow-x: hidden;
    }
    .historyPageImage , .presentPageImage{
        width: 100%;
        overflow-x: hidden;
    }
    .historyPageInfo , .presentPageInfo{
        padding: 3vw;
    }
    /* CHALLENEG */
    .challenge {
        height: 170%;
    }

    .challenge h1 {
        font-size: 6vw;
    }

    .challengeContainer {
        flex-direction: column;
        height: 100%;
        gap: 4vh;
    }

    .leftCard:nth-child(odd) {
        position: relative;
        right: 0%;
    }

    .rightCard:nth-child(odd) {
        position: relative;
        right: 0%;
    }

    .challengeLeft,
    .challengeRight {
        justify-content: center;
        align-items: center;
    }

    .challengeCenter img {
        width: 5rem;
        height: 5rem;
    }

    .leftCard,
    .rightCard {
        padding: 2vw;
        width: 80%;
        /* font-size: 3.6vw; */
    }
    .leftCard h2,
    .rightCard h2{
        font-size: 4vw;
    }

    .leftCard img {
        width: 5rem;
        height: 5rem;
    }

    .rightCard img {
        width: 5rem;
        height: 5rem;
    }

    
    /* TEAM CONTAINER */

    .team{
        height: 100%;
        justify-content: space-around;
        gap: 0vh;
        margin-bottom: 1rem;
    }

    .teamContainer{
        /*flex-direction: column;*/
        justify-content: center;
        align-items: center;
        gap: 2vw;
    }
    .teamInfo{
        font-size: 4vw;
    }
    .teamInfo p{
        width: 100%;
    }
    .comes{
        flex-direction: column;
        height: 70%;
    }
    .comes p{
        font-size: 3.5vw;
    }
    .teamMember{
        width: 80%;
        align-items:center;
        justify-content: center;
        height: 20vh;
        padding: 2vw;
        border-radius: 1vw;
    }
    .teamMember img {
        width: 7rem;
        height: 7rem;
    }
    .teamMember h3{
        font-size: 4vw;
    }
    .teamMember p{
        font-size: 3vw;
    }
     /* FOOTER */

     footer{
        height: 70%;
        justify-content: space-around;
    }
    .partContainer{
        width: 60%;
        flex-direction: column;
    }
    .partContainer .part{
        width: 100%;
    }

    .partContainer .part h3{
        font-size: 1.2rem;
    }
    .part a{
        width: 48%;
    }
    .footerBottom h1{
        font-size: 8vw;
    }
    .part img{
        width: 30vw;
    }

    
}

/* ******** ALL MOBILE DEVICES ******* */



/* MEDIA QUERIES FOR RESPONSIVE DESIGN */