/*-----------------------------------------------------------------
Template Name  : Samya - Personal Portfolio
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. Portfolio
 9. Fun Facts
 10. Testimonials
 11. Blog
 12. Contact
 13. Footer
 14. Scroll To Top
 15. 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: #245d5f;
    overflow-x: hidden;
}

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: 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 9px;
	z-index: 1;
}

.main-title h3:before {
    content: '';
    position: absolute;
    top: -7px;
    left: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(to right, #f7971c, #f34a4a);
    z-index: -1;
}

.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: 195px;
    background: linear-gradient(to right, #f7971c, #f34a4a);
    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 .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 {
    background: linear-gradient(to left, #f7971c, #f34a4a);
}

.wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
}

.divider {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
}

.divider .divider-wave {
    width: 100%;
    height: auto;
}

.custom-divider1 {
    position: absolute;
    top: -23px;
    left: 0;
    width: 100%;
    height: 23px;
    background: linear-gradient(-45deg, #f7971c 10px, transparent 0), linear-gradient(45deg, #f7971c 10px, transparent 0);
    background-position: top right;
    background-repeat: repeat-x;
    background-size: 12px 32px;
}

/* --------------------------------------
   2. Loading
-----------------------------------------*/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: #245d5f;
}

.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;
    border-top-color: #f7971c;
    -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;
    border-top-color: #f7971c;
    -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);
    }
}

/* --------------------------------------
   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: #245d5f;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    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;
    background-color: #f7971c;
}

.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;
    background: linear-gradient(to right, #f7971c, #f34a4a);
    -webkit-background-clip: text;
    color: transparent;
    padding: 10px 0;
    font-family: 'Montserrat', sans-serif;
}

.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: #f7971c;
    font-weight: 600;
}

/* --------------------------------------
   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: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 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;
}

/* --------------------------------------
   5. About Me
-----------------------------------------*/

.about-me {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    color: #fff;
    border-top: 3px solid;
    border-image: 1 linear-gradient(to right, #f7971c, #f34a4a);
}

.about-me .about-image {
    padding: 7px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.about-me .about-image img {
    opacity: .92;
}

.about-me .about-image img:hover {
    opacity: 1;
}

.about-me .about-info .main-title {
    margin-bottom: 25px;
}

.about-me .about-info p {
    color: #e1dfe2;
    line-height: 1.8;
	font-size: 15px;
    font-weight: 400;
    margin-bottom: 25px;
}

.about-me .about-info p:first-of-type {
    margin-bottom: 10px;
}

.about-me .about-info .skills {
    position: relative;
    margin-bottom: 25px;
}

.about-me .about-info .skills .skills-inner h4 {
    font-size: 14px;
    margin: 0;
    margin-bottom: 6px;
    letter-spacing: .5px;
    color: #fff;
    text-transform: uppercase;
}

.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;
    background: linear-gradient(to right, #f7971c, #f34a4a);
    -webkit-background-clip: text;
    color: transparent;
}

.about-me .about-info .main-btn {
    min-width: 175px;
}

/* --------------------------------------
   6. Services
-----------------------------------------*/

.services {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background: #205354;
}

.services .service {
    position: relative;
    text-align: center;
    padding: 25px 8px;
}

.services .service:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    -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 {
    background: #245d5f;
    color: #f7971c;
    width: 90px;
    height: 90px;
    line-height: 90px;
    font-size: 35px;
    border: 1px solid #f7971c;
    border-radius: 50%;
}

.services .service:hover .service-icon i {
    background: #f7971c;
    color: #fff;
    -webkit-transform: scale(1.07);
    -moz-transform: scale(1.07);
    -ms-transform: scale(1.07);
    -o-transform: scale(1.07);
    transform: scale(1.07);
}

.services .service h4 {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.services .service p {
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 400;
    color: #e1dfe2;
}

/* --------------------------------------
   7. Resume
-----------------------------------------*/

.resume {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    color: #fff;
}

.resume .resume-item {
    position: relative;
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    border-left: 2px solid;
    border-image: 1 linear-gradient(to top, #f7971c, #f34a4a);
}

.resume .resume-item:last-child {
    margin-bottom: 0;
}

.resume .resume-item h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.resume .resume-item .resume-date {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    color: #f7971c;
    margin: 0;
}

.resume .resume-item span {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .3px;
    color: #bdbcbd;
    margin-left: 4px;
    padding-left: 8px;
    border-left: 1px solid #bdbcbd;
}

.resume .resume-item p {
    line-height: 1.8;
    margin-bottom: 0;
	font-size: 15px;
    font-weight: 400;
    color: #e1dfe2;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.resume .resume-item .icon-box {
    position: absolute;
    top: 10px;
    right: 18px;
    text-align: center;
    border-radius: 50%;
    font-size: 37px;
    color: #2f6567;
}

/* --------------------------------------
   8. Portfolio
-----------------------------------------*/

.portfolio {
    position: relative;
    padding-top: 100px;
    padding-bottom: 70px;
    background: #205354;
}

.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, .1);
}

.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 .list-filter .active {
    background: linear-gradient(to right, #f7971c, #f34a4a);
}

.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(36, 93, 95, .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;
    bottom: 62px;
    left: 43px;
    display: inline-block;
    color: #fff;
    margin: 0;
    font-size: 16px;
    letter-spacing: .5px;
    padding-left: 20px;
    padding-top: 10px;
}

.portfolio .portfolio-content .item .overlay .item-title:before {
    content: '';
    position: absolute;
    top: 17px;
    left: -16px;
    width: 26px;
    height: 2px;
    background: #f7971c;
}

.portfolio .portfolio-content .item .overlay .icon-img {
    position: absolute;
    top: 14px;
    right: 17px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: linear-gradient(to right, #f7971c, #f34a4a);
    color: #fff;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
}

.portfolio .portfolio-content .item .overlay .item-category span {
    color: #f7971c;
    font-size: 15px;
    bottom: 30px;
    font-weight: 600;
    text-transform: capitalize;
}


/* --------------------------------------
   9. 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;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-left: 2px solid;
    border-image: 1 linear-gradient(to top, #f7971c, #f34a4a);
}

.facts .fact-item .fact-icon {
    position: absolute;
    top: 59px;
    right: 13px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    font-size: 33px;
    color: #28696b;
}

.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: #e1dfe2;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* --------------------------------------
   10. Testimonials
-----------------------------------------*/

.testimonials {
    position: relative;
    background: #205354;
    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: #286769;
	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: linear-gradient(to right, #f7971c, #f34a4a);
}

.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(247, 151, 28, .6);
            box-shadow: 0 0 0 0 rgba(247, 151, 28, .6);
}

@-webkit-keyframes pulse
{
    to
    {
        -webkit-box-shadow: 0 0 0 7px rgba(247, 151, 28, 0);
                box-shadow: 0 0 0 7px rgba(247, 151, 28, 0);
    }
}

@keyframes pulse
{
    to
    {
        -webkit-box-shadow: 0 0 0 7px rgba(247, 151, 28, 0);
                box-shadow: 0 0 0 7px rgba(247, 151, 28, 0);
    }
}

.testimonials .testimonial-box {
	position: relative;
    padding: 45px 40px;
    background: #245d5f;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.testimonials .testimonial-box:before {
    content: '\f10e';
    font-family: 'FontAwesome';
    position: absolute;
    color: #276a6d;
    top: 144px;
    right: 33px;
    font-size: 50px;
}

.testimonials .testimonial-box .client-pic {
    display: inline-block;
}

.testimonials .testimonial-box .client-pic img {
	width: 95px;
	height: 95px;
	border-radius: 50%;
	display: inline-block;
	border: 2px solid #396365;
	padding: 3px;
	background: #245d5f;
}

.testimonials .client-details {
	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;
    color: #f7971c;
}

.testimonials .testimonial-box .description p {
    color: #e1dfe2;
    font-size: 15px;
    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);
}

/* --------------------------------------
   11. 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, .1);
}

.blog .post .post-content {
    position: relative;
    background: #245d5f;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    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:hover .post-title h4 {
    color: #f7971c;
}

.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: #bdbcbd;
}

.blog .post .post-content .post-info li a span {
    color: #bdbcbd;
}

.blog .post .post-content .post-info li a span:hover {
    color: #f7971c;
}

.blog .post .post-content .post-text p {
    line-height: 1.8;
    font-weight: 400;
    color: #e1dfe2;
    font-size: 15px;
    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;
}

.blog .post .post-content .post-more:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 87px;
    width: 20px;
    height: 2px;
    background: linear-gradient(to right, #f7971c, #f34a4a);
}

.blog .post .post-content .post-more:hover {
    color: #f7971c;
}

.blog .post .post-category {
    position: absolute;
    top: 13px;
    right: 6px;
    min-width: 106px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 20px;
    background: rgba(247, 151, 28, .96);
    letter-spacing: 1px;
    color: #fff;
    font-weight: 600;
}

/* --------------------------------------
   12. Contact
-----------------------------------------*/

.contact {
    position: relative;
    background: #205354;
    padding-top: 100px;
    padding-bottom: 100px;
}

.contact .contact-form {
	position: relative;
    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: transparent;
    color: #fff;
    border: 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 .form-control:focus {
    border: 1px solid;
    border-image: 1 linear-gradient(to right, #f7971c, #f34a4a);
}

.contact .contact-form .contact-btn {
    min-width: 175px;
}

.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;
}

.contact .contact-box {
    position: relative;
    padding: 23px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    border-left: 2px solid;
    border-image: 1 linear-gradient(to top, #f7971c, #f34a4a);
}

.contact .contact-box:last-of-type {
    margin-bottom: 0;
}

.contact .contact-box .icon-box {
    position: absolute;
    top: 36px;
    right: 20px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    font-size: 35px;
    color: #286465;
}

.contact .contact-box .title-box {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    border-radius: 24px;
    margin-bottom: 12px;
}

.contact .contact-box .content-box {
    font-size: 13px;
}

.contact .contact-box .content-box p {
    margin-bottom: 0;
    line-height: 20px;
    font-weight: 600;
    color: #e1dfe2;
    letter-spacing: 1px;
}

.contact .contact-box .content-box p:last-child {
    margin-top: 3px;
}

/* --------------------------------------
   13. Footer
-----------------------------------------*/

.footer {
    position: relative;
    background-color: #245d5f;
    padding: 35px 0;
    color: #fff;
}

.footer .logo {
    height: auto;
    font-size: 23px;
    font-weight: 800;
    text-transform: capitalize;
    letter-spacing: 1px;
    background: linear-gradient(to right, #f7971c, #f34a4a);
    -webkit-background-clip: text;
    color: transparent;
    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 .footer-social-icons li a:hover {
    background: linear-gradient(to right, #f7971c, #f34a4a);
}

.footer .copyright p {
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.8;
    margin: 0;
}

.footer .copyright p a {
    color: #f7971c;
}

/* --------------------------------------
   14. Scroll To Top
-----------------------------------------*/

.scroll-top {
    background: linear-gradient(to right, #f7971c, #f34a4a);
    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;
}

/* --------------------------------------
   15. 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;
    }
    
    /*=========== 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;
    }
	
	.contact .contact-form .form-message {
        bottom: -31px;
    }
}

/* Small Devices */
@media (max-width: 767.98px) {
    
    .main-title h2 {
        font-size: 26px;
    }
    
    .container {
        max-width: 540px;
    }
    
    /*=========== Navbar ============*/
    .navbar {
        background-color: #245d5f;
        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: #245d5f;
        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 #316567;
        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;
        background: linear-gradient(to right, #f7971c, #f34a4a);
        -webkit-background-clip: text;
        color: transparent;
        padding: 0;
        font-family: 'Montserrat', sans-serif;
    }
    
    .navbar .navbar-nav > li {
        border-top: 1px solid #145254;
        border-bottom: 1px solid #316567;
        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;
        border-image: 1 linear-gradient(to top, #f7971c, #f34a4a);
    }
    
    .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 .skills .skills-inner h4,
    .about-me .about-info .skills .skills-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 .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;
    }
	
	.contact .contact-form .form-message {
        bottom: -31px;
    }
    
}
 
/* 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 .skills .skills-xs {
        float: none;
        width: 100%;
        margin-bottom: 22px;
        text-align: center;
    }
    
    .about-me .about-info .skills .skills-xs:last-of-type {
        margin-bottom: 0;
    }
    
    .about-me .about-info .skills .skills-inner h4 {
        font-size: 15px;
    }
    
    .about-me .about-info .skills .skills-inner i {
        font-size: 16px;
    }
    
    /*=========== Services ============*/
    .services .service h4 {
        font-size: 16px;
    }
    
    .services .service p {
        font-size: 13px;
    }
    
    /*=========== 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;
    }

}