/*-----------------------------------------------------------------
Table Of Contents
--------------------------------
 1. Global Styles
 2. Color Switcher
 3. Loading
 4. Navbar
 5. Home
 6. About Me
 7. services
 8. Resume
 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 .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    -ms-transition: all .2s ease;
    transition: all .2s ease;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #282929;
    overflow-x: hidden;
}

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

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

a:hover {
  color: #f7971c;
  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: 40px;
}

.main-title h3 {
    position: relative;
    color: #fff;
    font-weight: 600;
    letter-spacing: .7px;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
    padding: 0 0 10px 37px;
}

.main-title h3:before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 29px;
    height: 2px;
}

.main-title h2 {
    color: #fff;
    font-weight: 600;
    font-size: 30px;
    line-height: 1;
    letter-spacing: .7px;
    margin: 0;
    text-transform: capitalize;
}

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

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

.main-btn {
    position: relative;
    display: inline-block;
    min-width: 155px;
    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;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.main-btn:hover {
    color: #2c2d2d;
}

.todo {
    color: red;
}

/* --------------------------------------
   2. Color Switcher
-----------------------------------------*/

/* .switch-button {
    position: fixed;
    top: 30%;
    right: 0;
    width: 50px;
    height: 50px;
    line-height: 58px;
    text-align: center;
    z-index: 9999;
    background: #282929;
    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: #282929;
    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: 10px;
}

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

.switched-styles ul li {
    display: inline-block;
    cursor: pointer;
	font-size: 33px;
    margin: 0 9px;
}

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

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

.switched-styles ul li[data-color="green"] i {
    color: #6b9839;
}

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

.switched-styles ul li[data-color="blue"] i {
    color: #4d74e6;
}

.switched-styles ul li[data-color="purble"] i {
    color: #8a2be2;
}

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

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

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

/* --------------------------------------
   3. Loading
-----------------------------------------*/

/* .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: #282929;
}

.preloader .loading-inner {
    position: relative;
    left: 50%;
    top: 50%;
    width: 130px;
    height: 130px;
    margin: -65px 0 0 -65px;
    border-radius: 50%;
    border: 3px solid transparent;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.preloader .loading-inner:before,
.preloader .loading-inner:after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

.preloader .loading-inner:after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
} */

/* --------------------------------------
   4. 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: #282929;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    border-radius: 0;
}

.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;
}

.navbar .menu-toggle .bar:first-child {
    width: 14px;
    margin-left: 14px;
}

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

.navbar .menu-toggle .bar:last-child {
    width: 14px;
    margin-right: 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,
.navbar .navbar-brand:hover,
.navbar .navbar-brand:focus {
    height: auto;
    font-size: 23px;
    font-weight: 800;
    text-transform: capitalize;
    letter-spacing: 1px;
    padding: 10px 0;
    font-family: 'Montserrat', sans-serif;
}

.navbar .navbar-nav > li > a,
.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:hover{
    color: #f7971c;
}

.navbar .navbar-nav > li > a.active {
    font-weight: 600;
}

/* --------------------------------------
   5. 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: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(117, 116, 116, .4) 100%);
    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: 80px;
    margin: 30px 0;
    text-transform: capitalize;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2px;
}

.home .intro p {
    position: relative;
    color: #c3c0c0;
    font-size: 22px;
    font-weight: 600;
   /* text-transform: capitalize;*/
    letter-spacing: 1px;
    margin: 0;
    margin-bottom: 50px;
    padding-left: 44px;
}

.home .intro p:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 32px;
    height: 2px;
}

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


.know-more{
    position:relative;
    top:30px;
    font-size:50px;
}
/* --------------------------------------
   6. About Me
-----------------------------------------*/

.about-me {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    color: #fff;
}

.about-me .about-image {
    padding: 7px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.about-me .about-image img {
    opacity: .8;
}

.about-me .about-image img:hover {
    opacity: 1;
}

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

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

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

.about-me .about-info .skills {
    position: relative;
    background-color: #2c2d2d;
    padding: 20px 30px;
    margin-bottom: 25px;
}

.about-me .about-info .skills .skills-inner h4 {
    font-size: 15px;
    margin: 0;
    margin-bottom: 6px;
    letter-spacing: .5px;
    color: #fff;
}

.about-me .about-info .skills .skills-inner p {
    padding-bottom: 22px;
    margin: 0;
}

.about-me .about-info .skills .skills-inner:last-of-type p {
    padding-bottom: 0;
}

.about-me .about-info .skills .skills-inner i {
    font-size: 15px;
}

.about-me .about-info .main-btn {
    min-width: 175px;
}

/* --------------------------------------
   7. services
-----------------------------------------*/

.services {
    position: relative;
    padding-top: 100px;
    padding-bottom: 70px;
    background: #2c2d2d;
}

.services .service {
    position: relative;
	background: #282929;
    text-align: center;
    padding: 25px 8px;
	margin-bottom: 30px;
}

.services .service:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -moz-transform: scale3d(1.1, 1.1, 1.1);
    -o-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    opacity: 0;
    -webkit-transition: all .8s ease-in-out;
    -moz-transition: all .8s ease-in-out;
    -o-transition: all .8s ease-in-out;
    -ms-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
}

.services .service:hover:before {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1;
}

.services .service .service-icon i {
    width: 90px;
    height: 90px;
    line-height: 90px;
    font-size: 50px;
}

.services .service h4 {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 600;
    text-transform: capitalize;
}

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

/* --------------------------------------
   8. Resume
-----------------------------------------*/

.resume {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    color: #fff;
}

.resume .education,
.resume .experience {
    padding-left: 52px;
}

.resume .resume-item {
    position: relative;
	background: #2c2d2d;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-left: 2px solid;
}

.resume .resume-item:last-child {
    margin-bottom: 0;
}

.resume .resume-item:before {
    content: '';
    position: absolute;
    top: 27px;
    left: -18px;
    width: 16px;
    height: 2px;
}

.resume .resume-item h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 10px;
}

.resume .resume-item .resume-date {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    margin: 0;
}

.resume .resume-item span {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .3px;
    color: #a2a2a2;
    margin-left: 4px;
    padding-left: 8px;
    border-left: 1px solid #a2a2a2;
}

.resume .resume-item p {
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 400;
    color: #a2a2a2;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.resume .resume-item li {
    margin-bottom: 0;
    font-weight: 400;
    color: #a2a2a2;
    margin-top: 5px;
}

.resume .resume-item .icon-box {
    position: absolute;
    top: 10px;
    left: -53px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    color: #2c2d2d;
}

/* --------------------------------------
   9. Portfolio
-----------------------------------------*/

.portfolio {
    position: relative;
    padding-top: 100px;
    padding-bottom: 70px;
    background: #2c2d2d;
}

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

.portfolio .filter-menu .list-filter {
    display: inline-block;
    margin-bottom: 0;
    padding: 8px 15px;
    border-radius: 24px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.portfolio .list-filter li {
    display: inline-block;
    padding: 10px 20px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .3px;
    cursor: pointer;
    color: #fff;
    font-size: 13px;
    border-radius: 24px;
    text-transform: uppercase;
}

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

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

.portfolio .portfolio-content .item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(42, 46, 49, .85);
    -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);
    -webkit-transition-duration: .6s;
    -moz-transition-duration: .6s;
    -o-transition-duration: .6s;
    -ms-transition-duration: .6s;
    transition-duration: .6s;
}

.portfolio .portfolio-content .item .overlay .item-title,
.portfolio .portfolio-content .item .overlay .item-category span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    color: #fff;
    margin: 0;
    font-size: 16px;
    letter-spacing: .5px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .45s ease-in-out;
    -moz-transition: all .45s ease-in-out;
    -o-transition: all .45s ease-in-out;
    -ms-transition: all .45s ease-in-out;
    transition: all .45s ease-in-out;
}

.portfolio .portfolio-content .item .overlay .item-title:before {
    content: '';
    position: absolute;
    top: 7px;
    left: -32px;
    width: 26px;
    height: 2px;
}

.portfolio .portfolio-content .item:hover .overlay .item-title,
.portfolio .portfolio-content .item:hover .overlay .item-category span {
    top: 32%;
    left: 32%;
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: .45s;
    -moz-transition-delay: .45s;
    -o-transition-delay: .45s;
    -ms-transition-delay: .45s;
    transition-delay: .45s;
}

.portfolio .portfolio-content .item .overlay .icon-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    border-radius: 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%);
}

.portfolio .portfolio-content .item .overlay .item-category span {
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
}

.portfolio .portfolio-content .item:hover .overlay .item-category span {
    top: 68%;
    left: 65%;
}

/* --------------------------------------
   10. Fun Facts
-----------------------------------------*/

.facts {
    position: relative;
    color: #fff;
    padding-top: 100px;
    padding-bottom: 70px;
}

.facts .fact-item {
    position: relative;
    text-align: center;
    padding: 20px 10px;
    margin-bottom: 30px;
    margin-left: 55px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    border-left: 2px solid;
}

.facts .fact-item:before {
    content: '';
    position: absolute;
    top: 27px;
    left: -18px;
    width: 16px;
    height: 2px;
}

.facts .fact-item .fact-icon {
    position: absolute;
    top: 10px;
    left: -54px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
}

.facts .fact-item h4 {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    border-radius: 24px;
}

.facts .fact-item .fact-number {
    display: block;
    color: #bfbebe;;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* --------------------------------------
   11. Testimonials
-----------------------------------------*/

.testimonials {
    position: relative;
    background: #2c2d2d;
    padding-top: 100px;
    padding-bottom: 100px;
}

.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: #323333;
	width: 8px;
	height: 8px;
	margin: 0 7px;
}

.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);
}

.testimonials .testimonial-box {
	position: relative;
	width: 85%;
    margin: auto;
    padding: 45px 40px;
    background: #282929;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    border-left: 5px solid;
}

.testimonials .testimonial-box:before {
    content: '\f10e';
    font-family: 'FontAwesome';
    position: absolute;
    color: #323333;
    top: 20px;
    right: 33px;
    font-size: 50px;
}

.testimonials .testimonial-box .client-pic {
    display: inline-block;
    float: left;
    margin-right: 20px;
}

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

.testimonials .client-details {
    float: left;
	margin-top: 20px;
}

.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;
}

.testimonials .testimonial-box .description p {
    color: #a2a2a2;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

/* --------------------------------------
   12. Blog
-----------------------------------------*/

.blog {
    position: relative;
    padding-top: 100px;
    padding-bottom: 70px;
    color: #fff;
}

.blog .post {
    position: relative;
    margin-bottom: 30px;
}

.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;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    border: 4px solid #282929;
}

.blog .post .post-content {
    position: relative;
    background: #282929;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    padding: 20px;
    margin: -28px 15px 0;
    z-index: 1;
}

.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-info {
    margin-bottom: 0;
}

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

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

.blog .post .post-content .post-text p {
    line-height: 1.8;
    font-weight: 400;
    color: #a2a2a2;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

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

.blog .post .post-content .post-more:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 20px;
    height: 2px;
}

.blog .post .post-category {
    position: absolute;
    top: 8px;
    right: 6px;
    min-width: 140px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 20px 0 20px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 600;
}

/* --------------------------------------
   13. Contact
-----------------------------------------*/

.contacts {
    position: relative;
    padding-top: 100px;
    padding-bottom: 70px;
    background: #2c2d2d;
}

.contacts .contact {
    position: relative;
	background: #282929;
    text-align: center;
    padding: 25px 8px;
	margin-bottom: 30px;
    border: 2px solid #282929;

    border-image: linear-gradient(to right, #282929, #282929) 30;
    transition: all 0.2s linear;
    transition-property: border-image;
}

.contacts .contact:hover {
    border-image: linear-gradient(to right, #f7971c, #f34a4a) 30;
}
/* .contacts .contact:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -moz-transform: scale3d(1.1, 1.1, 1.1);
    -o-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    opacity: 0;
    -webkit-transition: all .8s ease-in-out;
    -moz-transition: all .8s ease-in-out;
    -o-transition: all .8s ease-in-out;
    -ms-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
} */

/* .contacts .contact:hover:before {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1;
} */

.contacts .contact .contact-icon i {
    width: 90px;
    height: 90px;
    line-height: 90px;
    font-size: 50px;
}

.contacts .contact h4 {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 600;
    text-transform: capitalize;
}

.contacts .contact p {
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 400;
    color: #a2a2a2;
}
/* --------------------------------------
   14. Footer
-----------------------------------------*/

.footer {
    position: relative;
    background-color: #282929;
    padding: 35px 0;
    color: #fff;
}

.footer .logo {
    height: auto;
    font-size: 23px;
    font-weight: 800;
    text-transform: capitalize;
    letter-spacing: 1px;
    padding: 10px 0;
    font-family: 'Montserrat', sans-serif;
}

.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 .copyright p {
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.8;
    margin: 0;
}

/* --------------------------------------
   15. Scroll To Top
-----------------------------------------*/

.scroll-top {
    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: 2vw;
    }

    /*=========== services ============*/
    .services .service h4 {
        font-size: 16px;
        letter-spacing: .7px;
    }

    /*=========== Portfolio ============*/
    .portfolio .portfolio-content .item:hover .overlay .item-category span {
        left: 58%;
    }

    /*=========== Fun Facts ============*/
    .facts .fact-item h4 {
        letter-spacing: .3px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (min-width: 768px) and (max-width: 991.98px) {

    .main-title h2 {
        font-size: 27px;
    }

    /*=========== 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: 25px;
    }

    /*=========== services ============*/
    .services {
        padding-bottom: 70px;
    }

    .services .service {
        margin-bottom: 30px;
    }

    /*=========== Resume ============*/
    .resume .education {
        margin-bottom: 30px;
    }

    /*=========== Contact ============*/
    .contact .contact-form {
        margin-bottom: 30px;
    }
    .g-recaptcha{
      display: inline-block;
      margin-bottom: 0px;
    }
}

/* Small Devices */
@media (max-width: 767.98px) {

    .main-title h2 {
        font-size: 26px;
    }

    .container {
        max-width: 540px;
    }

    /*=========== Navbar ============*/
    .navbar {
        background-color: #282929;
        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: #282929;
        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 #33373a;
        box-shadow: 0 6px 10px rgba(0, 0, 0, .1);
    }

    .navbar .navbar-links .navbar-nav > li.nav-brand a {
        display: inline-block;
        border: none;
        font-size: 23px;
        font-weight: 800;
        text-transform: capitalize;
        letter-spacing: 1px;
        font-family: 'Montserrat', sans-serif;
    }

    .navbar .navbar-nav > li {
        border-top: 1px solid #272727;
    	border-bottom: 1px solid #2d2e2f;
        padding: 0;
    }

    .navbar .navbar-nav > li > a,
    .navbar .navbar-nav > li > a:hover,
    .navbar .navbar-nav > li > a:focus {
        display: inline-block;
        margin: 0;
        letter-spacing: 2px;
        padding: 15px 28px;
    }

    .navbar .navbar-nav > li > a:hover {
        padding-left: 35px;
    }

    .navbar .navbar-nav > li > a.active {
        border-left: 3px solid;
    }

    .navbar.menu-active .navbar-links {
        visibility: visible;
    }

    .navbar.menu-active .navbar-links .navbar-nav {
        left: 0;
    }

    /*=========== Home ============*/
    .home .intro h3 {
        font-size: 20px;
    }

    .home .intro h1 {
        font-size: 50px;
    }

    .home .intro p {
        font-size: 20px;
        letter-spacing: .3px;
        padding-left: 38px;
    }

    .home .intro p:before {
        top: 13px;
        width: 30px;
    }

    /*=========== About Me ============*/
    .about-me {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .about-me .about-image {
        margin-right: 80px;
        margin-left: 80px;
        margin-bottom: 30px;
    }

    .about-me .about-info .services .services-inner h4,
    .about-me .about-info .services .services-inner i {
        font-size: 14px;
    }

    /*=========== 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;
    }

    /*=========== Portfolio ============*/
    .portfolio {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    /*=========== Fun Facts ============*/
    .facts {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .facts .fact-item {
        margin: 0 50px 30px;
    }

    .facts .fact-item .fact-number {
        font-size: 27px;
    }

    /*=========== Testimonials ============*/
    .testimonials {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    /*=========== Blog ============*/
    .blog {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    /*=========== Contact ============*/
    .contact {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .contact .contact-form {
        margin-bottom: 30px;
    }
    .captcha_row{
      display: block;
    }
    .g-recaptcha{
      display: inline-block;
      margin-bottom: 20px;
    }

}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

    .main-title h2 {
        font-size: 20px;
    }

    /*=========== Home ============*/
    .home .intro h3 {
        font-size: 19px;
        letter-spacing: .3px;
    }

    .home .intro h1 {
        font-size: 42px;
    }

    .home .intro p {
        font-size: 19px;
        letter-spacing: 0;
    }

    /*=========== About Me ============*/
    .about-me .about-image {
        margin: 0;
        margin-bottom: 35px;
    }

    .about-me .about-info p {
        font-size: 13px;
    }

    .about-me .about-info .services .services-xs {
        float: none;
        width: 100%;
        margin-bottom: 22px;
        text-align: center;
    }

    .about-me .about-info .services .services-xs:last-of-type {
        margin-bottom: 0;
    }

    .about-me .about-info .services .services-inner h4 {
        font-size: 15px;
    }

    .about-me .about-info .services .services-inner i {
        font-size: 16px;
    }

    /*=========== services ============*/
    .services .service h4 {
        font-size: 16px;
    }

    .services .service p {
        font-size: 13px;
    }

    /*=========== Portfolio ============*/
    .portfolio .portfolio-content .item:hover .overlay .item-category span {
        left: 58%;
    }

    /*=========== Resume ============*/
    .resume .resume-item .resume-date,
    .resume .resume-item span,
    .resume .resume-item p {
        font-size: 13px;
    }

    /*=========== Testimonials ============*/
    .testimonials .testimonial-box {
        padding: 35px 30px;
    }

    .testimonials .testimonial-box:before {
        content: none;
    }

    .testimonials .client-details h6 {
        font-size: 15px;
    }

    .testimonials .testimonial-box .description p {
        font-size: 13px;
        letter-spacing: .3px;
    }

    /*=========== 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 .post-content .post-more {
        font-size: 12px;
    }

    .blog .post .post-category {
        min-width: 120px;
        border-radius: 17px 0 17px;
        letter-spacing: .7px;
    }

    /*=========== Contact ============*/
    .contact .contact-form {
        padding: 40px 15px;
    }

    .contact .contact-form .contact-btn {
        min-width: 165px;
        letter-spacing: .7px;
    }
    .g-recaptcha{
      display: inline-block;
      margin-bottom: 20px;
    }

}
