body {
    font-family: 'roboto';
}
.defaultFont{
    font-family: 'roboto';
}
.paragraphFont {
    font-family: 'roboto';
    font-weight: 300;
  }
.titleFont {
    font-family: 'roboto';
    font-weight: 700;
  }
.lightBlueText{
    color: #7FB1D3;
}
.yellowText{
    color: #EFC100;
}
.brandYellow {
    background-color: #EFC100;
    transition: background-color 0.3s;
}
.brandYellow:hover{
    background-color: #fad748;
    transition: background-color 0.3s;
}
.brandDarkblue{
    background-color: #1F2835;
}
.brandLightBlue {
    background-color: #7FB1D3;
    transition: background-color 0.3s;
}

.brandLightBlue:hover {
    background-color: rgb(142 197 234);
    transition: background-color 0.3s;
}

.background-img {
    position: relative;
}

.background-img:before {
    background: url(images/BrandPattern.png);
    background-size: cover;
    background-position: bottom;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.3;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
