@charset "utf-8";
/* CSS Document */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* MY WWWW */
body {
    background-color: #ff0054;
    /* background-image: url("../img/bg2.jpg"); 
  background-size: cover; */
    color: #000;
   /* font-family: "klavika-web", sans-serif; */
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    font-style: normal;
    line-height: 1.5;
    padding-top: 20vh;
    text-align: left;
}
h1 {
    font-size: 2em;
    margin-bottom: -1px;
    /* text-shadow: 1px 1px 0px rgba(0, 0, 0, 1); */
}
h2 {
    font-size: 1.4em;
    margin-bottom: -1px;
    /* text-shadow: 1px 1px 0px rgba(0, 0, 0, 1); */
}
p {}
.bg_white {
    background-color: rgba(255, 255, 255, 1);
    padding: 1px 10px 3px;
}
a, a:hover, a:visited {
    color: #ff0054;
}
hr {
    border: solid 1px #ff0054;
}
.grey {
    color: #A6A6A6;
}
/* Accordion */
.bio {
    margin-bottom: 40px;
    margin-top: 50px;
}
.bio p{
	margin-bottom: 1em;
}
.accordion {
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    padding: 20px 18px 15px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #000;
    text-align: left;
    outline: none;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1.2em;
    transition: 0.4s;
}
.active, .accordion:hover {
    background-color: #fff;
}
.accordion:after {
    content: '\002B';
    color: #000;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-size: 1.5em;
    line-height: 0.8em;
}
.active:after {
    content: "\2212";
}
.panel {
    background-color: #fff;
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.panel_text {
    padding: 30px 0 45px;
}




/*  */

/* Gradient CSS */
.blob {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140vw;
    height: 140vw;
    border-radius: 100%;
    background-image: radial-gradient(#333 10%, #000);
    mix-blend-mode: difference;
    filter: blur(90vw);
    transition: all 150ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: -1;
}

