/*
Theme Name: Chris Smeenk
Theme URI: http://publish.uwo.ca/~csmeenk2/index.html
Description: Custom theme designed for personal website for Chris Smeenk.
*/
/* Main */
html {
    height: 100%;
}
body {
	background: #FDFDF9;
	padding: 5px 0 0 0;
	margin: 0 auto;
	font-family: optima,sans-serif;
	color: #1D2731;
	font-size: 14px;
	display: flex;
	min-height: 100%;
	flex-direction: column;
}
ul {
	margin-bottom: 26px;
	line-height: 24px;
}
ul li {
	margin-bottom: 2px;
	padding-left: 10px;
}
ol {
	margin: 0 0 14px 22px;
	line-height: 24px;
}
ol li {
	padding-left: 17px
}
h6 {
	font-size: 15px;
	margin-bottom: 12px;
}
a {
	  color: #328CC1;
	  font-size: 14px;
	  text-decoration: none;
	  font-weight: 500;
}
a:hover{
	text-decoration: underline;
}
h5 {
	font-size: 16px;
	margin-bottom: 14px;
}

hr {
	margin: 40px 0;
	border: 0;
	height: 0;
	border-top: 3px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* read more/read less toggle */
.read-more-state {
  display: none;
}

.read-more-target {
  opacity: 0;
  max-height: 0;
  font-size: 0;
  transition: .25s ease;
}

.read-more-state:checked ~ .read-more-wrap .read-more-target {
  opacity: 1;
  font-size: inherit;
  max-height: 999em;
}

.read-more-state ~ .read-more-trigger:before {
  content: 'Show more';
}

.read-more-state:checked ~ .read-more-trigger:before {
  content: 'Show less';
}

.read-more-trigger {
  cursor: pointer;
  display: inline-block;
  padding: 0 .5em;
  color: #328CC1;
  font-size: .9em;
  line-height: 2;
  border: 1px solid #ddd;
  border-radius: .25em;
  position: relative;
  left: 600px;
  top: -30px;
}
/* header */
#header-wrap {
    width: 100%;
    background:#0B3C5D;
    margin: 0 auto;
    border-bottom: 7px solid #328CC1;
    flex: none;
}
#header {
	max-width: 1400px;
	height: 142px;
	background: #0B3C5D;
	margin: 0 auto;
	flex: none;
}
#logo {
	width: 303px;
	height: 62px;
	float: left;
	margin: 41px 0 0 47px;
}
#logo a {
	display: block;
	text-decoration: none;
	font-size: 42px;
	font-weight: 500;
	text-transform: uppercase;
	color: #328CC1;
}
/* content */
#content_wrapper {
    background: #FDFDF9;
    min-height: 100%;
    flex-direction: column;
    flex: 1 0 auto;
}
#site_content {
	height: auto;
	padding: 50px;
	background: #FDFDF9;
	overflow: hidden;
	max-width: 1400px;
	margin: auto;
}
* {
    box-sizing: border-box;
}
.row::after {
    content: "";
    clear: both;
    display: table;
}
[class*="col-"] {
    float: left;
    padding: 15px;
}
.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.menu li {
    padding: 8px;
    margin-bottom: 7px;
    background-color: #328CC1;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.menu li:hover {
    background-color: #0B3C5D;
}
.menu a {
	font-weight: 500;
	color: #FDFDF9;
	text-transform: uppercase;
}
.menu a:hover {
	text-decoration: none;
}	
.image-container {
	position: relative;
	margin-bottom: 30px;
}
/* footer */
#footer {
	position: relative;
	left: 0;
    bottom: 0;
    width: 100%;
	height: 75px;
	padding: 5px 45px 5px 45px;
	background-color: #0B3C5D;
	flex: none;
}
#footer p {
	color: #FDFDF9;
	font-size: 12px;
	font-weight: 500;
	float: left;
}
#footer span {
	float: right;
	color: #FDFDF9;
}
#footer span a {
	text-decoration: none;
	color: #328CC1;
}
#footer span a:hover {
	text-decoration: underline;
}

/* For desktop: */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

@media only screen and (max-width: 768px) {
    
/* For mobile phones: */
    [class*="col-"] {
        width: 100%;
    }
}
h1 {
	font-size: 16px;
	margin-bottom: 22px;
	text-transform: uppercase;
	color: #1D2731;
}
h2 {
	font-size: 16px;
	margin-bottom: 22px;
	text-transform: uppercase;
	color: #FDFDF9;
}
p {
	font-size: 14px;
	margin-bottom: 22px;
	line-height: 22px;
	color : #1D2731;
}
a {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}