@charset "UTF-8";
/* CSS Document */
.dorey-section-yellow {
  background: url("/bios/bg-icon-pattern.png") var(--colour-dfm-gold);
}
.dorey-section-dark {
  background: url("/bios/bg-icon-pattern-white-trans.png") var(--colour-dfm-grey-dark);
}
.dorey-section-yellow h3 {
  color: white !important;
}
.uk-button-large {
  font-size: 2em;
  font-weight: 100;
  letter-spacing: .2em;
}
h1 {
  font-weight: 100;
  font-size: 4em;
}
.dorey-icon-mask {
  -webkit-mask-image: url("/bios/dfm-icon-mask.svg");
  mask-image: url("dfm-icon-mask.svg");
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat
}
.dorey-tab .uk-active a, .dorey-tab li a {
  padding-top: 90px;
}
.dorey-tab .uk-active a {
  border-bottom: 4px solid var(--colour-dfm-grey);
  background: url("/pix/tab-icon.png") no-repeat top;
  background-size: contain, cover;
  filter: grayscale(0)
}
.dorey-tab li a {
  border-bottom: 4px solid rgba(255, 255, 255, 0);
  background: url("/pix/tab-icon.png") no-repeat top;
  background-size: contain, cover;
  filter: grayscale(1)
}
.dorey-table-bold-th th {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
.dorey-table-grid {
  background-color: var(--colour-base-pale);
}
.dorey-table-grid td, .dorey-table-grid th {
  border: 1px solid #e5e5e5;
}
.dorey-demo-progress {
  padding: 4px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
}
.dorey-demo-progress-bar {
  height: 24px;
  border-radius: 30px;
  background-image:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
  transition: 0.4s linear;
  transition-property: width, background-color;
}
.dorey-demo-progress-moved .dorey-demo-progress-bar {
  width: 55%;
  background-color: var(--colour-dfm-grey);
  animation: progressAnimation 3s;
}
@keyframes progressAnimation {
  0% {
    width: 5%;
    background-color: var(--colour-dfm-grey);
  }
  100% {
    width: 55%;
    background-color: var(--colour-dfm-grey);
  }
}
#testimonials {
  color: white;
  text-align: center;
  text-transform: uppercase;
  padding: 0 80px;
  font-size: 1.5em;
  font-weight: 100;
}
#testimonials span {
  display: block;
  padding: 20px 50px;
  font-size: .8em;
}
.dfm-card {
    background: white;
    padding: 20px;
    border-radius: 18px
}
.dfm-card p {
    font-size: 14px
}
.dfm-card {
    max-width: 428px;
}
.dfm-card h6 {
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: .2em;
}
.dfm-bio-button {
    color: var(--colour-base);
    text-decoration: none;
    border: 1px solid var(--colour-base);
    border-radius: 100px;
    padding: 3px 4px 4px 8px;
    display: block;
    max-width: 428px;
    font-size: 13px;
}
    a:hover.dfm-bio-button {
        color: white;
        background-color: var(--colour-dfm-gold-dark);
        border: 1px solid var(--colour-dfm-gold-dark);
        text-decoration: none;
    }
    
    .dfm-bio-button-highlight {
            color: white;
    text-decoration: none;
    border: 1px solid var(--colour-dfm-gold);
        background-color: var(--colour-dfm-gold);
    }
    
.dfm-bio-button span {
    padding-right: 8px;
}