/*-----------------------------------------------------------------
Table Of Contents
--------------------------------
 1. Global Styles
 2. Loading
 3. Navbar
 4. Home
 5. About Me
 6. Services
 7. Skills
 8. Resume
 9. Portfolio
 10. Blog
 11. Contact
 12. Copyright
 13. Media Queries
-----------------------------------------------------------------*/
@font-face {
font-family : "Neutra-Light";
src : url('fonts/Montserrat-Light.ttf') format('truetype');
font-weight : normal;
font-style : normal;
}
@font-face {
font-family : "Neutra-Demi";
src : url('fonts/Montserrat-Medium.ttf') format('truetype');
font-weight : normal;
font-style : normal;
}
@font-face {
font-family : "FrutigerNext";
src : url('fonts/FrutigerNext-Regular.eot');
src : url('fonts/FrutigerNext-Regular.eot?#iefix') format('embedded-opentype'), url('fonts/FrutigerNext-Regular.woff') format('woff'), url('fonts/FrutigerNext-Regular.ttf') format('truetype'), url('fonts/FrutigerNext-Regular.svg#FrutigerNext-Regular') format('svg');
font-weight : normal;
font-style : normal;
}
/* --------------------------------------
   1. Global Styles
-----------------------------------------*/

* {
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    font-size: 16px;
	font-family: Neutra-Light,Helvetica Neue,Helvetica,Arial,sans-serif;
    color: #fafafa;
		/* background: url(../images/intro-bg2.jpg) no-repeat fixed 100% 100%;
    /* background-color: transparent; */
	background-color: #222; /* For browsers that do not support 
background: linear-gradient(to right, white, snow); /* Standard syntax
-webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
-moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
transition: background .5s ease-in-out,padding .5s ease-in-out; */   
	
}
.dark-mode {

  background-color: #fafafa;
  color: #222;
}
.titmindark {

  background-color: #ff0000;
  color: #222;
}



html {
    width: 100%;
    height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Neutra-Light', sans-serif;
	font-size : 4em;
	color: #908045;
    margin: 0;
    padding: 0;
}

a,
a:focus,
a:active {
    color: #AC1F8F;
    text-decoration: none;

}
a:hover {
    color: #DAA125;
    text-decoration: none;

}

/*=========== Typography ============*/
h1 {
    font-size: 1.75em;
    font-weight: 500;
}

h2 {
    font-size: 1.625em;
    font-weight: 500;
}

h3 {
    font-size: 1.5em;
    font-weight: 500;
}

h4 {
    font-size: 1.250em;
    font-weight: 400;
}

h5 {
    font-size: 1.115em;
    font-weight: 400;
}

h6 {
    font-size: 1em;
    font-weight: 400;
}

/*=========== My Classes ============*/
.mylogo-img {
	background: url('../images/icon.png') center no-repeat;
	width: 80px;
	height: 80px;
}

.main-title {
    margin-bottom: 55px;
}
.mydemi {
   font-family: 'Neutra-Demi', sans-serif;
}
.main-title h3 {
    font-weight: 800;
    letter-spacing: .7px;
    font-size: 1.875em;
        margin-bottom: 5px;
}

.main-title h2 {
	position: relative;
    display: inline-block;
    font-weight: 800;
    font-size: 2.5em;
    line-height: 1;
    letter-spacing: .7px;
    text-transform: none;
    padding-bottom: 13px;
}

.main-title h2:after {
	content: '';
	position: absolute;
    bottom: 0;
	left: 0;
	width: 65px;
	height: 2px;
	background-color: ##908045;
}

.main-btn {
    position: relative;
    display: inline-block;
    min-width: 170px;
    color: #908045;
    padding:15px;
    font-size: 1.125em;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    background: transparent;
    border: 1px solid #908045;
    border-radius: 4px;
    outline: none;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.main-btn:hover {
    color: #fff;
    background: #908045;
}

.no-padding {
    padding: 0;
}

.page-content {
    position: relative;
    margin-left: 123px;
    margin-right: 48px;
	margin-top: 24px;
	height: calc(100vh - 48px);
}

section {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
	z-index: 0;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
	transform-origin: 0 0;
    opacity: 0;
	transition: transform .6s ease .6s, opacity 0s ease .6s;
}

section.active {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scale(1);
    transform: scaleX(1);
    opacity: 1;
    z-index: 1;
	transition: transform .6s ease;
}

.main-img {
	background: url('../images/main-img.jpg') top center no-repeat;
	background-size: cover;
	height: calc(100vh - 48px);
	opacity: .6;
	border: 3px solid #1c1c1d;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.area-bg {
	
    height: calc(100vh - 96px);
	margin-top: 24px;
	margin-bottom: 24px;
	border: 0px solid #1c1c1d;
    border-left: none;
}

::-webkit-scrollbar {
    width: 5px;
	height: 15px;
}

::-webkit-scrollbar-track {
    border-radius: 20px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
	;
}
.clearboth {
clear : both;
}
.video iframe{
width: 100%;
    min-height: 15em;
    border: 0px solid #b3b3b3;
}
.centre {
text-align: center;
}
 
/* --------------------------------------
   2. Loading
-----------------------------------------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #121213;
    z-index: 9999999;
}

.preloader .status {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.preloader .status .spinner {
    margin: 100px auto;
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center;
    -webkit-animation: sk-rotate 2.0s infinite linear;
    -moz-animation: sk-rotate 2.0s infinite linear;
    -ms-animation: sk-rotate 2.0s infinite linear;
    -o-animation: sk-rotate 2.0s infinite linear;
    animation: sk-rotate 2.0s infinite linear;
}

.preloader .status .spinner .dot1,
.preloader .status .spinner .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #908045;
    border-radius: 100%;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    -moz-animation: sk-bounce 2.0s infinite ease-in-out;
    -ms-animation: sk-bounce 2.0s infinite ease-in-out;
    -o-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.preloader .status .spinner .dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@keyframes sk-rotate {
	
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes sk-bounce {
	
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
	
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-bounce {
	
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
	
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* --------------------------------------
   3. Navbar
-----------------------------------------*/
.colored {
    line-height: 50px;
    text-align: center;
    font-size: 1em;
    font-weight: 600;
    font-family: 'Neutra-Demi', sans-serif;
}
.vertical-nav {
    position: fixed;
	top: 0;
	left: 48px;
	width: 48px;
    margin-top: 140px;
	
	border: 0px solid #1c1c1d;
    border-right: none;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	z-index: 9999;
	overflow: hidden;
    overflow-y: auto;
}

.vertical-nav .logo {
	display: inline-block;
   
       text-align: center;
    font-size: 1.5em;
    font-weight: 800;
    	border-bottom: 0px solid #181819;
    color: transparent;
    -webkit-text-stroke: 1px #403e3e;
    
}

.vertical-nav .logo span {
    font-size: 1.125em;
}

.vertical-nav .toggle-menu {
	background-color: transparent;
    float: right;

    line-height: 65px;
    text-align: center;
    border: none;
    outline: none;
    cursor: pointer;
	position: relative;
	z-index: 9999;
    display: none;
}

.vertical-nav .toggle-menu .bar {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #908045;
}

.vertical-nav .toggle-menu .bar:nth-child(2) {
    width: 14px;
    margin: 8px 0;
    margin-left: 7px;
}

.vertical-nav.menu-active .toggle-menu .bar:first-child {
    -webkit-transform: rotate(45deg) translate(6px, 7px);
    -moz-transform: rotate(45deg) translate(6px, 7px);
    -ms-transform: rotate(45deg) translate(6px, 7px);
    -o-transform: rotate(45deg) translate(6px, 7px);
    transform: rotate(45deg) translate(6px, 7px);
}

.vertical-nav.menu-active .toggle-menu .bar:nth-child(2) {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.vertical-nav.menu-active .toggle-menu .bar:last-child {
    -webkit-transform: rotate(-45deg) translate(7px, -8px);
    -moz-transform: rotate(-45deg) translate(7px, -8px);
    -ms-transform: rotate(-45deg) translate(7px, -8px);
    -o-transform: rotate(-45deg) translate(7px, -8px);
    transform: rotate(-45deg) translate(7px, -8px);
}

.vertical-nav .mini-menu ul {
	margin: 0;
}

.vertical-nav .mini-menu > ul li a {
	display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-top: 0px solid #0e0e0e;
    border-bottom: 0px solid #181819;
    color: #b9b7b7;
}

.vertical-nav .mini-menu > ul li a.active {
	color: #908045;
}

.vertical-nav .mini-menu > ul li a i:before {
	margin-left: 0;
	font-size: 1em;
}

/* --------------------------------------
   4. Home
-----------------------------------------*/

.home {
    overflow: hidden;
}

.home .area-bg {
    position: relative;
}

.home #particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
	z-index: 0;
}

.home .home-intro {
	position: relative;
	z-index: 1;
	margin-left: 5vw;
}

.home .home-intro .home-info {
    width: 100%;
}

.home .home-intro h3 {
    font-size: 1.125em;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 1px;
    margin: 0;
}

.home .home-intro h1 {

	font-size: 0.875em;
    letter-spacing: 1px;
    font-weight: 800;
    margin: 30px 0;
	text-transform: none;
}

.home .home-intro p {
    font-size: 1.125em;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 1px;
    margin: 0;
    margin-bottom: 50px;
}

.home .home-intro p span {
    color: #908045;
}

/* --------------------------------------
   5. About Me
-----------------------------------------*/

.about {
	overflow: hidden;
	overflow-y: auto;
}

.about-me {
	position: relative;
    padding-top: 60px;
    }

.about-me .main-title {
    text-align: center;
}

.about-me .main-title h2:after {
    left: 50%;
    margin-left: -32.5px;
}

.about-me .about-image {
    padding: 7px;
    background: linear-gradient(-50deg, rgba(170, 170, 170, .1) 45%, transparent 25%);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.about-me .about-image img {
    opacity: .65;
}

.about-me .about-image img:hover {
    opacity: 1;
}

.about-me .about-info h3 {
    position: relative;
    font-size: 1.5em;
    font-weight: 500;
	color: #908045;
    letter-spacing: .7px;
    line-height: 1.6;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.about-me .about-info h3:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    height: 2px;
    width: 91px;
  
}

.about-me .about-info > p {
    font-size: 1.125em;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-me .about-info .personal-info {
    margin-bottom: 25px;
}

.about-me .about-info .personal-info .about-item {
    display: block;
    position: relative;
    line-height: 1;
    margin-bottom: 15px;
}

.about-me .about-info .personal-info .about-item h4 {
	position: relative;
    display: inline-block;
    font-size: 1.125em;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.about-me .about-info .personal-info .about-item h4:before {
	content: '';
    position: absolute;
    top: 9px;
    left: 115px;
    width: 25px;
    height: 2px;
    background: #908045;
}

.about-me .about-info .personal-info .about-item h4:after {
	content: '\f105';
    font-family: "FontAwesome";
    position: absolute;
    top: 1px;
    left: 140px;
    color: #908045;
}

.about-me .about-info .personal-info .about-item span {
    position: absolute;
    top: 1px;
    left: 180px;
    font-size: 1.125em;
    letter-spacing: 1px;
}

/* --------------------------------------
   6. Services
-----------------------------------------*/

.services {
    padding-top: 60px;
}

.services .main-title h2 {
    font-size: 1.625em;
    letter-spacing: 1px;
}

.services .service {
	background: #191a1b;
    padding: 25px 18px;
    border: 0px solid #262627;
	border-bottom-width: 3px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.services .service.two,
.services .service.three,
.services .service:hover {
	background: transparent;
	border-bottom-color: #908045;
	box-shadow: 0 0 20px rgba(0, 0, 0, .12);
}

.services .service .service-icon i:before {
    font-size: 2.5em;
	opacity: .9;
	margin-left: 0;
}

.services .service h4 {
	position: relative;
	z-index: 1;
    display: inline-block;
    font-size: 1em;
    letter-spacing: 1px;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 600;
    text-transform: capitalize;
}

.services .service p {
	position: relative;
	z-index: 1;
    line-height: 1.8;
    margin-bottom: 0;
	font-size: 1.125em;
    font-weight: 400;
   }

/* --------------------------------------
   7. Skills
-----------------------------------------*/

.skills {
    padding-top: 30px;
    padding-bottom: 30px;
}

.skills .main-title h2 {
    font-size: 1.75em;
    letter-spacing: 1px;
}

.skills .box {
   margin-bottom: 30px;
}

.skills .box .chart {
    position: relative;
	width: 140px;
	height: 140px;
	line-height: 140px;
	text-align: center;
	margin: 0 auto;
	font-size: 1.5em;
	color: #908045;
	font-weight: 600;
}

.skills .box canvas {
	position: absolute;
	top: 0;
	left: 0;
}

.skills .box h4 {
    text-align: center;
    text-transform: capitalize;
    letter-spacing: .3px;
    margin-top: 15px;
    font-family: 'Neutra-Demi', sans-serif;
}

/* --------------------------------------
   8. Resume
-----------------------------------------*/

.resume {
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: hidden;
	overflow-y: auto;
}

.resume .main-title {
    text-align: center;
}

.resume .main-title h2:after {
    left: 50%;
    margin-left: -32.5px;
}

.resume .resume-content {
    border: 0px solid #1c1c1d;
    border-radius: 4px;
    padding: 30px 35px 0;
}

.resume .education,
.resume .experience {
    padding-left: 48px;
}

.resume .resume-item {
    position: relative;
    
    padding: 15px 20px;
    margin-bottom: 30px;
    border: 0px solid #1c1c1d;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.resume .resume-item:before {
    content: '';
    position: absolute;
    top: 49px;
    left: -28px;
    bottom: -65px;
    width: 2px;
    background: #222223;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.resume .resume-item:last-child:before {
    content: none;
}

.resume .resume-item .resume-date {
    position: relative;
    display: inline-block;
    min-width: 175px;
    background: #222;
    border: 0px solid #444;
    color: #908045;
    padding: 14px 0;
    padding-left: 30px;
    font-size: 1.250em;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    border-radius: 24px;
    margin-left: -70px;
}

.resume .resume-item .resume-date i {
    position: absolute;
    top: 0;
    left: 10px;
    line-height: 52px;
    font-size: 1.5em;
    text-align: center;
    border-radius: 50%;
    color: #908045;
}

.resume .resume-item span {
    display: inline-block;
    letter-spacing: 1px;
    margin: 10px;
	font-size: 1.250em;
}

.resume .resume-item h4 {
    font-size: 1.250em;
    font-weight: 600;
    padding: 15px 0 10px;
    opacity: .8;
}

.resume .resume-item p {
    font-size: 1.1250em;
    font-weight: 400;
    line-height: 1.8;
	margin-bottom: 0;
}

/* --------------------------------------
   9. Portfolio
-----------------------------------------*/

.portfolio {
    padding-top: 60px;
    padding-bottom: 30px;
    overflow: hidden;
	overflow-y: auto;
}

.portfolio .main-title {
    text-align: center;
}

.portfolio .main-title h2:after {
    left: 50%;
    margin-left: -32.5px;
}

.portfolio .portfolio-content .item {
    position: relative;
    overflow: hidden;
	border-radius: 0px;
    margin-bottom: 30px;
}

.portfolio .portfolio-content .item img {
	border-radius: 0px;
}

.portfolio .portfolio-content .item:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.portfolio .portfolio-content .item .overlay { 
    position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
    background-color: rgba(50, 50, 50, .8);
	-webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.portfolio .portfolio-content .item:hover .overlay {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition-duration: .6s;
    -moz-transition-duration: .6s;
    -o-transition-duration: .6s;
    -ms-transition-duration: .6s;
    transition-duration: .6s;
}

.portfolio .portfolio-content .item .overlay .item-title,
.portfolio .portfolio-content .item .overlay .item-category span {
    position: absolute;
    top: 28%;
    left: 50%;
	-webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: inline-block;
    margin: 0;
    font-size: 1.250em;
}

.portfolio .portfolio-content .item .overlay .icon-img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 1.50em;
}

.portfolio .portfolio-content .item .overlay .item-category span {
	top: 65%;
    font-size: 1em;
    font-weight: 600;
   }

.portfolio .portfolio-content .item .overlay .item-category span:before {
    content: '';
    position: absolute;
    top: 10px;
    left: -32px;
    width: 26px;
    height: 2px;
	
}

/* --------------------------------------
   10. Blog
-----------------------------------------*/

.blog {
    padding-top: 60px;
    padding-bottom: 60px;
	overflow: hidden;
	overflow-y: auto;
}

.blog .main-title {
    text-align: center;
}

.blog .main-title h2:after {
    left: 50%;
    margin-left: -32.5px;
}

.blog .post {
	border-radius: 0px;
	overflow: hidden;
    margin-bottom: 30px;
}

.blog .post-img {
    overflow: hidden;
}

.blog .post .post-img:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.blog .post .post-content {
	position: relative;
    padding: 30px 20px;
    border: 0px solid #1c1c1d;
    border-radius: 4px;
}

.blog .post .post-content .post-date {
    color: #908045;
    font-size: 0.875em;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
}

.blog .post .post-content .post-title h4 {
    font-size: 1.250em;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: .5px;
    margin: 0 0 5px;

}

.blog .post .post-content .post-title h4:hover {
    color: #908045;
}

.blog .post .post-content .post-text p {
    line-height: 1.8;
    font-weight: 400;
   font-size: 1em;
    margin-top: 10px;
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 0px solid #212121;
}

.blog .post .post-content .post-more {
    display: inline-block;
    font-size: 1em;
    font-weight: 600;
    padding: 10px 18px;
    color: #908045;
    border: 0px solid #908045;
    border-radius: 4px;
	margin-top: 15px;
}

.blog .post .post-content .post-more:hover {
	background-color: #908045;
   
}

.blog .my-btn {
    text-align: center;
    margin-top: 20px;
}

/* --------------------------------------
   11. Contact
-----------------------------------------*/

.contact {
    padding-top: 60px;
    padding-bottom: 60px;
	overflow: hidden;
	overflow-y: auto;
}

.contact .main-title {
    text-align: center;
}

.contact .main-title h2:after {
    left: 50%;
    margin-left: -32.5px;
}

.contact .contact-boxes {
    
    border: 0px solid #1c1c1d;
    border-radius: 4px;
	padding: 25px 20px;
	padding-bottom: 20px;
}

.contact .contact-box {
	position: relative;
    margin-bottom: 30px;
}

.contact .contact-box:last-of-type {
    margin-bottom: 0;
}

.contact .contact-box .title-box {
    display: inline-block;
    color: #908045;
    font-size: 1.25em;
    font-weight: 400;
    letter-spacing: .3px;
    text-align: center;
    border-radius: 24px;
    margin-bottom: 12px;
  
}

.contact .contact-box .content-box p {
    font-size: 1em;
	color: #908045;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 0;
}

.contact .contact-box .content-box p:last-child {
    margin-top: 3px;
}

.contact .contact-box .content-box p > i {
    font-size: 1em;
    padding-right: 8px;
}

.contact .contact-box .content-box p span {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
}

.contact .contact-box .content-box p span a i {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    font-size: 1em;
}

.contact .contact-box .content-box p span a .fa-facebook {
   
}

.contact .contact-box .content-box p span a .fa-twitter {
    
}

.contact .contact-box .content-box p span a .fa-google-plus {
    
}

.contact .contact-box .content-box p span a .fa-behance {
  
}

.contact .contact-form {
    position: relative;
}

.contact .contact-form .form-group {
    position: relative;
    margin-bottom: 40px;
}

.contact .contact-form .form-group .form-control {
    
   
    border: 0;
    border-bottom: 1px solid #252525;
    outline: none;
    box-shadow: none;
    border-radius: 0;
    height: 36px;
    padding: 10px;
	background-color: transparent;
	
}

.contact .contact-form .form-group textarea.form-control {
    height: 80px;
    resize: none;
    padding-top: 18px;
}

.contact .contact-form .form-group label {
    position: absolute;
    top: 13px;
    left: 12px;
    width: 100%;
    margin-bottom: 0;
    font-weight: 400;
    cursor: text;
    
}

.contact .contact-form .form-group .form-control:focus ~ label,
.contact .contact-form .form-group input:not([value=""]) ~ label,
.contact .contact-form .form-group textarea:not([data-value=""]) ~ label {
    top: -16px;
    left: 0;
    font-size: 0.875em;
    letter-spacing: .5px;
}

.contact .contact-form .form-group .form-control:focus ~ label {
    
}

.contact .contact-form .form-group .input-border {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: transparent;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.contact .contact-form .form-group .form-control:focus ~ .input-border {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.contact .contact-form .contact-btn,
.contact .contact-form .contact-btn:focus {
	background-color: transparent;
    outline: none;
	cursor: pointer;
}

.contact .contact-form .form-message {
    position: absolute;
    left: 0;
    bottom: -55px;
    width: 100%;
    border-radius: 5px;
    font-size: 1em;
    padding: 12px;
  
}

.contact .contact-form .form-message.success {
	background-color: red;
}

.contact .contact-form .form-message.error {
	background-color: red;
}

/* --------------------------------------
   12. Copyright
-----------------------------------------*/

.copyright {
    position: absolute;
    left: 0;
    bottom: 20vh;
    letter-spacing: 1.7px;
    color: #908045;
    font-size: 1.125em;
    white-space: nowrap;
    margin: 0;
    line-height: 48px;
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    -o-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.copyright a,
.copyright i {
    color: #908045;
}

.copyright i {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    margin-left: 2px;
}

/* --------------------------------------
   13. Media Queries
-----------------------------------------*/

/* Extra Large Devices */
@media (min-width: 1200px) {}

/* Large devices (desktops, less than 1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    
    /*=========== Home ============*/
	.home .home-intro {
        margin-left: 3vw;
    }
	
    /*=========== Services ============*/
	.services .service {
		padding: 25px 20px;
	}
	
    /*=========== Resume ============*/
	.resume .resume-content {
		padding: 30px 20px 0;
	}

	.resume .resume-item {
		padding: 30px 20px;
	}
	
	/*=========== Contact ============*/
    .contact .contact-boxes {
        margin-bottom: 35px;
    }
	
	.contact .contact-box .title-box {
        font-size: 1em;
    }
	
	.contact .contact-box .content-box p {
        font-size: 1.125em;
    }
	
	.contact .contact-box .content-box p > i {
        font-size: 1em;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
	
	.area-bg {
        border-left: 0px solid #1c1c1d;
		height: calc(100vh - 48px);
        margin-top: 0;
        margin-bottom: 0;
    }
    
    /*=========== Navbar ============*/
	.vertical-nav {
        box-shadow: 0 0 10px rgba(0, 0, 0, .4);
    }
	
    /*=========== Home ============*/
	.home .home-intro {
        margin-left: 6vw;
    }
	
	/*=========== Contact ============*/
    .contact .contact-boxes {
        margin-bottom: 40px;
    }
   
}

/* Small Devices */
@media (max-width: 767.98px) {
    
    .main-title h2 {
        font-size: 2.5;
    }
    
    .page-content {
        margin-left: 75px;
        margin-right: 0;
    }
    
    .area-bg {
		margin-top: 0;
        margin-bottom: 0;
		height: calc(100vh - 48px);
        border-left: 3px solid #1c1c1d;
    }

    
    /*=========== Navbar ============*/
	.vertical-nav {
		left: 0;
        box-shadow: 0 0 10px rgba(0, 0, 0, .4);
    }
	
    /*=========== Home ============*/
	.home .home-intro {
        margin-left: 5vw;
    }
	
	.home .home-intro h1 {
        font-size: 3em;
    }
    
    /*=========== About Me ============*/    
    .about-me .about-image {
        margin-right: 80px;
        margin-left: 80px;
        margin-bottom: 40px;
    }
    
    /*=========== Services ============*/
	.services .main-title h2 {
		font-size: 1.625em;
	}
	
	.services .service {
		padding: 25px 20px;
	}
	
    .services .service h4 {
		font-size: 1.125em;
	}
	
	.services .service p {
		font-size: 1.125em;
	}
	
	/*=========== Skills ============*/
	.skills .main-title h2 {
		font-size: 1.625em;
	}
	
	/*=========== Resume ============*/
	.resume .main-title h2 {
		font-size: 1.625em;
	}
	
	.resume .resume-content {
        padding: 30px 25px 0;
    }
    
    /*=========== Contact ============*/    
    .contact .contact-boxes {
        margin-bottom: 40px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
	
	.page-content {
		margin-left: 0;
		margin-top: 0;
        height: 100vh;
	}
	
	.area-bg {
		margin-top: 65px;
        height: calc(100vh - 65px);
		border: none;
	}
    
    .main-title h2 {
        font-size: 1.750em;
    }
	
	.main-title h3 {
		font-size: 1.625em;
	}
	
    /*=========== Navbar ============*/
	.vertical-nav {
        width: 100%;
        height: 65px;
        margin-top: 0;
        border: none;
        border-bottom: 2px solid #1c1c1d;
    }
	
	.vertical-nav .mini-menu {
        position: fixed;
        top: 0;
        left: 0;
		margin-right: 43px;
		-webkit-transform: translateY(-100%);
		-moz-transform: translateY(-100%);
		-ms-transform: translateY(-100%);
		-o-transform: translateY(-100%);
		transform: translateY(-100%);
		-webkit-transition-duration: .3s;
        transition-duration: .3s;
    }
	
	.vertical-nav.menu-active .mini-menu {
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
    }
	
	.vertical-nav .mini-menu li {
        display: inline-block;
		opacity: 0;
		-webkit-transform: translateY(-100%);
		-moz-transform: translateY(-100%);
		-ms-transform: translateY(-100%);
		-o-transform: translateY(-100%);
		transform: translateY(-100%);
		-webkit-transition-duration: .3s;
        transition-duration: .3s;
    }
	
	.vertical-nav.menu-active .mini-menu > ul li {
		opacity: 1;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
    }
	
	.vertical-nav.menu-active .mini-menu > ul li:first-of-type() {
		-webkit-transition-delay: 0s;
        transition-delay: 0s;
    }
	
	.vertical-nav.menu-active .mini-menu > ul li:nth-of-type(2) {
		-webkit-transition-delay: .1s;
        transition-delay: .1s;
    }
	
	.vertical-nav.menu-active .mini-menu > ul li:nth-of-type(3) {
		-webkit-transition-delay: .2s;
        transition-delay: .2s;
    }
	
	.vertical-nav.menu-active .mini-menu > ul li:nth-of-type(4) {
		-webkit-transition-delay: .3s;
        transition-delay: .3s;
    }
	
	.vertical-nav.menu-active .mini-menu > ul li:nth-of-type(5) {
		-webkit-transition-delay: .4s;
        transition-delay: .4s;
    }
	
	.vertical-nav.menu-active .mini-menu > ul li:nth-of-type(6) {
		-webkit-transition-delay: .5s;
        transition-delay: .5s;
    }
	
	.vertical-nav.menu-active .mini-menu > ul li:last-of-type() {
		-webkit-transition-delay: .6s;
        transition-delay: .6s;
    }
	
	.vertical-nav .mini-menu > ul li a {
        display: inline-block;
        width: auto;
        height: auto;
        line-height: 65px;
        margin: 0 9px;
        border: none;
    }
	
	.vertical-nav .mini-menu > ul li a i:before {
        font-size: 1.250em;
    }
	
	.vertical-nav .logo {
        float: left;
 
    }
	
	.vertical-nav.menu-active .logo {
        display: none;
    }
	
	.vertical-nav .toggle-menu {
	    display: block;
    }
    
    /*=========== Home ============*/
	.home .home-intro {
        margin-left: 1vw;
    }
	
	.home .home-intro h1 {
        font-size: 2.5em;
    }
	
	.home .home-intro h3,
	.home .home-intro p {
        font-size: 1.250em;
    }

    /*=========== About Me ============*/
    .about-me .about-image {
		margin-right: 40px;
        margin-left: 40px;
        margin-bottom: 40px;
    }
	
	.about-me .about-info h3 {
         font-size: 1.250em;
    }
	
	.about-me .about-info > p,
	.about-me .about-info .personal-info p {
		font-size: 1em;
	}
	
	.about-me .about-info .personal-info .about-item h4 {
        font-size: 1em;
		letter-spacing: 0;
    }
	
	.about-me .about-info .personal-info .about-item h4:before {
        left: 84px;
    }
	
	.about-me .about-info .personal-info .about-item h4:after {
        left: 109px;
    }
	
	.about-me .about-info .personal-info .about-item span {
        left: 124px;
        font-size: 1em;
        letter-spacing: 0;
    }
	
    /*=========== Services ============*/
	.services .main-title h2 {
		font-size: 1.5em;
	}
	
	.services .service.two,
	.services .service.three {
        background: #191a1b;
        border-bottom-color: #262627;
        box-shadow: none;
    }
	
	.services .service:hover {
       background: transparent;
       border-bottom-color: #908045;
       box-shadow: 0 0 20px rgba(0, 0, 0, .12);
   }
	
    /*=========== Skills ============*/
	.skills .main-title h2 {
		font-size: 1.5em;;
	}
	
	.skills .progress-container h4 {
		font-size: 1em;
	}
   
	/*=========== Resume ============*/
	.resume {
		padding-bottom: 30px;
	}
	
	.resume .main-title h2 {
		font-size: 1.5em;
	}
	
	.resume .resume-content {
		padding: 0;
		border: none;
	}
	
	.resume .resume-item {
		padding: 25px 15px;
	}
	
	.resume .resume-item .resume-date {
        min-width: 163px;
        padding-left: 29px;
        font-size: 1em;
        margin-left: -70px;
    }
	
	.resume .resume-item .resume-date i {
        left: 10px;
        font-size: 1.25em;
    }
	
	.resume .resume-item span {
        letter-spacing: 0;
        font-size: 1em;
    }
	
	.resume .resume-item h4 {
		font-size: 1em;
		color: #908045;
	}
	
	.resume .resume-item p {
		font-size: 1em;
	}
	
    /*=========== Blog ============*/
	.blog .post .post-content .post-date,
	.blog .post .post-content .post-title h4 {
		font-size: 1.250em;
		
	}
}
 /*=========== My ============*/
 .self550 img, .self600 img {
border-style: solid;
text-align: center;
width: 120px;
height: 120px;
margin: 5px;
padding: 0px;
border-width:0px;
border-color: #808040;
}
.contahead {
	padding-right:15px;
	padding-left:15px;
	margin-right:auto;
	margin-left:auto
}
.mypad50 { margin: 50px; 
}
.mypadfix { padding-top: 10px;
margin: 10px;
}
.m-top-100 {
padding-top : 100px;
}
 .title, .titless, .titmin {
font-family : "Neutra-Light", Helvetica, Arial, sans-serif;
font-weight : normal;
font-size : 1.5em;
letter-spacing: 1.2pt;
text-align : left;
}
.titless {
font-size : 0.75em;
font-weight : bold;
color : #908045;
}
.titmin {
font-size : 1.5em;
font-weight : normal;
}
 @media (min-width: 992px) and (max-width: 1199.98px) {
.mypad50 { margin: 50px; 
}
.title, .titless, .titmin {
font-family : "Neutra-Demi", Helvetica, Arial, sans-serif;
font-weight : bold;
font-size : 1.5em;
letter-spacing: 1.2pt;
text-align : left;
}
.titless {
font-size : 0.85em;
font-weight : bold;
color : #908045;
}
.titmin {
font-size : 1.2em;
font-weight : normal;
}
}
@media (max-width: 767.98px) {
.mypad50 { margin: 25px; 
}
.title, .titless, .titmin {
font-family : "Neutra-light", Helvetica, Arial, sans-serif;
font-weight : normal;
font-size : 1em;
letter-spacing: 1.2pt;

text-align : left;
}
.titless {
font-size : 0.75em;
font-weight : bold;
color : #dddddd;
}
.titmin {
font-size : 1.2em;
font-weight : normal;
}
}
@media (max-width: 575.98px) {
.mypad50 { margin: 25px; 
}
.title, .titless, .titmin {
font-family : "Neutra-Light", Helvetica, Arial, sans-serif;
font-weight : normal;
font-size : 1em;
letter-spacing: 1.2pt;

text-align : left;
}
.titless {
font-size : 0.75em;
font-weight : bold;
}
.titmin {
font-size : 0.75em;
font-weight : normal;
}
}

@media(min-width:768px) {
    p {
        margin: 0 0 20px;
        font-size: 1.250em;
        letter-spacing : 0.05em;
		line-height: 1.3;
		
			}
}
.big2 {
    font-size: 1.250em;
}

@media(min-width:768px) {
    .big2 {
        font-size: 1.500em;
			}
}

a {
color: #908045;
    	font-size : 0.85em;
    
}

a:hover,
a:focus {
    text-decoration: none;
    
}

.light {
    font-weight: 300;
}

.navbar-custom {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,.3);
    font-family: neutra-demi,Helvetica Neue,Helvetica,Arial,sans-serif;
    background-color: transparent;
}

.navbar-custom .navbar-brand {
    font-size: 1.2em;
}

.navbar-custom .navbar-brand:focus {
    outline: 0;
}

.navbar-custom .navbar-brand .navbar-toggle {
    padding: 4px 6px;
    font-size: 1.2em;
    color: #8D7B42;
}

.navbar-custom .navbar-brand .navbar-toggle:focus,
.navbar-custom .navbar-brand .navbar-toggle:active {
    outline: 0;
}

.navbar-custom a {
    color: #8D7B42;
	font-size: 1.200em;
}

.navbar-custom .nav li a {
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.navbar-custom .nav li a:hover {
    outline: 0;
    color: rgba(255,255,255,.8);
    background-color: transparent;
}

.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:active {
    outline: 0;
    background-color: transparent;
}

.navbar-custom .nav li.active {
    outline: 0;
}

.navbar-custom .nav li.active a {
    background-color: rgba(255,255,255,.3);
}

.navbar-custom .nav li.active a:hover {
    color: #fff;
}


@media(min-width:768px) {
.navbar-custom a {
    color: #8D7B42;
	font-size: 1.500em;
}
  
	.navbar-custom {
        padding: 5px 0;
        border-bottom: 0;
        letter-spacing: 2px;
       
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }

    .navbar-custom.top-nav-collapse {
        padding: 0;
        border-bottom: 1px solid rgba(255,255,255,.3);
       
    }
	.navbar-custom .navbar-brand {
    font-size: 1.25em;
}
.contahead {
	padding-right:100px;
	padding-left:15px;
	margin-right:auto;
	margin-left:auto
}
}
#llinks6 {
	z-index:-1000;
	display: table;
	position:fixed;
	top: 55px;
	left: 0px;
	width: 100%;
    height: 100%;
	background: url(images/intro-bg.jpg) no-repeat bottom;
    background-color: transparent;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
	}
.intro {
    z-index:-1000;
	display: table;
	position:fixed;
	top: 55px;
	left: 0px;
    width: 100%;
    height: auto;
    padding: 0;
    text-align: center;
    color: #fff;
    background: url(images/intro-bg.jpg) no-repeat bottom center scroll;
    
	    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}
#blclo { 
	padding: 0px;
	display : none;
}
.blpage {

width: 100%;
text-align:center;
padding: 0px;
}
.blpage ul {
display : inline;
list-style : none;
}
.blpage li {
border-bottom : 1px dotted #cccccc;
width : 460px;
font-size : 0.75em;
font-family : Verdana, Helvetica;

padding : 10px;
text-align : justify;
}
.blpage li a {
font-style : italic;
color : #202020;
}
.blpage li:hover {
background : #e0e0e0;
color : #202020;
}
.k_float  {
z-index : 9999999;
position : fixed !important ;
position : absolute;
cursor : pointer;
}
#kampylink img {
border : 0;
}
.k_top {
top : 0;
}
.k_bottom {
bottom : 0;
}
.k_right {
right : 0;
}
.k_left {
left : 0;
}
#k_close_button {
color : gray;
border : 0px solid gray;
display : none;
width : 11px;
height : 16px;
font-size : 0.85em;
text-align : center;
}
.kc_top {
top : 80px;
}
.kc_bottom {
bottom : 80px;
}
.kc_right {
right : 10px;
}
.kc_left {
left : 10px;
}