/**
 * Main Colors:
 *
 * Deep Pink #f7725b
 * Light Pink #f68572
 *
 * Orange #f98f4f
 * Light Orange #f9a94a
 *
 * Yellow #fabd2f
 * Light Yellow #fdce62
 *
 *
 * Deep purple #605ca8
 * Light purple #928edf
 *
 * Deep Blue #00aeef
 * Light Blue #77ccec
 *
 * Blue #0069aa
 *
 * Green #8bc53d
 *
 * Red #eb1d4b
 *
 * Grey #9d9d9d
 */

.blue {
 color: #0069aa;
}

.light-blue {
 color: #77ccec;
}

.red {
  color: #eb1d4b;
}

.light-puple{
    color: #928edf;
}

.green {
  color: #8bc53d;
}

.grey {
  background: #9d9d9d;
}

.white {
    color: #ffffff;
}


.black {
    color: #000000;
}


a.yellow,
span.yellow,
p.yellow
{
    color: #fdce62 !important;
}

a.yellow.btn{
    color: #ffffff !important;
}


h3.light-orange,
p.light-orange,
a.light-orange
{
    color: #f9a94a !important;
}

