/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

*{
	margin: 0;
	padding: 0;
}
/*loading*/
#preloader{
	width: 100%;
	height: 100vh;
	background: #000;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}
.dots{
	position: relative;
	top: 50%;
	left: 50%;
    -webkit-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
            transform: translateX(-50px);
}
.dots .dot {
  display: inline-block;
  margin: 0 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #F26649;
  -webkit-animation: dot-dot-dot 1.4s linear infinite;
  -ms-animation: dot-dot-dot 1.4s linear infinite;
  animation: dot-dot-dot 1.4s linear infinite;
}

.dots .dot:nth-child(2) {
   -webkit-animation-delay: .2s;
   -ms-animation-delay: .2s;
        animation-delay: .2s;
}

.dots .dot:nth-child(3) {
    -webkit-animation-delay: .4s;
    -ms-animation-delay: .4s;
         animation-delay: .4s;
}

@-webkit-keyframes dot-dot-dot {
  0%, 60%, 100% {
    -webkit-transform: initial;
      -ms-transform: initial;
        transform: initial;
  }
  30% {
    -webkit-transform: translateY(-25px);
      -ms-transform: translateY(-25px);
        transform: translateY(-25px);
  }
}
@keyframes dot-dot-dot {
  0%, 60%, 100% {
    -webkit-transform: initial;
      -ms-transform: initial;
        transform: initial;
  }
  30% {
    -webkit-transform: translateY(-25px);
      -ms-transform: translateY(-25px);
        transform: translateY(-25px);
  }
}


html{
	text-rendering: optimizeLegibility;
	scroll-behavior: smooth;
}
body {
    font-family: 'Montserrat', sans-serif;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    background: #fff;
    overflow: hidden;
}

#arrow-top{
	color: #fff;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #000;
	border: none;
	outline: none;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	display: none;
}
#arrow-top:hover{
	color: #F26649;
}


/*HEADER SECTION*/
#index-header{
	background: -webkit-gradient(linear,left top, left bottom,from(rgba(0,0,0, .8)),to(rgba(0,0,0, .8))), url(../img/bg.jpg);
	background: -o-linear-gradient(rgba(0,0,0, .8),rgba(0,0,0, .8)), url(../img/bg.jpg);
	background: linear-gradient(rgba(0,0,0, .8),rgba(0,0,0, .8)), url(../img/bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}
/*nav*/
nav{
	padding: 15px 40px;
}
.logo{
	display: inline-block;
	float: left;
}
.logo img{
	height: 30px;
}
.social-icon{
	display: inline-block;
	float: right;
	margin-top: 5px;
}
.social-icon ul li{
	list-style: none;
	display: inline-block;
	padding: 0 5px;
	position: relative;
}
.social-icon ul li a img{
	height: 20px;	
	margin-bottom: 5px;
}
.social-icon ul li::after{
    content: " ";
    width: 0%;
    height: 1px;
    background: white;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}
.social-icon ul li:hover::after{
	width: 100%;
}

/*information*/
.information{
    padding: 40px 0 20px;
}
.profile-img img{
	height: 170px;
	width: 170px;
	border-radius: 50%;
	display: block;
	margin: 10px auto;
	border: 3px solid #fff;
	padding: 5px;
}
.headline{
	text-align: center;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
}
.headline h2{
    font-size: 25px;
    font-weight: 300;
    word-spacing: 5px;
    color: #fff;
}
.headline h1{
    font-size: 45px;
    font-weight: 400;
}
.headline h1:first-child{
	font-weight: 300;
}
.intro{
	width: 60%;
	margin: 0 auto 40px;
	text-align: center;
}
.intro p{
	color: gray;
	font-size: 16px;
	font-weight: 300;
	line-height: 30px;
	font-family: 'Raleway', sans-serif;
}
.intro p span{
	color: #F26649;
}
/*portfolio-nav*/
.portfolio-nav{
   width: 60%;
   margin: 0 auto;
   padding-bottom: 70px;
   text-align: center;
}
.portfolio-nav span{
	background: transparent;
	padding: 6px 12px;
	border: 1px solid #444;
	border-radius: 50px;
	color: #fff;
	cursor: pointer;
	font-size: 14px;
	line-height: 40px; 
	margin-right: 5px;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.portfolio-nav span:hover,
.portfolio-nav span.active{
	border: 1px solid #F26649;
	background: #F26649;
}


/*PORTFOLIO SECTION*/
.portfolio-box{
	position: relative;
	top: -35px;
	width: 100%;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 20px 1fr 20px 1fr;
	grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 253px 250px;
    grid-gap: 20px;
    grid-auto-flow: dense;
}
/*grid*/

.h-1{
  -ms-grid-row-span: 1;
  grid-row: span 1;
}
.h-2{
  -ms-grid-row-span: 2;
  grid-row: span 2;
}


/*portfolio item*/
.portfolio-items{
    position: relative;
    overflow: hidden;
}
.portfolio-box .portfolio-items img{
	width: 100%;
	height: 100%;
	-webkit-transition: all .6s;
	-o-transition: all .6s;
	transition: all .6s;
	-o-object-fit: cover;
	   object-fit: cover;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
}
.portfolio-box .portfolio-items:hover img{
	-webkit-transform: scale(1.2);
	    -ms-transform: scale(1.2);
	        transform: scale(1.2);
}
.portfolio-box .portfolio-items .item-overlay{
	position: absolute;
	background: -webkit-gradient(linear,left top, left bottom,from(rgba(0,0,0, .8)),to(rgba(0,0,0, .8)));
	background: -o-linear-gradient(rgba(0,0,0, .8),rgba(0,0,0, .8));
	background: linear-gradient(rgba(0,0,0, .8),rgba(0,0,0, .8));
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.portfolio-box .portfolio-items:hover .item-overlay{
	opacity: 1;
}
.portfolio-box .overlay-inner{
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.portfolio-box .overlay-inner h3{
	font-size: 25px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	color: #fff;
	-webkit-transform: translateY(-15px);
	    -ms-transform: translateY(-15px);
	        transform: translateY(-15px);
	-webkit-transition: all .6s;
	-o-transition: all .6s;
	transition: all .6s;
}
.portfolio-items:hover .overlay-inner h3,
.portfolio-items:hover .overlay-inner span{
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}
.portfolio-box .overlay-inner span{
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	color: #F26649;
	display: inline-block;
	-webkit-transform: translateY(20px);
	    -ms-transform: translateY(20px);
	        transform: translateY(20px);
	-webkit-transition: all .6s;
	-o-transition: all .6s;
	transition: all .6s;
}

/*view-more-btn*/
.view-more-btn{
	padding: 50px 0 100px;
	width: 100%;
	text-align: center;
}
.view-more-btn a{
	text-decoration: none;
	padding: 8px 25px;
	font-family: 'Raleway', sans-serif;
	font-size: 16px; 
	font-weight: 600;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	border: 1px solid #F26649; 
	background: #F26649; 
	color: #fff;
}
.view-more-btn a:hover{
	border: 1px solid #F26649;
	background: transparent;
	color: #F26649;

}

/*FOOTER SECTION*/
/*footer-top*/
.footer-top{
	background: #F6F6F6;
	padding: 50px 0;
	color: #000;
	font-size: 14px;
	font-family: 'Raleway', sans-serif;
}
.footer-top h4{
	font-size: 18px;
	font-weight: 500;
	padding-bottom: 5px;
	margin-bottom: 20px;
	display: inline-block;
	position: relative;
}
.footer-box h4::before{
	content: " ";
	width: 40px;
	height: 2px;
	background: #6B6B6B;
	position: absolute;
	left: 0;
	bottom: 0;
}
.footer-top .sets span{
	padding: 5px 10px;
	background: #fff;
	border-radius: 50px;
	-webkit-box-shadow: 3px 5px 10px #888888;
	        box-shadow: 3px 5px 10px #888888;
	margin-bottom: 10px;
	margin-right: 5px;
	display: inline-block;
}
.footer-top .software p{
	margin: 5px;
}
.address p span{
	font-weight: 600; 
}

/*FOOTER BOTTOM SECTION*/
footer{
	background: #6B6B6B;
	font-size: 14px;
	padding: 30px 0;
	text-align: center;
}
.copyright p{
    margin: 0px;
}
.copyright p a{
	text-decoration: none;
	color: #F26649;
	letter-spacing: 1px; 
	cursor: pointer;
}
.copyright p a:hover{
	text-decoration: underline;
	color: #F26649;
}



/*======project details header======*/
#project-header{
	background: #000;
}

/*PROJECT DEATILS SECTION*/
.project-details-body{
	padding: 50px 0;
}
.project-details-body h3{
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	color: #000;
	padding-bottom: 20px;
}
.project-details h2{
	font-family: 'Montserrat', sans-serif;
	font-size: 30px;
	color: #000;
	padding: 20px 0;
	font-weight: 600;
}
.project-details .project-img img{
	width: 100%;
}
.details{
	font-size: 14px;
}
.details p{
	color: #000;
}
.details span{
	color: black;
	font-weight: 600;
}
.details ul li{
	list-style: none;
}
.details ul li a{
	text-decoration: none;
	color: #000;
}
a.full-project-btn{
	text-decoration: none;
	color: white;
	padding: 10px 25px;
	background: #000;
	margin-top: 20px;
	display: inline-block;
	border: 1px solid #000;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s
}
.full-project-btn:hover{
	color: #000;
	border: 1px solid #000;
	background: transparent;
}
/*related-project-section*/
.related-project{
   color: #000;
   border: 1px solid #ddd;
   margin-bottom: 20px;
   cursor: pointer;
   -webkit-transition: all .4s;
   -o-transition: all .4s;
   transition: all .4s;
}
.related-project:hover{
	-webkit-box-shadow: 0px 3px 10px #ddd;
	        box-shadow: 0px 3px 10px #ddd;
}
.related-project:hover h2{
	text-decoration: underline;
}
.related-project a{
	text-decoration: none;
}
.related-project img{
	width: 100%;
}
.related-project h2{
   font-size: 20px;
   font-weight: 600;
   padding: 5px 10px;
   color: gray;
   -webkit-transition: all .4s;
   -o-transition: all .4s;
   transition: all .4s;
}
.related-project p{
	padding: 0 10px;
	color: gray;
	font-size: 14px;
}