/* FIX EXTRA WHITE SHOWING ON RIGHT SIDE OF WEBPAGE */
html
{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
  }
  
  /* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
  .sticky + .content {
    padding-top: 60px;
  }
  
/* PRIMARY FONTS  */
h1 {
    font-family: "Raleway";
    font-weight: bold;
    font-size: 64px;
    color: #2c3e50;
}

h2 {
    font-family: "Raleway";
    font-weight: bold;
    font-size: 36px;
     color: #34495e;
}


h3 {
    font-family: "Raleway";
    font-weight: bold;
    font-size: 20px;
    color: #34495e;
}
p {
    font-family: "Lora";
    font-size: 20px;
    color: #535C68;
}

.graphTitle {
    font-family: "Raleway";
    font-weight: bold;
    font-size: 15px;
    color: #34495e;
}

/* classes for elements used */
.calloutNumber {
    font-family: "Raleway";
    font-weight: "bold";
    font-size: 56px;
    color: #34495e;
    text-align: center;
}



.calloutText {
    font-family: 'Raleway';
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    color: #535c68;
}

.calloutNumber1 {
    font-family: "Raleway";
    font-weight: "bold";
    font-size: 56px;
    color: #34495e;
    text-align: center;
}



.calloutText1 {
    font-family: 'Raleway';
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    color: #535c68;
}

.calloutNumber2 {
    font-family: "Raleway";
    font-weight: "bold";
    font-size: 56px;
    color: #34495e;
    text-align: center;
}



.calloutText2 {
    font-family: 'Raleway';
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    color: #535c68;
}


.calloutLabel {
    font-family: "Lora";
    font-size: 15px;
    color: #535C68;
}

#boxText{
    font-family: "Lora";
    font-size: 18px;
    color: #535C68;
    text-align: left;
    margin-left: 5%;
    margin-right: 10%;
}

/* .boxTitle{
    font-family: "Raleway ExtraBold";
    font-weight: bold;
    font-size: 24px;
    color: #1d2e81;
    text-align: center;
    margin-top: 0%;
    margin-bottom: -5%;
} */

.btn-btn {
    background-color: white;
    border: none;
    outline: none;
}

.btn-btn-num {
    background-color: white;
    border: none;
    outline: none;
    border-radius: 25px;
}
.btn-btn-num:hover {
    color: black;
}

.sectionTitle {
    background-color: #1d2e81;
    font-family: "Rawline";
    font-size: 50px;
    text-align: center;
    color: white;
    padding-bottom: 10px;
}

#team {
    background-color: #F4F4F4;
    height: 100%;
    margin-bottom: 6%;
}

.tooltip {
    position: absolute;
    /*width: 150px;
    height: 60px;*/
    padding: 5px;
    background-color: #ecf0f1;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border: 1px solid black;
    color: white;
    background-color: black;
    opacity: .8;
    pointer-events: none;   
    font-family: "Rawline";
    font-weight: 100;
    font-style: normal;
    font-size: 12px;    
    line-height: 14px;
    text-align: center;
}


.roleFont {
    font-size: 14px;
}


#publishdate {
    font-family: "Raleway";
    font-size: 20px;
    color: #ffffff;
    margin-top: 20px;
}


/* 3 Second Fade In Animation */
  .animated {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}


/* 5 Second Fade In Animation */
.longAnimated {
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-delay: 0.25s;
    animation-delay: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes longFade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes longFade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.longFade {
    -webkit-animation-name: longFade;
    animation-name: longFade;
}

