/*
Author       : themes_mountain.
Template Name: Quader - Personal Portfolio Template
Version      : 1.0
*/
/*=============================================================
    CSS INDEX
    =============================
    01. GENERAL STYLE (body, link color, section-title, preloader btn, overlay, section-padding etc)
    02. START MENU STYLE
    03. START HOMEPAGE CSS STYLE
    04. START ABOUT ME STYLE
    05. START PORTFOLIO DESIGN
    06. START CONTACT STYLE
    07. START BLOG STYLE
  =============================================================*/
/*
* ----------------------------------------------------------------------------------------
* 01.GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/
body {
color: #fafafa;
font-family: 'Poppins', sans-serif;
font-size: 16px;
font-weight: 300;
line-height: 26px;
background:#111;
overflow-x:hidden;
}
html,
body { height: 100% }
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0px;
  margin-top: 0px;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  font-weight: 400;
}
a {
font-family: 'Poppins', sans-serif;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
a:hover {
    color: #fff;
    text-decoration: none;
}
a:focus {
    outline: none;
    text-decoration: none;
}

p {
  margin-bottom: 0;
}
ul,
li {
    margin: 0;
    padding: 0;
	list-style:none;
}
fieldset {
    border: 0 none;
    margin: 0 auto;
    padding: 0;
}
b, strong {
	font-weight: 600;
}
/*START PRELOADER DESIGN*/
.preloader {
	background:#fff;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;	
}
.spinner {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	font-size: 10px;
	text-indent: -12345px;
	z-index: 10000;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #f0a500;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
.no-padding { padding: 0 }
/*END PRELOADER DESIGN*/
.section-padding { padding: 80px 0 }
/*START SECTION TITLE DESIGN*/
.section-title { margin-bottom: 60px }
.section-title{
	margin: 0 auto;
	width: 100%;
	position: relative;
	padding: 80px 0;
}
.section-title h1 {
	font-size: 60px;
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
	margin: 0;
	text-align: center;
}
.section-title h1 span{color:#f0a500;}
.title_bg {
	font-size: 100px;
	left: 0;
	/* letter-spacing: 10px; */
	line-height: 0.7;
	position: absolute;
	right: 0;
	top: 50%;
	text-transform: uppercase;
	font-weight: 800;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	color: rgba(255, 255, 255, 0.07);
	font-family: Poppins, sans-serif;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
}
@media only screen and (max-width:768px) {
.section-title h1 {font-size:40px;}
.title_bg {font-size:60px;}
}
@media only screen and (max-width:480px) {
.section-title h1 {font-size:30px;}
.title_bg {font-size:40px;}
}
/*END SECTION TITLE DESIGN*/

/*
* ----------------------------------------------------------------------------------------
* 01.END GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/


/*
* ----------------------------------------------------------------------------------------
* 02. START MENU STYLE
* ----------------------------------------------------------------------------------------
*/
.mainmenu-icons {
	display: inline-block;
	cursor: pointer;
background: #f0a500;
	height: 50px;
	width: 50px;
	padding: 15px;
	border-radius:0px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.mainmenu-icons:hover{background: #f0a500;}
.mainmenu-icons span {
    display: block;
    height: 2px;
    background: #fff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;

}

.mainmenu-icons:hover span:nth-child(1),
.mainmenu-icons:hover span:nth-child(3) {
    margin: 0 6px;
}

.mainmenu-icons span:nth-child(2) {
    margin: 7px 0;
}

.off-canvas-boxed-text {
    width: 350px;
    margin-bottom: 30px;
    background: #ccc;
    padding: 10px;
}

.offcanves-menu-overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    content: "";
    background: #000;
    z-index: 3;
    visibility: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.offcanves-menu-overlay.active {
    visibility: visible;
    opacity: .3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
}

.off-canvas-menu {
background:rgba(0,0,0,0.7);
   position: fixed;
    right: -40%;
    top: 0;
    height: 100%;
    width: 35%;
    padding: 40px;
    z-index: 99;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
}
@media only screen and (max-width: 767px) {
.off-canvas-menu {
	width: 100%;
	right: -100%;
}
}
.off-canvas-menu.active {
    right: 0%;
}

.header-top-area {
	position: fixed;
	left: 96%;
	top: 0;
	width: 100%;
	z-index: 9;
	-webkit-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}
@media only screen and (max-width:768px) {
.header-top-area {left: 85%;}
}
@media only screen and (max-width:480px) {
.header-top-area {left:85%;}
}
@media only screen and (max-width:414px) {
.header-top-area {left:85%;}
}
.menu-item-inner ul {
    padding: 0;
    margin: 0;
    margin-left: 0px;
    list-style: none;
    margin-left: 25px;
}

.menu-item-inner ul li a {
	font-size: 24px;
	color: #f1f1f1;
	font-weight: 600;
	margin-bottom: 10px;
	display: block;
	text-transform: capitalize;
	line-height: 40px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.menu-item-inner ul li a:hover{color:#f0a500;}
.menu-bottom-section {
    position: absolute;
    left: 60px;
    bottom: 60px;
}

.menu-item-wrap {
    height: 100%;
    width: 100%;
    display: table;
}

.menu-item-inner {
	display: table-cell;
	vertical-align: middle;
	padding-bottom: 100px;
	padding-top: 100px;
}

.menu-close {
    position: absolute;
    right: 0;
    width: 80px;
    height: 100%;
    border-left: 1px solid #333;
    top: 0;
}

.menu-close i.fa {
    position: absolute;
    left: 0;
    text-align: center;
    width: 100%;
    top: 50%;
    line-height: 40px;
    font-size: 30px;
    margin-top: -20px;
    cursor: pointer;
    color: #fff;
}

.menu-social-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu-social-links ul li {
    display: inline-block;
    margin: 0px 10px;
}

.menu-social-links ul li a {
    display: block;
    color: #fff;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.menu-social-links ul li a:hover{color:#f0a500;}
@media only screen and (max-width:768px) {
.menu-item-inner {padding-top: 0px;}
.menu-item-inner ul li a {
font-size: 18px;
line-height:26px;
}
}
@media only screen and (max-width:480px) {
.menu-item-inner {padding-top: 0px;}
.menu-item-inner ul li a {
font-size: 18px;
line-height:26px;
}
}
/*
* ----------------------------------------------------------------------------------------
* 02.END  MENU STYLE
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 03. START HOMEPAGE CSS STYLE
* ----------------------------------------------------------------------------------------
*/
.home_info{padding-top:90px;}
.home_bg{background:#222;}
.about_me_content{padding:100px 0px 40px 40px;}
@media only screen and (max-width:768px) { 
.about_me_content{padding:30px;}
}
.about_me_content h5 {
	font-weight: 300;
	margin-bottom: 5px;
	display: block;
	text-transform: uppercase;
	font-size: 15px;
}
.about_me_content h3 {
	font-size: 28px;
	font-weight: 800;
	font-style: normal;
	margin-bottom: 15px;
	text-transform: uppercase;
}
.about_me_content h3 span{color:#f0a500;}
@media only screen and (max-width:768px) { 
.about_me_content h3{font-size: 26px;}
}
.about_me_content p{margin-top: 10px;}
.basic-info{margin-bottom: 30px;}
.info_title {
	font-size: 20px;
	margin-bottom: 15px;
	font-weight: 600;
}
.info_title:after {
	content:"";
	background: -o-radial-gradient(left,ellipse,#ddd 0%,rgba(255,255,255,0) 70%);
	background: radial-gradient(ellipse at left,#ddd 0%,rgba(255,255,255,0) 70%);
	display: block;
	height: 2px;
	margin: 5px 0;
	overflow: hidden;
	width: 50%;
}
.about_me_contact_info{padding:20px;margin-top:72px;}
@media only screen and (max-width:768px) { 
.about_me_contact_info{margin-top:0px;}
}
.profile_info {
line-height:32px;
}
.profile_info .th{
	font-weight: 700;
	width: 95px;
	margin-right: 10px;
	text-align: right;
	display: block;
	font-size: 14px;
	float: left;
}
.profile_info .td {
	overflow: hidden;
	display: block;
	font-size: 14px;
}
.h_email .td a{color:#f0a500;}
.h_website .td a{color:#f0a500;}
/*
* ----------------------------------------------------------------------------------------
* 03. END HOMEPAGE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 04. START ABOUT ME STYLE
* ----------------------------------------------------------------------------------------
*/
.about_info_btm{padding-bottom: 60px;}
.info_title {
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 30px;
}
.basic-info{}
.basic-info table tr th {
	font-size: 16px;
	font-weight: 600;
	line-height: 35px;
	text-transform: capitalize;
}
.basic-info table tr td {color:#fff;}
.contact_info{}
.basic-info table tr th{width:120px;}
@media only screen and (max-width:480px) { 
.contact_info{margin-top:60px;}
}
.contact_info p {
	line-height: 36px;
}
/*START SKILLS*/
.skill-ptop{margin-top:60px;}
@media only screen and (max-width:480px) { 
.skill-ptop {margin-top: 0px;}
}
.cat_title {
	padding-bottom: 60px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 28px;
	margin-bottom: 0px;
}
.skill-item {margin-bottom: 60px;}
.skill-item h4 {
	font-size: 20px;
	padding-top: 20px;
	font-weight: 600;
}
.skill-knob{color:#fff!important;}
/*END SKILLS*/

/*START RESUME*/
.timeline_top{margin-top: 60px;padding-bottom: 30px;}
.timeline_title {
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 30px;
}
@media only screen and (max-width:768px) {
.timeline_title {margin-top: 30px;}
}
.single_timeline {
	padding: 20px;
	border-left: 1px solid #333;
	margin-bottom: 30px;
}
.single_timeline h4 {
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 5px;
}
.single_timeline span {
	margin-bottom: 10px;
	display: inline-block;
}
.active_year{
color:#f0a500;
font-weight: 600;
}
.active_company {
	opacity: 0.6;
}
.single_timeline p{}
/*END RESUME*/
/*START COUNTER*/
.counter_feature {
	padding-bottom: 60px;
}
@media only screen and (max-width:480px) { 
.counter_feature {padding-bottom: 0px;}
}
@media only screen and (max-width:480px) { 
.single-project-complete{
border-bottom: 0px;
border-right: 0px;
margin-bottom:30px;
}
}
.single-project-complete{
border-bottom: 1px solid #333;
border-right: 1px solid #333;
text-align: center;  
padding:20px 0;
}
@media only screen and (max-width:480px) { 
.single-project-complete{
border-bottom: 0px;
border-right: 0px;
margin-bottom:30px;
}
}
.brnone{border-right: 0px ;}
.single-project-complete h2 {
font-size: 45px;
font-weight:700;
}
.single-project-complete h2::after {
border-bottom: 1px solid #333;
border-top: 1px solid #333;
content: "";
display: block;
height: 4px;
margin: 20px auto;
width: 70px;
}
.single-project-complete h3 {
font-size: 15px;
font-weight:600;
margin-bottom: 20px;
margin-top: 0;
text-transform: uppercase;
}
/*END COUNTER*/
/*
* ----------------------------------------------------------------------------------------
* 04.END ABOUT ME STYLE
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 05.START PORTFOLIO DESIGN
* ----------------------------------------------------------------------------------------
*/
.work_info{padding-bottom:50px;}
.grid {
  overflow: hidden;
}
.grid .mix {
    display: none;
    opacity: 0;
    filter: alpha(opacity=0);
}
.box{
    overflow: hidden;
    -webkit-perspective: 800px;
            perspective: 800px;
    position: relative;
	margin-bottom:30px;
}
.box:after{
    content: "";
    width: 100%;
    height: 100%;
    background:rgba(0,0,0,0.6);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
    -webkit-transform-origin: 50% -50% 0;
        -ms-transform-origin: 50% -50% 0;
            transform-origin: 50% -50% 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.box:hover:after{
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    visibility: visible;
    opacity: 1;
}
.box img{
    width: 100%;
    height: auto;
}
.box .box-content{
    width: 100%;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    -webkit-transform: translate(0%, 0%);
        -ms-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.box:hover .box-content{
    opacity: 1;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
        -ms-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
}
.box .box-content a {
	color: #f0a500;
	margin-top: 10px;
	background: #fff;
	width: 50px;
	height: 50px;
	line-height: 50px;
	display: inline-block;
	border-radius: 30px;
	font-size: 18px;
	-webkit-transition:0.2s;
	-o-transition:0.2s;
	transition:0.2s;
}
.box .box-content a:hover{
background:#f0a500;
color:#fff;
}
.box .title {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	margin-top: 0;
	text-transform: uppercase;
}
.box .post{
color: #fff;
font-size: 18px;
text-transform: capitalize;
}
.box .icon li{
    display: inline-block;
    margin-right: 5px;
    position: relative;
    -webkit-transition: all 0.5s ease 0.3s;
    -o-transition: all 0.5s ease 0.3s;
    transition: all 0.5s ease 0.3s;
}
.box .icon li:first-child{ left: -40%; }
.box .icon li:last-child{ right: -40%; }
.box:hover .icon li:first-child{ left: 0; }
.box:hover .icon li:last-child{ right: 0; }

@media only screen and (max-width:990px){
    .box{ margin-bottom: 30px; }
}

/*project modal*/
.modal-title {
	color: #333;
	margin: 0;
	text-transform: uppercase;
	font-weight: 600;
}
.modal-content {
    padding: 10px 30px;
    border-radius: 0px;
}
.modal-body { margin-bottom: 15px }
.modal-body p { margin: 15px 0 0;color: #444; }
.project-list { margin-top: 30px }
.project-list label {
	color: #233142;
	margin-bottom: 0;
	margin-right: 0;
	width: 120px;
}
.project-list li {
    padding: 7px 0;
    font-size: 14px;
	color: #444;
}
.project-list li a {
    color: #233142;
    margin-bottom: 0;
    margin-right: 7px;
    width: 125px;
	
}
.project-list li a:hover { color: #f0a500; }
/*End project modal*/
/*
* ----------------------------------------------------------------------------------------
* 05.END PORTFOLIO DESIGN
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 06. START CONTACT STYLE
* ----------------------------------------------------------------------------------------
*/
.contact_top_btm{padding-bottom:60px;}
.contact {
padding-bottom: 60px;
}
.contact input {
	background: none;
	border: 1px solid #333;
	border-radius: 30px;
	-webkit-box-shadow: none;
	        box-shadow: none;
	color: #fff;
	font-size: 16px;
	height: 50px;
	padding: 10px;
	width: 100%;
	font-family: 'poppins', sans-serif;
	padding-left: 30px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.contact textarea {
	background: none;
	border: 1px solid #333;
	border-radius: 30px;
	-webkit-box-shadow: none;
	        box-shadow: none;
	color: #fff;
	font-size: 16px;
	padding: 10px;
	width: 100%;
	font-family: 'poppins', sans-serif;
	padding-left: 30px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.contact input:focus {
background: none;
border: 1px solid #f0a500;
color: #fff;
    -webkit-box-shadow: none;
            box-shadow: none;
    outline: 0 none;
}
.contact textarea:focus {
background: none;
border: 1px solid #f0a500;
color: #fff;
    -webkit-box-shadow: none;
            box-shadow: none;
    outline: 0 none;
}
.btn-contact-bg {
	border-radius: 30px;
	color: #fff;
	outline: medium none !important;
	padding: 15px 27px;
	text-transform: capitalize;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	background: #f0a500;
	font-weight: 600;
	font-family: 'poppins', sans-serif;
	cursor: pointer;
}
.btn-contact-bg:hover,
.btn-contact-bg:focus {
    background: #f0a500;
    color: #fff;
}
/*START ADDRESS*/
.single_content{margin-bottom: 30px;}
.single_content h4 {
	margin-bottom: 8px;
	font-size: 20px;
	font-weight: 600;
}
.single_content p{}
.single_address {
	overflow: hidden;
	margin-bottom: 30px;
}
.single_address i {
	background: #f0a500;
	border-radius: 30px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	float: left;
	margin-right: 14px;
}
.single_address h4 {
	font-size: 20px;
	margin-bottom: 0px;
	overflow: hidden;
	font-family: 'Poppins', sans-serif;
}
.single_address p {
	overflow: hidden;
	margin-top: 5px;
}

.map{}
.map iframe{
height:350px;
border:none;
width:100%;
}
/*END ADDRESS*/
/*
* ----------------------------------------------------------------------------------------
* 06.END CONTACT STYLE
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 07.START BLOG STYLE
* ----------------------------------------------------------------------------------------
*/
.blog_info_btm{padding-bottom:30px;}
.single_blog {
	background: #222;
	-webkit-box-shadow:0 0 20px rgba(0, 0, 0, 0.07);
	        box-shadow:0 0 20px rgba(0, 0, 0, 0.07);
	margin-bottom:30px;
}
.blog_img { overflow: hidden }
.blog_img img {
    display: block;
    position: relative;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.single_blog:hover .blog_img img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
.blog_content{padding:20px;}
.blog_content p{margin-bottom: 10px;}
.blog_content h3{}
.blog_content h3 a {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 15px;
	display: block;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	line-height: 30px;
	border-bottom: 1px solid #333;
	padding-bottom: 15px;
	color: #fff;
}
.blog_content h3 a:hover{color:#f0a500;}
.blog_content span{font-weight: 400;}
.blog_content span a{color:#fff;}
.blog_content span a:hover{color:#f0a500;}

/*START SINGLE BLOG PAGE DESIGN*/
.blog_single_page{}
.blog_single_page h1 {
	margin-bottom: 30px;
	font-weight: 700;
	line-height: 48px;
}
@media only screen and (max-width:480px) { 
.blog_single_page h1 {
	font-size:26px;
	line-height: 40px;
}
}
.blog_single_page img{margin-bottom:20px;}
.blog_single_page span {
	margin-bottom: 20px;
	display: inline-block;
	margin-right: 20px;
}
.blog_single_page span i{margin-right: 10px;color:#f0a500;}
.blog_single_page p{margin-bottom:20px;}
/*END SINGLE BLOG PAGE DESIGN*/
/*
* ----------------------------------------------------------------------------------------
* 07.END BLOG STYLE
* ----------------------------------------------------------------------------------------
*/

