/*Globals Start*/

:root{
    --k4cBlue: rgb(0, 120, 185);
    --k4cMediumBlue: rgb(40, 125, 239);
    --k4cDarkBlue: rgb(1, 87, 187);
    --k4cOrange: rgb(247, 176, 48); 
    --k4cWhite: #ffff; 
    --k4cBlack: #000000;  
}
*{
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: "avenir-next-lt-pro", sans-serif;
    font-style: normal;
}
/*h{*/
/*    font-family: "avenir-next-lt-pro", sans-serif;*/
/*}*/
h1{
    font-size: 2.7vw;
    font-weight: 800;
}
h2{
    font-size: 1.3vw;
    font-weight: 800;
}
p{
    font-size: 0.75vw;
    font-weight: 200;
}

.mainContainer{
    width: 50%;
    margin: 1vw auto 0 auto;
    padding: 1.5vw;
}
.orangeLinks{
    color: var(--k4cOrange);
}
.blueLinks{
    color: var(--k4cMediumBlue);
}
.whiteLinks{
    color: var(--k4cWhite);
}

/*Top Bar Starts*/

#topBar{
    position: fixed;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 1vw 6vw;
    height: auto;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    background-color: var(--k4cWhite);
    z-index: 15;
}
#logoLink{
    width: 25%;
}
#k4cLogo{
    max-width: 100%;
    display: block;
}
#topBarTop{
    width: 60%;
    height: auto;
    box-sizing: border-box;
    display: flex;  
    justify-content: space-evenly;
}
.pageLinks{
    margin: auto 0;
    font-family: "myriad-pro", sans-serif;
    font-weight: bold;
    font-style: normal;
    font-size: 0.7vw;
    text-decoration: none;
}
.pageLinks:hover {
    color: var(--k4cOrange);
}
#donateButton{
    height: auto;
    margin-left: 1vw;
    padding: 0.2vw 0.6vw;
    box-sizing: border-box;
    text-align: center;
    background-color: var(--k4cOrange);
    border-radius: 0.4vw;
    display: flex;
}
#donateButton:hover {
    background-color: var(--k4cBlue);
}
#donateText{
    text-decoration: none;
    font-size: 0.9vw;
    margin: auto;
    color: var(--k4cWhite);
}     
#donateLink{
    margin: auto 0;
    text-decoration: none;
}

#topBarShadow{
    height: auto;
    margin: 0 auto;
    padding: 1vw 6vw;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    background-color: var(--k4cWhite);
    z-index: 15;
}
.shadow{
    opacity: 0;
}

/*Bottom Bar Starts*/

#botBar{
    height: auto;
    padding: 2% 4vw 4vw 4vw;
    box-sizing: border-box;
    background-color: var(--k4cOrange);
}
#botHeader1{
    color: var(--k4cBlue);
}
#botBarBot{
    display: flex;
    justify-content: space-evenly;
    margin-top: 2%;
    color: var(--k4cWhite);
}
#botBarBotLeft{
    width: 20%;
    display: flex;
    justify-content: space-between;
}
#faceBookIcon{
    max-width: 100%
}
#instagramIcon{
    max-width: 100%
}
#faceBookIconLink{
    max-width: 48%
}
#instagramIconLink{
    max-width: 48%
}
#botBarText{
    margin-left: 2%;
}

/*max-wdidth: 600px, min-width: 601px, 768px, 992px, 1200px*/
@media only screen and (max-width: 600px){
    
    /*Top Bar Starts*/
    h1{
        font-size: 4.8vw;
        font-weight: bolder;
    }
    h2{
        font-size: 3.4vw;
        font-weight: bold;
    }
    p{
        font-size: 2.4vw;
        font-weight: medium;
    }
    .mainContainer{
        width: 90%;
        margin: 4vw auto 0 auto;
        padding: 3vw;
    }
    
    #topBar{
        padding: 1vw
    }
    #logoLink{
        max-width: 30%;
    }
    #topBarTop{
        width: 70%;
    }
    .pageLinks{
        font-size: 2vw;
    }
    #donateText{
        font-size: 2.2vw;
    } 
    
    /*Bottom Bar Starts*/
    #botBarBotLeft{
        width: 18%;
        display: block;
    }
    #faceBookIcon{
        max-width: 100%
    }
    #instagramIcon{
        max-width: 100%
    }
}