@charset "utf-8";
/*
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, font,
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 {
    margin : 0;
    padding : 0;
    border : 0;
    outline : 0;
    font-size : 100%;
    vertical-align : baseline;
    background : transparent;
}
ol,
ul {
    margin:20px 30px;
}
ol ol,
ul ul {
    margin:0px 30px;
}
ins { text-decoration: none }
del { text-decoration: line-through }
table {
    border-collapse: collapse;
    border-spacing: 0;
}
caption,
th,
td {
    text-align: left;
    font-weight: normal;
}
table,
td,
th { vertical-align: middle }
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
blockquote,
q { quotes: "" "" }
a img { border: none }
abbr,
acronym { border-bottom-width : 0 }
strong { font-weight : bold }
em { font-style : italic }

/*
Page Layout
*/

body {
    background: #F8F8FF;
    padding-top: 20px;
    padding-bottom: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #666;
}
.width-constraint {
    max-width: 900px;
    position: relative;
    margin: 0px auto;
}
.summary-outer-container {
    background: #EEE;
    border: 1px solid #CCC;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -5px;
}
.summary-container {
    line-height: 1.3em;
    padding: 15px;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2em;
}

/*
Page Headings
*/

.title-block {
    max-width: 900px;
    height: 70px;
    position: relative;
    background: rgb(44,42,78);
    border: 1px solid black;
    border-radius-top-left: 3px;
    border-radius-top-right: 3px;
}

.contact-info {
    position: absolute;
    top: 15px;
    right: 15px;
}

.contact-info, .contact-info a {
    color: #CCC;
}

.heading {
    max-width: 900px;
    height: 60px;
    background: rgb(44,42,78);
    margin-bottom: 20px;
    border: 1px solid black;
    border-radius: 3px;
}
h1 {
    margin-left: 21px;
    padding-top: 20px;
    font-weight: bold;
    font-size: 28px;
    color: #FFF;
    text-transform: capitalize;
    letter-spacing: -1px;
    text-shadow: #222 2px 2px 0px;
}
h2 {
    height: 43px;
    margin-left: 21px;
    padding-top: 17px;
    font-weight: bold;
    font-size: 22px;
    color: #FFF;
    text-transform: capitalize;
    letter-spacing: -1px;
    text-shadow: #222 2px 2px 0px;
}

/*
Print & Download Links
*/

.link-header {
    width: auto;
    text-align: right;
    font-size: 11px;
    color: #555;
    margin-bottom: 4px;
}
.link-header a {
    color: #555;
    text-decoration: none;
}
.link-header a:hover {
    color: #333;
    text-decoration: underline;
}

/*
Column Content
*/

a {
    color: #5C9FD6;
    text-decoration: none;
}
a:hover { 
    text-decoration: underline;
}

.row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
    justify-content: flex-start;
}

.column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    background: #EEE;
    padding: 20px;
    border: #D1D1D1 1px solid;
    border-radius: 7px;
    margin-bottom: 20px;
}

.column-header {
    margin: -21px;
    padding: 10px 20px 5px;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    background: rgb(83,72,136);
    background: linear-gradient(90deg, rgba(83,72,136,1) 0%, rgba(52,48,108,1) 55%);
    border-bottom: rgb(45,43,54) 2px solid;
}

.education-container {
    background: #EEE;
    border: 1px solid #CCC;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -26px;
}
.education .heading {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}
.education-content {
    padding: 15px;
    margin-left: 25px;
    font-size: 1.2em;
}
.education-content h3 {
    font-size: 16px;
    color: #444;
}
.education-content h4 {
    font-size: 14px;
    color: #666;
    margin-top: 3px;
}

.column-header h3 {
    color: #FFF;
    font-size: 16px;
}

.column-header h4 {
    color: #CCC;
    font-size: 14px;
    margin-top: 2px;
}

.column-period {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #FFF;
}

.column-body {
    padding-top: 20px;
}

.column-body li {
    padding-top: 10px;
}

@media screen and (min-width: 800px) {
  .column {
    flex: 1
  }
}