/*
* ----------------------------------------------------------------------------------------
* 01.GLOBAL CSS STYLE
* 02.PRELOADER & BOUNCE CCS STYLE
* 03.HOMEPAGE CSS STYLE
    -LOGO CSS
    -MENU CSS
* 04.ABOUT CSS STYLE
* 05.SERVICE CSS STYLE
* 06.WORK CSS STYLE
* 07.CONTACT CSS STYLE
* 08.FOOTER CSS STYLE
* 09.404 CSS STYLE
* ----------------------------------------------------------------------------------------
*/


/*
* ----------------------------------------------------------------------------------------
* 01.GLOBAL STYLE
* ----------------------------------------------------------------------------------------
*/

body {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    font-family: 'Segoe UI';
    color: #232323;
}

html,
body {
    height: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {font-weight: 300;}

a {
    text-decoration: none;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    color: #000;
}

img {
    width: 100%;
}

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

a:focus {
    outline: none;
    text-decoration: none;
}

p {
    line-height: 32px;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

fieldset {
    border: 0 none;
    margin: 0 auto;
    padding: 0;
}

.no-padding {
    padding: 0
}

.section-padding {
    padding: 70px 0;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    margin-top: 0;
    font-weight: 300;
    font-size: 30px;
}


/*
* ----------------------------------------------------------------------------------------
* 02.PRELOADER & BOUNCE CCS STYLE
* ----------------------------------------------------------------------------------------
*/

.preloader {
    background: #131212;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}

.status-mes {
    width: 45px;
    height: 45px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -22px 0 0 -22px;
    font-size: 10px;
    text-indent: -12345px;
    border-top: 3px solid rgba(255, 255, 255, 0.08);
    border-right: 3px solid rgba(255, 255, 255, 0.08);
    border-bottom: 3px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid #fff;
    border-radius: 50%;
    -webkit-animation: spinner 1200ms infinite linear;
    animation: spinner 1200ms infinite linear;
    z-index: 10000;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/*
* ----------------------------------------------------------------------------------------
* 03.HOMEPAGE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.welcome-image-areaa {
    margin-top: 90px;
}
.welcome-image-areaa .nietzsche h2{
    font-family: 'Bad Script', cursive;
}

.rewards{
    margin: 30px 0;
}
.header-bg {
    padding: 80px 200px;
}

.header-text h2 {
    color: #333;
    font-size: 30px;
    line-height: 35px;
    text-align: center;
}

.header-text {
    text-align: center;
}

.header-text img {
    width: 150px;
    border-radius: 50%;
    text-align: center;
    margin: 0 auto;
    border: 3px solid #f8f8f8;
}

.header-top-area {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.logo {
    padding-top: 10px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.logo img {
    width: 150px;
}

.nav-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.toggle-btn {
    background-color: transparent;
    border: 0 none;
    padding: 10px;
    outline: none;
    margin-right: -25px;
}

.toggle-btn .icon-bar {
    background-color: #000;
    display: block;
    height: 2px;
    margin-bottom: 5px;
    width: 22px;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.toggle-btn.active .icon-bar:nth-child(2) {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
}

.toggle-btn.active .icon-bar:nth-child(1) {
    top: 9px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.toggle-btn.active .icon-bar:nth-child(3) {
    top: -5px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.toggle-btn .icon-bar:last-child {
    margin-bottom: 0;
}

.nav-toggle+.navbar-collapse {
    margin-right: 10px;
}
/*
.site-header .navbar-collapse {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

.site-header.active .navbar-collapse {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}
*/
.mainmenu {
    margin-top: 18px;
}

.mainmenu .navbar-nav li a {
    color: #000;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 8px 15px;
    -webkit-transition: .3s;
    transition: .3s;
    font-weight: 300;
}

ul.navbar-nav {
    margin-right: 5px;
    margin-top: 6px;
}

.mainmenu .navbar-nav li a:hover {
    background: none;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    color: #f7941d;
}
.mainmenu .navbar-nav li.active a{
    color: #f7941d;

}
.nav li a:focus,
.nav li a:hover {
    background: none;
    color: #fff;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar {
    margin: 0;
}

.page-title-area {
    padding-top: 100px;
    padding-bottom: 120px;
}

.page-title-area h2 {
    margin-top: 0;
    font-weight: 300;
    font-size: 30px;
}
.hidden {
    overflow: hidden;
    display: none;
    visibility: hidden;
}

/*
* ----------------------------------------------------------------------------------------
* 04.ABOUT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.about-me-design-area {
    background: #F7F7F7;
}

.about-text {}

.about-text p {
    color: #333;
    font-size: 18px;
    font-weight: 300;
}


/*
* ----------------------------------------------------------------------------------------
* 05.SERVICE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.service-area {
    background: #F7F7F7;
}

.single-service {
    background: #fff;
    text-align: center;
    padding: 30px 30px;
    ;
}

.service-icon i {
    font-size: 50px;
    margin-bottom: 20px;
    color: #000;
}

.single-service h2 {
    font-size: 30px;
    margin: 20px 0;
    -webkit-transition: .3s;
    transition: .3s;
    color: #333;
    font-weight: 300;
}

.single-service p {
    color: #8d8d8d;
    font-size: 16px;
}

.single-service ul.service-details {
    padding: 0;
    margin: 0;
    list-style: none;
}

.single-service ul li {
    display: block;
    padding-bottom: 10px;
    color: #a6a6a6;
}

.single-service ul.service-details i {
    font-size: 12px;
    margin-right: 10px;
}


/*
* ----------------------------------------------------------------------------------------
* 06.WORK CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.work {
    padding-top: 70px;
    padding-bottom: 40px;
    background: #F7F7F7;
}

.portfolio img{
    height: 120px;
    width: auto;
    margin: 5px auto;
}

.project-item {
    overflow: hidden;
    position: relative;
    padding: 0;
    vertical-align: middle;
    text-align: center;
    margin-bottom: 30px;
}

.project-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
}

.project-info {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.project-item img {
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    width: 100%;
}

.project-item:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.project-overlay h2 {
    color: #ffffff;
    font-size: 40px;
    margin: 0;
    font-weight: 300;
    text-decoration: underline;
}

.project-item:hover .project-overlay {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    background: rgba(0, 0, 0, 0.7);
}

.view-portfolio {
    text-align: center;
}

a.more-portfolio {
    display: inline-block;
    text-align: center;
    color: #333;
    background: #fff;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: bold;
    border: 1px solid #fff;

}
a.more-portfolio:hover{
    border: 1px solid #575757;
    border-radius: 2px;
}

/*
* ----------------------------------------------------------------------------------------
* 07.CONTACT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.contact-me-area {
    background: #f7f7f7;
}

.single-contact {
    margin-bottom: 30px;
}

.single-contact i {
    font-size: 20px;
    background: #fff;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    text-align: center;
    color: #333;
    line-height: 60px;
}

.single-contact h2 {
    font-size: 20px;
    margin-bottom: 0;
    color: #333;
    font-weight: 300;
}

.single-contact p {
    color: #8d8d8d;
    font-size: 16px;
}

.form-control {
    display: block;
    width: 100%;
    height: 45px;
    padding: 5px 10px;
    font-size: 16px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
    background-image: none;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 5px;
    border: 1px solid #fff;
}

.form-control:focus {
    border-color: #fff;
    outline: 0;
    box-shadow: none;
}

.contact_form{
    position: relative;
}

.contact_form input[type='submit'],
.contact_form input[type='button']{
    display: inline-block;
    color: #333;
    background: none;
    padding: 10px 25px;
    border: 1px solid #fff;
    font-size: 14px;
    border-radius: 0;
    font-weight: 300;
    -webkit-transition: .3s;
    transition: .3s;
    background: #fff;
    float: right;
}

.contact_form input[type='submit']:hover,
.contact_form input[type='button']:hover {
    background: transparent;
    border: 1px solid #fff;
    color: #000;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn:active:focus,
.btn:focus {
    outline: none;
}

.single-contact-details {
    background: #131212;
    text-align: center;
    padding: 200px 0;
}

.single-contact-details h2 {
    margin-top: 0;
    font-weight: 900;
    font-size: 60px;
    color: #fff;
}

.single-contact-details p a {
    color: #fff;
    font-size: 20px;
    border-bottom: 1px solid #fff;
    display: inline-block;
}

.messages{
    font-size: 19px;
    float: right;
    margin-top: 9px;
    margin-right: 20px;
}
.messages span{
    text-align: center;
    display: block;
}

.notvalid{
    border: 1px solid #FF0000;
    -webkit-transition: all ease-in-out 0.6s;
}


/*
* ----------------------------------------------------------------------------------------
* 08.FOOTER CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.footer-area {
    background: #F7F7F7;
    padding: 40px 0 80px 0;
}

.footer-area p {
    margin-bottom: 0;
    font-size: 14px;
    color: #002F35;
}


.social-link-area ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.social-link-area ul li {
    display: inline-block;
    margin: 20px 10px;
}

.social-link-area ul li a {
    color: #333;
    border-bottom: 1px solid #333;
    font-weight: 300;
    font-size: 16px;
}

/*
* ----------------------------------------------------------------------------------------
* 09.ABOUT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.err-design-area {
    background: #F7F7F7;
    text-align: center;
    padding: 200px;
}

.link a:hover{
    color: #f7941d;
}