@charset "UTF-8";
/* CSS Document */

html,
html * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
	font-family: Arial, sans-serif;
	font-size: 1vw;
	background-color: white;
}

header {
    position: fixed;
    padding: 3em 4em 0em;
    top: 0;
    left: 0;
    width: 100%;
}

footer {
    position: fixed;
    padding: 3em 4em 3em 1em;
    bottom: 0;
    left: 0;
    width: 100%;
}

h1 {
    color: #000000;
	font-size: 18px;
	letter-spacing: .02em;
}

h6 {
    font-size: small;
    font-weight: normal;
    text-align: center
}

.site-nav {
	position: relative;
	float: left;
	display: block !important;
	width: 100%;
	background-color: none;
}

.site-nav a:link {
    cursor: pointer;
    background-color: transparent; 
	text-decoration: none;
}

.site-nav a:hover {
	position: relative;
	float: left;   
    background-color: yellow;
}

.me {
	position: relative;
	float: left;    
}

.about {
	position: relative;
	float: right;    
    transform: matrix(0,1,-1,0,72,68);
}

.clients {
	position: relative;
	float: right;    
}

.contact {
	position: relative;
	float: left;
    transform: matrix(0,1,-1,0,8,-30);
}

.row::after {
    content: "";
    clear: both;
    display: table;
}

.bio {
    background: none;
    font-size: 18px;
    line-height: 20px;
    float: left;
	display: block;
	position: relative;
    margin: 7em 4em 9em 9em;
    width: 410px;
}

/* BIO IMAGE */

.bio-image{
    background: none;
    float: left;
	display: block;
	position: relative;
    margin: 4.5em 2em 12em 0em;
    padding-right: 10em;
    padding-top: 115px;
    width: 570px;
}


.list {
    background: none;
    font-size: 13px;
    line-height: 17px;
    float: left;
	display: block;
	position: relative;
    margin: 11em 14em;
    width: 83%;
}

.list-publishing {
	background-color: none;
    float: left;
    padding: 0 5em 0 0;
}

.list-misc {
	background-color: none;
}


/* ------------- SLIDESHOW STUFF ------------- */

/* Slideshow container */
.slideshow-container {
  width: 68%;
  position: relative;
  top: 7em;
  margin: auto;
  display: block;
}

/* Centered Image Code

img {
  display: block;
  width: 60%;
  margin: auto;
}

*/

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  margin-right: -9em;
  margin-left: -9em;
  color: white;
  font-weight: normal;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.prev {
  background-image: url("images/L_arrow.png");
  background-repeat: no-repeat; 
  background-position: center; 
  color: transparent; /* Hide the 'submit' text */ 
  border: none; /* Remove the border */
}

/* Position the "next button" to the right */
.next {
  right: 0;
  background-image: url("images/R_arrow.png");  
  background-repeat: no-repeat; 
  background-position: center; 
  color: transparent; /* Hide the 'submit' text */ 
  border: none; /* Remove the border */
}

/* Caption text */
.text {
  color: #000000;
  font-size: 12px;
  position: absolute;
  bottom: -40px;
  width: 100%;
  text-align: center;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

/* ---------- for later --------------- */

	a:visited {
	  color: black;
	  background-color: transparent;
	  text-decoration: none;
	}

/* ---------- center an image --------------- */

.samples-slider figure img{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
 /* ---------- rotate menu type --------------- */

text {
    font-family: HelveticaNeue;
	color: #000000;
	font-size: 24px;
	line-height: 70px;
	transform: matrix(0,1,-1,0,0,0);
    }   

/* -----------  replace button with image? -------------- */

div.wpforms-container-full .wpforms-form button[type=submit] {
 
background-image: url(http://yoursite.com/your-image.jpg);
background-repeat: no-repeat; 
background-size: cover; 
background-position: center; 
color: transparent; /* Hide the 'submit' text */ 
border: none; /* Remove the border */
 
}

/* Number text (1/3 etc) */

/* HTML  <div class="numbertext">1 / 3</div> */

.numbertext {
  color: #000000;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}


