
:root {
	--primaryColorBackground: #CDC2B0;
	--primaryColor: #ffaf00;
	--secondaryColor: #99B898;
	--darkColor: #2A363B;
	--whiteColor: #CDCDCD;
}

@font-face {
	font-family: "Proxima Nova Soft W03 Regular";
	/*--lightFont: "proxima-regular03" !IMPORTANT;*/
	src: url("assets/fonts/proxima-nova/font-face/f1448054f14757d284c064b271c00cc6.eot");
	src: url("assets/fonts/proxima-nova/font-face/f1448054f14757d284c064b271c00cc6.eot?#iefix") format("embedded-opentype"),
	     url("assets/fonts/proxima-nova/font-face/f1448054f14757d284c064b271c00cc6.svg#Proxima Nova Soft W03 Regular") format("svg"),
	     url("assets/fonts/proxima-nova/font-face/f1448054f14757d284c064b271c00cc6.ttf") format("truetype"),
	     url("assets/fonts/proxima-nova/font-face/f1448054f14757d284c064b271c00cc6.woff") format("woff"),
	     url("assets/fonts/proxima-nova/font-face/f1448054f14757d284c064b271c00cc6.woff2") format("woff2");
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: #eaeaea;
	line-height: 1.4;
	font-family:"Proxima Nova Soft W03 Regular" !important;
	display: flex;
	flex-wrap: wrap;
}

.secTitle {
	font-size: 20px;
	color: var(--secondaryColor);
	margin: 40px 10px 30px 10px;
	position: relative;
}

.secTitle::before {
	content: '';
	position: absolute;
	top: 50%;
	right: -10px;
	width: 65%;
	height: 7px;
	background: var(--secondaryColor);
	border-bottom-left-radius: 5px;
	border-top-left-radius: 5px;
}

.sidebar {
	width: 25%;
	padding: 20px 0 20px 0;
	background: #0F2825;
	height: 100vh;
	position: fixed;
	overflow: auto;
	z-index: 999;
}

.sidebar::-webkit-scrollbar {
	width: 7px;
	background: var(--primaryColorBackground);
}

.sidebar::-webkit-scrollbar-thumb {
	width: 5px;
	background: var(--darkColor);
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.sidebar .header {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.sidebar .header img {
	width: 50%;
	border-radius: 50%;
	border-top: 3px solid #0F2825;
	border-left: 3px solid var(--secondaryColor);
	border-bottom: 3px solid var(--secondaryColor);
	border-right: 3px solid #0F2825;
	margin-bottom: 5px;
	position: relative;
}

.sidebar .header h2 {
	width: 100%;
	color: var(--secondaryColor);
	text-align: center;
	font-size: 35px;
}

.sidebar .sub .review {
	margin: 15px 0 15px 0;
}

.sidebar .sub .review .box {
	width: 75%;
	padding: 10px;
	background: var(--darkColor);
	color: var(--whiteColor);
	border-radius: 5px;
	box-shadow: 2px 2px 10px rgba(0,0,0,.5);
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.sidebar .sub .review .box .headerBox {
	display: block;
	margin-top: 15px;
	padding: 5px;
	text-align: center;
	/*position: absolute;
	top: -18px;*/
}

.sidebar .sub .review .box img {
	width: 30%;
	margin: auto;
	margin-bottom: 10px;
	border-radius: 50%;
}

.sidebar .sub .review .box .quotes {
	font-size: 14px;
	letter-spacing: 1px;
}

.sidebar .sub .review .box .companny-name {
	font-size: 12px;
	letter-spacing: 1px;
}

.sidebar .sub .socialMedia .media {
	display: flex;
	justify-content: space-between;
	margin: 20px 10px 0 10px;
}

.sidebar .sub .socialMedia .media a {
	text-decoration: none;
	color: #eaeaea;
	font-weight: bold;
	border-top-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

.sidebar .sub .socialMedia .media .instagram {
	display: block;
	text-align: center;
	padding: 3px;
	width: 28%;
	background: #00b6ffed;
}

.sidebar .sub .socialMedia .media .facebook {
	display: block;
	text-align: center;
	padding: 3px;
	width: 28%;
	background: #0000ffdb;
}

.sidebar .sub .media .pinterest {
	display: block;
	text-align: center;
	padding: 3px;
	width: 28%;
	background: #ff0000;
}

nav {
	position: fixed;
	top: 0;
	right: 0;
	width: 75%;
	height: 70px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--darkColor);
	box-shadow: -3px -5px 15px 1px rgba(0,0,0,.5);
	z-index: 99;
}

nav .hamburger {
    display: none;
}

.sidebar .close {
    display: none;
}

nav .logo img {
	width: 50px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

nav ul {
	display: flex;
	margin-left: 40px;
	justify-content: space-around;
	align-items: center;
	list-style: none;
}

nav ul li p {
	margin: 0 20px 0 20px;
	color: #FFF;
	text-decoration: none;
	cursor: pointer;
	border: none;
	font-size: 14px;
	border-bottom: 0 solid orange;
	transition: .3s;
}

nav ul li:last-child {
	margin-right: 30px;
}

nav ul li.link-nav-active {
	color: #f5a000;
	font-weight: bold;
	border-bottom: 3px solid orange;
}

nav ul li p.active {
	color: #f5a000;
	font-weight: bold;
	border-bottom: 2px solid orange;
}

nav ul li p:hover {
	border-bottom: 2px solid orange;
}

.container {
	width: 75%;
	position: absolute;
	right: 0;
}

.container .tabs.active {
	display: block;
}

.home-tabs {
	display: none;
}

.main-content-home {
	position: absolute;
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100vh;
	right: 0;
	background-image: url(assets/photos/bg1.jpg);
}

.main-content-home .says {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #eaeaea;
}

.hire {
	display: flex;
	margin-top: 15px;
}

.main-content-home .says a {
	display: block;
	width: 120px;
	text-align: center;
	font-size: 18px;
	padding: 5px 0;
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
	background: #f5a000;
	color: #fff;
	text-decoration: none;
}

/*.main-content-home .says a {
	display: block;
	width: 120px;
	text-align: center;
	font-size: 18px;
	padding: 5px 0;
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
	background: linear-gradient(to bottom, #f5a000 100%, #f5a000 100%);
	background-position: 100% 0;
	background-repeat: repeat-x;
	background-size: 70px 70px;
	color: #fff;
	text-decoration: none;
	transition: background-size .2s;
}*/

.fa-camera {
	display: block;
	padding: 10px 0;
	width: 40px;
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
	text-align: center;
	background: purple;
	transition: .2s;
}

.main-content-home .says a:hover {
	background-size: 5px 5px;
}

.main-content-home .says a:hover .fa-camera {
	opacity: 1;
}

.about-tabs {
	display: none;
}

.main-content-about {
	height: 100vh;
	position: relative;
	background-size: cover;
	background-position: center;
	background-image: url(assets/graphics/geometri/gradient-triangle-abstract-background-template-10032405-1710079376651-cover.webp);
}

.about {
	display: flex;
	align-items: center;
	justify-content: space-around;
	height: 250px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.img {
	width: 40%;
	position: relative;
	overflow: hidden;
}

.img .disable-hover {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: transparent;
	z-index: 9999;
	overflow: hidden;
}

.img img {
	width: 100%;
	height: 100%;
	position: relative;
	top: 0;
	/*background-image: url(assets/graphics/geometri/shoot.jpg);
	background-repeat: no-repeat;*/
}

/*.img .profilePic {
	width: 80%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.img .profilePic .photos {
	transition: .5s;
}

.img .profilePic img {
	width: 100%;
	height: 100%;
}

.img .profilePic:hover img {
	transform: rotate(20deg);
	transform: scale(1.1);
}*/

.desc {
	width: 50%;
	height: 100%;
	padding: 0 50px 0 25px;
	background: #f2f2f2;
	position: relative;
	border-bottom-left-radius: 10px;
	opacity: .8;
}

.desc .aboutme {
	font-size: 18px;
	font-weight: bold;
	border: 3px solid salmon;
	margin-bottom: 7px;
	padding: 7px;
}

.desc .about-desc {
	margin-top: 20px;
}

.desc .about-desc span {
	color: var(--primaryColor);
	font-weight: bold;
}

.desc .get-intouch {
	margin-top: 18px;
	display: flex;
}

.desc .get-intouch .contact-me {
	font-size: 12px;
	letter-spacing: 2px;
	text-decoration: none;
	color: #fff;
	background: var(--primaryColor);
	margin-right: 14px;
	padding:  8px 18px 8px 18px;
	border-radius: 7px;
	transition: .3s;
}

.desc .get-intouch .contact-me:hover {
	box-shadow: 0 5px 20px var(--primaryColor);
}

.desc .get-intouch .download-cv {
	color: var(--darkColor);
	font-size: 12px;
	letter-spacing: 2px;
	text-decoration: none;
	margin-right: 14px;
	padding:  8px 18px 8px 18px;
	border-radius: 7px;
	transition: .3s;
}

.project-tabs {
	display: none;
}

.main-content-project {
	min-height: 100vh;
	background: var(--primaryColorBackground);
	overflow: hidden;
}

.main-content-project .section {
	width: 90%;
	margin: 100px auto auto auto;
}

.main-content-project .section h1 {
	margin-bottom: 20px;
	color: #0F2825;
	font-size: 50px;
	font-weight: bold;
	font-family: Times New Roman;
}

.main-content-project .inner-container {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	overflow: hidden;
}

.main-content-project .inner-container .box {
	width: 43%;
	margin-bottom: 50px;
}

.main-content-project .inner-container .box img {
	width: 100%;
	border-radius: 15px;
	/*box-shadow: 0 25px 25px rgba(0,0,0,.3);*/
	transition: .5s;
}

.main-content-project .inner-container .box img:hover {
	box-shadow: 0 15px 25px rgba(0,0,0,.3);
}

.selected-project-tabs {
	display: none;
}

.main-content-selected-project {
	min-height: 100vh;
	background: var(--primaryColorBackground);
	overflow: hidden;
}

.main-content-selected-project h1 {
	margin-bottom: 20px;
	color: #0F2825;
	font-size: 50px;
	font-weight: bold;
	font-family: Times New Roman;
}

.main-content-selected-project .section {
	width: 80%;
	margin: 100px auto auto auto;
}

.main-content-selected-project .section .project {
	overflow: hidden;
	margin-bottom: 25px;
}

.main-content-selected-project .section .project .img-desc img {
	width: 100%;
}

.main-content-selected-project .section .project .img-desc a {
	text-decoration: none;
	display: inline-block;
	margin: 5px 10px 0 0;
}

.main-content-selected-project .section .project .img-desc .fa {
	color: #0F2825;
}

.main-content-selected-project .section .project .img-desc .fa:hover {
	text-shadow: 1px 1px 1px rgba(0,0,0,.7);
}

.contact-tabs {
    display: none;
}


@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    .sidebar.active {
        display: block;
    	width: 70%;
    	padding: 20px 0 20px 0;
    	background: #0F2825;
    	height: 100vh;
    	position: fixed;
    	overflow: auto;
    	z-index: 999;
    }
    .sidebar .close {   
        display: block;
        width: 30px;
        height: 30px;
        border-radius: 50px;
        position: absolute;
        top: 15px;
        right: 15px;
    }
    .sidebar .close i {
        color: white;
    }
    nav {
    	width: 100%;
    	height: 70px;
    }
    .container {
        width: 100%;
    }
    nav ul li:last-child {
    	margin-right: 5px;
    }
    nav .logo img {
        display: none;
    }
    .about {
    	display: flex;
    	align-items: center;
    	justify-content: space-around;
    	height: 530px;
    	position: absolute;
    	top: 50%;
    	transform: translateY(-50%);
    }
    .desc .get-intouch .download-cv {
    	color: var(--darkColor);
    	font-size: 10px;
    	letter-spacing: 2px;
    	text-decoration: none;
    	margin-right: 14px;
    	padding:  6px 16px 6px 16px;
    	border-radius: 7px;
    	transition: .3s;
    }
    nav .hamburger {
        display: block;
    	width: 75px;
    	height: 35px;
    	color: white;
    	background-color: red;
    	border-top-right-radius: 10px;
    	border-bottom-right-radius: 10px;
    }
    nav .hamburger i {
        width: 75px;
    	position: absolute;
    	margin-left: 10px;
    	top: 50%;
    	transform: translateY(-50%);
    }
}

@media (max-width: 379px) {
    .about {
    	height: 550px;
    }
}