@charset "UTF-8";
/* CSS Document */
body {
	margin: 0;
	font-family: Verdana, Arial, san-serif;
	font-size: 14px; 
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
  	-moz-box-sizing: border-box;
	
	/* disabling the right click function*/
	-webkit-user-select: none;  /* Chrome all / Safari all */
	-moz-user-select: none;     /* Firefox all */
	-ms-user-select: none;      /* IE 10+ */
	-o-user-select: none;
	user-select: none;
	/* disabling the right click function*/
}

/* =========== BRAND COLOR variables  =========== */
/* To use in css like the following: background-color: var(--main-color); */
:root {
	--main-color: #8DC63F;
	--lt-gray-color: #B2B2B2;
	--md-gray-color: #808080;
	--dk-gray-color: #333333;

}

/* =========== helpers styles  =========== */
.body-container{
	margin-left: 0;
	margin-right: 0;
	/*
	background-color: var(--main-color);
	opacity: 0.8;
	*/
	text-align: center;
	align-items: center;
}

.main-container {
	padding-top: 12em;
	padding-left: 3%;
	padding-right: 3%;
}

h3 {
	text-transform: uppercase;
	color: var(--main-color);
	text-align: center;
}

.about-me-text {
	margin: 0 1em 0 1em;
	line-height: 1.6;
	text-indent: 3em;
	overflow: auto;
	display: block;
	max-height: 400px;
}


.about-me-portrait {
	margin-left: auto;
	margin-right: auto;
	display: block;
	padding-bottom: 2em;
}

.clearfix {
	overflow: auto;
}


p.title {
	text-transform: uppercase;
	color: var(--dk-gray-color);
}

.font-script {
	font-family: 'Dancing Script', cursive;
	font-size: 3em;
	color: var(--main-color);
}

.jumbotron {
	width: 100%;
	background-color: var(--lt-gray-color);
	margin-left: auto;
	margin-right: auto;
	display: block;
	text-align: center
}

/* =========== HIDDEN GALLERY styles  =========== */
.hidden-gallery {
	display: none;
	margin-top: -50000;
	margin-left: -50000px;
}


	
/* =========== HEADER styles  =========== */
header {
	width: 100%;
	height: 132px;
	z-index: 1;
	position: fixed;
	top:0;
	background-color: white;
	box-shadow: 0px 3px 15px #B2B2B2;

}

.container {
	margin-left: 0;
	margin-right: 0;
}

.logo {
	padding: 1em;
	/*--- To center an image ---*/
	display: block;
  	margin-left: auto;
  	margin-right: auto;
  	/*--- To center an image ---*/
}


 

/* hamburger menu part */
.nav {
	text-align: center;
	line-height: 136px;
}

.menu {
	text-align: center;
	width: 100%;
	margin-left: -1.5em;
  	margin-right: auto;
	display: none;
	background: rgba(255, 255, 255, 0.8);
	z-index: 999;
	position: absolute;
}

.menu ul {
	list-style: none;
	margin-left: auto;
  	margin-right: auto;
}

.menu ul li {
	text-align: center;
}

.btn {
	clear: both;
	text-decoration: none;
	text-transform: uppercase;;
	font-weight: 700;
	border-bottom: 1px solid var(--dk-gray-color);
	color: var(--md-gray-color);
	display: block;
	margin: 0;
	line-height: 4em;
	padding-top: 0;
	padding-right: 20px;
}

.active, .btn:hover{
	color: var(--main-color);
	}


label {
	font-size: 2em;
	line-height: 70px;
	display: block;
	width: 1em;
	float: left;
	top: -16px;
	margin: 0 0 0 10px;
	position: absolute;
	cursor: pointer;
}

#toggle {
	display: none;
	cursor: pointer;
}

#toggle:checked + .menu{
	display: block;
}


/* PROJECT TYPES part */
.mywork-btn-container {
		max-width: 100%;
		margin: 0 auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		position: relative;
		}
		
.mywork-btn-image {
		display: inline-block;
    	position: relative;
    	vertical-align: top;
    	border: 1px solid white;
    	margin: 10px;
    	width: 450px;
    	height: 100%;
		}
		
.mywork-btn-image a{
		text-decoration: none;
		}


.mywork-btn-image img {
		display: block; 
		width: 100%;
		height: auto;
		object-fit: cover;
		}

	
.title-box {
		background: rgba(64, 64, 64, 0.85);
		bottom: 0;
		color: white;
		font-size: 1em;
		font-family: sans-serif;
		left: 0;
		opacity: 0;
		overflow: hidden;
		padding: 2em 2em;
		position: absolute;
		text-align: center;
		top: 0;
		right: 0;
		-webkit-transition: 0.5s;
		transition: 0.5s ease-in-out;
		display: flex;
		align-items: center;
		justify-content: center 
		}

.title-box h1{
		margin: 0;
		}

.title-box:hover { opacity: 1; }

.mywork-btn-image:hover {
	    border: 1px solid;
	    border-color: #8DC63F;
		}


/* =========== Gallery part =========== */
.breadcrumb {
	margin-left: auto;
	margin-right: auto;
	display: none;
	margin-bottom: 2em;
	text-align: center;
	border: 1px solid red;
	position: fixed;
	top: 136px;
}

.breadcrumb-btn {
	clear: both;
	text-decoration: none;
	display: inline-block;
	color: var(--dk-gray-color);
	margin-right: 1em;
	line-height: 2em;
}

.breadcrumb-btn:hover{
	color: var(--main-color);
}

.breadcrumb-sticky-side {
	display: block;
	position: fixed !important;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background-color: #FFFFFF;
	width: 10em;
	height: auto;
	z-index: 100;
	border-top-left-radius: 0.5em;
	border-bottom-left-radius: 0.5em; 
	box-shadow: -4px 2px 20px #000000;
}

.breadcrumb-sticky-side-btn {
	text-decoration: none;
	display: block;
	color: var(--dk-gray-color);
	margin-left: 1em;
	line-height: 2em;
}


.work-sections{
	scroll-behavior: smooth
	margin-bottom: 2em;
	position: relative;
}

.anchor {
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    z-index: -1;
    top: -150px;
    left: 0;
    visibility: hidden;
}

.work-sections img{
	width: 100%;
	margin-bottom: 2em;
}


#stamps-willkate {
  	width: 100%;
  	height: 600px;
  	background-color: pink;
}

#stamps-fmsppl {
  	width: 100%;
  	height: 600px;
  	background-color: yellow;
}



/* =========== CONTACT part =========== */


.contact {
	margin-left: auto;
	margin-right: auto;
	display: block;
	text-align: center
}

.contact h4 {
	line-height: 2em;

}

.contact i {
	color: var(--main-color);
	font-size: 2.5em;
	width: 2em;
}

form {
	margin-left: auto;
	margin-right: auto;
	width: 85%;
	padding: 20px;
}


input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin: 6px 6px 16px 6px;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: var(--dk-gray-color);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: var(--main-color);
}



/* =========== Footer =========== */

footer {
	margin: 0 auto;
	margin-top: 0px;
	display: block;
	background: var(--main-color);
	height: 16em;
	text-align: center;
}

#copyright {
	font-style: bold;
	color: #fff;
}

#copyright i {
	color: #FFFFFF;
	font-size: 1em;
}

footer i{
	color: #FFFFFF;
	font-size: 2em;
}

.social-icons {
	margin: 0 auto;
	max-width: 300px;
	padding-top: 40px;
}

.icons {
	display: inline-block;
	padding: 1em;
}



}
























