

:root {
	--clr-light: #fff;
	
	--bs: 0.25em 0.25em 0.75em rgba(0,0,0,.25);
		    /*0.125em 0.125em 0.25em rgba(0,0,0,0.15);*/
}

html {
	scroll-behavior: smooth;
}

h1 { 
	font-size: 4rem;
	font-family: 'Kdam Thmor Pro', sans-serif;
}
h2 { 
	font-size: 3em;
	font-family: 'Quicksand', sans-serif;
 }
 
 * {
	font-family: 'Kdam Thmor Pro', sans-serif;
}

a:link { 
	text-decoration: none; 
	color: black;
}


a:visited { 
	text-decoration: none;
	color: black;
}


a:hover { text-decoration: underline; }


a:active { 
	text-decoration: none;
	color: black;
}

body {
	margin: 0;
	background-color: white;
}

.logo {
	position: relative;
	z-index: 100;
	height: 60px;
	width: 60px;
	top: 0;
	left: 10px;
}

.nav {
	position: fixed;
	text-align: right;
	background-color: var(--clr-light);
	left: 0;
	right: 0;
	top: 0;
	z-index: 10;
	margin: 0 auto;
	color: black;
}

.nav__list li {
	position: relative;
	display: inline;
	color: black;
	margin: 80px;
	vertical-align: middle;
}

@media screen and (max-width: 900px) {
	.nav {
		display: block;
		text-align: right;

	}
	
	.nav__list li {
		font-size: 1em;	
		margin: 40px;
	}
}

@media screen and (max-width: 600px) {
	.nav {
		display: block;
		text-align: right;
		
		justify-content: left;
	}
	
	.nav__list li {
		font-size: .7em;
		margin: 25px;
	}
}



.home__intro {
	position: relative;
	height: 600px;
	background-color: ghostwhite;
	background: url(img/headerpic5.jpg);
	background-size: cover;
	background-attachment: relative;
	background-position: center;
	width: 100%;
	color: white;
	margin-bottom: 50px;
}

header {
	width: 100%;
	
}

.intro__header {
	height: 100%; 
  width:100%;
  display:flex;
  align-items: center;
  justify-content: center;
	/*position: absolute;
	height: 5;
	width: 100%;*/
}

.main-title {
	text-align: center;
}

/*.intro__subtitle {
	text-align: center;
	position: relative;
	color: white;
	top:30%;
	font-weight: bold;
}*/

/*@media (max-width: 600px) {
	.home__intro {
		margin-right: -500px;
	}
	
	.intro__header {
		right: 100px;
	}
	
	
}*/

.services {
	display: grid;
	/*margin-left: 75px;
	margin: auto;
	width: 50%;*/
	justify-content: center;
}

.service {
	margin: 25px;	
	text-align: center;
}

@media (min-width: 900px) {
	.services {
		display: flex;
		margin-left: 300px;
		margin-right: 300px;
		margin-bottom: 100px;
		margin-top: 50px;
	}

	.service {
		display: block;
		margin: auto;
	}
}

.title {
	/*margin-right: -500px;*/
	text-align: center;
}

.section-class {
	text-align: center;
	margin-top: 100px;
	margin-bottom: 100px;
}

@media (min-width: 600px) {
	

	.title {
		 max-width: 50%;
		 margin: auto;
		
	}
}

.footer {
	background: #111;
	color: white;
	text-align: center;
	padding: 2.5em 0;
	font-size: 1.25rem;
	width: 100%;
}

.footer a { 
	color: inherit; 
	text-decoration: none;
}

.footer__link {
	font-weight: var(--fw-bold);
}

.social-list__link:hover {
	opacity: .7;
}

.social-list {
	list-style: none;
	display: flex;
	justify-content: center;
	margin: 2em 0;
	padding: 0;
	
}

.social-list__item {
	margin: 0 .5em;
}

.social-list__link {
	padding: .5em;
}

@media (max-width: 800px) {
	.footer { 
		margin-right: -500px;
	}
}

.examples {
	width: 100%;
}



.page {
	margin: 1em auto;
	max-width: 768px;
	display:flex;
	align-items: flex-start;
	flex-wrap: wrap;
	height: 100%;
}

.box {
	position: relative;
	width: 100%;
	margin: 0;
}

.result {
	height: 375px;
	margin: auto;
}

.box-2{
	padding: 0.5em;
	width: calc(100% / 2 - 1em);
	margin: auto;
	text-align: center;
	/*margin: 500px;
	margin-top: 0em;
	margin-bottom: 0em;
	margin-left: -500px;
	margin-right: 500px;*/
	
}

.cropper-crop-box {
	width: 8px;
}

.options label, .option input {
	width: 4em;
	padding: 0.5em 1em;
}

.btn {
	background-color: white;
	color: black;
	border: 1px solid black;
	padding: 0.5em 1em;
	text-decoration: none;
	margin: 0 auto;
	display: block;
	cursor: pointer;
	justify-content: center;
}

.hide {
	display: none;
}

.img {
	max-width: 100%;
}

/*Contact Me*/

.contact-me {
	height: 700px;
	background-color: white;
}

.contact-box {
	width: 500px;
	background-color: black;
	box-shadow: 0 0 20px 0 #999;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
}

.contact-form {
	margin: 35px;
	
}

.input-field {
	width: 400px;
	height: 40px;
	margin-top: 20px;
	padding-left: 10px;
	padding-right: 10px;
	border: 1px solid black;
}

.submit-btn {
	position: relative;
	left: 175px;
	top: 10px;
}

@media(max-width: 600px) {
	.contact-box {
		width:300px;
		height: 400px;
	}

	.input-field {
		width: 200px;
		height: 25px;
		margin-bottom: -15px;
	}

	.submit-btn {
		display: block;
		position: relative;
		top: 15px;
		left: 0px;
		margin: auto;
	}
	
}

.text-field {
	height: 150px;
	padding-top: 10px;
}



/*What I Do*/


/*!
 * Cropper v2.3.4
 * https://github.com/fengyuanchen/cropper
 *
 * Copyright (c) 2014-2016 Fengyuan Chen and contributors
 * Released under the MIT license
 *
 * Date: 2016-09-03T05:50:45.412Z
 */
form input[type="radio"] {
	float: left; 
	width: 20px; 
	margin-right: 10px;
	}
form label {
	float: left; 
	width: 100px; 
	display: inline;
}

 
 .cropper-container{
	 overflow: none;
	 font-size:0;
	 line-height:0;
	 position:relative;
	 -webkit-user-select:none;
	 -moz-user-select:none;
	 -ms-user-select:none;
	 user-select:none;
	 direction:ltr!important
	 }
	 
.cropper-container img{
	overflow: none;
	display:block;
	width:100%;min-width:0!important;
	max-width:none!important;
	height:100%;min-height:0!important;
	max-height:none!important;
	image-orientation:0deg!important
	}
	
.cropper-canvas,.cropper-crop-box,.cropper-drag-box,.cropper-modal,.cropper-wrap-box{
	overflow: none;
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	}
	
.cropper-wrap-box{
	overflow:hidden
}

.cropper-drag-box{
	overflow: none;
	opacity:0;
	background-color:#fff;
	filter:alpha(opacity=0)
}

.cropper-dashed,.cropper-modal{
	overflow: none;
	opacity:.5;filter:alpha(opacity=50)
}

.cropper-modal{
	overflow: none;
	background-color:#000
}

.cropper-view-box{
	overflow: none;
	display:block;
	overflow:hidden;
	width:100%;
	height:100%;
	outline:#39f solid 1px;
	outline-color:rgba(51,153,255,.75)
}

.cropper-dashed{
	overflow: none;
	position:absolute;
	display:block;
	border:0 dashed #eee
}

.cropper-dashed.dashed-h{
	top:33.33333%;
	left:0;
	width:100%;
	height:33.33333%;
	border-top-width:1px;
	border-bottom-width:1px
}

.cropper-dashed.dashed-v{
	top:0;
	left:33.33333%;
	width:33.33333%;
	height:100%;
	border-right-width:1px;
	border-left-width:1px
}

.cropper-center{
	position:absolute;
	top:50%;
	left:50%;
	display:block;
	width:0;
	height:0;
	opacity:.75;
	filter:alpha(opacity=75)
}

.cropper-center:after,.cropper-center:before{
	position:absolute;
	display:block;
	content:' ';
	background-color:#eee
}

.cropper-center:before{
	top:0;
	left:-3px;
	width:7px;
	height:1px
}

.cropper-center:after{
	top:-3px;
	left:0;
	width:1px;
	height:7px
}

.cropper-face,.cropper-line,.cropper-point{
	position:absolute;
	display:block;
	width:100%;
	height:100%;
	opacity:.1;
	filter:alpha(opacity=10)
}

.cropper-face{
	top:0;
	left:0;
	background-color:#fff
}

.cropper-line,.cropper-point{
	background-color:#39f
}

.cropper-line.line-e{
	top:0;
	right:-3px;
	width:5px;
	cursor:e-resize
}

.cropper-line.line-n{
	top:-3px;
	left:0;
	height:5px;
	cursor:n-resize
}

.cropper-line.line-w{
	top:0;
	left:-3px;
	width:5px;
	cursor:w-resize
}

.cropper-line.line-s{
	bottom:-3px;
	left:0;
	height:5px;
	cursor:s-resize
}

.cropper-point{
	width:5px;
	height:5px;
	opacity:.75;
	filter:alpha(opacity=75)
}

.cropper-point.point-e{
	top:50%;
	right:-3px;
	margin-top:-3px;
	cursor:e-resize
}

.cropper-point.point-n{
	top:-3px;
	left:50%;
	margin-left:-3px;
	cursor:n-resize
}

.cropper-point.point-w{
	top:50%;
	left:-3px;
	margin-top:-3px;
	cursor:w-resize
}

.cropper-point.point-s{
	bottom:-3px;
	left:50%;
	margin-left:-3px;
	cursor:s-resize
}

.cropper-point.point-ne{
	top:-3px;
	right:-3px;
	cursor:ne-resize
}

.cropper-point.point-nw{
	top:-3px;
	left:-3px;
	cursor:nw-resize
}

.cropper-point.point-sw{
	bottom:-3px;
	left:-3px;
	cursor:sw-resize
}
.cropper-point.point-se{
	right:-3px;
	bottom:-3px;
	width:20px;
	height:20px;
	cursor:se-resize;
	opacity:1;
	filter:alpha(opacity=100)
}

.cropper-point.point-se:before{
	position:absolute;
	right:-50%;
	bottom:-50%;
	display:block;
	width:200%;
	height:200%;
	content:' ';
	opacity:0;
	background-color:#39f;
	filter:alpha(opacity=0)
}

@media (min-width:768px){
	.cropper-point.point-se{
		width:15px;height:15px
	}
}

@media (min-width:992px){
	.cropper-point.point-se{
		width:10px;height:10px
	}
}

@media (min-width:1200px){
	.cropper-point.point-se{
		width:5px;
		height:5px;
		opacity:.75;
		filter:alpha(opacity=75)
	}
}

.cropper-invisible{
	opacity:0;
	filter:alpha(opacity=0)
}

.cropper-bg{
	background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC)
	}
	
.cropper-hide{
	position:absolute;
	display:block;
	width:0;
	height:0
}

.cropper-hidden{
	display:none!important
}

.cropper-move{
	cursor:move
}

.cropper-crop{
	cursor:crosshair
}

.cropper-disabled .cropper-drag-box,.cropper-disabled .cropper-face,.cropper-disabled .cropper-line,.cropper-disabled .cropper-point{
	cursor:not-allowed
}

.no-no:hover {
	/*cursor: not-allowed;*/
	
}


.form-group {
	width: 30%;
	border: 3px solid black;
	/*padding: 10px;*/
	margin-bottom: 106px;
	margin-top: 100px;
	margin: auto;
	
}

@media screen and (max-width: 900px) {
	.form-group {
		width: 60%;
	}
}

@media screen and (max-width: 600px) {
	.form-group {
		width: 80%;
	}
}

.group {
	margin-left: 125px;
	margin: auto;
}


.product-img {
	border-radius: 50%;
} 

.radio-btns {
	display: inline-block;
	margin: auto;
	visibility: hidden;
	margin: 0px;
}

.cropped {
	
}

#about-me-p {
	margin: auto;
	width: 50%
	/*width: 60%;
	justify-content: center;*/
}

@media screen and (max-width: 900px) {
	#about-me-p {
		width: 80%
	}
}

.testimonials {
	padding: 40px 0;
	background: #f1f1f1;
	color: #434343;
	text-align:center;
}

.inner{
	max-width: 1200px;
	margin: auto;
	overflow: hidden;
	padding: 0 20px;
}

.border{ 
	width: 160px;
	height: 5px;
	/*background: $6ab04c;*/
	margin: 26px auto;
}

.row{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.col{
	flex: 33.33%;
	max-width: 33.33%;
	box-sizing: border-box;
	padding: 15px;
}

.testimonial {
	background: #fff;
	padding: 30px;
}

.testimonial img {
	width: 100px;
	height: 100px;
	border-radius: 50px;
}

.name{
	font-size: 20px;
	text-transform: uppercase;
	margin: 20px 0;
}

.stars {
	color: black;
	margin-bottom: 20px;
}

@media screen and (max-width:960px) {
	.col {
		flex: 100%;
		max-width: 80%;
	}
}

@media screen and (max-width:600px) {
	.col {
		flex: 100%;
		max-width: 100%;
	}
}

#more {
	display: none;
}

#more2 {
	display: none;
}

#more3 {
	display: none;
}

.item_info {
	text-align: center;
}

.form-control {
	width: 200px;
}