/* * { border: 1px solid red !important; } */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

body {
  /* background-color: #d9faff; */
  font-family: 'Montserrat', sans-serif;
  margin: 0 auto;
  font-size: 16px
}

/*prevent images from overflowing parent*/
img {
    max-width: 100%;
}

/*
colors
green  #5ebe68
blue  #1a97f0
yellow  #ffeb43
textgrey #141618
orange #f2521f

*/

.dark {
  background-color: #141618;
  color: white;
}

.footer-icons {
  font-size: 2rem;
}

.icon-link:link { color: white; }
.icon-link:visited { color: white; }



/* framework classes */
.side {
  margin: 0 auto;
  padding: 4rem;
  /* max-width: 1200px; */
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.side-item {
/* padding: 4rem; */
display: flex;
justify-content: center;
flex-direction: column;
max-width: 80%;
/* height: 400px; */
}

.profile-photo-div {
  margin: 1rem;
}

.profile-pic {
  border-radius: 50%;
  margin: 0 1rem;
  max-width: 250px;
  overflow: hidden;

}

footer {
	height: 50vh;
	/* width: 98%; */
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}





.main {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  /*border: 1px solid blue !important;*/
}

.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: 46%;
		margin: 0 1rem;
}

.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: 820px) {
    .col-4 {
        width: 50%
    }
    .col-6 {
        width: 100%
    }
}

@media only screen and (max-width: 500px) {
    .col-4 {
        width: 100%
    }
    .col-6 {
        width: 100%
    }
}


/* non-framework classes */


/* ANIMATED HAND WAVE EMOJI */
.wave {
  animation-name: wave-animation;  /* Name of @keyframes element below */
  animation-duration: .75s;  /* Wave speed */
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-play-state: paused;
  transform-origin: 70% 70%;  /* Pivot from bottom-left palm */
  display: inline-block;
  font-size: 6rem;
}

.wave:hover {
  animation-play-state: running; /* Play animation on mouse hover */
}

@keyframes wave-animation {
  0% { transform: rotate( 0deg ) }
  25% { transform: rotate( -10deg ) }
  75% { transform: rotate( 12deg ) }
  100% { transform: rotate( 0deg ) }
}



/* ANIMATED DOWN-POINTING EMOJI */
/* down-pointing emoji to remind user of scrolling */
.arrow {
	opacity: 0;
	font-size: 48px;
	/* display: block; */
	-webkit-transition: opacity 1s ease-in;
  -moz-transition: opacity 1s ease-in;
  -o-transition: opacity 1s ease-in;
	transition: opacity 1s ease-in;
	position: absolute;
	bottom: 25px;
	width: 98vw;
	text-align: center;
	animation-name: scroll-down;
	animation-timing-function: ease-in-out;
	animation-duration: 2.5s;
	animation-iteration-count: infinite;
}

.arrow::before {
	content: "👇";
}

@keyframes scroll-down {
		0%   { transform: translateY(0); }
		50%  { transform: translateY(10px); }
		100% { transform: translateY(0); }
}

.testimonial {
	padding: 0 2rem;
}


/* HEADER */

.logo-parent {
    position: relative;
}

.logo {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 80px;
}

.title {
  float: right;
  text-align: right;
  text-transform: uppercase;
}

.name {
	/* font-weight: lighter; */
	font-size: 3rem;
	padding-bottom: 10px;
	align-content: center;
	margin: 0 auto;
}

.mobile-break {
	display: none;
}

.handwriting {
	font-family: 'Rock Salt', cursive;
	font-size: 3.5rem;
}

.client-handwriting {
	font-family: 'Rock Salt', cursive;
	font-size: 1rem;
}

.role {
  font-size: 2rem;
  margin-top: 1rem;
}

/* hr {
    border: none;
    height: 4px;
    margin: 0 0 40px 0;
} */

.soon {
  font-size: 3rem;
  background-color: grey;
  color: white;
  height: 16rem;
  text-align: center;
  padding: 20% 20%;
}

.tags {
	margin-bottom: .5rem;
}

.tag {
  color: white;
  background-color: rgb(55,55,55);
  border-radius: 5px;
  padding: .15rem .35rem;
  margin-top: 0;
  margin-bottom: .25rem;
	font-size: .85rem;
	display: inline-block;
}

.tag-github {
	color: rgb(55,55,55);
  padding: .15rem .35rem;
  margin-top: 0;
  font-size: 1.5rem;
}

.red {
  color: red;
}

.thanks-padding {
  padding: 3rem;
  margin-top: 5rem;
}




/* .card {
  box-shadow: 5px 5px 25px 0px rgba(46,61,73,0.4);
  border-radius: .375rem;
  overflow: hidden;
  -webkit-transition: box-shadow 2s;
  transition: box-shadow .3s;
}
.card:hover {
  box-shadow:  1px 1px 7px 0 rgba(46,61,73,0.4);
} */

.card {
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  /* border-radius: .375rem; */
  overflow: hidden;
  -webkit-transition: box-shadow 2s;
  transition: box-shadow .3s;
}
.card:hover {
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.shadow {
  box-shadow: 5px 5px 25px 0px rgba(46,61,73,0.4);
  /* overflow: hidden; */
  -webkit-transition: box-shadow 2s; /* Safari */
  transition: box-shadow .3s;
}




/* ------ BOOKING  ------ */
.booking {
  display: flex;
  flex-flow: column nowrap;
  align-items: baseline;

}
.rates {
  max-width: 50%;
  margin: 0 auto;
  font-size: 1.25rem;
}
.booking > section {
  width: 100%;
}

.contact-container {
	/*max-width:400px;*/
	width:100%;
	margin: 0 auto;
	position: relative;
}




#contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea, #contact button[type="submit"] { font:400 16px/16px 'Montserrat', sans-serif; }

#contact {
	background:#d9d9d9;
  /* width: 80%; */
	padding:25px;
	margin: 50px 0;
  display: flex;
  flex-flow: row wrap;
  /*border: 1px blue solid;*/
  /* border-radius: 25px; */
  justify-content: space-between;
  text-align: center;
}
#contact h4 {
  flex-basis: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  padding: 2rem 28%;
}
.contact-flex-item {
  width: 48%;
  margin: 1rem auto;
  /*border: 3px yellow solid;*/
}

fieldset {
	border: medium none;
	margin: 0 0 10px;
	min-width: 40%;
	padding: 0;
	width: 100%;
}
fieldset:last-child {
  margin: 0 auto;
}

#contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea {
	width: 100%;
  height: 3rem;
	border:1px solid #d9d9d9;
	background:#FFF;
	margin:0 0 5px;
	padding:10px;
}

#contact input[type="email"] {
	width: 100%;
  height: 3rem;
	border:1px solid #d9d9d9;
	background:#FFF;
	margin: 1rem 0 5px;
	padding:10px;
  /* border: 1px red solid; */
}

#contact input[type="text"]:hover, #contact input[type="email"]:hover, #contact input[type="tel"]:hover, #contact input[type="url"]:hover, #contact textarea:hover {
	-webkit-transition:border-color 0.3s ease-in-out;
	-moz-transition:border-color 0.3s ease-in-out;
	transition:border-color 0.3s ease-in-out;
	border:1px solid #AAA;
}

#contact textarea {
	height:127px;
	max-width:100%;
  resize:none;
  /*border: 4px red solid;*/

}

.antispam {
  display: none;
}




#contact button[type="submit"] {
	cursor:pointer;
	width:30%;
	border:none;
	background: #0083af;
	color:#FFF;
	margin: 20px 0;
	padding:10px;
	font-size:1rem;
  /*border: 3px yellow solid;*/

}

#contact button[type="submit"]:hover {
	background: #30cafe;
	-webkit-transition:background 0.3s ease-in-out;
	-moz-transition:background 0.3s ease-in-out;
	transition:background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active { box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.5); }

#contact input:focus, #contact textarea:focus {
	outline:0;
	border:1px solid #999;
}
::-webkit-input-placeholder {
 color:#888;
}
:-moz-placeholder {
 color:#888;
}
::-moz-placeholder {
 color:#888;
}
:-ms-input-placeholder {
 color:#888;
}






/* MAIN SECTION */
.featured-header {
  font-size: 3rem;
  font-weight: lighter;
  text-align: center;
}

.app {
    text-align: center;
    padding: 10px;
    margin-bottom: 1.5rem;
    /*border: 1px solid green !important;*/
}

a {
  text-decoration: none;
}

.project-name {
  color: black;
  font-size: 1.5em;
  margin: 15px 0 5px 0;
}

.link-name {
  color: grey;
  font-size: .75rem;
  margin-top: 0;
}


/* ---------- THANK YOU PAGE  ---------- */

.thank-you-link {
  color: blue;
  padding-top: 3rem;
}

/* ---------- MOBILE  ---------- */
@media screen and (max-width: 600px) {
  body {
    font-size: 14px;
  }

  .side {
    padding: 1rem;
	}
	
	.side-item {
		padding-top: -10rem;
		margin-top: -8rem;
	}

  .name {
      font-size: 2.5rem;
      padding-bottom: 10px;
	}

	.mobile-break {
		display: block;
	}
	
	.handwriting {
		font-family: 'Rock Salt', cursive;
		font-size: 1.5rem;
	}


.client-handwriting {
	font-family: 'Rock Salt', cursive;
	font-size: .8rem;
}

  .role {
    font-size: 1.5rem;
    margin-top: 1rem;
  }

	.wave {
  font-size: 4rem;
}


  #contact h4 {
    margin-top: .5rem;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    padding: 1rem 10%;
  }

  .contact-flex-item {
    width: 100%;
  }

  #contact button[type="submit"] {
  	width:70%;


  }






}
