@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:wght@400;700&display=swap');
* {
	margin:0;
	padding:0;
	box-sizing:border-box;
}
.main-color{
	color:#FF9800;
}
.main-bg {
	background:#FF9800;
}
body {
	font-size:16px;
	line-height:1.5;
	font-family:'raleway', sans-sarif;
	font-weight:500;
}
a {
	text-decoration:none !important;
}
ul {
	list-style:none;
}
html {
  scroll-behavior: smooth;
}
::placeholder {
	font-size:13px;
}
/* keyframes */
@keyframes ani01 {
	0% {
		transform:rotate(0deg);
	}
	100% {
		transform:rotate(360deg)
	}
}
@keyframes ani02 {
	0%, 20%, 50%, 80%, 100% {
		transform:translateY(0)
	}
	40% {
		transform:translateY(-30px)
	}
	60% {
		transform:translateY(-15px)
	}
}
/* header */
header {
	position:absolute;
	left:0;
	top:0;
	width:100%;
	z-index:99;
}
.navbar-brand {
	color:#FF9800;
	font-size:40px;
	font-weight:700;
	letter-spacing:1px;
	font-family: 'Lobster Two', cursive;
}
.navbar-nav li {
	display:inline-block;
}
.navbar-nav li a {
	color:white !important;
	font-size:18px;
	padding: 8px 20px !important;
}
.navbar-nav li a:hover {
	color:#FF9800 !important;
}
/* home section */
.home-section {
	width:100%;
	height:100vh;
	background:url(../img/home-bg.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center;
	display:flex;
	color:white !important;
	position:relative;
	z-index:1;
}
.home-section:after{
	content:'';
	width:100%;
	height:100%;
	background:#000000a6;
	position:absolute;
	z-index:-1;
}
.text {
	margin-bottom:10px;
	font-size:20px;
}
.skills {
	color:#ffb547;
}
.title {
	font-size:60px;
	text-transform:uppercase;
	font-weight:900;
	margin:0;
	letter-spacing:10px;
}
.name {
	font-size:50px;
	font-family: 'Saira', sans-serif;
}
.name span {
	color:#ff4d51;
}
.shape-1 {
	position:absolute;
	width:30px;
	height:30px;
	top:20%;
	right:5%;
	border:2px solid #FF9800;
	animation:ani01 5s linear infinite;
}
.shape-2 {
	position:absolute;
	left:50%;
	bottom:5%;
	margin-left:-15px;
	width:30px;
	height:30px;
	display:block;
	animation:ani02 1.5s ease infinite;
}
.shape-2 img {
	width:100%;
	height:100%;
}
.review {
	width: 450px;
	overflow: hidden;
	margin-left: auto;
}
.client-review {
	background: rgba(255, 255, 255, 0.63);
	float: right;
	border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
}
.cl-face img {
	width: 60px !important;
	height: 60px;
}
.cl-review p{
	font-size: 14px;
	color: #000000;
	position: relative;
	font-style:italic;
}
.cl-review p::before {
	content: '';
	width: 20px;
	height: 20px;
	background: url(../img/icons/inverted-commas.png);
	display: block;
	background-repeat: no-repeat;
	position: absolute;
	left: -7%;
}
.cl-review p::after {
	content: '';
	width: 20px;
	height: 20px;
	background: url(../img/icons/inverted-commas1.png);
	display: block;
	background-repeat: no-repeat;
	position: absolute;
	right: 86px;
    bottom: -5px;
}
.owl-dots {
	text-align: center;
}
.owl-dots .owl-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgb(146, 142, 142) !important;
	margin-right: 7px;
}
.owl-dots .owl-dot.active {
	background: rgb(255, 255, 255) !important;
	
}
/* About section */
.about-title:after {
	content:'';
	width:70px;
	height:3px;
	background:#FF9800;
	display: block;
    margin-top: 2px;
}
.contact-btn:hover {
	border:1px solid #FF9800;
	color:#FF9800 !important;
}
.me {
	position:relative;
}
.me .shape-1 {
    left: 10%;
    top: 10%;
}
/* works section */
.works-title:after {
	content:'';
	width:70px;
	height:3px;
	background:#FF9800;
	display: block;
    margin-top: 2px;
}
.works img {
	filter: grayscale(1);
	height:280px;
}
.works-item {
	position: relative;
	overflow:hidden;
}
.overlay {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#00000091;
	color:white;
	display:flex;
	align-items:center;
	justify-content:center;
	transition:all 0.3s;
}
.works-item:hover .overlay{
	opacity:0;
}
.works-item img {
	width:100%;
	transition:.3s;
}
.works-item:hover img {
	filter: grayscale(0);
	transform:scale(1.1);
}
.works-item .overlay h5 {
	transition:.3s;
}
.works-item .overlay:hover h5{
	transform:translateX(20px);
}
/* progress bar  */

.header {
	width:100%;
}
.bg-overlay {
	background: #00000078;
    height: 100%;
    color: wheat;
}
.pcntr h1  {
	padding-top:30px;
	margin-bottom:50px;
	text-align:center;
}
.progresess {
	display:flex;
	justify-content:space-between;
	text-align:center;
}
.progresess p{
	font-size:20px;
	text-transform:uppercase;
	color:white;
	margin-top:15px;
}
.proggress {
	padding:6px 0;
}
.progress-bar p {
	font-size:20px;
	text-transform:uppercase;
	margin-bottom:0;
}
.percentCount {
	font-size:18px;
	font-weight:700;
}
/* scroll top */
.scroll-top {
	position:fixed;
	bottom:10%;
	right:5%;
	width:40px;
	height:40px;
	z-index:999;
	display:none;
}
.scroll-top img{
	width:100%;
	height:100%;
	opacity:0.7;
	transition:.3s;
}
.scroll-top:hover img {
	opacity:1;
}
/* service section */
.service-item {
	overflow:hidden;
	height: 450px;
	border: 1px solid rgb(201, 199, 199);
	background-size: 100% !important;
}
.service-item:hover {
	background-position-y:100% !important;
	transition: ease-in-out 3s;
	box-shadow: 0px 0px 20px -4px #000000;
}
.sr-box {
	transition: .3s;
}
.sr-box:hover {
	box-shadow: 0px 0px 20px -4px #000000;
}
.project-title {
	margin-top:10px;
}
/* gallery start here */

.gallery {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#00000091;
	z-index:999;
	display:none;
}
.gallery img {
	width: 70%;
    height: 80%;
    transform: translateX(-50%);
    margin: 5% 50%;
}
.gallery .close {
	font-size: 80px;
    position: absolute;
    top: 5%;
    right: 5%;
    color: white;
    line-height: 50px;
	background:transparent;
	border:none;
}
.gallery .close span {
	line-height:0;
}
button.left-arrow {
    position: absolute;
    top: 45%;
    left: 4%;
	color:white;
	font-family: monospace;
    background: transparent;
    transform: scale(2.5);
    border: none;
}

button.right-arrow {
    position: absolute;
    top: 45%;
    right: 4%;
	color:white;
	font-family: monospace;
    background: transparent;
    transform: scale(2.5);
    border: none;
}
/* cover bg */
.cover-bg {
	background:url(../img/contact-bg.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center;
	height:500px;
	width:100%;
}
.cover-title:after {
	content:'';
	width:80px;
	height:3px;
	margin:5px auto;
	background:white;
	display:block;
}
/* form area */
.contact-form { 
	position:relative;
	height:300px;
	
}
form {
	width: 75%;
    left: 50%;
    transform: translateX(-50%);
    padding: 30px;
    position: absolute;
    top: -200px;
    background: white;
    z-index: 99;
	box-shadow: 0px 2px 10px -5px;
}
.submit {
	border:2px solid #FF9800 ;
	transition:.3s;
}
.submit:hover {
	background:white !important;
	color:#FF9800 !important;
}
/* footer */
.socials a{
	padding:0 8px;
	font-size:20px;
}
.socials a img {
	width:20px;
}
/* Media query */
@media only screen and (max-width:767px){
	.gallery img {
		height: 60%;
		margin: 20% 50%;
	} 
	.home-section {
		background-position: 72% 50%;
	}
	.review {
		width: 100%;
		margin-left: 0px;
		margin-top:100px
	}
	.achievs h5 {
		font-size:14px !important;
		font-weight:700;
	}
	.contact-form { 
		height:370px;
	}
}
@media only screen and (max-width:991px){
	
	.navbar-nav {
		background: #000000d1;
		position: absolute;
		width: 100%;
		left: 0;
		top: 0;
		height: 100vh;
		display: flex;
		flex-direction: column;
		justify-content: space-evenly;
		padding: 130px 0;
		align-items: center;
		transform: translateX(-100%);
		opacity: 0;
		transition:0.3s;
	}
	.navbar-toggler {
		z-index:99;
	}
	.navbar-show {
		transform: translateX(0);
		opacity: 1;
	}
	.nav-parent-show {
		display:block !important;
	}
}
