/*-----------------
1. Google font
------------------*/

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap');

/*-------------------
2. Theme Default CSS
--------------------*/

:root {
      --primary: #303f9f;
      --radius: 12px;
    }

    body {
      font-family: 'Raleway', sans-serif !important;
      transition: all 0.3s ease;
    }
	
	/* === FORM STYLES === */
	.modal-content #websiteWizard {
	  margin: 30px auto;
	  background: #fff;
	  border-radius: 16px;
	  padding: 25px 10px;
	  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
	  font-family: 'Raleway', sans-serif;
	}

	.modal-content #websiteWizard h2 {
	  font-size: 22px;
	  margin-bottom: 20px;
	  color: #303f9f;
	  text-align: center;
	}

	.modal-content .progressbar {
	  display: flex;
	  justify-content: space-between;
	  margin-bottom: 25px;
	  counter-reset: step;
	  padding: 0;
	}

	.modal-content .progressbar li {
	  list-style-type: none;
	  width: 100%;
	  position: relative;
	  text-align: center;
	  color: #999;
	  font-size: 12px;
	}

	.modal-content .progressbar li:before {
	  content: counter(step);
	  counter-increment: step;
	  width: 30px;
	  height: 30px;
	  line-height: 30px;
	  border: 2px solid #ddd;
	  display: block;
	  text-align: center;
	  margin: 0 auto 10px auto;
	  border-radius: 50%;
	  background-color: white;
	  color: #303f9f;
	  font-weight: bold;
	}

	.modal-content .progressbar li.active:before {
	  border-color: #303f9f;
	  background: #303f9f;
	  color: #fff;
	}

	.modal-content .progressbar li:after {
	  content: '';
	  position: absolute;
	  width: 100%;
	  height: 2px;
	  background: #ddd;
	  top: 15px;
	  left: -50%;
	  z-index: -1;
	}

	.modal-content .progressbar li:first-child:after { content: none; }

	.modal-content .progressbar li.active + li:after {
	  background: #303f9f;
	}

	.modal-content fieldset {
	  display: none;
	  border: none;
	}

	.modal-content fieldset.active {
	  display: block;
	}

	.modal-content .input-group {
	  margin-bottom: 15px;
	}

	.modal-content .input-group label {
	  display: block;
	  margin-bottom: 6px;
	  font-weight: 600;
	}

	.modal-content .input-group input,
	.modal-content .input-group select,
	.modal-content .input-group textarea {
	  width: 100%;
	  padding: 10px;
	  border-radius: 12px;
	  border: 1px solid #ddd;
	  font-size: 15px;
	  box-sizing: border-box;
	}

	.modal-content button.action-btn {
	  background: #303f9f;
	  color: #fff;
	  border: none;
	  border-radius: 12px;
	  padding: 12px 20px;
	  margin-top: 10px;
	  cursor: poRaleway;
	  font-size: 15px;
	}

	.modal-content button.action-btn:disabled {
	  background: #ccc;
	  cursor: not-allowed;
	}

	.modal-content button.action-btn:hover:not(:disabled) {
	  opacity: 0.9;
	}

	/* Loader */
	.loader {
	  border: 4px solid #f3f3f3;
	  border-top: 4px solid #303f9f;
	  border-radius: 50%;
	  width: 28px;
	  height: 28px;
	  animation: spin 1s linear infinite;
	  margin: 15px auto;
	  display: none;
	}

	@keyframes spin {
	  100% { transform: rotate(360deg); }
	}


* {
    outline: none;
}

a {
    text-decoration: none;
    outline: none;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    color: #333333;
	letter-spacing: 0.4px;
}

input,
select,
textarea {
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 14px;
}

input:focus,
button:focus,
a:focus,
a:hover {
    text-decoration: none;
    outline: none;
    opacity: .7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    font-weight: 400;
    line-height: 1.4em;
	letter-spacing: 0.4px;
}

h1 {
    font-size: 34px;
	font-weight: 600;
	line-height: 38px;
}

h2 {
    font-size: 24px;
	font-weight: 600;
	line-height: 28px;
}

h3 {
    font-size: 18px;
	font-weight: 600;
	line-height: 22px;
}

h4 {
    font-size: 16px;
	font-weight: 600;
	line-height: 20px;
}

html,
body {
	height: 100%;
}

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
	background: #fffafa;
    color: #000;
	margin: 0;
	padding: 0;
}

.body-content {
	overflow: hidden;
}

/* Remove Chrome Input Field's Unwanted #EDD78A Background Color */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

/* Main CSS */

/* Navigation Area */

.nav {
    position: fixed;
    background: #333333;
    border-bottom: 1px solid #555;
    width: 100%;
    z-index: 1;
    opacity: 0.9;
}

.nav-content {
	max-width: 1200px;
    margin: 0 auto;
    position: relative;
    left: 0;
    right: 0;
}

.nav-logo {
	padding: 12px 0 16px 20px;
}

.nav-logo p {
	margin: 0;
	font-size: 25px;
	font-weight: 600;
	color: #FFF;
}

.nav-logo span {
	font-size: 40px;
	color: cyan;
}

#menu_checkbox {
	display: none;
}

#menu_label {
	display: none;
	position: absolute;
	top: 54%;
	right: 22px;
	margin: 0 auto;
	width: 30px;
	height: 30px;
	transform: translateY(-50%);
	transition: 0.3s ease transform;
	cursor: poRaleway;
}

#menu_label div {
	width: 6px;
	height: 4px;
	background-color: #FFF;
	margin-left: 0;
	margin-bottom: 8px;
	border-radius: 8px;
	transition: 0.3s ease width, 0.3s ease margin-left, 0.3s ease margin-bottom,
	0.3s ease background-color;
}

#menu_label div:first-child {
	width: 22px;
}

#menu_label div:nth-child(2) {
	width: 16px;
}

#menu_label div:last-child {
	width: 36px;
	margin-bottom: 0;
}

#menu_checkbox:checked + label {
	transform: translateY(-50%) rotateZ(-90deg);
}

#menu_checkbox:checked + label div {
	width: 6px;
	margin-left: 12px;
	margin-bottom: 8px;
	background-color: #FFF;
}

.nav-menu {
	position: absolute;
	right: 30px;
	top: 17px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 600;
    margin: 10px;
	color: #FFF;
}

.nav-menu a.active {
	color: #EDD78A;
}

/* Banner Area */

.banner {
	background: #333333;
	height: 100vh;
	min-height: 640px;
}

.banner-content {
	position: relative;
	text-align: center;
	color: #FFF;
	height: 96vh;
	min-height: 600px;
}

.banner-details {
	padding: 100px 0;
}

.real-img {
	max-height: 100px;
	border-radius: 50%;
	margin-bottom: 30px;
}

.social-icons {
	padding: 20px 0 40px;
}

.social-icons a {
	margin: 10px;
}

.social-icons img {
	max-height: 30px;
}

.hire-me {
	background: #EDD78A;
	color: #000000;
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: poRaleway;
	margin: 20px auto;
    display: block;
    width: 150px;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	color: #555;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(48,63,159); 
	background-color: rgba(48,63,159,0.4) 
}

.modal-content {
    background-color: #fffafa;
    margin: 58px auto;
    padding: 20px;
    border: 1px solid #000;
    width: 86%;
    max-width: 900px;
    border-radius: 20px;
	text-align: left;
}

.modal-header {
	position: relative;
	height: 40px;
}

.modal-header h2 {
	position: absolute;
	margin: 10px 0;
}

.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: poRaleway;
}

.close img {
	max-height: 40px;
}

.send-details {
	color: #333;
	background: rgba(48,63,159,.1);
    padding: 1px 20px 20px;
    border-radius: 14px;
}

.modal-body h3 {
	margin-top: 40px;
}

.block-quote {
	font-weight: 600;
	border-left: 8px solid #333333;
	padding: 2px 10px;
	margin-left: -10px;
}

.references {
	font-weight: 600;
	color: #303F9F;
}

.external {
	font-weight: 600;
	color: #303F9F;
}

.truehost-div {
	display: flex;
	justify-content: center;
	margin: 20px auto;
}

.truehost-link {
	background: #333333;
    color: #FFF;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: poRaleway;
}

.send-email {
	background: #333333;
    color: #FFF;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: poRaleway;
}

.banner-scroll {
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
}

.banner-scroll p {
	margin-bottom: 60px;
}

.banner-scroll img {
	max-height: 30px;
	margin-left: -8px;
	position: absolute;
	animation: MoveUpDown 1s linear infinite;
}

@keyframes MoveUpDown {
  0%, 100% {
    bottom: 0;
  }
  50% {
    bottom: 10px;
  }
}

#generatedModal {
	display:none; 
	position:fixed; 
	top:0; 
	left:0; 
	width:100%; 
	height:100%; 
	background:rgba(0,0,0,0.7); 
	z-index:9999; 
	justify-content:center; align-items:center;
}

#genmodiv {
	position:relative; 
	width:90%; 
	max-width:1000px; 
	height:90%; 
	background:white; 
	border-radius:12px; 
	overflow:hidden; 
	box-shadow:0 10px 30px rgba(0,0,0,0.5);
	margin: 0 auto;
	margin-top: 40px;
}

@media only screen and (max-width: 768px) {
	#genmodiv {
		width: 98%;
	}
}

#closeModal {
	position:absolute; 
	top:20px; 
	right:20px; 
	background:#303f9f; 
	color:white; 
	border:none; 
	padding:8px 12px; 
	border-radius:6px; 
	cursor:poRaleway; 
	z-index:10;
}

#generatedIframe {
	width:100%; 
	height:100%; 
	border:none;
}

/* About Area */

.about {
	
}

.about-content {
	display: block;
	max-width: 900px;
	margin: 50px auto;
}

.about-details {
	display: flex;
	position: relative;
	margin: 50px 0;
}

.about-details img {
	border-radius: 50%;
    /*border: 5px solid #303f9f;*/
    max-height: 120px;
}

.about-skills {
	display: flex;
	width: 65%;
	margin-left: 5%;
	padding: 40px;
	border-radius: 20px;
	background: linear-gradient(145deg, #e6e1e1, #ffffff);
	-webkit-box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
	-moz-box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
	box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
}

.about-me {
	max-width: 50%;
	margin-right: 20px;
}

.about-me p {
	margin: 0 0 20px;
}

.about-me a {
	background: #333;
	color: #FFF;
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 600;
    cursor: poRaleway;
}

.my-skills {
	width: 100%;
}

.skill {
	margin-bottom: 14px;
}

.skill-text {
	position: relative;
	height: 26px;
}

.skill-name {
	margin: 0;
	font-weight: 600;
	position: absolute;
}

.skill-perc {
	margin: 0;
	position: absolute;
	right: 0;
}

.skill-border {
	background: #DDD;
	height: 6px;
	border-radius: 10px;
}

.skill-level {
	height: 6px;
	border-radius: 10px;
}

.dev-skill .skill-level {
	background: #303F9F;
	width: 96%;
}

.uiux-skill .skill-level {
	background: #8B0000;
	width: 82%;
}

.writing-skill .skill-level {
	background: #333333;
	width: 90%;
}

.about-datas {
	display: flex;
	flex-wrap: wrap;
}

.about-data {
	width: 25%;
	display: flex;
}

.about-data img {
	max-height: 30px;
	opacity: .3;
}

.about-data div {
	margin-left: 20px;
}

.about-data p {
	margin: 0;
}

.about-count {
	font-size: 24px;
    font-weight: 600;
    color: #000;
}

.about-ctext {
	
}

/* Services Area */

.services {
	padding-top: 40px;
}

.services-content {
	display: block;
	max-width: 900px;
	margin: 0 auto;
}

.service-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 40px auto;
}

.service {
	max-width: 220px;
	margin: 20px;
	text-align: center;
	padding: 20px;
	border-radius: 20px;
	-webkit-box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
	-moz-box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
	box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
}

.dev-service {
	background: #303F9F;
	color: #FFF;
}

.design-service {
	background: #EDD78A;
	color: #000;
}

.writing-service {
	background: #333333;
	color: #FFF;
}

.service img {
	max-height: 100px;
}

.dev-service img {
	margin-left: 14px;
}

.service h3 {
	
}

.service p {
	
}

.custom-service {
	text-align: center;
}

.custom-service a {
	color: #303F9F;
	font-weight: 600;
}

/* Experiences area */

.experiences {
	margin-top: 80px;
}

.experiences-content {
	display: block;
	max-width: 900px;
	margin: 0 auto;
}

.experience-sections {
	display: flex;
    justify-content: center;
    flex-wrap: wrap;
	margin: 40px auto;
}

.experience {
	max-width: 350px;
	margin: 10px;
	border-radius: 20px;
	padding: 30px;
	background: linear-gradient(145deg, #e6e1e1, #ffffff);
	-webkit-box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
	-moz-box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
	box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;

}

.exp {
	border-left: 3px solid #303F9F;
	position: relative;
	padding: 0 0 30px 40px;
}

.last-exp {
	padding: 0 0 0 40px;
}

.exp img {
	max-height: 30px;
	position: absolute;
	left: -16px;
	background: #fffafa;
	border-radius: 5px;
}

.exp-year {
	margin-top: 0;
	font-size: 12px;
    font-weight: 600;
    color: #555;
}

.exp h3 {
	
}

.exp-text {
	margin-bottom: 0;
}

/* Works Area */

.works {
	margin-top: 80px;
}

.works-content {
	display: block;
	max-width: 900px;
	margin: 0 auto;
}

.works-area {
	
}

.work-categories {
	display: flex;
}

.work-categories p {
	margin-right: 30px;
    padding: 10px;
    font-weight: 600;
    cursor: poRaleway;
}

.work-tab {
	color: #303F9F;
	font-size: 14px;
}

.work-tab.active {
	color: #333333;
}

.recent-works {
	
}

.tab-content {
	display: none;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
}

.tab-content.active {
	display: flex;
	animation-name: fade;
	animation-duration: 1.5s;
}

.recent-work {
	max-width: 430px;
    border-radius: 20px;
    margin: 10px;
	display: flex;
	background: linear-gradient(145deg, #e6e1e1, #ffffff);
	-webkit-box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
	-moz-box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
	box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
}

.recent-work img {
	max-width: 40%;
	min-width: 160px;
	margin: 30px 20px;
	border: 1px solid #DDD;
	border-radius: 14px;
}

.recent-details {
	max-width: 60%;
}

.recent-type {
	color: #303F9F;
	font-weight: 600;
	font-size: 12px;
	margin: 20px 0 5px;
}

.recent-text {
	line-height: 20px;
	color: #555;
	padding-right: 20px;
	margin-bottom: 20px;
}

.recent-btn {
	background: #333333;
	color: #FFF;
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 600;
    cursor: poRaleway;
}

/* Pricing Area */

.pricing {
	margin-top: 80px;
}

.pricing-content {
	display: block;
	max-width: 900px;
	margin: 0 auto;
}

.pricing-area {
	margin: 60px auto;
}

.pricing-area::after { 
   content: " ";
   display: block; 
   height: 0; 
   clear: both;
}

.price-level {
	max-width: 240px;
    text-align: center;
    border-radius: 20px;
    padding: 30px;
    float: left;
}

.pl-side {
	background: linear-gradient(145deg, #e6e1e1, #ffffff);
	-webkit-box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
	-moz-box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
	box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
}

.basic-level, .ultimate-level {
	margin-top: 30px;
}

.premium-level {
	padding-top: 60px;
	position: relative;
	background: #FFF;
	-webkit-box-shadow: 0px 0px 16px 5px rgba(219,219,219,1);
	-moz-box-shadow: 0px 0px 16px 5px rgba(219,219,219,1);
	box-shadow: 0px 0px 16px 5px rgba(219,219,219,1);
}

.recommended {
	transform: rotate(-90deg);
    position: absolute;
    top: 50px;
    left: -30px;
    margin: 0;
    background: #303F9F;
    color: #FFF;
    padding: 5px 15px;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}

.price-level img {
	max-height: 70px;
	margin-bottom: 20px;
}

.price-level h3 {
	
}

.price-desc {
	
}

.price-services {
	margin: 20px;
}

.price-services p {
	line-height: 14px;
    font-weight: 600;
    color: #555;
    margin: 10px;
}

.price {
	position: relative;
	margin-bottom: 30px;
}

.currency {
	position: absolute;
    top: -6px;
	font-weight: 600;
}

.amount {
	font-size: 30px;
    font-weight: 600;
	margin-left: 10px;
}

.time {
	font-weight: 600;
	color: #555;
}

.price-level a {
	background: #333333;
	color: #FFF;
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 600;
    cursor: poRaleway;
}

.modal-plan {
	
}

/* Reviews Area */

.reviews {
	margin-top: 80px;
}

.reviews-content {
	display: block;
    max-width: 900px;
    margin: 0 auto;
}

.review-slideshow {
	max-width: 1000px;
	position: relative;
	margin: auto;
	margin: 60px auto;
}

.review-slide {
	display: none;
	text-align: center;
	animation-name: fade;
	animation-duration: 1.5s;
}

@keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}

.review-slide h3 {
	margin-top: 20px;
}

.reviewer-title {
	font-weight: 600;
	color: #555;
}

.review {
    max-width: 540px;
    display: block;
    margin: 40px auto;
    padding: 40px;
    border-radius: 20px;
	background: linear-gradient(145deg, #e6e1e1, #ffffff);
	-webkit-box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
	-moz-box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
	box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
}

.dot {
	cursor: poRaleway;
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
	background-color: #717171;
}

/* Latest Posts Area */

.latest {
	margin-top: 80px;
}

.latest-content {
	display: block;
    max-width: 900px;
    margin: 0 auto;
}

.latest-area {
	margin: 60px auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.post {
	position: relative;
	max-width: 280px;
	margin: 10px;
    border-radius: 20px;
	cursor: poRaleway;
	background: linear-gradient(145deg, #e6e1e1, #ffffff);
	-webkit-box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
	-moz-box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
	box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
}

.post-type {
	position: absolute;
    top: 0;
    right: 20px;
    margin: 0;
    background: #333333;
    color: #FFF;
    padding: 5px 15px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.post img {
	max-width: 100%;
	border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.post h3 {
	padding: 5px 16px;
	margin: 0;
	font-size: 16px;
	line-height: 20px;
}

.blog-detail {
	padding: 5px 16px;
	margin: 0 0 16px;
}

.blog-detail span {
	color: #333;
}

/* Get In Touch Area */

.contact {
	margin-top: 80px;
}

.contact-content {
	display: block;
    max-width: 900px;
    margin: 0 auto;
}

.contact-area {
	margin: 60px auto;
	display: flex;
	flex-wrap: wrap;
}

.contact-left {
	position: relative;
	width: 340px;
}

.contact-left img {
	position: absolute;
	max-width: 350px;
	opacity: .1;
	top: -80px;
	z-index: -1;
}

.contact-left h3 {
	
}

.contact-left p {
	
}

.contact-left a {
	color: #303F9F;
	font-weight: 600;
}

.contact-right {
	width: 500px;
}

.contact-right div {
	margin-bottom: 10px;
}

.contact-right input, .contact-right textarea {
	-webkit-box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
	-moz-box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
	box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
}

.user-name {
	padding: 10px;
    border-radius: 30px;
    border: 3px solid #CCC;
    min-width: 200px;
    margin-right: 20px;
}

.user-email {
	padding: 10px;
    border-radius: 30px;
    border: 3px solid #CCC;
    min-width: 200px;
    margin-right: 20px;
}

.user-subject {
	padding: 10px;
    border-radius: 30px;
    border: 3px solid #CCC;
    width: 448px;
    margin: 15px auto;
}

.user-message {
	font-family: 'Raleway', sans-serif;
	padding: 10px;
    border-radius: 30px;
    border: 3px solid #CCC;
    width: 448px;
	height: 100px;
    margin: 15px auto 30px;
}

.send-message {
	font-family: 'Raleway', sans-serif;
	border: none;
	background: #333333;
	color: #FFF;
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 600;
    cursor: poRaleway;
}

input:invalid, textarea:invalid {
  border: 3px solid #000000;
}

input:valid, textarea:valid {
  border: 3px solid #CCC;
}

.mail-sender {
	font-weight: 600;
	color: green;
}

.footer {
	background: #333333;
	text-align: center;
	color: #FFF;
	padding: 30px 0;
}

.footer p {
	display: flex;
    justify-content: center;
    align-items: center;
	cursor: poRaleway;
}

.this-year {
	color: cyan;
	font-size: 24px;
    font-weight: 600;
}

.footer span {
	color: cyan;
	font-weight: 600;
}

/* Main CSS End */

@media only screen and (min-height: 900px) {
	.banner {
		height: 900px;
	}

	.banner-content {
		height: 860px;
	}
}

/* Medium Layout: 1280px. */

@media only screen and (min-width: 992px) and (max-width: 1280px) {}

/* Tablet Layout: 768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 740px) and (max-width: 921px) {
	.pricing-area {
		display: flex;
		justify-content: center;
		Flex-wrap: wrap;
	}
	
	.price-level {
		margin: 10px;
	}
	
	.basic-level, .ultimate-level {
		margin-top: 30px;
	}

	.premium-level {
		padding-top: 30px;
		height: auto;
	}
	
	/* Contact Area */
	
	.contact {
		margin-left: 10px;
		margin-right: 10px;
	}
	
	.contact-right {
		width: 100%;
		text-align: center;
	}
	
	.user-name {
		width: 300px;
		margin-bottom: 16px;
		margin-right: 0;
	}
	
	.user-email {
		width: 300px;
		margin-top: 10px;
		margin-right: 0;
	}
	
	.user-subject {
		width: 300px;
	}
	
	.user-message {
		display: block;
		width: 300px;
	}
}

/* Mobile Layout: 320px. */

@media only screen and (max-width: 767px) {
	/* Navigation Area */
	
	.nav-logo {
		padding-left: 20px;
	}
	
	#menu_label {
		display: block;
	}
	
	.nav-menu {
		display: none;
		z-index: 1;
		top: 58px;
		width: 100%;
		right: 0;
		background: rgba(48, 63, 159, 1);
		overflow: hidden;
	}
	
	.nav-menu a {
		display: block;
		padding: 8px;
		border: 1px solid #fff;
		border-radius: 5px;
	}
	
	.nav-menu a.active {
		color: #EDD78A;
		border: 1px solid #EDD78A;
	}
	
	.selected {
		animation: slide-in 0.5s forwards;
		-webkit-animation: slide-in 0.5s forwards;
	}

	.dismiss {
		animation: slide-out 0.5s forwards;
		-webkit-animation: slide-out 0.5s forwards;
	}
	
	@keyframes slide-in {
		0% {
			-webkit-transform: translateX(100%);
		}
		100% {
			-webkit-transform: translateX(0%);
		}
	}

	@-webkit-keyframes slide-in {
		0% {
			transform: translateX(100%);
		}
		100% {
			transform: translateX(0%);
		}
	}

	@keyframes slide-out {
		0% {
			transform: translateX(0%);
		}
		100% {
			transform: translateX(100%);
		}
	}
	
	@-webkit-keyframes slide-out {
		0% {
			transform: translateX(0%);
		}
		100% {
			transform: translateX(100%);
		}
	}
	
	.send-details {
		color: #555;
		background: linear-gradient(145deg, #e6e1e1, #ffffff);
		padding: 1px 10px 10px;
		border-radius: 14px;
	}
	
	/* About Area */
	
	.about {
		margin-left: 10px;
		margin-right: 10px;
	}
	
	.about-content {
		margin: 50px auto 0;
	}
	
	.about-details {
		display: block;
	}
	
	.about-details img {
		width: auto;
		display: block;
		margin: 0 auto 30px;
		height: 120px;
		width: 120px;
	}
	
	.about-skills {
		display: block;
		width: auto;
		margin-left: 0;
	}
	
	.about-me {
		max-width: 100%;
	}
	
	.my-skills {
		margin-top: 40px;
	}
	
	.about-data {
		width: 40%;
		margin: 5%;
	}
	
	/* Services Area */
	
	.services {
		margin-left: 10px;
		margin-right: 10px;
	}
	
	/* Experiences Area */
	
	.experiences {
		margin-left: 10px;
		margin-right: 10px;
	}
	
	/* Works Area */
	
	.works {
		margin-left: 10px;
		margin-right: 10px;
	}
	
	.recent-work {
		display: block;
		margin: 20px auto;
	}
	
	.recent-details {
		max-width: 100%;
		padding: 0 20px 26px;
	}
	
	.recent-work img {
		display: block;
		margin: 20px auto;
	}
	
	.recent-type {
		margin: 0 0 5px;
	}
	
	/* Pricing Area */
	
	.pricing {
		margin-left: 10px;
		margin-right: 10px;
	}
	
	.pricing-area {
		display: flex;
		justify-content: center;
		Flex-wrap: wrap;
	}
	
	.price-level {
		margin: 10px;
	}

	.premium-level {
		padding-top: 30px;
		height: auto;
		background: linear-gradient(145deg, #e6e1e1, #ffffff);
		-webkit-box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
		-moz-box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
		box-shadow: 9px 9px 31px #d9d5d5, -9px -9px 31px #ffffff;
	}
	
	/* Reviews Area */
	
	.reviews {
		margin-left: 10px;
		margin-right: 10px;
	}
	
	/* Latest Area */
	
	.latest {
		margin-left: 10px;
		margin-right: 10px;
	}
	
	/* Contact Area */
	
	.contact {
		margin-left: 10px;
		margin-right: 10px;
	}
	
	.contact-right {
		width: 100%;
		text-align: center;
	}
	
	.user-name {
		width: 86%;
		margin-bottom: 16px;
		margin-right: 0;
	}
	
	.user-email {
		width: 86%;
		margin-top: 10px;
		margin-right: 0;
	}
	
	.user-subject {
		width: 86%;
	}
	
	.user-message {
		display: block;
		width: 86%;
	}
	
	.post {
		max-width: 400px;
	}
}

/* Wide Mobile Layout: 480px. */

@media only screen and (min-width: 480px) and (max-width: 767px) {}