.nav-link  {
  font-family: Sans-serif;
  font-weight: 300;
  margin-left: 15px;
}

.logoText {
  margin-top: 40px;
  margin-left: 5px;
  color: gray;
  font-size: 0.75em;
}

.ourBlueColor {
  color: #1C37C0;
}

.cardHeight {
  height: 95%;
}

.fadein {
-webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
}

#bottomContactUs {
   background-image: url("images/contact-us.webp");
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center;
}


#jum h1 {
  font-size: 3em;
}
#jum p {
  font-weight: 300;
  width: 100%;
}

.contactUsButton {
  border-radius: 100px;
  padding-left: 50px;
  padding-right: 50px;
}

.sectionHeader {
  color: #1C37C0;
  text-align: center;
}

.centeredText {
 text-align: center; 
}

.zoom {
    transition: transform .2s;
}

.zoom:hover {
  -ms-transform: scale(1.05); /* IE 9 */
  -webkit-transform: scale(1.05); /* Safari 3-8 */
  transform: scale(1.05); 
}

.lightWeight {
  font-weight: 200;
}

.fit-image{
  width: 100%;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}