/*-----------------------------------------------------------------
Template Name  : Pratik - Personal Portfolio HTML Template
Author         : HasnaaDesign
Version        : 1.0
Primary Use    : Personal, Porfolio
-----------------------------------------------------------------*/
/*-----------------------------------------------------------------
Table Of Contents
--------------------------------
 1. Global Styles
 2. Loading
 3. Color Switcher
 4. Navbar
 5. Home
 6. About Me
 7. Skills
 8. Services
 9. Resume
 10. Portfolio
 11. Fun Facts
 12. Testimonials
 13. Blog
 14. Contact
 15. Footer
 16. Scroll To Top
 17. Media Queries
-----------------------------------------------------------------*/

/* --------------------------------------
   1. Global Styles
-----------------------------------------*/

* {
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-image: url(../images/bg-paterns.png);
    background-color: #2c2a2f;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

a,
a:hover,
a:focus,
a:active {
    color: #fff;
    text-decoration: none;
}

/*=========== Typography ============*/
h1 {
    font-size: 50px;
    font-weight: 800;
}

h2 {
    font-size: 40px;
    font-weight: 600;
}

h3 {
    font-size: 20px;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    font-weight: 400;
}

h5 {
    font-size: 16px;
    font-weight: 400;
}

h6 {
    font-size: 15px;
    font-weight: 400;
}

/*=========== My Classes ============*/
.main-title {
    margin-bottom: 60px;
}

.main-title h2 {
    position: relative;
    display: inline-block;
    color: #f5865d;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    margin: 0;
    padding-left: 45px;
    padding-top: 10px;
}

.main-title h2:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 19px;
    right: -79px;
    width: 65px;
    border-top: 2px dotted #46454a;
}

.main-title h2:after {
    content: '';
    display: block;
    position: absolute;
    top: 14px;
    right: -90px;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    border: 3px solid #36353b;
    background: #f5865d;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    box-sizing: content-box;
}

.main-title .holder {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 95px;
    height: 40px;
    border: 1px dotted #46454a;
    background: #36353b;
    border-right: none;
    z-index: -1;
}

.main-title span {
    position: absolute;
    bottom: 2px;
    right: -125px;
    color: #46454a;
    font-size: 17px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.display-table {
    display: table;
    width: 100%;
}

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
    height: 100vh;
    min-height: 100%;
}

.main-btn {
    background: #f5865d;
    color: #fff;
    min-width: 130px;
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    padding: 12px 25px;
    border: 2px solid #f5865d;
    outline: none;
    cursor: pointer;
    z-index: 2;
}

.main-btn:hover {
    background: #36353b;
    border: 2px solid #f5865d;
    color: #f5865d;
}

.my-wave {
    fill: #f5865d;
}

/* --------------------------------------
   2. Loading
-----------------------------------------*/

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2c2a2f;
    z-index: 99999;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-content: center;
    align-items: center;
}

.loading .sk-folding-cube {
    width: 60px;
    height: 60px;
    position: relative;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.loading .sk-folding-cube .sk-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.loading .sk-folding-cube .sk-cube:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5865d;
    -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
    animation: sk-foldCubeAngle 2.4s infinite linear both;
    -webkit-transform-origin: 100% 100%;
    -moz-transform-origin: 100% 100%;
    -o-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}

.loading .sk-folding-cube .sk-cube2 {
    -webkit-transform: scale(1.1) rotateZ(90deg);
    transform: scale(1.1) rotateZ(90deg);
}

.loading .sk-folding-cube .sk-cube3 {
    -webkit-transform: scale(1.1) rotateZ(180deg);
    transform: scale(1.1) rotateZ(180deg);
}

.loading .sk-folding-cube .sk-cube4 {
    -webkit-transform: scale(1.1) rotateZ(270deg);
    transform: scale(1.1) rotateZ(270deg);
}

.loading .sk-folding-cube .sk-cube2:before {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.loading .sk-folding-cube .sk-cube3:before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.loading .sk-folding-cube .sk-cube4:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }
    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }
    90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

@keyframes sk-foldCubeAngle {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }
    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }
    90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

/* --------------------------------------
   3. Color Switcher
-----------------------------------------*/

.switch-button {
    position: fixed;
    top: 30%;
    right: 0;
    width: 50px;
    height: 50px;
    line-height: 58px;
    text-align: center;
    z-index: 9999;
    background: #2c2a2f;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}

.switch-button.hide {
    right: -100%;
}

.switch-button i {
    font-size: 23px;
}

.switched-styles {
    position: fixed;
    top: 30%;
    right: -100%;
    width: 240px;
    z-index: 9999;
    background: #2c2a2f;
    color: #fff;
    padding: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}

.switched-styles.show {
    right: 0;
}

.switched-styles h4 {
    display: inline-block;
    color: #ccc;
    font-size: 14px;
    letter-spacing: .5px;
    line-height: 1;
    font-weight: 600;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 20px;
}

.switched-styles ul {
    margin-bottom: 0;
}

.switched-styles ul li {
    display: inline-block;
    cursor: pointer;
    height: 28px;
    width: 39px;
    border-radius: 14px 0;
    margin: 4px 5px;
}

.switched-styles ul li[data-color="orange"] {
    background-color: #f5865d;
}

.switched-styles ul li[data-color="gold"] {
    background-color: #c79864;
}

.switched-styles ul li[data-color="green"] {
    background-color: #85ad59;
}

.switched-styles ul li[data-color="red"] {
    background-color: #f7645e;
}

.switched-styles ul li[data-color="blue"] {
    background-color: #279af5;
}

.switched-styles ul li[data-color="purble"] {
    background-color: #7b6cd5;
}

.switched-styles ul li[data-color="yellow"] {
    background-color: #f1df44;
}

.switched-styles ul li[data-color="rose"] {
    background-color: #f75fca;
}

.switched-styles .hide-button {
    position: absolute;
    top: 2px;
    right: 10px;
    font-size: 34px;
    cursor: pointer;
    color: #ccc;
}

/* --------------------------------------
   4. Navbar
-----------------------------------------*/

.navbar {
    background-color: transparent;
    border: none;
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 999;
}

.navbar.active-nav {
    background-color: #2c2a2f;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #434247;
}

.navbar .menu-toggle {
    position: relative;
    outline: none;
    cursor: pointer;
    padding: 8px;
    margin: 7px 0;
    display: none;
    float: right;
    z-index: 2;
    background: linear-gradient(120deg, #f5865d 20%, #666 100%);
    border: 1px solid #f5865d;
}

.navbar .menu-toggle .bar {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
}

.navbar .menu-toggle .bar:nth-child(2) {
    margin: 6px 0;
}

.navbar.menu-active .menu-toggle .bar:nth-child(2) {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.navbar.menu-active .menu-toggle .bar:first-child {
    -webkit-transform: translateY(8px) rotate(45deg);
    -moz-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    -o-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}

.navbar.menu-active .menu-toggle .bar:last-child {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -moz-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    -o-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}

.navbar .navbar-brand {
    position: relative;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff !important;
    padding: 15px 0;
    font-family: 'Montserrat', sans-serif;
}

.navbar .navbar-brand .brand-after {
    width: 5px;
    height: 6px;
    position: absolute;
    bottom: 17px;
    right: -8px;
    float: left;
    background: #f5865d;
}

.navbar .navbar-nav > li > a,
.navbar .navbar-nav > li > a:hover,
.navbar .navbar-nav > li > a:focus {
    color: #fff;
    font-weight: 600;
    padding: 13px 0;
    margin: 0 25px 0 5px;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.navbar .navbar-nav > li > a:before {
    position: absolute;
    bottom: 7px;
    content: '';
    width: 100%;
    height: 2px;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -o-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    background: #f5865d !important;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.navbar .navbar-nav > li > a.active {
    color: #f5865d;
}

.navbar .navbar-nav > li > a.active:before {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -o-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

/* --------------------------------------
   5. Home
-----------------------------------------*/

.home {
    background: url('../images/home2.jpg') center center no-repeat fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.home .overlay {
    background-color: rgba(43, 42, 47, .7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home .intro h1 {
    color: #fff;
    font-size: 50px;
    margin: 0 0 30px 0;
    text-transform: capitalize;
    font-weight: 800;
    line-height: 70px;
    position: relative;
    letter-spacing: 3px;
}

.home .intro h3 {
    display: inline-block;
    color: #fff;
    background: rgba(54, 53, 59, .8);
    letter-spacing: 2px;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.95;
    padding: 10px 30px;
    margin: 0;
    margin-bottom: 50px;
}

.home .intro h3 span:first-of-type:before {
    content: none;
}

.home .intro h3 span:before {
    content: "/";
    position: relative;
    top: -1px;
    color: #f5865d;
    padding: 0 16px;
    font-size: 11px;
}

.home .divider {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
}

.home .divider .wave {
    width: 100%;
    height: auto;
}

.home #particles-js {
	position: absolute;
	width: 100%;
	height: 100%;
}

/* --------------------------------------
   6. About Me
-----------------------------------------*/

.about-me {
    padding-top: 120px;
    color: #fff;
}

.about-me .about-image {
    position: relative;
    margin-right: 46px;
    margin-left: 30px;
    margin-bottom: 30px;
}

.about-me .about-image:before {
    content: '';
    position: absolute;
    height: 90%;
    width: 100%;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(to left, rgb(245,  134,  93) 6%, #fff 100%);
    z-index: 1;
    border-radius: 8px;
}

.about-me .about-image:after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    height: 20%;
    width: 15%;
    border-radius: 8px 0;
    border-left: 3px solid rgba(245, 134, 93, .75);
    border-top: 3px solid rgba(245, 134, 93, .75);
}

.about-me .about-image img {
    width: 85%;
    position: relative;
    z-index: 2;
    margin-left: 80px;
    border-radius: 8px;
}

.about-me .about-info .main-title {
    margin-bottom: 40px;
}

.about-me .about-info h3 {
    position: relative;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.62;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.about-me .about-info h3:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    height: 3px;
    width: 82px;
    background: #f5865d;
}

.about-me .about-info p {
    color: #9b9a9c;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 30px;
}

.about-me .about-info p:first-of-type {
    margin-bottom: 10px;
}

.about-me .about-info .personal-info {
    position: relative;
    background-color: #36353b;
    padding: 30px 20px 18px;
    margin-bottom: 30px;
}
.about-me .about-info .personal-info .info-bg {
    position: absolute;
    top: 0;
    right: 23px;
    font-size: 45px;
    color: #f9f2f2;
    opacity: .1;
}

.about-me .about-info .personal-info p {
    position: relative;
    color: #f5865d;
    margin-bottom: 12px;
    padding-left: 12px;
    text-transform: capitalize;
    font-weight: 600;
}

.about-me .about-info .personal-info p:before {
    content: '';
    display: block;
    position: absolute;
    top: 9px;
    left: -3px;
    height: 4px;
    width: 4px;
    border-radius: 50%;
    border: 3px solid #36353b;
    background: #f5865d;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    box-sizing: content-box;
}

.about-me .about-info .personal-info p span {
    color: #9b9a9c;
    font-weight: 400;
    margin-left: 5px;
}

/* --------------------------------------
   7. Skills
-----------------------------------------*/

.skills {
    padding-top: 120px;
}

.skills .skills-content {
    background: #36353b;
    padding: 20px 25px;
}

.skills .skills-content h3 {
    color: #ccc9c9;
    text-transform: capitalize;
    margin-top: 10px;
    margin-bottom: 25px;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
}

.skills .skills-content h3 i {
    display: block;
    color: #9b9a9c;
    font-size: 20px;
    margin-bottom: 8px;
}

.skills .progress-container {
    position: relative;
    margin-bottom: 15px;
}

.skills .progress-container .percent {
    position: absolute;
    top: 0;
    display: inline-block;
    width: 30px;
    height: 20px;
    color: #f5865d;
    background: #46454a;
    text-align: center;
    line-height: 21px;
    font-size: 14px;
    -webkit-transition: all 1.1s ease-in-out;
    -moz-transition: all 1.1s ease-in-out;
    -o-transition: all 1.1s ease-in-out;
    -ms-transition: all 1.1s ease-in-out;
    transition: all 1.1s ease-in-out;   
}

.skills .progress-container .percent:before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color:  #46454a transparent transparent;
    display: block;
}

.skills .progress-container .progress {
    height: 5px;
    background-color: #46454a;
    border-radius: 0;
    margin-bottom: 0;   
}

.skills .progress-container .progress .progress-bar {
    background-color: #f5865d;
    width: 0;
    -webkit-transition: all 1.1s ease-in-out;
    -moz-transition: all 1.1s ease-in-out;
    -o-transition: all 1.1s ease-in-out;
    -ms-transition: all 1.1s ease-in-out;
    transition: all 1.1s ease-in-out;
}

.skills .progress-container h4 {
    margin: 0 0 10px 0;
    font-size: 17px;
    color: #9b9a9c; 
    letter-spacing: 1px;
    font-family: 'Open Sans', sans-serif;
}

/* --------------------------------------
   8. Services
-----------------------------------------*/

.services {
    padding-top: 120px;
}

.services .service {
    margin-bottom: 30px;
    padding: 50px 40px;
    background: #36353b;
    text-align: center;
    overflow: hidden;
}

.services .service:hover{
    -webkit-box-shadow: 0px 8px 14px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 8px 14px rgba(0,0,0,0.1);
    -o-box-shadow: 0px 8px 14px rgba(0,0,0,0.1);
    box-shadow: 0px 8px 14px rgba(0,0,0,0.1);
    position: relative;
    transform: translateY(-6px);
}

.services .service .service-icon {
    color: #f5865d;
    opacity: .8;
    font-size: 30px;
}

.services .service h4 {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    margin-top: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.services .service h4:before {
    content: '';
    position: absolute;
    top: 8px;
    left: -71px;
    width: 55px;
    border-top: 1px dotted rgba(245, 134, 93, .7);
}

.services .service h4:after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: -17px;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    border: 3px solid #36353b;
    background: #f5865d;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    box-sizing: content-box;
}

.services .service p {
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 400;
    color: #9b9a9c;
}

/* --------------------------------------
   9. Resume
-----------------------------------------*/

.resume {
    padding-top: 90px;
}

.resume .timeline {
    position: relative;
    width: 100%;
    z-index: 1;
}

.resume .timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 5px;
    height: 88%;
    background: #36353b;
    display: block;
}

.resume .timeline ul {
    padding: 0;
    margin-bottom: 0;
	list-style: none;
}

.resume .timeline ul li {
    position: relative;
}

.resume .timeline ul li:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 9999;
    top: 9px;
    left: 50%;
    margin-left: -9px;
    height: 9px;
    width: 9px;
    border-radius: 50%;
    border: 5px solid #36353b;
    background: #f5865d;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    box-sizing: content-box;
}

.resume .timeline ul li:after {
    content: '';
    display: table;
    clear: both;
}

.resume .timeline ul li .timeline-content {
    position: relative;
    background: #36353b;
    width: 45%;
    text-align: center;
}

.resume .timeline ul li:nth-child(odd) .timeline-content {
    float: left;
    clear: both;
}

.resume .timeline ul li:nth-child(even) .timeline-content {
    float: right;
    clear: both;
}

.resume .timeline ul li:nth-child(odd) .timeline-content:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 999;
    top: 9px;
    right: -22px;
    border-width: 10px 12px;
    border-style: solid;
    border-color: transparent transparent transparent #f5865d;
}

.resume .timeline ul li:nth-child(even) .timeline-content:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 999;
    top: 9px;
    left: -22px;
    border-width: 10px 12px;
    border-style: solid;
    border-color: transparent #f5865d transparent transparent;
}

.resume .timeline ul li .timeline-content span {
    display: block;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    background: #f5865d;
}

.resume .timeline ul li .timeline-content h4 {
    font-size: 18px;
    margin: 0 15px 15px;
    padding: 15px 0;
    text-transform: capitalize;
    color: #f5865d;
    opacity: .8;
    border-bottom: 1px solid #434247;
}

.resume .timeline ul li .timeline-content p {
    color: #9b9a9c;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
    text-align: left;
    padding: 0 20px 15px;
    margin: 0;
}

/* --------------------------------------
   10. Portfolio
-----------------------------------------*/

.portfolio {
    padding-top: 120px;
}

.portfolio .filter-menu {
    margin-bottom: 40px;
    text-align: center;
}

.portfolio .filter-menu .list-filter {
    display: inline-block;
    margin-bottom: 0;
}

.portfolio .list-filter li {
    position: relative;
    display: inline-block;
    margin: 0 14px 10px;
    padding-bottom: 2px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
}

.portfolio .list-filter li:before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #f5865d;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.portfolio .list-filter .active:before {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.portfolio .list-filter .active {
    color: #f5865d;
}

.portfolio .portfolio-content .item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    height: 470px;
}

.portfolio .portfolio-content .item:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.portfolio .portfolio-content .item .overlay {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: rgba(43, 42, 47, 0.95);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.portfolio .portfolio-content .item:hover .overlay {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.portfolio .portfolio-content .item .overlay .icon-img {
    position: absolute;
    left: 35px;
    top: 45px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    background-color: #2c2a2f;
    border: 1px solid #36353b;
    color: #f5865d;
    font-size: 20px;
    text-align: center;
    border-radius: 4px;
}

.portfolio .portfolio-content .item .overlay .item-title h4 {
    position: absolute;
    bottom: 35px;
    right: 25px;
    color: #f5865d;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* --------------------------------------
   11. Fun Facts
-----------------------------------------*/

.facts {
    padding-top: 90px;
    color: #fff;
}

.facts .fact-item {
    margin-bottom: 30px;
    background: #36353b;
    border: 2px solid #36353b;
    text-align: center;
}

.facts .fact-item span {
    display: block;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

.facts .fact-item h4 {
    background: #2c2a2f;
    margin: 0;
    padding: 18px 14px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    color: #f5865d;
}

/* --------------------------------------
   12. Testimonials
-----------------------------------------*/

.testimonials {
    padding-top: 90px
}

.testimonials .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 20px;
	line-height: .7;
}

.testimonials .owl-theme .owl-dots .owl-dot {
	 outline: none;
}

.testimonials .owl-theme .owl-dots .owl-dot span {
	background: #36353b;
	width: 8px;
	height: 8px;
	margin: 0 7px;
}

.testimonials .owl-theme .owl-dots .owl-dot.active span,
.testimonials .owl-theme .owl-dots .owl-dot:hover span {
	background: #f5865d;
}

.testimonials .owl-theme .owl-dots .owl-dot.active span {
    display: inline-block;
    width: 20px;
    height: 8px;
    -webkit-transition: all .2s cubic-bezier(.47, 0, .745, .715);
            transition: all .2s cubic-bezier(.47, 0, .745, .715);
    -webkit-animation: pulse .75s infinite cubic-bezier(.66, 0, 0, 1);
            animation: pulse .75s infinite cubic-bezier(.66, 0, 0, 1);
    -webkit-box-shadow: 0 0 0 0 rgba(245, 134, 93, .6);
            box-shadow: 0 0 0 0 rgba(245, 134, 93, .6);
}

@-webkit-keyframes pulse
{
    to
    {
        -webkit-box-shadow: 0 0 0 7px rgba(245, 134, 93, 0);
                box-shadow: 0 0 0 7px rgba(245, 134, 93, 0);
    }
}

@keyframes pulse
{
    to
    {
        -webkit-box-shadow: 0 0 0 7px rgba(245, 134, 93, 0);
                box-shadow: 0 0 0 7px rgba(245, 134, 93, 0);
    }
}

.testimonials .testimonial-box {
	position: relative;
	padding: 50px 40px;
	background: #36353b;
    text-align: center;
    overflow: hidden;
}

.testimonials .testimonial-box .client-pic img {
	width: 85px;
	height: 85px;
	border-radius: 50%;
	display: inline-block;
	border: 2px solid #3e3d3d;
	padding: 3px;
	background: #36353b;
}

.testimonials .client-details {
	margin-top: 10px;
}

.testimonials .client-details h6 {
	color: #fff;
    font-size: 16px;
	letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.8;
}

.testimonials .client-details span {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
    color: #f5865d;
}

.testimonials .testimonial-box .description {
    position: relative;
    text-align: left;
}

.testimonials .testimonial-box .description:before {
    content: '\f10d';
    font-family: 'FontAwesome';
    position: absolute;
    color: #b9b9b9;
	top: -33px;
    left: -27px;
    font-size: 30px;
    opacity: .1;
}

.testimonials .testimonial-box .description:after {
    content: '\f10e';
    font-family: 'FontAwesome';
    position: absolute;
    color: #b9b9b9;
	bottom: -33px;
	right: -27px;
    font-size: 30px;
    opacity: .1;
}

.testimonials .testimonial-box .description p {
    color: #9b9a9c;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 0;
}

/* --------------------------------------
   13. Blog
-----------------------------------------*/

.blog {
    padding-top: 120px;
}

.blog .post {
    margin-bottom: 30px;
    background: #36353b;
    position: relative;
}

.blog .post:hover .post-img img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.blog .post-img {
    overflow: hidden;
    position: relative;
}

.blog .post-img .post-category a {
    position: absolute;
    bottom: 40px;
    right: -2px;
    display: inline-block;
    padding: 10px 20px;
    background-color: #36353b;
    letter-spacing: 1px;
    text-align: center;
    color: #f5865d;
}

.blog .post .post-content {
    padding: 20px;
}

.blog .post .post-content .post-title h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: .5px;
    margin: 0 0 5px;
}

.blog .post .post-content .post-title h4:hover {
    color: #f5865d;
}

.blog .post .post-content .post-info {
    margin-bottom: 0;
}

.blog .post .post-content .post-info li {
    display: inline-block;
    font-size: 12px;
    margin-right: 10px;
    color: #9b9a9c;
}

.blog .post .post-content .post-info li a span {
    color: #868080;
}

.blog .post .post-content .post-info li a span:hover {
    color: #f5865d;
}

.blog .post .post-content .post-text p {
    line-height: 1.8;
    font-weight: 400;
    padding-top: 15px;
    margin: 15px 0 0;
    border-top: 1px solid #434247;
    color: #9b9a9c;
    font-size: 14px;
}

.blog .post .post-content .post-more {
    display: inline-block;
    margin: 10px 0 0;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog .post .post-content .post-more:hover {
    color: #f5865d;
}

.blog .post .post-content .post-more i {
    margin-left: 4px;
}

/* --------------------------------------
   14. Contact
-----------------------------------------*/

.contact {
    padding-top: 90px;
}

.contact .contact-box {
    position: relative;
    padding: 40px 30px;
    margin-bottom: 30px;
    background: #36353b;
    overflow: hidden;
}

.contact .contact-box .title-box {
    overflow: hidden;
    margin-bottom: 20px;
}

.contact .contact-box .title-box .icon-box {
    float: left;
    border: 1px solid #434247;
    margin-right: 10px;
    width: 45px;
    height: 45px;
    line-height: 43px;
    background-color: #343338;
    color: #f5865d;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
}

.contact .contact-box .title-box .name-box h4 {
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    line-height: 45px;
    text-transform: uppercase;    
}

.contact .contact-box .content-box {
    font-size: 13px;
}

.contact .contact-box .content-box p {
    margin-bottom: 0;
    line-height: 20px;
    font-weight: 600;
    color: #9b9a9c;
}

.contact .contact-box .number-box {
    position: absolute;
    right: -24px;
    top: -24px;
    width: 74px;
    height: 70px;
    line-height: 70px;
    background: #343338;
    border: 2px dotted #434247;
    color: rgba(185, 185, 185, .1);
    border-radius: 50%;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.contact .contact-box .number-box span {
    position: absolute;
    right: 28px;
    top: 7px;
    font-size: 24px;
}

.contact .contact-form {
    margin-top: 20px;
    background: url('../images/map-img.png') center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;    
}

.contact .contact-form .form-group {
    position: relative;
    margin-bottom: 40px;
}

.contact .contact-form .form-group .form-control {
    background-color: transparent;
    color: #fff;
    border: 0;
    border: 1px solid #5d5c60;
    outline: none;
    box-shadow: none;
    border-radius: 0;
    height: 46px;
    padding: 12px;
}

.contact .contact-form .form-group textarea.form-control {
    height: 120px;
    resize: none;
    padding-top: 18px;
}

.contact .contact-form .form-group .form-control:focus {
    border: 1px solid #f5865d;
}

/* --------------------------------------
   15. Footer
-----------------------------------------*/

.footer {
    background-color: #36353b;
    padding: 30px 0;
    margin-top: 60px;
    color: #fff;
}

.footer .logo {
    display: inline-block;
    position: relative;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.footer .logo span {
    width: 5px;
    height: 6px;
    position: absolute;
    bottom: 7px;
    right: -8px;
    float: left;
    background: #f5865d;
}

.footer .footer-social-icons {
    margin-bottom: 0;
    padding: 10px 0;
}

.footer .footer-social-icons li {
    display: inline-block;
    margin-right: 10px;
}

.footer .footer-social-icons li a {
    display: inline-block;
    font-size: 16px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
}

.footer .footer-social-icons li a:hover {
    color: #f5865d;
}

.footer .copyright p {
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.8;
    margin: 0;
}

.footer .copyright p a {
    color: #f5865d;
}

/* --------------------------------------
   16. Scroll To Top
-----------------------------------------*/

.scroll-top {
    background: #f5865d;
    position: fixed;
    font-size: 20px;
    bottom: -50px;
    right: -70px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    z-index: 999;
}

.scroll-top.active {
    bottom: 30px;
    right: 30px;
}

/* --------------------------------------
   17. Media Queries
-----------------------------------------*/

/* Extra Large Devices */
@media (min-width: 1200px) {}

/* Large devices (desktops, less than 1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    
    /*=========== Navbar ============*/
    .navbar > .container .navbar-brand {
        margin-left: 0;
    }
    
    /*=========== Home ============*/
    .home .intro {
        margin-left: 7vw;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    
    /*=========== Navbar ============*/
    .navbar > .container .navbar-brand {
        margin-left: 0;
    }
    
    .navbar .navbar-nav > li > a,
    .navbar .navbar-nav > li > a:hover,
    .navbar .navbar-nav > li > a:focus {
        margin: 0 12px 0 5px;
    }
    
    /*=========== About Me ============*/
    .about-me .about-image {
        margin-right: 110px;
        margin-left: 110px;
        margin-bottom: 60px;
    }
}

/* Small Devices */
@media (max-width: 767.98px) {
    
    .container {
        max-width: 540px;
    }
    
    /*=========== Navbar ============*/
    .navbar {
        background-color: #2c2a2f;
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #434247;
    }
    
    .navbar .navbar-header {
        margin: 0;
    }
    
    .navbar .menu-toggle {
        display: block;
    }
    
    .navbar .navbar-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        visibility: hidden;
        background: rgba(0, 0, 0, .4);
    }
    
    .navbar .navbar-links .navbar-nav {
        background: #2c2a2f;
        position: absolute;
        top: 0;
        left: -300px;
        width: 265px;
        height: 100%;
        margin: 0;
        overflow: auto;
    }
    
    .navbar .navbar-links .navbar-nav > li.nav-brand {
        padding: 60px 0;
        border-bottom: 1px solid #323233;
    }
    
    .navbar .navbar-links .navbar-nav > li.nav-brand a {
        display: inline-block;
        position: relative;
        padding: 0;
        border: none;
        letter-spacing: 1px;
        font-size: 22px;
        font-weight: 800;
        font-family: 'Montserrat', sans-serif;
    }
    
    .navbar .navbar-links .navbar-nav > li.nav-brand a .brand-after {
        width: 5px;
        height: 6px;
        position: absolute;
        bottom: 2px;
        right: -8px;
        float: left;
        background: #f5865d;
    }

    .navbar .navbar-nav > li > a,
    .navbar .navbar-nav > li > a:hover,
    .navbar .navbar-nav > li > a:focus {
        padding: 15px 28px;
        margin: 0;
    }
    
    .navbar .navbar-nav > li:not(.nav-brand) > a:hover  {
        color: #f5865d;
    }
    
    .navbar .navbar-nav > li > a.active {
        background-color: #fff;
        color: #f5865d;
    }
    
    .navbar .navbar-nav > li > a.active:before {
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        -o-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
    }
    
    .navbar.menu-active .navbar-links {
        visibility: visible;
    }
    
    .navbar.menu-active .navbar-links .navbar-nav {
        left: 0;
    }
    
    /*=========== Home ============*/
    .home .intro h1 {
        font-size: 45px;
        letter-spacing: 2px;
    }
    
    .home .intro h3 {
        padding: 10px 15px;
        padding-right: 0;
    }
    
    .home .intro h3 span {
        padding-right: 15px;
    }
    
    .home .intro h3 span:before {
        display: none;
    }
    
    /*=========== About Me ============*/
    .about-me {
        padding-top: 80px;
    }
    
    .about-me .about-image {
        margin-right: 80px;
        margin-left: 80px;
        margin-bottom: 60px;
    }
    
    .about-me .about-info h3 {
        font-size: 18px;
    }
    
    /*=========== Skills ============*/
    .skills {
        padding-top: 80px;
    }
    
    .skills .skills-content .professional-skills {
        margin-top: 35px;
    }
    
    .skills .skills-content h3 {
        margin-bottom: 20px;
    }
    
    /*=========== Services ============*/
    .services {
        padding-top: 80px
    }
    
    /*=========== Resume ============*/
    .resume {
        padding-top: 50px
    }
    
    .resume .timeline {
        margin-top: 40px;
    }
    
    .resume .timeline:before {
        top: -36px;
    }
    
    .resume .timeline ul li {
        margin-bottom: 48px;
    }
    
    .resume .timeline ul li:before {
        top: -37px;
    }
    
    .resume .timeline ul li:nth-child(even) .timeline-content,
    .resume .timeline ul li:nth-child(odd) .timeline-content {
        width: 100%;
        float: none;
    }
    
    .resume .timeline ul li:nth-child(even) .timeline-content:before,
    .resume .timeline ul li:nth-child(odd) .timeline-content:before {
        top: -19px;
        border-color: transparent transparent #f5865d transparent;
    }
    
    .resume .timeline ul li:nth-child(even) .timeline-content:before {
        left: 50%;
        margin-left: -12px;
    }
    
    .resume .timeline ul li:nth-child(odd) .timeline-content:before {
        right: 50%;
        margin-right: -12px;
    }
    
    /*=========== Portfolio ============*/
    .portfolio {
        padding-top: 32px;
    }
    
    /*=========== Facts ============*/
    .facts {
        padding-top: 50px
    }
    
    /*=========== Testimonials ============*/
    .testimonials {
        padding-top: 50px
    }
    
    /*=========== Blog ============*/
    .blog {
        padding-top: 80px
    }
    
    /*=========== Contact ============*/
    .contact {
        padding-top: 50px
    }    
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    
    .main-title {
        margin-bottom: 50px;
    }
    
    .main-title h2 {
        font-size: 18px;
        padding-left: 22px;
    }
    
    .main-title h2:before {
        right: -52px;
        width: 40px;
    }
    
    .main-title h2:after {
        right: -62px;
    }
    
    .main-title span {
        right: -95px;
    }
    
    /*=========== Home ============*/
    .home .intro h1 {
        font-size: 32px;
        font-weight: 600;
        line-height: 35px;
        letter-spacing: .3px;
    }

    .home .intro h3 {
        padding-left: 10px;
        margin-bottom: 40px;
    }
    
    .home .intro h3 span {
        font-size: 14px;
    }
    
    /*=========== About Me ============*/
    .about-me .about-image {
        margin: 0;
        margin-bottom: 50px;
    }
    
    .about-me .about-image:before,
    .about-me .about-image:after {
        display: none;
    }

    .about-me .about-info .main-title {
        margin-bottom: 30px;
    }
    
    .about-me .about-info h3 {
        font-size: 17px;
    }
    
    .about-me .about-info .personal-info {
        padding: 20px 15px;
    }
    
    /*=========== Skills ============*/
    .skills .skills-content h3 {
        font-size: 18px;
    }
    
    .skills .progress-container h4 {
        font-size: 16px;
    }
    
    /*=========== Services ============*/
    .services .service h4 {
        font-size: 14px;
    }
    
    .services .service h4:before,
    .services .service h4:after {
        display: none;
    }
    
    /*=========== Resume ============*/
    .resume .timeline ul li .timeline-content span {
        font-size: 15px;
    }
    
    .resume .timeline ul li .timeline-content h4 {
        font-size: 17px;
    }
}