:root {
  --grey: rgb(204, 197, 187);
  --white: rgb(246, 245, 243);
  --black: rgb(26, 7, 5);
  --blue: rgb(0, 126, 167);
  --green: rgb(53, 134, 0);
  --orange: rgb(229, 88, 18);
}

* {
    font-family: 'EB Garamond', serif;
    color: var(--black);
}

.blue {
    color: var(--blue) !important;
    transition: color 300ms ease-in-out;
}

.nav-subtitle:hover .blue, .blue:hover, .blue:hover .blue {
    color: var(--orange) !important;
}

.page {
    margin: 0;
}

.nav-back {
    font-weight: 600;
}

h1.kd-heading {
    font-size: calc(1.375rem + 1.9vw);
    font-weight: 600;
}

h1.kd-single-heading {
    font-size: calc(1.375rem + 1.5vw);
    font-weight: 600;
}

.byline {
    font-size: calc(0.6rem + 0.5vw);
    font-weight: 500;
}

a {
    color: var(--blue) !important;
    transition: all 300ms ease-out;
    display: inline-block;
    position: relative;
    text-decoration: none !important;
}

a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(1);
    height: 0.5px;
    bottom: 0;
    left: 0;
    transition: transform 0.6s cubic-bezier(0.15, 1, 0.4, 1);
    background-color: var(--blue);
}

h3.card-title a::after {
    display: none;
}

h3.card-title a {
    color: var(--black) !important;
    font-size: calc(.75rem + .8vw);
    font-weight: 600;
}

h3.card-title a:hover {
    color: var(--blue)!important;
}

.card-footer a {
    font-weight: 500;
}
.card {
    background-color: var(--white) !important;
    border-color: var(--grey) !important;
}

.kd-bg-blue i, .kd-bg-blue p {
    color: var(--white) !important;
    font-size: 1.7rem;
    transition: color 300ms ease-in-out;
    margin-top: 3%;
}

a.no-line::after {
    display: none;
}

a:hover::after, a:focus::after {
    transform: scaleX(0);
}

a.no-line:hover i, a.no-line:focus i {
    color: var(--grey) !important;
}

.kd-bg-white {
    background-color: var(--white);
}

.kd-bg-blue {
    background-color: var(--blue);
    border-radius: 10px;
}

.kd-bg-grey {
    background-color: var(--grey);
}

.headshot {
    border: solid 4px var(--grey);
}

.headshot img {
    object-fit: cover;
}

.subtitle {
    font-size: 1.6rem;
}

.text p, .text li {
    font-size: 18px;
}

.text ul {
    margin: 0;
    padding-left: 20px; 
}

/* Audio playerz */
.ai-audioigniter {
}
.ai-wrap {
    background-color: transparent;
    padding: 0;
}
.ai-wrap .ai-track {
    background-color: var(--blue);
    border-radius: 10px;
    margin-bottom: 4%;
}
.ai-wrap .ai-track-btn {
    top: -7%;
}
.ai-wrap .ai-track-btn {
    line-height: 0;
}
.ai-wrap .ai-track:hover, .ai-wrap .ai-track.ai-track-active {
    background-color: var(--orange);
}
.ai-wrap .ai-track-control {
    border-left: 2px solid var(--white); 
}
.ai-track-name {
    color: var(--white);
    font-size: 15px !important;
    font-weight: 500 !important;
}
.mejs-container, .mejs-container .mejs-controls, .mejs-embed, .mejs-embed body {
    background: var(--blue) !important;
}
.mejs-currenttime, .mejs-duration {
    color: var(--white);
}

@media (max-width: 993px) {
    .headshot {
        margin: 10%;
    }
    p.location {
        display: inline-block;
        width: 100%;
        text-align: center !important;
    }
    .socials {
        width: 100% !important;
        margin-top: 5%;
    }
}

@media (max-width: 600px) {
    .text p, .text li {
        font-size: 14px;
    }
    .card {
        width: 100% !important;
    }
}

@media (max-width: 392px) {
    p.location {
        font-size: 20px;
    }
}