/*
Template Name: My Profile
Description: HTML5 / CSS3 One Page
Version: 1.0
Author: themehippo.com
*/

/*------------------------------------------------------------------
# [Color codes]

# Body  (text): #3a4750
# Heading Color #444444
# Theme Color (link color) #ff5722
# Mid grey (sub header) #f4f4f4
# -------------------------------------------------------------------*/

/* ---------------------------------

[Table of contents]

1. Body
2. header / .header
3. My Activity / .item-stats
4. Work History / .work-history-wrapper
5. My Specialities / .expertise-wrapper
6. Skills / .skills-wrapper
7. Work Experiance / .section-experience
8. Education / .section-education
9. Marketplace Profile / .section-profile
10. Portfolio / .portfolio-section
11. Recent Reviews / .review-section
12. Contact / .section-contact
13. footer

------------------------------------*/


body {
    font-family : 'Hind', sans-serif;
    font-size   : 15px;
    line-height : 1.8em;
    color       : #989898;
    font-weight : 300;
    background  : #f8f8f8;
    }

/* --------------------------------------
 * Global Typography
 *------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    margin : 0 0 15px;
    color  : #444444;
    }

h1 {
    font-size   : 36px;
    line-height : 1.8em;
    font-weight : 700;
    }

h2 {
    font-size   : 18px;
    line-height : 1.8em;
    font-weight : 700;
    }

h3 {
    font-size   : 13px;
    line-height : 1.8em;
    font-weight : 700;
    }

h4 {
    font-size   : 15px;
    line-height : 1.8em;
    font-weight : 500;
    }

h5 {
    font-size   : 15px;
    line-height : 1.5em;
    font-weight : 500;
    }

h6 {
    font-size   : 15px;
    line-height : 1.5em;
    }

/* --------------------------------------
 * LINK STYLE
 *------------------------------------------*/
a {
    color              : #ff5722;
    text-decoration    : none;
    -webkit-transition : all 0.3s ease 0s;
    -moz-transition    : all 0.3s ease 0s;
    -o-transition      : all 0.3s ease 0s;
    transition         : all 0.3s ease 0s;
    }

a,
a:active,
a:focus,
a:active {
    text-decoration : none;
    outline         : none
    }

a:hover,
a:focus {
    text-decoration : none;
    color           : #ff5722;
    }

p {
    margin-bottom : 20px;
    }

strong {
    color : #444444;
    }

ul {
    margin     : 0;
    padding    : 0;
    list-style : none;
    }

/*------------------
 * Button Style
 *------------------*/
.btn {
    padding        : 14px 30px 11px;
    margin-bottom  : 0;
    font-size      : 14px;
    font-weight    : 500;
    border-radius  : 0;
    border         : 0;
    text-transform : uppercase;
    transition     : all .3s;
    }

.btn-lg {
    font-weight : 700;
    font-size   : 24px;
    padding     : 15px 30px;
    }

/*btn-primary*/
.btn-primary {
    background-color : #ff5722;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 3px 1px 2px #000;
    }

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active:focus {
    background : #de4718;
    }

/*btn-default*/
.btn-default {
    color            : #2a54f5;
    background-color : transparent;
    border           : 2px solid #2a54f5;
    }

.btn-default:hover,
.btn-default:focus,
.btn-default:active:focus {
    background   : #2a54f5;
    color        : #ffffff;
    border-color : #2a54f5;
    }

button:focus,
.btn:focus,
.btn:active:focus {
    outline : none;
    }

#Download-button{
background-color: #fff00000;
border-radius: 5px 5px 5px 5px;
box-shadow: 3px 1px 2px #000;
    }

#Download-button:hover{
background-color: #E91E63;
color: #ffffff;
position: relative;
font-weight: 500;
border-radius: 5px 5px 5px 5px;
box-shadow: 3px 1px 2px #000;
    }



/* --------------------
 *  main Wrapper
 * -------------------*/
#main-wrapper {
    overflow : hidden;
    }

/*-------------------
 * Section Wrapper
 *-------------------*/
.section-wrapper {
    padding : 50px 0;
    }

@media (max-width : 768px) {
    .section-wrapper {
        padding : 20px 0;
        }
    }

@media (max-width : 600px){
    .section-wrapper {
        padding : 20px;
        }
    }

/*---------------------------
 * Section Title
 *---------------------------*/
.section-title {
    margin-right : 30px;
    text-align   : right;
    }

.section-title h2 {
    font-size      : 14px;
    margin-bottom  : 5px;
    color          : #bbbbbb;
    text-transform : uppercase;
    }

@media (max-width: 768px) {
    .section-title{
        text-align: left;
        }
    .section-title h2{
        font-size: 18px;
        margin-bottom: 20px;
        }
    }

/*-----------------------------
 * NAVIGATION & HEADER STYLE
 *-----------------------------*/

.header {
    padding    : 50px 0;
    margin     : 0;
    position   : relative;
    border-top : 5px solid #ff5722;
    }

.header .profile-img {
    margin-right : 30px;
    margin-top: 10px;
    }

.header .name-wrapper {
    margin-bottom : 30px;
    margin-top: 10px;
    }

.header .name-wrapper h1 {
    text-transform : uppercase;
    line-height    : 1;
    margin         : 0 0 5px;
    }

.header .name-wrapper span {
    font-size : 24px;
    color     : #ff5722;
    }

.header .personal-details {
    margin : 10px 0;
    }

.header .personal-details strong {
    font-size   : 13px;
    color       : #444444;
    display     : block;
    line-height : 1;
    }

.header .personal-details small {
    font-size : 12px;
    }

.header .personal-details span {
    color : #989898;
    }

@media (max-width : 768px) {
    .header {
        padding    : 20px 0;
        }

    .header .profile-img {
        margin: 0 0 30px;
        }
    }

@media (max-width : 600px){
    .header{
        padding: 20px;
        }
    }


    /*-------------------
     * Social Icon
     *-------------------*/

.social-icon {
    margin  : 20px 0;
    padding : 0;
    display : block;
    }

.social-icon li {
    display : inline-block;
    margin  : 0 2px;
    }

.social-icon li a {
    display       : block;
    font-size     : 12px;
    color         : #333333;
    width         : 34px;
    height        : 34px;
    line-height   : 33px;
    text-align    : center;
    border-radius : 2px;
    border        : 2px solid #eeeeee;
    }

.social-icon li a:hover {
    border-radius: 50%;
    border-color : #cccccc;
    }

#fa-facebook:hover, #fa-facebook:hover i{
    background-color: blue;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
    }

#fa-twitter:hover, #fa-twitter:hover i{
    background-color: #61F2F5;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
    }

#fa-linkedin:hover, #fa-linkedin:hover i{
    background-color: #3E64FF;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
    }

#fa-instagram:hover, #fa-instagram:hover i{
    background-color: #F34573;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
    }

#fa-envelope:hover, #fa-envelope:hover i{
    background-color: #000;
    border-radius: 50%;
    color: #F7BE16;
    transition: 0.3s;
    }


/*-------------------
 * Expertise
 *-------------------*/
.item-stats .item-stats-value{
    font-size: 18px;
    color: #444;
    font-weight: 500;
    }

.item-stats .item-stats-name{
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1;
    }


@media (max-width: 768px) {
    .item-stats{
        margin-bottom: 30px;
        }
    }

/*-------------------
 * Expertise
 *-------------------*/
.expertise-item {
    margin-bottom : 20px;
    }

.expertise-item h3 {
    text-transform : uppercase;
    margin-bottom  : 5px;
    }

/*-------------------
 * Skills Progressbar
 *-------------------*/

.progress-item {
    position : relative;
    }

.progress-item .progress-title {
    font-size     : 12px;
    font-weight   : 400;
    display       : inline-block;
    margin-bottom : 5px;
    }

.progress-item .progress {
    height        : 2px;
    box-shadow    : none;
    border-radius : 0;
    background    : transparent;
    }

.progress-item .progress-bar {
    background-color : #ff5722;
    box-shadow       : none;
    text-align       : right;
    }

.progress-item .progress-percent {
    font-size        : 10px;
    background-color : #313131;
    position         : absolute;
    top              : 5px;
    padding          : 0 8px;
    border-radius    : 3px;
    }

.progress-item .progress-percent::before {
    content      : "";
    position     : absolute;
    left         : 0;
    bottom       : -4px;
    border-top   : 6px solid #313131;
    border-right : 8px solid transparent;
    }


@media (max-width: 768px) {
    .progress-wrapper{
        margin-bottom: 50px;
        }
    }

/*-------------------
 * Portfolio
 *-------------------*/

.section-wrapper.portfolio-section {
    background-color: #042F4B;
}

.portfolio-item {
    position      : relative;
    display       : block;
    margin-bottom : 30px;
    }

.portfolio-item .portfolio-thumb img {
    border-radius: 50%;
    height    : auto;
    display   : block;
    max-width : 100%;
    }

.portfolio-item #portfolio-item-1 {
    background-color: #007065;
    border-radius: 50%;
  }

.portfolio-item .portfolio-info {
    position   : absolute;
    padding    : 15px 15px 5px;
    bottom     : 0;
    width      : 100%;
    z-index    : 1;
    background : -webkit-linear-gradient(
            top,
            transparent 0%,
            rgba(0, 0, 0, 0.5) 100%
    );
    }

.portfolio-item::after {
    content    : "";
    position   : absolute;
    bottom     : 0;
    top        : 100%;
    left       : 0;
    right      : 0;
    background : -webkit-linear-gradient(
            top,
            transparent 0%,
            #000 100%
    );
    transition : all .2s linear;
    }

.portfolio-item:hover::after {
    top : 0;
    }

.portfolio-item .portfolio-info h3 {
    margin         : 0;
    line-height    : 1;
    color: orangered;
    font-size: 1.5rem;
    font-weight    : 500;
    text-transform : uppercase;
    font-weight: bold;
    visibility: hidden;
    }

    .portfolio-item:hover .portfolio-info h3 {
     visibility: visible;
    }

.portfolio-item .portfolio-info small {
    color : rgba(255, 255, 255, .5);
    visibility: hidden;
    }

.portfolio-item .portfolio-info span {
    color   : yellow;
    }

.portfolio-item:hover .portfolio-info small {
    visibility: visible;
    }


/*-----------------
 * Review
 *-----------------*/

#review .owl-wrapper .owl-item{
    padding-right: 20px;
    }
#review .media-left{
    padding-right: 15px;
    }
#review .media-left img{
    width: 50px;
    border-radius: 3px;
    }

#review .user-name{
    color: #444;
    font-weight: 500;
    font-size: 12px;
    }

#review .user-name span{
    color: orangered;
    visibility: hidden;
    font-size: 8px;
    }

#review:hover .user-name, #review:hover span{
    visibility: visible;
    }

#review .review-text{
    margin: 10px 0;
    }

/* rating */
#review .rating{
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    }

#review .rating::after{
    content: attr(data-star_rating);
    padding: 3px 5px 0;
    color: #444;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    border-radius: 2px;
    margin-left: 5px;
    }

#review .rating-total{
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 80px;
    height: 16px;
    margin-top: -2px;
    }

#review .rating-progress{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    }

#review .rating-progress::after,
#review .rating-progress::before{
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: 80px 16px;
    background-repeat: no-repeat;
    content: "";
    }

#review .rating-progress::before{
    background-image: url("../img/rating-background.svg");
    }

#review .rating-progress::after{
    background-image: url("../img/rating-foreground.svg");
    }

#review .rating-progress.rate-0::after{
    width: 0;
    }

/* Rating Percent */

#review .rating-progress.rate-1::after{
    width: 20%;
    }

#review .rating-progress.rate-2::after{
    width: 40%;
    }

#review .rating-progress.rate-3::after{
    width: 60%;
    }

#review .rating-progress.rate-4::after{
    width: 80%;
    }

#review .rating-progress.rate-5::after{
    width: 100%;
    }

    #review .rating-progress.rate-5-half::after{
    width: 90%;
    }

/* Pagination */

.owl-controls .owl-page{
    display: inline-block;
    }

.owl-controls .owl-page span{
    width: 4px;
    height: 4px;
    background: #000;
    margin-right: 10px;
    display: block;
    border-radius: 100%;
    opacity: .3;
    }

.owl-controls .owl-page.active span{
    opacity: 1;
    box-shadow: 0 0 0 1px #000;
    }


/*-------------------
 * Market Place Profile
 *-------------------*/
.profile-item{
    margin-bottom: 30px;
    }

.profile-item .media-object{
    width: 30px;
    }

.profile-item  a{
    color: #444;
    }

.profile-item  a:hover{
    color: #ff5722;
    }

/*-------------------
 * Content Item
 *-------------------*/

.content-item {
    margin-bottom : 40px;
    }

.content-item h3 {
    margin         : 0 0 10px;
    line-height    : 1;
    font-weight    : bold;
    text-transform : uppercase;
    }

.content-item h4 {
    margin      : 0;
    line-height : 1;
    }

.content-item small {
    color : #888888;
    }

/*-------------------
 * Contact
 *-------------------*/

.section-contact address strong {
    font-size      : 13px;
    text-transform : uppercase;
    }

.feedback-form {
    margin-top : 50px;
    }

/*-------------------
 * Form Style
 *-------------------*/

.form-group label {
    font-weight : normal;
    font-size   : 13px;
    }

.form-control {
    height        : 46px;
    line-height   : 46px;
    padding       : 0 15px;
    color         : #969595;
    border-color  : #f8f8f8;
    border-radius : 0;
    box-shadow    : none;
    box-sizing    : border-box;
    background    : #eeeeee;
    }

.form-control:focus,
.form-control:active {
    box-shadow   : none;
    background   : #ffffff;
    border-color : #000000;
    }

/* --------------------------------------------
 *   Footer
 *---------------------------------------------- */

/* Copyright */

.footer {
    padding : 30px 0;
    text-align : right;
    }

.footer .copyright-section {
    font-size  : 13px;
    }

.footer .copyright-section .copytext {
    font-weight : 400;
    display     : block;
    }

@media (max-width : 768px) {
    .footer {
        text-align: left;
        }
    }

@media (max-width : 600px){
    .footer {
        padding-left: 20px;
        padding-right: 20px;
        }
    }

/* ---------------------------------------------- /*
 * Preloader
/* ---------------------------------------------- */
#preloader {
    background : #ccc;
    bottom     : 0;
    left       : 0;
    position   : fixed;
    right      : 0;
    top        : 0;
    z-index    : 9999;
    }

#status,
.status-mes {
    background-image    : url(../img/puff.svg);
    background-position : center;
    background-repeat   : no-repeat;
    height              : 200px;
    left                : 50%;
    margin              : -100px 0 0 -100px;
    position            : absolute;
    top                 : 50%;
    width               : 200px;
    }

.status-mes {
    background : none;
    left       : 0;
    margin     : 0;
    text-align : center;
    top        : 65%;
    }


#img-responsive{
   border-radius: 5px 5px 5px 5px;
   overflow: hidden;
}

#img-responsive-container, #profile-pic-label{
  border-radius: 5px 5px 5px 5px;
}

.fa-map-marker-alt{
  margin-right: 5px;
  color: #fff;
}


/* EDUCATION &  CAREER*/
#Edu-Expe {
  background-color: #f8ecfd;
  font-size: 15px;
  color: #34314F;
}

.navbar{
  position: fixed;
  top: 0;
  width: 100%;
  height: 50px;
  padding: 0 10px 0 100px;
  box-sizing: border-box;
  transition: 0.5s;
  z-index: 9999;
  margin-bottom: 5%;
}

.navbar.hide{
  transform: translateY(-100%);
}


/*
.navbar ul{
  margin: 0;
  padding: 0;
  display: flex;
  float: right;
  background: rgba(0, 0, 0, 0.5);
}

 .navbar .channel{
  position: relative;
}
.navbar ul li{
  list-style: none;
  line-height: 60px;
  text-align: center;
}

.navbar ul li a {
  display: block;
  padding: 0 15px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 10px;
}

.navbar ul li a:hover, .navbar ul li a.active{
  background: #fd2928;
  color: #fff;
}
*/



/*-------- menu block -----------*/
/* Extra Classes */
.no-margin {
	margin: 0;
}

.no-padding {
	padding: 0;
}

/* Menu */
.navbar-header {
	position:fixed;
	top:0;
	left:0;
	right:0;
	width:100%;
	background:#FFF;
	height:0;
	z-index:9999;
}

.navbar-header.scrolled {
	box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 20px 0px;
}

.navbar-header nav {
	clear:both;
	display: block;
	line-height: 40px;
	height:60px;
	position:relative;
}

.menu-container {
	padding-left:30px;
	padding-right:30px;
}

.grt-menu-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

a.grt-logo {
	display:inline-block;
}

a.grt-logo img {
	max-height: 60px;
    width: auto;
}

.grt-mobile-button {
	display:none;
}

.grt-mobile-button:focus {
	border:0;
	outline:0;
}

.body-overflow {
	overflow:hidden;
}

ul.grt-menu {
	display: block;
	float:right;
	margin:0 -10px 0 0;
	padding:0;
	list-style-type: none;
  text-transform: uppercase;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0 0 5px 5px;
}

ul.grt-menu:after {
	content:"";
	clear:both;
	display:block;
}

ul.grt-menu li {
	display: inline-block;
	margin:0;
	padding:0;
	-webkit-transition: all ease 0.8s;
	-moz-transition: all ease 0.8s;
	transition: all ease 0.8s;
}

ul.grt-menu li a {
	padding: 5px 12px;
	font-size:15px;
	display: inline-block;
	color:#303030;
	line-height: 1.1em;
	box-shadow: inset 0 0 0 0 #FFF;
	-webkit-transition: all ease 0.8s;
	-moz-transition: all ease 0.8s;
	transition: all ease 0.8s;
	position:relative;
	text-decoration: none;
}


ul.grt-menu li.active a:after  {
    position: absolute;
    bottom: 1px;
    content: "";
    left: 12px;
    right: 12px;
    border-bottom: 2px solid #ee2b34;
}

@keyframes fadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}

ul.grt-menu li.grt-dropdown:hover {
	cursor:pointer;
}

ul.grt-menu li.grt-dropdown:hover a {
	box-shadow: none;
}

ul.grt-menu li.grt-dropdown ul.grt-dropdown-list {
	display:none;
	position:absolute;
	background:rgba(0,0,0,0.5);
	margin: 0;
	padding: 0;
  margin-top: -10px;
	min-width:150px;
	animation: fadeIn 0.8s;
	z-index: 999;
  border-radius: 0 0 5px 5px;
}

ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li a:hover {
  background:#00818A;
	animation: fadeIn 0.8s;
}

ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li a {
	display:block;
	font-size:12px;
	color: #FFF;
	-webkit-transition: all ease 0.8s;
	-moz-transition: all ease 0.8s;
	transition: all ease 0.8s;
	padding: 9px 12px;
}

ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li:last-child a {
	padding-bottom:15px;
}

ul.grt-menu li.grt-dropdown.active-dropdown {
	background: #ee2b34;
}

ul.grt-menu li.grt-dropdown.active-dropdown ul.grt-dropdown-list {
	display:block !important;
}

ul.grt-menu li.grt-dropdown.active-dropdown a {
	color:#FFF;
}


/* Desktop only style */
@media (min-width:768px) {

	ul.grt-menu li.grt-dropdown:hover > a + ul.grt-dropdown-list {
		display:block;
		top: calc(100% - 17px);
	}

	ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li {
		display:block;
	}

	ul.grt-menu li.grt-dropdown:hover > a {
		color:#FFF;
		box-shadow: inset 150px 0 0 0 #ee2b34;
	}

	ul.grt-menu li a:hover {
		color:#FFF;
		box-shadow: inset 150px 0 0 0 #ee2b34;
	}
}

/* Tablet only style */
@media (min-width:768px) and (max-width:991px) {
	ul.grt-menu li a {
		font-size:18px;
	}
}

/* Mobile only style */
@media (max-width:767px) {

	.menu-container {
		padding-left: 15px;
		padding-right: 15px;
	}

	.grt-mobile-button {
		display:inline-block;
		position:absolute;
		right:0;
		top:7px;
		background:orangered;
		color:#3d3d3d;
		margin:0;
		padding:0;
		cursor: pointer;
		border: 0;
    border-radius: 5px 5px 5px 5px;
		width:35px;
	}

	.grt-mobile-button .line1, .grt-mobile-button .line2, .grt-mobile-button .line3 {
		width: 30px;
		height: 4px;
		background-color: #333;
		margin: 6px 0;
    margin-left: 2.5px;
		transition: 0.4s;
		display:block;
	}

	ul.grt-menu {
		display:none;
		margin:0;
  		height: 0;
	}

	ul.open-grt-menu {
		position: fixed;
		background: #216583;
		width: 100%;
		left: 0;
		right: 0;
		top: 0;
		height:100%;
		float: none;
		display: flex;
		justify-content: center;
		flex-direction: column;
		text-align: center;
	}

	.grt-mobile-button-open {
		position: fixed;
		z-index:99999;
		right:25px;
		top:25px;
	}

	.grt-mobile-button-open .line1 {
		-webkit-transform: rotate(-45deg) translate(-8px, 5px);
		transform: rotate(-45deg) translate(-8px, 5px);
	}

	.grt-mobile-button-open .line2 {opacity: 0;}

	.grt-mobile-button-open .line3 {
		-webkit-transform: rotate(45deg) translate(-8px, -7px);
		transform: rotate(45deg) translate(-8px, -7px);
	}

	ul.grt-menu li {
		display: block;
		line-height: 3.5em;
	}

	ul.grt-menu li a {
		padding: 6px 10px;
		font-size:20px;
    color: #fff;
	}

	ul.grt-menu li.grt-dropdown ul.grt-dropdown-list {
		width:100%;
		position: relative;
		display:none;
	}

	ul.grt-menu li.grt-dropdown ul.grt-dropdown-list li a {
		display: block;
		font-size: 17px;
	}
}


.grt-mobile-button span.open:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.grt-mobile-button span.open:nth-child(2) {
  transform: rotate(-45deg) translate(5px, -5px)
}

.grt-mobile-button span.open:nth-child(3) {
  opacity: 0
}

@keyframes grt-mobile-button {
  0% {
    transform: translateY(0) rotate(45deg)
  }

  50% {
    transform: translateY(30px) rotate(45deg)
  }

  100% {
    transform: translateY(10px) rotate(45deg)
  }
}
