/*============================================
        Default Values :

        Font Family     :   Roboto
        Equator         :   #E3CE63     (Buttons, Icons, Links, Lines & Background)
        Midnight Blue   :   #002060     (Headings)
        Nevada          :   #64707b     (Paragraphs)
        White           :   #fff        (Text with Black Blackground)
        Black           :   #000
=============================================*/

/* General CSS */
html,
body {
    height: 100%;

}

body {

    font-family: "Roboto", sans-serif;
}

p {
    color: #64707b;
    font-size: 16px;
    font-weight: 300;
}

h3 {
    color: #002060;
    text-transform: uppercase;
}

.company-logo {
    width: 100px;
    height: auto;
	float: left;
	padding-right: 20px;
}


/*============================================
                HOME
=============================================*/

#home {

    height: 100%;
}

#home-cover {
    height: 100%;
    background-image: url("../img/bg-home.jpg");
	background-color: rgba(37, 59, 69, 0.9);
    background-blend-mode: soft-light;
    /*
    (23, 67, 88, 0.8)
        37, 59, 75, 0.72
	*/
}

#home-content-box {
    width: 100%;
    height: 100%;
    display: table;
}

#home-content-box-inner {
    display: table-cell;
    vertical-align: middle;

    /* text-align: center; */
}

#home-heading {
    padding: 0 0;
    margin: 0;
}

#home-btn {
    padding: 0 0;
    margin: 0;
}

#home-heading h3 {
    color: #fff;
    font-size: 46px;
    font-weight: 420;
    margin: 20px 0 20px 0;
}

#home-heading h1 {
    color: #fff;
    font-size: 30px;
    font-weight: 100;
}

#home-heading h1 a {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    text-decoration: none;
}



/*============================================
                PARALLAX (GENERIC)
=============================================*/
.bg-parallax {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


/*============================================
                BUTTONS (GENERIC)
=============================================*/

.btn-big {
	border-color: #fff;
	border-width: 1px;
	border-radius: 0;
	padding: 12px 26px 12px 26px;
	font-size: 18px;
	font-weight: 400;
	text-transform: uppercase;
}

.btn-general {
    border-color: #fff;
    border-width: 1px;
    border-radius: 0;
    padding: 12px 26px 12px 26px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.btn-white {
    border-color: #fff;
    color: #fff;
}

.btn-white:hover,
.btn-white:focus {
    background-color: #fff;
    color: #002060;
}

.btn-blue {
    border-color: #E3CE63;
    color: #E3CE63;
}

.btn-blue:hover,
.btn-blue:focus {
    background-color: #E3CE63;
    color: #fff;
}

.btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 22px;
    padding: 3px 15px;
    border-radius: 0;
    display: none;
}

.btn.disabled {
    opacity: 1;
}

.btn-form,
.btn-form:hover,
.btn-form:active,
.btn-form:visited,
.btn-form:focus {
    border-color: #fff;
    background-color: #002060;
    color: #fff;
    border-color: #fff;
    border-width: 1px;
    border-radius: 0;
    padding: 12px 26px 12px 26px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}


/*============================================
                ANIMATE
=============================================*/
#home-cover,
#home-heading,
#home-btn {
    animation-duration: .5s;

}

#home-cover {
    animation-delay: .1s;

}

#home-heading {
    animation-delay: .2s;

}

#home-btn {
    animation-delay: .5s;

}


/*============================================
                CONTENT (GENERIC)
=============================================*/

.content-box {
    padding: 60px 0 60px 0;
}

.content-title h3 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 30px 0;
}

.content-title-white h3 {
    color: #fff;
}

.content-title-underline {
    width: 60px;
    height: 3px;
    background-color: #E3CE63;
    margin: 0 auto 30px auto;
}


/*============================================
                SERVICES
=============================================*/
.service-item {
    padding: 20px 0 20px 0;
    margin-bottom: 20px;
    cursor: pointer;
}

.service-item-icon i {
    color: #E3CE63;
    float: left;
    padding: 15px;
    margin-right: 25px;
    width: 75px;
    height: 75px;
    text-align: center;
}


.service-item:hover .service-item-icon i {
    color: #fff;
    background-color: #E3CE63;
}

.service-item-title h3 {
    font-size: 19px;
    font-weight: 400;
    margin: 0 0 10px 0;
}

.service-item-desc p {
    margin: 0;
    padding-left: 100px;
    text-align: justify;
}


.service-item-desc p a {
    font-weight: 400;
    text-decoration: none;
}


/*============================================
                ABOUT
=============================================*/
#about-bg-diagonal {
    width: 60%;
    height: 700px;
    float: right;
    background-image: url("../img/bg-about.jpg");
    border-left: 200px solid #fff;
    border-top: 700px solid transparent;
}

#about-content-box {
    float: left;
    height: 700px;
}

#about-content-box-outer {
    width: 100%;
    height: 100%;
    display: table;
}

#about-content-box-inner {
    display: table-cell;
    vertical-align: middle;
}

#about .content-title h3 {
    text-align: left;
}

#about .content-title-underline {
    margin: 0 0 30px 0;
}

#about-desc p {
    margin-bottom: 20px;
    text-align: justify;
}

.img-logo {
    width: 14%;
    height: auto;
    display: inline;
    padding: 0 10px;
	float: left;
}


/*============================================
                WORK
=============================================*/
.img-wrapper {
    overflow: hidden;
}

.img-wrapper img:hover {

    transform: scale(1.5);
}

.img-wrapper img {
    transition: transform .5s ease;
    cursor: zoom-in;
}

.row.no-gutters [class*=col-] {
    padding-left: 0;
    padding-right: 0;
}


/*============================================
                TEAM
=============================================*/
.team-member {
    margin: 0 15px 0 15px;
}


.team-member-info {
    padding: 10px 0 30px 0;
}

h4.team-member-name {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    padding-top: 20px;
}

h4.team-member-designation {
    color: #E3CE63;
    font-size: 15px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 1px;
    margin-top: 5;
}


/*============================================
                SOCIAL
=============================================*/
.social-list {
    padding-left: 0;

}

.social-list li {
    list-style: none;
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 6px;
    margin-top: 10px;
}


.social-icon i {
    font-size: 17px;
}

.icon-gray i {
    color: #64707b;
}

.icon-white {
    color: #fff;
}

.social-icon i:hover {
    color: #E3CE63;
}


/*============================================
                TESTIMONIALS
=============================================*/
#testimonials-cover {
    background-image: url("../img/bg-testimonials.jpg");
}

#testimonials .content-box {
    background-color: rgba(0, 0, 0, 0.1);
    /* dim the background image; range from 0 to 1*/
}

#customers-testimonials {
    padding: 50px 0;
}

.testimonial img {
    max-width: 120px;
    margin: 0 auto 0 auto;
    /* center align img */
}

.testimonial blockquote {
    border: 0;
    font-family: Georgia, sans-serif;
    font-style: italic;
    color: #fff;
    padding: 6px 150px;
    position: relative;
}

.testimonial blockquote p {
    color: #fff;
}

.testimonial blockquote::before,
.testimonial blockquote::after {
    font-size: 80px;
    font-style: normal;
    line-height: 1;
    width: 30px;
    height: 30px;
    position: absolute;
}

.testimonial blockquote::before {
    content: "\201C";
    top: 0;
    left: 100px;
}

.testimonial blockquote::after {
    content: "\201D";
    bottom: 0;
    right: 100px;
}

.testimonial-author p {
    color: #fff;
    font-size: 17px;
}

.testimonial-author p strong {
    display: block;
}


/*============================================
                PRICING
=============================================*/
.pricing-box {
    border: 3px solid #E3CE63;
    padding: 50px 0;
    /* top/bottom  left/right */
    margin: 40px 0;
    /* top/bottom left/right margin */
    /* outside margin */
}

/* select h4 element with pricing-title class */
h4.pricing-title {
    background-color: #E3CE63;
    color: #fff;
    /* comes with width and height padding around the text like a rec */
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

h3.pricing-value {
    font-size: 60px;
    font-weight: 700;
}

h3.pricing-value sup {
    font-size: 20px;
    font-weight: normal;
    vertical-align: super;
}

ul.pricing-spec {
    list-style: none;
    padding-left: 0;
    margin: 20px 0 60px 0;
}

ul.pricing-spec li p {
    font-weight: 400;
    text-transform: uppercase;
}

.pricing-box-lg {
    padding: 90px 0;
    margin: 0;
    background-color: #E3CE63;
}

.pricing-box-lg h4.pricing-title {
    color: #E3CE63;
    background-color: #fff;
}

.pricing-box-lg ul.pricing-spec li p {
    color: #fff;
}


/*============================================
                STATS
=============================================*/

#stats-cover {
    background-image: url("../img/bg-stats.jpg");
}

#stats .content-box {
    background-color: rgba(0, 0, 0, .8);
    /* dim the background image; range from 0 to 1*/
}

.stats-item {
    padding: 100px 0;
}

.stats-item i {
    color: #E3CE63;
}

.stats-item h2 {
    color: #fff;
    font-size: 35px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 1px;
}

.stats-item p {
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 0;
}


/*============================================
                CLIENTS
=============================================*/
.client {
    padding: 40px 0;
}


.client-theme .client .client-logo-3 {
    width: 50%;
    height: 50%;
    /* center an image */
    display: block;
    margin-left: auto;
    margin-right: auto;

}

.client-theme .client .client-logo-4 {
    /*
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    */

    transform: translateY(20%);
    width: 70%;
    height: 70%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.client-theme .client .client-logo-2 {
    transform: translateY(40%);
    width: 70%;
    height: 70%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


.client-theme .client .client-logo-1 {
    transform: translateY(-5%);
    width: 60%;
    height: 60%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/*============================================
                CONTACT
=============================================*/
footer {
    background-color: #002060;
    padding-top: 30px;
    border-top: 5px solid rgba(0, 0, 0, 0.1);

}

#contact-left h3,
#contact-right h3 {
    color: #fff;
    font-size: 27px;
    font-weight: 700;
}

#contact-left p {
    color: #fff;
    margin-bottom: 30px;
}

#contact-info {
    background-image: url("../img/world-map.png");
    background-repeat: no-repeat;
    /* scale image to biggest within section/area */
    background-size: contain;
}

address {
    color: #fff;
    display: inline-block;
    vertical-align: middle;
}

address p {
    color: #fff;
}

address strong,
#phone-fax-email strong {
    letter-spacing: 1px;
}

/* target all elements with form-control class */
form .form-control {
    background: transparent;
    /* remove rounded corners of fields */
    border-radius: 0;
    border-color: #fff;
    font-size: 17px;
    font-weight: 300;
    padding: 8px 16px;
    margin-bottom: 20px;
    color: #fff;
}

.help-block.with-errors {
    color: #FF002B;
    margin-top: 5px;
}

.alert-success {
    background-color: #002060;
    color: #E3CE63;
    border: 0;
    padding: 0;
}


/*============================================
                FOOTER
=============================================*/
#footer-bottom {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    margin-top: 60px;
}

#footer-copyrights p {
    margin: 0;
    color: #fff;
	font-size: 14px;
	text-align: center; 
}

#footer-menu {
    /*float: left;*/
    color: #fff;
    font-size: 14px;
    font-weight: 300;
	text-align: center;
}

#footer-menu ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

#footer-menu ul li {
    display: inline-block;
}

#footer-menu a {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    margin: 0 10px;
    text-decoration: none;
}

#footer-menu a:hover {
    color: #E3CE63;
}


/*============================================
                NAVIGATION
=============================================*/
.navbar {
    padding: 20px 0;
    /* change transition smoothly over given duration */
    transition: all .5s ease-in-out;
}

.mjwtech-top-nav {
    background: rgba(0, 0, 0, 0.7);
    /* a value is level of transparency 0 to 1 */
    padding: 7px 0;
}

.mjwtech-nav-wrapper {
    padding: 0 85px;
}

.navbar-nav {
    float: right;
}

/* 
    https://www.w3schools.com/cssref/sel_firstchild.asp 
    CSS immediate child operator
*/
.navbar-nav > li > a {
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
    background: none;
    color: #E3CE63;
}


.navbar-toggle {
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid #fff;
    border-radius: 0;
}

.navbar-toggle .icon-bar {
    background-color: #fff;
}

.navbar-collapse {
    /* overwrite css rule from bootstrap */
    max-height: none !important;
}

.mjwtech-top-nav ul.navbar-nav > li.active > a {
    color: #E3CE63;
}


.nav-brand-underline-top {
    width: 60px;
    height: 2px;
    float: left;
    background-color: #E3CE63;
}

.nav-brand-underline-bottom {
    width: 60px;
    height: 2px;
    float: right;
    background-color: #E3CE63;
}

.navbar-header h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 420;
    padding: 0;
}