/*-----------------------------------------------------------------
Template Name  : Anwar - One Page Creative Portfolio Template
Author         : HasnaaDesign
Version        : 1.0
Primary Use    : Personal, Porfolio
-----------------------------------------------------------------*/
/*-----------------------------------------------------------------
Table Of Contents
--------------------------------
 1. Global Styles
 2. Loading
 3. Navbar
 4. Home
 5. About Me
 6. Services
 7. Resume
 8. Skills
 9. Portfolio
 10. Fun Facts
 11. Testimonials
 12. Blog
 13. Contact
 14. Footer
 15. Scroll To Top
 16. 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-color: #323232;
}

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: 80px;
    font-weight: 800;
}

h2 {
    font-size: 50px;
    font-weight: 600;
}

h3 {
    font-size: 30px;
    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;
    position: relative;
    display: inline-block;
}

.main-title h2 {    
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 28px;
    letter-spacing: .7px;
    line-height: 1;
    margin: 0;
    padding-bottom: 15px;
}

.main-title h2:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #6d6b6f;
}

.main-title span {
    position: absolute;
    bottom: -9px;
    left: 67%;
    line-height: 1;
    background: #323232;
    padding: 0 4px;
    font-size: 20px;
    color: #16c0f0;
    font-weight: 600;
    letter-spacing: .3px;
}

.display-table {
    display: table;
    width: 100%;
}

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
    height: 100vh;
    min-height: 100%;
}

.main-btn,
.main-btn:focus {
    position: relative;
    display: inline-block;
    min-width: 145px;
    background: #16c0f0;
    color: #fff;
    padding: 14px 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border: none;
    border-radius: 24px;
    outline: none;
    overflow: hidden;
    z-index: 2;
}

.main-btn:before {
    content: "";
    background: linear-gradient(135deg, #319be6 0%, #16c0f0 100%);
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    z-index: -1;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -moz-transform: translate(-50%, -50%) scale(0);
    -o-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    -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;
}

.main-btn:hover:before {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.filtr-item {
    transform-style: initial !important;
}

/* --------------------------------------
   2. Loading
-----------------------------------------*/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #323232;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 999999999;
    opacity: 1;
}

.loading-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.loading-inner {
    display: inline-block;
    height: 60px;
    width: 60px;
    padding: 0px;
}

.loading-inner span {
    width: 60px;
    height: 60px;
    position: absolute;
    display: inline-block;
    border-radius: 100%;
    background: #16c0f0;
    -webkit-animation: preloading 1.6s linear infinite;
    animation: preloading 1.6s linear infinite;
}

.loading-inner span:last-child {
    animation-delay: -0.6s;
    -webkit-animation-delay: -0.6s;
}

@keyframes preloading {
    0% {
        transform: scale(0, 0);
        opacity: 0.6;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@-webkit-keyframes preloading {
    0% {
        -webkit-transform: scale(0, 0);
        opacity: 0.6;
    }

    100% {
        -webkit-transform: scale(1, 1);
        opacity: 0;
    }
}

/* --------------------------------------
   3. Navbar
-----------------------------------------*/

.navbar {
    background: rgba(50, 50, 50, .2);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border: none;
    margin-bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 999;
}

.navbar.active-nav {
    position: fixed;
    background: #323232;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.navbar .menu-toggle {
    position: relative;
    padding: 10px 0;
    float: right;
    z-index: 2;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    display: none;
}

.navbar .menu-toggle .bar {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #16c0f0;
}

.navbar .menu-toggle .bar:first-child {
    width: 14px;
    margin-right: 14px;
}

.navbar .menu-toggle .bar:nth-child(2) {
    margin: 6px 0;
}

.navbar .menu-toggle .bar:last-child {
    width: 14px;
    margin-left: 14px;
}

.navbar.menu-active .menu-toggle {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.navbar.menu-active .menu-toggle .bar:first-child,
.navbar.menu-active .menu-toggle .bar:last-child {
    -webkit-transform: rotate(-90deg) translateY(7px);
    -moz-transform: rotate(-90deg) translateY(7px);
    -ms-transform: rotate(-90deg) translateY(7px);
    -o-transform: rotate(-90deg) translateY(7px);
    transform: rotate(-90deg) translateY(7px);
    margin-right: 0;
    margin-left: 0;
}

.navbar .navbar-brand {
    position: relative;
    height: auto;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: #fff !important;
    padding: 10px 0;
    font-family: 'Montserrat', sans-serif;
}

.navbar .navbar-brand span {
    color: #16c0f0;
}

.navbar .navbar-nav > li > a,
.navbar .navbar-nav > li > a:hover,
.navbar .navbar-nav > li > a:focus {
    color: #fff;
    font-weight: 600;
    padding: 10px 12px;
    letter-spacing: .5px;
    text-transform: capitalize;
    font-family: 'Montserrat', sans-serif;
}

.navbar .navbar-nav > li > a.active {
    color: #16c0f0;
    font-weight: 600;
}

/*=========== Vertical Navigation ============*/
.vertical-nav .toggle-menu {
    position: fixed;
    top: 15px;
    left: 15px;
    padding: 10px 0;
    z-index: 2;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 999999;
}

.vertical-nav .toggle-menu .bar {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #16c0f0;
}

.vertical-nav .toggle-menu .bar:first-child {
    width: 14px;
    margin-right: 14px;
}

.vertical-nav .toggle-menu .bar:nth-child(2) {
    margin: 6px 0;
}

.vertical-nav .toggle-menu .bar:last-child {
    width: 14px;
    margin-left: 14px;
}

.vertical-nav.open .toggle-menu {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.vertical-nav.open .toggle-menu .bar:first-child,
.vertical-nav.open .toggle-menu .bar:last-child {
    -webkit-transform: rotate(-90deg) translateY(7px);
    -moz-transform: rotate(-90deg) translateY(7px);
    -ms-transform: rotate(-90deg) translateY(7px);
    -o-transform: rotate(-90deg) translateY(7px);
    transform: rotate(-90deg) translateY(7px);
    margin-right: 0;
    margin-left: 0;
}

.vertical-nav .mini-menu {
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    width: 60px;
    z-index: 99999;
    margin: auto;
    background-color: #323232;
    border-right: 2px solid #383636;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    padding: 85px 10px;
}

.vertical-nav.open .mini-menu {
    left: 0;
}

.vertical-nav .mini-menu li {
    display: block;
    width: 40px;
    height: 40px;
}

.vertical-nav .mini-menu li a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    border-bottom: 1px solid #383636;
    background: #292929;
}

.vertical-nav .mini-menu li:last-child a {
    border: 1px solid transparent;
}

.vertical-nav .mini-menu li a.active,
.vertical-nav .mini-menu li a:hover {
    background: linear-gradient(135deg, #319be6 0%, #16c0f0 100%);
    color: #fff;
}

.vertical-nav li a:before {
    content: attr(data-name);
    position: absolute;
    top: 50%;
    left: 60px;
    display: block;
    background-color: #16c0f0;
    color: #fff;
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    line-height: 10px;
    padding: 10px 15px;
    border-radius: 4px;
    z-index: 999999;
    -webkit-animation: nameAnimate .6s both;
    animation: nameAnimate .6s both;
    display: none;
}

.vertical-nav li a:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 47px;
    display: block;
    border: 7px solid;
    border-color: transparent #16c0f0 transparent transparent;
    z-index: 999999;
    -webkit-animation: nameAnimate .6s both;
    animation: nameAnimate .6s both;
    display: none;
}

.vertical-nav li a:hover:before,
.vertical-nav li a:hover:after {
    display: block;
}

@-webkit-keyframes nameAnimate {
    0% {
        -webkit-transform: translate(-30px, -75%);
        -moz-transform: translate(-30px, -75%);
        -ms-transform: translate(-30px, -75%);
        -o-transform: translate(-30px, -75%);
        transform: translate(-30px, -75%);
        opacity: 0;
    }
    
    100% {
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
        opacity: 1;
    }
}

@keyframes nameAnimate {
    0% {
        -webkit-transform: translate(-30px, -75%);
        -moz-transform: translate(-30px, -75%);
        -ms-transform: translate(-30px, -75%);
        -o-transform: translate(-30px, -75%);
        transform: translate(-30px, -75%);
        opacity: 0;
    }
    
    100% {
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
        opacity: 1;
    }
}

/* --------------------------------------
   4. Home
-----------------------------------------*/

.home {
    background: url('../images/home.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 h3 {
    color: #c3c0c0;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0;
}

.home .intro h1 {
    color: #fff;
    font-size: 85px;
    margin: 30px 0;
    text-transform: capitalize;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2px;
}

.home .intro p {
    color: #c3c0c0;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0;
    margin-bottom: 50px;
}

.home .intro p span {
    color: #16c0f0;
}

.home .arrow {
    position: absolute;
    bottom: 80px;
    right: 30px;
    font-size: 14px;
    color: #fff;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.home .arrow a {
    position: relative;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.home .arrow a:before {
    content: '\f100';
    font-family: 'FontAwesome';
    position: absolute;
    top: -6px;
    left: -19px;
    font-size: 23px;
    -webkit-animation: arrowmoving .9s linear infinite;
    animation: arrowmoving .9s linear infinite;
}

@keyframes arrowmoving{
    0%{
        -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px);
    }
    50%{
        -webkit-transform: translateX(-8px);
        -ms-transform: translateX(-8px);
        -o-transform: translateX(-8px);
        transform: translateX(-8px);
    }
    100%{
        -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px);
    }
}

/* --------------------------------------
   5. About Me
-----------------------------------------*/

.about-me {
    padding-top: 100px;
    padding-bottom: 100px;
    color: #fff;
}

.about-me .about-image {
    padding: 7px;
    background: linear-gradient(-50deg, rgba(170, 170, 170, .1) 45%, transparent 25%);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.about-me .about-image img {
    position: relative;
    opacity: .7;
}

.about-me .about-image img:hover {
    opacity: 1;
}

.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: .7px;
    line-height: 1.6;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.about-me .about-info h3:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    height: 2px;
    width: 91px;
    background: linear-gradient(135deg, #319be6 0%, #16c0f0 100%);
}

.about-me .about-info p {
    color: #c2c0c3;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 25px;
}

.about-me .about-info .personal-info {
    position: relative;
    background-color: #292929;
    padding: 25px 30px;
    margin-bottom: 25px;
    margin-right: 13px;
}

.about-me .about-info .personal-info p {
    position: relative;
    color: #c2c0c3;
    margin-bottom: 22px;
    padding-left: 37px;
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: .7px;
}

.about-me .about-info .personal-info p span {
    color: #fff;
    background: linear-gradient(135deg, #319be6 0%, #16c0f0 100%);
    width: 30px;
    height: 30px;
    display: inline-block;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    top: -2px;
    left: -4px;
}

.about-me .about-info .personal-info p span:before {
    content: '';
    background: linear-gradient(135deg, #319be6 0%, #16c0f0 100%);
    width: 2px;
    height: 18px;
    position: absolute;
    top: 29px;
    left: 13px;
}

.about-me .about-info .personal-info p:last-of-type {
    margin-bottom: 0;
}

.about-me .about-info .personal-info p:last-of-type span:before {
    content: none;
}

.about-me .about-info .personal-info .social-media {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -12px;
    height: 80%;
    width: 35px;
    background: linear-gradient(135deg, #319be6 0%, #16c0f0 100%);
    text-align: center;
}

.about-me .about-info .personal-info .social-media:before {
    content: '';
    position: absolute;
    top: -15px;
    left: 23px;
    border-right: 12px solid transparent;
    border-top: 6px solid transparent;
    border-bottom: 9px solid #23849e;
}

.about-me .about-info .personal-info .social-media:after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 23px;
    border-right: 12px solid transparent;
    border-bottom: 6px solid transparent;
    border-top: 9px solid #23849e;
}

.about-me .personal-info .social-media a {
    display: block;
    margin: 12px 0;
}

.about-me .about-info .main-btn {
    min-width: 175px;
}

/* --------------------------------------
   6. Services
-----------------------------------------*/

.services {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #292929;
}

.services .main-title span {
    background: #292929;
}

.services .service {
    position: relative;
    text-align: center;
    background: #323232;
    padding: 25px 30px;
}

.services .service .service-icon i {
    background: #323232;
    color: #16c0f0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 22px;
    border: 1px solid #16c0f0;
    border-radius: 50%;
}

.services .service:hover .service-icon i {
    background: #16c0f0;
    color: #fff;
}

.services .service h4 {
    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 p {
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 400;
    color: #c2c0c3;
}

.services .service .service-number {
    position: absolute;
    top: 50%;
    right: -9px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: linear-gradient(135deg, #319be6 0%, #16c0f0 100%);
    color: #fff;
    padding: 10px 5px;
    font-size: 16px;
    font-weight: 600;
}

.services .service .service-number:before {
    content: '';
    position: absolute;
    top: -14px;
    left: 23px;
    border-right: 10px solid transparent;
    border-top: 6px solid transparent;
    border-bottom: 8px solid #23849e;
}

.services .service .service-number:after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 23px;
    border-right: 10px solid transparent;
    border-bottom: 6px solid transparent;
    border-top: 8px solid #23849e;
}

/* --------------------------------------
   7. Resume
-----------------------------------------*/

.resume {
    padding-top: 100px;
    padding-bottom: 100px;
    color: #fff;
}

.resume .education,
.resume .experience {
    padding-left: 60px;
}

.resume .resume-item {
    position: relative;
    padding: 20px;
    margin-bottom: 30px;
    border: 3px solid #383636;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1)
}

.resume .resume-item:last-child {
    margin-bottom: 0;
}

.resume .resume-item:before {
    content: '';
    position: absolute;
    top: 35px;
    left: -29px;
    bottom: -65px;
    width: 4px;
    background: #383636;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1)
}

.resume .resume-item:last-child:before {
    content: none;
}

.resume .resume-item .resume-date {
    position: relative;
    display: inline-block;
    min-width: 175px;
    background: linear-gradient(135deg, #319be6 0%, #16c0f0 100%);
    color: #fff;
    padding: 14px 0;
    padding-left: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    border-radius: 24px;
    margin-left: -70px;
}

.resume .resume-item .resume-date i {
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 18px;
    text-align: center;
    background: #17a1c7;
    border-radius: 50%;
    color: #fff;
}

.resume .resume-item span {
    display: inline-block;
    letter-spacing: 1px;
    color: #c2c0c3;
    margin: 10px;
}

.resume .resume-item h4 {
    font-size: 17px;
    font-weight: 600;
    padding: 15px 0 10px;
    text-transform: capitalize;
    color: #16c0f0;
    opacity: .8;
}

.resume .resume-item p {
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 400;
    color: #c2c0c3;
}

/* --------------------------------------
   8. Skills
-----------------------------------------*/

.skills {
    background: #292929;
    padding-top: 100px;
    padding-bottom: 100px;
}

.skills .main-title span {
    background: #292929;
}

.skills .skills-left h4 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.skills .skills-left p {
    color: #c2c0c3;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 20px;
}

.skills .skills-left .main-btn {
    min-width: 175px;
}

.skills .skills-list h3 {
    position: relative;
    width: 49.5%;
    display: inline-block;
    margin-bottom: 15px;
    -webkit-box-shadow: 0px 8px 12px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 8px 12px rgba(0,0,0,0.1);
    -o-box-shadow: 0px 8px 12px rgba(0,0,0,0.1);
    box-shadow: 0px 8px 12px rgba(0,0,0,0.1);
}

.skills .skills-list h3 a {
    display: inline-block;
    width: 100%;
    padding: 14px 0;
    background: #323232;
    color: #33b9de;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    z-index: 1;
}

.skills .skills-list h3.active a {
    background: #33b9de;
    color: #fff;
}

.skills .skills-list h3:before {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 50%;
    display: block;
    border: 9px solid;
    border-color: #33b9de transparent transparent transparent;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
}

.skills .skills-list h3.active:before {
    bottom: -18px;
    z-index: 1;
}

.skills .skills-content {
    position: relative;
    background: #323232;
    padding: 20px 25px;
}

.skills .skills-content .personal-skills {
    display: none;
}

.skills .skills-content h3 {
    position: absolute;
    top: 18px;
    right: -10px;
    padding: 20px 0;
    width: calc(100% + 12px);
    height: 20px;
    line-height: 1px;
    background: linear-gradient(135deg, #319be6 0%, #16c0f0 100%);
    color: #fff;
    text-transform: capitalize;
    letter-spacing: .3px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    display: none;
}

.skills .skills-content h3:before {
    content: '';
    position: absolute;
    top: -14px;
    right: 0;
    border-right: 10px solid transparent;
    border-top: 6px solid transparent;
    border-bottom: 8px solid #23849e;
}

.skills .skills-content h3:after {
    content: '';
    position: absolute;
    bottom: -14px;
    right: 0;
    border-right: 10px solid transparent;
    border-bottom: 6px solid transparent;
    border-top: 8px solid #23849e;
}

.skills .progress-container {
    margin-bottom: 15px;
}

.skills .progress-container .progress {
    position: relative;
    height: 24px;
    background-color: #363638;
    border-radius: 8px;
    margin-bottom: 0;
}

.skills .progress-container .progress .progress-bar {
    height: 4px;
    border-radius: 8px;
    margin-top: 10px;
    background-color: #16c0f0;
    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 .progress h4 {
    position: absolute;
    top: 0;
    left: 48px;
    display: inline-block;
    padding: 0 63px 0 15px;
    font-size: 13px;
    height: 100%;
    letter-spacing: 1px;
    line-height: 22px;
    border-radius: 20px;
    color: #c2c0c3;
    background: #363638;
    border: 1px solid #33b9de;
    text-align: center; 
}

.skills .progress-container .progress h4 .percent {
    position: absolute;
    top: 0px;
    right: 0px;
    display: inline-block;
    padding: 0 11px;
    line-height: 22px;
    height: 22px;
    border-radius: 20px;
    background: #33b9de;
    color: #2e2e2f;
    border: 1px solid;
    text-align: center; 
}

/* --------------------------------------
   9. Portfolio
-----------------------------------------*/

.portfolio {
    padding-top: 100px;
    padding-bottom: 70px;
}

.portfolio .filter-menu {
    margin-bottom: 40px;
    text-align: center;
}

.portfolio .filter-menu .list-filter {
    display: inline-block;
    margin-bottom: 0;
}

.portfolio .list-filter li {
    display: inline-block;
    margin: 0 14px 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
}

.portfolio .list-filter .active {
    color: #16c0f0;
}

.portfolio .portfolio-content .item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.portfolio .portfolio-content .item:hover img {
    -webkit-transform: rotate(10deg) scale(1.3);
    -moz-transform: rotate(10deg) scale(1.3);
    -o-transform: rotate(10deg) scale(1.3);
    -ms-transform: rotate(10deg) scale(1.3);
    transform: rotate(10deg) scale(1.3);
}

.portfolio .portfolio-content .item:hover .overlay {
    visibility: visible;
    -webkit-transform: perspective(700px) rotateY(0deg);
    -moz-transform: perspective(700px) rotateY(0deg);
    -o-transform: perspective(700px) rotateY(0deg);
    -ms-transform: perspective(700px) rotateY(0deg);
    transform: perspective(700px) rotateY(0deg);
}

.portfolio .portfolio-content .item .overlay { 
    position: absolute;
    top: 0;
    left: 0;
    width: 102%;
    height: 102%;
    visibility: hidden;
    background-color: rgba(50, 50, 50, 0.9);
    -webkit-transform: perspective(700px) rotateY(-90deg);
    -moz-transform: perspective(700px) rotateY(-90deg);
    -o-transform: perspective(700px) rotateY(-90deg);
    -ms-transform: perspective(700px) rotateY(-90deg);
    transform: perspective(700px) rotateY(-90deg);
}

.portfolio .portfolio-content .item .overlay .icon-img {
    position: absolute;
    bottom: 60%;
    left: 50%;
    width: 43px;
    height: 43px;
    line-height: 43px;
    background-color: #16c0f0;
    border: 1px solid #16c0f0;
    color: #fff;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.portfolio .portfolio-content .item .overlay .item-title {
    position: absolute;
    bottom: 43%;
    left: 50%;
    display: inline-block;
    color: #fff;
    margin: 0;
    font-size: 16px;
    letter-spacing: .5px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.portfolio .portfolio-content .item .overlay .item-category span {
    position: absolute;
    bottom: 30%;
    left: 50%;
    color: #16c0f0;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: capitalize;
    display: inline-block;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

/* --------------------------------------
   10. Fun Facts
-----------------------------------------*/

.facts {
    position: relative;
    background: url('../images/facts.jpg') center center no-repeat fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #fff;
    padding-top: 100px;
    padding-bottom: 70px;
}

.facts .overlay {
    background: rgba(0, 0, 0, .75);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.facts .fact-item {
    background: rgba(54, 53, 59, .4);
    text-align: center;
    padding: 20px 10px;
    margin-bottom: 30px;
}

.facts .fact-item .fact-number {
    display: block;
    color: #eee;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 10px;
}

.facts .fact-item h4 {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #319be6 0%, #16c0f0 100%);
    color: #fff;
    padding: 17px 25px 17px 60px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    border-radius: 24px;
}

.facts .fact-item h4:before {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    display: block;
    border: 7px solid;
    border-color: #45a9c5 transparent transparent transparent;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.facts .fact-item h4 span {
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
    line-height: 48px;
    background: #17a1c7;
    color: #fff;
    font-size: 24px;
    text-align: center;
    border-radius: 50%;
}

/* --------------------------------------
   11. Testimonials
-----------------------------------------*/

.testimonials {
    background: #292929;
    padding-top: 100px;
    padding-bottom: 100px;
}

.testimonials .main-title span {
    background: #292929;
}

.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: #323232;
	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: #16c0f0;
}

.testimonials .owl-theme .owl-dots .owl-dot.active span {
    display: inline-block;
    -webkit-transition: all .2s cubic-bezier(.47, 0, .745, .715);
            transition: all .2s cubic-bezier(.47, 0, .745, .715);
    -webkit-animation: pulse .7s infinite cubic-bezier(.66, 0, 0, 1);
            animation: pulse .7s infinite cubic-bezier(.66, 0, 0, 1);
    -webkit-box-shadow: 0 0 0 0 rgba(22, 192, 240, .6);
            box-shadow: 0 0 0 0 rgba(22, 192, 240, .6);
}

@-webkit-keyframes pulse
{
    to
    {
        -webkit-box-shadow: 0 0 0 7px rgba(22, 192, 240, 0);
                box-shadow: 0 0 0 7px rgba(22, 192, 240, 0);
    }
}

@keyframes pulse
{
    to
    {
        -webkit-box-shadow: 0 0 0 7px rgba(22, 192, 240, 0);
                box-shadow: 0 0 0 7px rgba(22, 192, 240, 0);
    }
}

.testimonials .testimonial-box {
	position: relative;
	padding: 50px 40px;
	background: #323232;
    border-left: 12px solid #292929;
    border-right: 12px solid #292929;
    text-align: center;
}

.testimonials .testimonial-box .description {
    position: relative;
}

.testimonials .testimonial-box .description .quote-left {
    position: absolute;
    top: -12px;
    left: -50px;
    background: linear-gradient(135deg, #319be6 0%, #16c0f0 100%);
    color: #fff;
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
}

.testimonials .testimonial-box .description .quote-left:before {
    content: '';
    position: absolute;
    top: -14px;
    right: 25px;
    border-left: 10px solid transparent;
    border-top: 6px solid transparent;
    border-bottom: 8px solid #23849e;
}

.testimonials .testimonial-box .description .quote-left:after {
    content: '';
    position: absolute;
    bottom: -14px;
    right: 25px;
    border-left: 10px solid transparent;
    border-bottom: 6px solid transparent;
    border-top: 8px solid #23849e;
}

.testimonials .testimonial-box .description .quote-right {
    position: absolute;
    bottom: -12px;
    right: -50px;
    background: linear-gradient(135deg, #319be6 0%, #16c0f0 100%);
    color: #fff;
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
}

.testimonials .testimonial-box .description .quote-right:before {
    content: '';
    position: absolute;
    top: -14px;
    left: 25px;
    border-right: 10px solid transparent;
    border-top: 6px solid transparent;
    border-bottom: 8px solid #23849e;
}

.testimonials .testimonial-box .description .quote-right:after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 25px;
    border-right: 10px solid transparent;
    border-bottom: 6px solid transparent;
    border-top: 8px solid #23849e;
}

.testimonials .testimonial-box .description p {
    color: #c2c0c3;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 0;
}

.testimonials .testimonial-box .client-pic {
    margin-top: 35px;
}

.testimonials .testimonial-box .client-pic img {
	width: 95px;
	height: 95px;
	border-radius: 50%;
	display: inline-block;
	border: 2px solid #3a3838;
    padding: 3px;
    background: #323232;
}

.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: #16c0f0;
    letter-spacing: .7px;
}

/* --------------------------------------
   12. Blog
-----------------------------------------*/

.blog {
    padding-top: 100px;
    padding-bottom: 85px;
    color: #fff;
}

.blog .post {
    margin-bottom: 15px;
    margin-right: 10px;
    height: 270px;
    border: 3px solid #383636;
    border-right: none;
}

.blog .post:hover .post-img img {
    opacity: 1;
    -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:after {
    content: '';
    display: table;
    clear: both;
}

.blog  .post .post-img  {
    float: left;
    width: 40%;
    height: 100%;
    overflow: hidden;
}

.blog  .post .post-img img  {
    opacity: .6;
    width: 100%;
    height: 100%;
}

.blog .post .post-content {
    position: relative;
    float: left;
    width: 60%;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    height: 100%;
}

.blog .post .post-content .post-title h4 {
    color: #16c0f0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: .5px;
    margin: 0 0 5px;
}

.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: #c2c0c3;
}

.blog .post .post-content .post-info li a span {
    color: #c2c0c3;
}

.blog .post .post-content .post-info li a span:hover {
    color: #16c0f0;
}

.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 #3a3939;
    color: #c2c0c3;
    font-size: 14px;
}

.blog .post-content .post-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    background: #292929;
    padding: 25px 15px;
}

.blog .post-content .post-footer .post-more {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.blog .post-content .post-footer .post-more:hover {
    color: #16c0f0;
}

.blog .post-content .post-footer .post-more i {
    margin-left: 4px;
}

.blog .post-content .post-footer .post-category a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
    background: linear-gradient(135deg, #319be6 0%, #16c0f0 100%);
    color: #fff;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.blog .post-content .post-footer .post-category a:before {
    content: '';
    position: absolute;
    top: -12px;
    right: 0;
    border-right: 10px solid transparent;
    border-top: 6px solid transparent;
    border-bottom: 6px solid #23849e;
}

.blog .post-content .post-footer .post-category a:after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 0;
    border-right: 10px solid transparent;
    border-bottom: 6px solid transparent;
    border-top: 6px solid #23849e;
}

/* --------------------------------------
   13. Contact
-----------------------------------------*/

.contact {
    background: #292929;
    padding-top: 100px;
    padding-bottom: 100px;
}

.contact .main-title span {
    background: #292929;
}

.contact .contact-boxes {
    border: 3px solid #383636;
    padding: 40px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1)
}

.contact .contact-box {
    margin-bottom: 20px;
}

.contact .contact-box .title-box {
    margin-bottom: 20px;
}

.contact .contact-box .title-box h4 {
    position: relative;
    background: linear-gradient(135deg, #319be6 0%, #16c0f0 100%);
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    border-radius: 24px;
}

.contact .contact-box .title-box h4:before {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    display: block;
    border: 7px solid;
    border-color: #45a9c5 transparent transparent transparent;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.contact .contact-box .title-box h4 .icon-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-size: 18px;
    text-align: center;
    background: #17a1c7;
    border-radius: 50%;
    color: #fff;
}

.contact .contact-box .content-box {
    font-size: 13px;
}

.contact .contact-box .content-box p {
    margin-bottom: 0;
    line-height: 20px;
    font-weight: 600;
    color: #c2c0c3;
    letter-spacing: 1px;
    text-align: center;
}

.contact .contact-box .content-box p:last-child {
    margin-top: 3px;
}

.contact .contact-form {
	position: relative;
    border: 3px solid #383636;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    padding: 40px 30px;
}

.contact .contact-form .form-group {
    position: relative;
    margin-bottom: 40px;
}

.contact .contact-form .form-group .form-control {
    background-color: #292929;
    color: #fff;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    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 label {
    position: absolute;
    top: 13px;
    left: 12px;
    width: 100%;
    margin-bottom: 0;
    font-weight: 400;
    cursor: text;
    color: #c2c0c3;
}

.contact .contact-form .form-group .form-control:focus ~ label,
.contact .contact-form .form-group input:not([value=""]) ~ label,
.contact .contact-form .form-group textarea:not([data-value=""]) ~ label {
    top: -16px;
    left: 0;
    font-size: 13px;
    letter-spacing: .5px;
}

.contact .contact-form .form-group .form-control:focus ~ label {
    color: #16c0f0;
}

.contact .contact-form .form-group .input-border {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #16c0f0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.contact .contact-form .form-group .form-control:focus ~ .input-border {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.contact .contact-form .contact-btn {
    font-weight: 600;
    letter-spacing: 1.5px;
    outline: none;
}

.contact .contact-form .contact-btn:hover {
    color: #fff;
}

.contact .contact-form .form-message {
    position: absolute;
    left: 0;
    bottom: -72px;
    width: 100%;
    color: #fff;
    border-radius: 5px;
    font-size: 15px;
    padding: 12px;
    text-transform: uppercase;
}

.contact .contact-form .form-message.success {
	background-color: #37983b;
}

.contact .contact-form .form-message.error {
	background-color: #f54033;
}

/* --------------------------------------
   14. Footer
-----------------------------------------*/

.footer {
    background-color: #323232;
    padding: 35px 0;
    color: #fff;
}

.footer .logo {
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.footer .logo span {
    color: #16c0f0;
}

.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;
    border-radius: 50%;
}

.footer .footer-social-icons li a:hover {
    background: linear-gradient(135deg, #319be6 0%, #16c0f0 100%);
    color: #fff;
}

.footer .copyright p {
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.8;
    margin: 0;
}

.footer .copyright p a {
    color: #16c0f0;
}

/* --------------------------------------
   15. Scroll To Top
-----------------------------------------*/

.scroll-top {
    background: linear-gradient(135deg, #319be6 0%, #16c0f0 100%);;
    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;
}

/* --------------------------------------
   16. 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: 3vw;
    }
    
    /*=========== Services ============*/
    .services .service h4 {
        font-size: 15px;
        letter-spacing: .7px;
    }
    
    /*=========== Fun Facts ============*/
    .facts .fact-item h4 {
        display: block;
        padding: 16px 20px 16px 40px;
        letter-spacing: 0;
    }
    
    .facts .fact-item h4 span {
        width: 45px;
        height: 45px;
        line-height: 45px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    
    .main-title h2 {
        font-size: 26px;
    }
    
    .main-title span {
        font-size: 18px;
    }
    
    /*=========== 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 {
        padding: 10px;
    }
    
    /*=========== Home ============*/
    .home .intro h1 {
        font-size: 75px;
    }
    
    /*=========== About Me ============*/
    .about-me .about-image {
        margin-right: 110px;
        margin-left: 110px;
        margin-bottom: 40px;
    }
    
    /*=========== Services ============*/
    .services {
        padding-bottom: 70px;
    }
    
    .services .service {
        margin-bottom: 30px;
    }
    
    /*=========== Resume ============*/
    .resume .education {
        margin-bottom: 30px;
    }
    
    /*=========== Skills ============*/
    .skills .skills-left {
        margin-bottom: 30px;
    }
    
    /*=========== Fun Facts ============*/
    .facts .fact-item h4 {
        padding: 17px 30px 17px 65px;
    }
    
    /*=========== Blog ============*/
    .blog .post .post-content .post-text p {
        padding-top: 11px;
        margin: 11px 0 0;
        font-size: 13px;
    }
}

/* Small Devices */
@media (max-width: 767.98px) {
    
    .main-title h2 {
        font-size: 26px;
    }
    
    .main-title span {
        font-size: 18px;
    }
    
    .container {
        max-width: 540px;
    }
    
    /*=========== Navbar ============*/
    .navbar {
        background-color: #323232;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }
    
    .navbar .navbar-header {
        margin: 0;
    }
    
    .navbar .menu-toggle {
        display: block;
    }
    
    .navbar .navbar-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        visibility: hidden;
        background: rgba(0, 0, 0, .4);
    }
    
    .navbar .navbar-links .navbar-nav {
        background: #323232;
        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;
        box-shadow: 0 6px 10px rgba(0, 0, 0, .1);
    }
    
    .navbar .navbar-links .navbar-nav > li.nav-brand a {
        display: inline-block;
        position: relative;
        padding: 0;
        border: none;
        font-size: 22px;
        font-weight: 600;
        text-transform: capitalize;
        letter-spacing: 1px;
        font-family: 'Montserrat', sans-serif;
    }
    
    .navbar .navbar-links .navbar-nav > li.nav-brand a span {
        color: #16c0f0;
    }
    
    .navbar .navbar-nav > li {
        border-top: 1px solid #3a3939;
        border-bottom: 1px solid #292929;
        padding: 15px 28px;
    }

    .navbar .navbar-nav > li > a,
    .navbar .navbar-nav > li > a:hover,
    .navbar .navbar-nav > li > a:focus {
        position: relative;
        display: inline-block;
        padding: 0;
        margin: 0;
        letter-spacing: 2px;
    }
    
    .navbar .navbar-nav > li > a:before {
        content: attr(data-name);
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        overflow: hidden;
        color: #16c0f0;
        -webkit-transition: all .5s ease-in-out;
        -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
    }
    
    .navbar .navbar-nav > li:not(.nav-brand) > a:hover:before {
        width: 100%;
    }
    
    .navbar.menu-active .navbar-links {
        visibility: visible;
    }
    
    .navbar.menu-active .navbar-links .navbar-nav {
        left: 0;
    }
    
    /*=========== Home ============*/
    .home .intro h1 {
        font-size: 50px;
    }
    
    /*=========== About Me ============*/
    .about-me {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .about-me .about-image {
        margin-right: 80px;
        margin-left: 80px;
        margin-bottom: 40px;
    }
    
    .about-me .about-info h3 {
        font-size: 18px;
    }
    
    /*=========== Services ============*/
    .services {
        padding-top: 80px;
        padding-bottom: 50px;
    }
    
    .services .service {
        margin-bottom: 30px;
    }
    
    /*=========== Resume ============*/
    .resume {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .resume .education {
        margin-bottom: 30px;
    }
    
    /*=========== Skills ============*/
    .skills {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .skills .skills-left {
        margin-bottom: 30px;
    }
    
    /*=========== Portfolio ============*/
    .portfolio {
        padding-top: 80px;
        padding-bottom: 50px;
    }
    
    /*=========== Fun Facts ============*/
    .facts {
        padding-top: 80px;
        padding-bottom: 50px;
    }
    
    .facts .fact-item {
        margin: 0 50px 30px;
    }
    
    /*=========== Testimonials ============*/
    .testimonials {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    /*=========== Blog ============*/
    .blog {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .blog .post {
        margin-bottom: 20px;
        height: auto;
    }
    
    .blog .post .post-img {
        float: none;
        width: 100%;
        height: auto;
    }
    
    .blog .post .post-content {
        float: none;
        width: 100%;
        padding: 30px 20px 80px;
        height: auto;
    }
    
    .blog .post .post-content .post-text p {
        margin: 15px 0;
    }
    
    /*=========== Contact ============*/
    .contact {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .contact .contact-boxes {
        padding: 40px 90px;
        margin-bottom: 30px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    
    .main-title {
        margin-bottom: 50px;
    }
    
    .main-title h2 {
        font-size: 20px;
    }
    
    .main-title span {
        font-size: 16px;
        left: 60%;
    }
    
    /*=========== Home ============*/
    .home .intro h3 {
        font-size: 20px;
        letter-spacing: .3px;
    }
    
    .home .intro h1 {
        font-size: 42px;
    }
    
    .home .intro p {
        font-size: 20px;
        letter-spacing: .3px;
    }
    
    .home .arrow {
        right: 5px;
    }
    
    /*=========== About Me ============*/
    .about-me .about-image {
        margin: 0;
        margin-bottom: 40px;
    }
    
    .about-me .about-info .main-title {
        margin-bottom: 30px;
    }
    
    .about-me .about-info h3 {
        font-size: 17px;
        margin-bottom: 20px;
    }
    
    .about-me .about-info p {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .about-me .about-info .personal-info {
        margin-bottom: 20px;
    }
    
    .about-me .about-info .personal-info p {
        font-size: 13px;
    }
    
    /*=========== Services ============*/
    .services .service h4 {
        font-size: 14px;
    }
    
    .services .service p {
        font-size: 13px;
    }
    
    /*=========== Resume ============*/
    .resume .resume-item span {
        font-size: 13px;
    }
    
    .resume .resume-item h4 {
        font-size: 15px;
    }
    
    .resume .resume-item p {
        font-size: 13px;
    }
    
    /*=========== Skills ============*/
    
    .skills .skills-left h4 {
        font-size: 18px;
    }
    
    .skills .skills-left p {
        font-size: 13px;
    }
    
    .skills .skills-list {
        display: none;
    }
    
    .skills .skills-content {
        background: none;
        padding: 0;
    }
    
    .skills .skills-content .professional-skills,
    .skills .skills-content .personal-skills {
        display: block;
        padding: 20px 25px;
        padding-top: 80px;
        position: relative;
        background: #323232;
    }
    
    .skills .skills-content h3 {
        display: block;
    }
    
    .skills .progress-container .progress h4 {
        padding: 0 56px 0 15px;
        font-size: 12px;
        letter-spacing: .3px;
    }
    
    .skills .progress-container .progress h4 .percent {
        padding: 0 8px;
    }
    
    /*=========== Fun Facts ============*/
    .facts .fact-item {
        margin: 0;
        margin-bottom: 30px;
    }
    
    /*=========== Testimonials ============*/
    .testimonials .testimonial-box .description p {
        font-size: 13px;
        letter-spacing: .3px;
    }
    
    .testimonials .testimonial-box .client-pic {
        margin-top: 30px;
    }
    
    /*=========== Blog ============*/
    .blog .post .post-content .post-title h4 {
        font-size: 15px;
    }
    
    .blog .post .post-content .post-text p {
        font-size: 13px;
        letter-spacing: .3px;
    }
    
    .blog .post-content .post-footer .post-more {
        font-size: 12px;
    }
    
    .blog .post-content .post-footer .post-category a {
        font-size: 14px;
    }
    
    /*=========== Contact ============*/
    .contact .contact-boxes {
        padding: 40px 20px;
    }
    
}