.text {
    letter-spacing: 0;
    line-height: 28px;
    font-size: 16px;
    position: relative;
    margin: 0;
    padding: 0;
}
.text__small {
    font-size: 14px;
}
.text__large {
    line-height: 29px;
    font-size: 18px;
}
.text__xlarge {
    font-size: 2rem;
    line-height: 2.9rem;
    font-family: 'Fira Sans Medium';
}
@media (min-width: 992px) {
    .text__xlarge {
        font-size: 2.8rem;
        line-height: 4rem;
    }
}
.text__color__primary {
    color: #03274f;
}
.text__color__primary:hover {
    color: #03274f;
}
.text__color__secondary {
    color: #68778d;
}
.text__color__secondary:hover {
    color: #68778d;
}
.text__color__tertiary {
    color: #9ade19;
}
.text__color__tertiary:hover {
    color: #9ade19;
}
.text__color__white {
    color: #fff;
}
.text__color__white:hover {
    color: #fff;
}
.text__family__primary {
    font-family: 'Fira Sans';
}
.text__family__secondary {
    font-family: 'Ubuntu';
}
.text__underline {
    position: relative;
    transition: all 250ms ease-in-out;
    transition-duration: 250ms;
}
.text__underline:before, .text__underline:after {
    content: "";
    position: absolute;
    bottom: -4px;
    width: 0;
    height: 3px;
    margin: 5px 0 0;
    left: 0;
    transition: all 250ms ease-in-out;
    transition-duration: 250ms;
    opacity: 0;
    background-color: #9ade19;
}
.text__underline:hover:before, .text__underline:hover:after {
    width: 100%;
    opacity: 1;
}
.text__bold {
    font-weight: bold;
    font-family: 'Fira Sans Medium';
}
strong {
    font-family: 'Ubuntu Bold';
}

p {
    font-family: "Fira Sans";
    font-weight: 100;
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 2.4rem;
}

ul {
    font-family: "Fira Sans";
}

/*ADA-389*/
p a, u a, p li a {
    text-decoration: underline;
    color: #03274f;
}

p a:hover, u a:hover, p li a:hover {
    text-decoration: underline;
    color: #8ac716;
}