
/**
* HTML5 Boilerplate defaults
*/
html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}
::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}
audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}
fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}
textarea {
    resize: vertical;
}
.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/**
* theemzo.com
*/

:root {
  --sans-font-family: 'Roboto', sans-serif;
  --serif-font-family: 'Roboto Slab', 'Courier New', monospace;
  --placeholder-text-color: #ccc;
}

html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: var(--sans-font-family);
  font-weight: 300;
  line-height: 1.4;
  background-color: #ffffff;
  color: #333;
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
}
a {
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #333;
}
img {
  max-width: 100%;
}

.container {
  max-width: 60rem;
  margin: auto;
}
 /*.main-nav */
.main-nav {
  --nav-text-color: #80C2B3;
  background-color: #333333;
  opacity: .95;
  color: var(--nav-text-color);
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.main-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: none;
}
.main-nav.is-open ul {
  display: block;
}
.main-nav li {
  margin: 0;

}
.main-nav h2 {
  font-family: var(--sans-font-family);
  font-weight: 300;
  font-size: 1rem;
  margin: 0;
  text-align: left;
  padding: 1rem;
  line-height: 1;
  cursor: pointer;
}
.main-nav a {
  display: block;
  padding: 1em;
  font-weight: 300;
  color: var(--nav-text-color);
}
.main-nav li:hover {
  background-color: #222222;
}

/**
* .page-header
**/
.page-header {
  padding: 7em 2em 4em;
  text-align: center;
  background: url('../img/textureoflondon.jpg') no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.page-header-contents {
  max-width: 16rem;
  background: #EBEBE0;
  opacity: .9;
  padding: 1em;
  margin: auto;
  border: 0.125rem solid #fff;
}
.page-header h1 {
  font-family: var(--serif-font-family);
  line-height: 1;
  margin: 0.5em auto;
  font-size: 2.5rem;
}
.page-header p {
  text-transform: uppercase;
  font-weight: lighter;
  color: #84C2B4;
  text-align: center;
}

/* .page-section */
.page-section {
  border-top: #fff solid 0.25em;
  position: relative;
}
.page-section .container {
  position: relative;
  padding: 1em;
  padding-top: 5rem;
}
.page-section .page-section-heading {
  margin: 0;
  font-family: var(--serif-font-family);
  padding: 0.5em 1em;
  background-color: #333333;
  color: #fff;
  position: absolute;
  width: 50%;
  top: 0;
  right: 0;
  text-align: center;
}
.page-section h3 {
  font-size: 1.5em;
}

/**
* .section-bio
*/
.section-bio h3 {
  font-size: 1.5em;
  margin: 0;
  margin-right: 1em;
}
.section-bio {
  background-color: #9DDCCE;
}
.section-bio header {
  display: flex;
  align-items: flex-end;
}
.bio-image {
  display: block;
  border-radius: 50%;
  border: 0.125em solid #fff;
  max-width: 200px;
}

/**
* .section-grid
*/
.section-featured {
  background: #EBEBE0;
}

.grid-item {
  margin: 1em 0;
  background: #fff;
  padding: 0.125rem;
}
.grid-item-title {
  margin: 0.5rem 0 0;
  padding-left: 0.5rem;
}
.grid-item .thumb {
  display: block;
}
.grid-item p {
  margin: 0;
  padding-left: 0.5rem;
  padding-bottom: .5rem;
}

/**
* .section-contact
**/
.section-contact {
  background: #80C2B3;
}
.section-contact .container {
  padding-left: 0;
  padding-right: 0;
}
.section-contact .col {
  margin: 0 1rem;
}
/**
* .contact-form
*/
.contact-form {
  background: #9DDCCE;
  padding: 1rem;
}
.contact-form h3 {
  margin-top: 0.5rem;
}

input,
textarea {
  width: 100%;
  max-width: 30em;
  border: 1px solid #666;
  padding: 0.5em;
  background: hsla(100,100%,100%, 0.9);
}
textarea {
  min-height: 10em;
}
.input-group {
  margin: 0.5em 0;
}

.contact-form button {
  font-family: var(--serif-font-family);
  font-size: 1.2rem;
  letter-spacing: 1px;
  display: block;
  padding: 0.5em 2em;
  background: #333;
  color: #fff;
  border: 0;
}
.contact-form button:hover {
  background: #222;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--placeholder-text-color);
  text-transform: uppercase;
}
::-moz-placeholder { /* Firefox 19+ */
  color: var(--placeholder-text-color);
  text-transform: uppercase;
}
:-ms-input-placeholder { /* IE 10+ */
  color: var(--placeholder-text-color);
  text-transform: uppercase;

}
:-moz-placeholder { /* Firefox 18- */
  color: var(--placeholder-text-color);
  text-transform: uppercase;
}

.page-footer {
  background-color: #333;
  color: #bbb;
  text-align: center;
}
.page-footer p {
  font-size: 12px;
}
.page-footer a {
  color: #bbb;
}
.page-footer a:hover {
  color: #fff;
}
.page-footer .container {
  padding: 1rem;
}

/**
* .social-media
**/
.social-media {
  list-style: none;
  margin: 0;
  padding: 0;
}
.social-media li {
  display: inline-block;
}
.social-media a {
  display: inline-block;
  padding: 0.5rem;
}


/***************
* .project-page
*/

.project-page main {
  background-image: linear-gradient(
    to bottom,
   #fff 33%,
   #EBEBE0 33%,
   #EBEBE0);
}

.project-page .carousel {
  background: #ccc;
}
.project-page .project-name {
  background: #333;
  color: #fff;
  font-family: var(--serif-font-family);
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  margin: 0 0 0 1rem;
  max-width: 66%;
}

/**
* carousel
*/
.carousel {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: relative;
}
.carousel img {
  width: 100%;
}

.slick-arrow {
  border: none;
  background: #ccc;
  color: #333;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  padding: 1em;
}
.slick-arrow:hover {
  background: #333;
  color: #fff;
}
.slick-prev {
  left: 0;
}
.slick-next {
  right: 0;
}
.slick-prev,
.slick-next {
  width: auto;
  height: auto;
}
.slick-prev:before,
.slick-next:before {
  font-family: "FontAwesome";
  display: block;
  font-size: 1.25rem;
  padding: 1rem;

}
.slick-prev:before {
  content: "\f053";
}
.slick-next:before {
  content: "\f054";
}


/**
* Responsive
**/
@media only screen and (min-width: 30rem) {
  /* .main-nav */
  .main-nav h2 {
    display: none;
  }
  .main-nav ul {
    display: block;
  }
  .main-nav li {
    display: inline-block;
  }
  .page-header {
    padding: 10em 4em 8em;
  }
  .page-header-contents {
    max-width: 23rem;
  }
  .page-header h1 {
    font-size: 3.5rem;
  }
  .page-header p {
    font-size: 1.25rem;
  }
  /**
   * .section-grid (e.g. "featured work")
   */
  .grid {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .grid-item {
    width: 49%;
    margin-bottom: 1em;
  }
  .project-page .project-name {
    max-width: 50%;
  }
}

@media only screen and (min-width: 42em) {
  .page-section-heading {
    max-width: 33%;
    position: absolute;
    top: 0;
    right: 0;
  }
  .page-section .container {
    padding-top: 4rem;
  }
  .grid-item {
    width: 32%;
  }
  .section-contact .container {
    display: flex;
    justify-content: space-between;
  }
  .section-contact .col {
    width: 49%;
  }
}

/*#about {
	background-color: #9DDCCE;
	margin-top: -15px;
	height: auto;
	padding-left: 80px;
}

.float 	{
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	line-height: 1.4em;
	padding-top: 40px;
	padding-right: 25px;
	float: left;
}

#portfolio {
	background-color: #EBEBE0;
	margin-top: -15px;
	height: 600px;
	padding-left: 80px;
}

#contact {
	background-color: #80C2B3;
	margin-top: -15px;
	height: 560px;
	padding-left: 80px;
}

form	{
	background-color: #9DDCCE;
	padding: 25px;
	width: 40%;
	margin-top: 0;
	margin-top: -38px;
	float: left;
}

fieldset {
	border: medium none !important;
	margin: 0;
	padding: 5px;
}

input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea {
	width: 92%;
	border: 1px solid #333333;
	background: #FFFFFF;
	opacity: .7;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
	padding: 10px;
}

textarea {
	height: 100px;
	max-width: 100%;
  	resize: none;
}

button {
	background: #333333;
	color: #FFFFFF;
	font-family: 'Roboto Slab', serif;
	font-weight: 400;
	border: none;
	letter-spacing: 1px;
	font-size: 18px;
	width: 30%;
	padding: 10px;
}

button:hover {
	background: #000000;
}

h1 {
	font-family: 'Roboto Slab', serif;
	font-weight: 700;
	color: #333333;
	line-height: 1em;
	font-size: 1.4em;
}

h2 {
	display: block;
	font-family: 'Roboto Slab', serif;
	font-weight: 700;
	color: #ffffff;
	background-color: #333333;
	line-height: 2.4em;
	text-align: center;
	margin-left: 65%;
}

h3 {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 22px;
	line-height: 1.4em;
}

h4	{
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 15px;
	line-height: 1em;
}

#address p {
	line-height: 1em;
}

.personal-info {
	color: #EBEBE0;
}

p a {
	text-decoration: none;
	color: #333333;
	font-weight: 500;
}

.last-paragraph	{
	padding-bottom: 65px;
}

.circular-square {
  	width: 175px;
  	height: 175px;
  	border-radius: 50%;
  	border: 1px solid #ffffff;
	margin-top: -40px;
}

.work1	{
	float: left;
}

.work2	{
	float: left;
	margin-left: -110px;
	margin-right: 0px;
}

.work3	{
	float: left;
	margin-left: -95px;
	margin-right: 0px;
}

.thumbnail-image	{
	border: 1px solid #ffffff;
}

#address	{
	width: 43%;
	margin-top: 15px;
	float: right;
}

#social	{
	width: 44%;
	margin-top: 180px;
	float: right;
}

.fa {
    padding: 20px;
    font-size: 50px;
    width: 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    margin: 10px;
}

.fa:hover {
    background: #000000;
}

.fa-facebook {
    background: #333333;
    color: white;
}

.fa-twitter {
    background: #333333;
    color: white;
}

.fa-linkedin {
    background: #333333;
    color: white;
}

.fa-instagram {
    background: #333333;
    color: white;
}

.fa-github {
    background: #333333;
    color: white;
}

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

footer	{
	font-weight: 300;
	font-size: 10px;
	text-align: center;
	margin-left: 15%;
	float: clear;

}*/
















/** HTML5Boilerplate Helper classes **/

/*
 * Hide visually and from screen readers
 */
.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/**
* Print styles.
* Inlined to avoid the additional HTTP request:
* http://www.phpied.com/delay-loading-your-print-css/
*/

@media print {
    *,
    *:before,
    *:after,
    *:first-letter,
    *:first-line {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
