/* CSS RESET
*/

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;
}
body {
    line-height: 1;
    width: 100%;
    text-align: center;
    background-color: #dddddd;
}
h1 {
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    font-weight: bold;
    font-size: 7vw;
}

h2 {
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    font-weight: bold;
    font-size: 4.5vw;
}

@media screen and (min-width: 1500px){
    h1 {
        font-size: 4vw;
    }
    h2 {
        font-size: 3vw;
    }
}


h3 {
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    font-weight: bold;
    font-size: 2em;
    letter-spacing: -0.1em;
    margin-bottom: 100px;
}
h4 {
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    font-size: 1.3em;
    letter-spacing: -0.1em;
    margin-bottom: 10px;
}
h5 {
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    font-size: 1.1em;
    letter-spacing: -0.2vw;
    margin-bottom: 30px;
}
a {
    color: black;
    font-weight: bold;
}
p {
    line-height: 2;
    text-align: left;
    margin-bottom: 4em;
    font-size: 1.2em;
    font-weight: lighter;
    font-family: Arial, Helvetica, sans-serif;
}
#container {
    max-width: 1300px; 
    margin: 0px auto;
    background-color: white;
}
#header {
    position: relative;
    pointer-events: none;
}
#header-text {
    width: 100%;
    position: absolute;
    bottom: 25px;
    color: white;
}
#header-line{
    border-top: 2px white solid;
    margin: 1vw 7vw;
    height: 2px;
}
#biog {
    text-align: left;
    margin: 80px 7vw;
}


.section {
    margin: 80px 7vw;
}

@media screen and (max-width: 812px){
    .section {
        margin: 5px;
    }
    #biog {
        margin: 80px 5px;
    }
}

.package {
    margin-bottom: 80px;
    text-align: left;
}

#readmore {
    display: none;
}

/*
@media screen and (min-width: 812px) {
    .package {
        float: left;
        width: 48%;
    }
    .left {
        margin-right: 4%;
    }   
}

#podcast {
    margin: 80px 7vw;
}
*/
#contact {
    padding: 80px 7vw;
    background-color: #353535;
    color: white;
   /* text-align: left;*/
    line-height: 2;
}
#contact a {
    color: white;
    text-decoration: none;
    font-weight: normal;
}
#contact a:hover {
    border-bottom: 1px white solid;
}
.mc-divider {
    margin: 20px 7vw;
}

.mySlides1 {
    width: 100%;
    height: auto;
    display: none;
    pointer-events: none;
}

.mySlides2 {
    width: 100%;
    height: auto;
    display: none;
    pointer-events: none;
}

.mc-animate-in {
    animation-name: animate-in;
    animation-duration: 2s;
    opacity: 1;
    letter-spacing: -0.2vw;
}

@keyframes animate-in {
    from {
        letter-spacing: -0.9vw;
        opacity: 0.5;
    }
    to {
        letter-spacing: -0.2vw;
        opacity: 1;
    }
}

.mc-line-animate-in {
    animation-name: animate-line-in;
    animation-duration: 2s; 
    margin: 1vw 7vw;
}

@keyframes animate-line-in {
    from {
        margin: 0vw 50vw;
        opacity: 0.5;
    }
    to {
        margin: 1vw 7vw;
        opacity: 1;
    }
}