/*
Theme Name: sk
Theme URI: http://sk.com/
Author: SK
Author URI: http://sk.com/
Description: Custom theme for company name.
Version: 0.1.1
License: GNU General Public License
License URI: see license.txt
Tags: black, green, white, light, dark, two-columns, three-columns, left-sidebar, right-sidebar, fixed-layout, responsive-layout, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, accessibility-ready
Text Domain: jktheme

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

This theme is the most seamless and minimalistic integration of Twitter Bootstrap Framework into
the _s starter theme from Automattic, the guys behind WordPress.

_s (or Underscores) http://underscores.me/, (C) 2012-2013 Automattic, Inc.

Twitter Bootstrap


*/

/* Import the necessary JK Bootstrap WP CSS additions */
@import url( includes/css/bootstrap-wp.css );
@import url( includes/css/font_custom.css );
@import url( includes/css/sk-social-font.css);


//font-family: 'Cabin', sans-serif;
//font-family: 'Exo', sans-serif;


/* My Minimal WordPress Styling comes here */

/* This is a small security for too long strings titles */


body {
    word-wrap: break-word;
    font-family: open_Regular;
}

/* Alignment */
.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}
.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}
.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto;
}


/* Images and wp-captions should always fit and be responsive */
img {
    display: inline-block;
    height: auto;
    max-width: 100%;
}
img[class*="wp-image-"] {
    margin-top: 10px;
    margin-bottom: 10px;
}
.wp-caption {
    border: 1px solid #ccc;
    margin-bottom: 10px;
    max-width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0 10px;
}
.wp-caption.aligncenter {
    margin-bottom: 10px;
}
.wp-caption img[class*="wp-image-"] {
    display: block;
}
.wp-caption .wp-caption-text {
    text-align: center;
    margin-top: 10px;
}

/* WP Gallery */
.gallery {
    margin-bottom: 1.5em;
}
.gallery a img {
    border: none;
    height: auto;
    max-width: 90%;
}
.gallery dd {
    margin: 0;
}


/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
    max-width: 100%;
}


/* Text meant only for screen readers */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
}
.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000; /* Above WP toolbar */
}


/* Content */
.main-content-inner {
    padding-bottom: 1.5em;
}
.hentry {
    margin: 0 0 1.5em;
}


/* Clearing */
.clear {
    clear: both;
}


/* Here some needed widget styles
 * Most widgets are adapted in the file bootstrap-wp.js - and REALLY easy to modify! ;) */
.widget { margin-bottom: 2em; }
.widget_nav_menu ul.sub-menu li, .widget_pages ul.children li { padding-left: 15px; }

/* Hiding the search widget's button in widgets. thats just too old-skool. :) but if you want it back, just delete the next line.
 * Note: you can change the whole appearance of the search_form() function in our searchform.php */
.widget_search .search-form input[type="submit"] { display: none; }

/* Make sure select elements fit in widgets */
.widget select {
    max-width: 100%;
}

/* Nested comments? They are threaded and nested already, you just need to add your own styling to finalize!
 * For example with some margin, like the line below ;) Delete, modify, change classes in HTML if you desire another style */
.comment .children { margin-left: 1.5em; }

/*
 == Quick CSS styling tips ==

 You can start off in a rough direction with some minimal styles.
 See below for some tips. ;)


 == Want to have the whole site wrapped? ==

 Just fill the .container class with some background color to have a the whole site "wrapped".
 This works so easy because every main part is wrapped only once into a container class by bootstrap.
 Try out by decommenting the next line and go from there.

 .container { background: #f9f9f9; border-right: 1px solid #eee; border-left: 1px solid #eee; }


 == Want to wrap just the content and sidebar in Bootstrap style? ==

 That one is a great example to show that some things are much cleaner and easier to do via just adding some HTML classes.
 In this case, we will add just one CSS class "panel", look for example at the beginning in content.php!


 == Infinite Scrolling by Jetpack ==
 You can enable this cool feature by simply decommenting the lines below and make sure you use the same classes on the right place in your html..

/* Globally hidden elements when Infinite Scroll is supported and in use.
 * Older / Newer Posts Navigation (the pagination, must always be hidden), Theme Footer only when set to scrolling.. */

/*
.infinite-scroll .page-links,
.infinite-scroll.neverending .site-footer {
        display: none;
}
*/

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */

/*
.infinity-end.neverending .site-footer {
        display: block;
}
*/

/* Hey, if you don't need my comments anymore, just delete me! :)  */

.search-field{
    background-color: #fff;
    border: solid 1px #ddd;
    border-radius: 0px;
    margin-top: 10px;
    color: #555;
    font-weight: normal;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-family: open_light;


}
.search-field:focus{
    border: solid 1px #aaa;
    background-color: #fafafa;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.red{background-color: red;
     height: 100px;}

.blue{background-color: blue;
      height: 100px;}

.green{background-color: green;
       height: 100px;}

.yellow{
    background-color: yellow;
    height: 100px;
}

.grey{
    background-color: #ddd;
    height: 100px;
}
.brown{
    background-color:#9f740d;
    height: 100px;
}

.pink{
    background-color: #ff19f7;
    height: 100px;
}
.black{
    background-color: #000;
    height: 100px;
}

.btn-login{
    background-color: #0bc2d2 !important;
    border-radius: 0px !important;
    border: none !important;
    color: #fff !important;
    padding-left: 45px;
    padding-right: 45px;
    //font-weight: bold;
    -webkit-transition:All 0.5s ease;
    -moz-transition:All 0.5s ease;
    -o-transition:All 0.5s ease;

}

.btn-login:hover{
    background-color: #068691 !important;
    color: #fff !important;
}

.wpuf-login-form p label{
    display: block;

}

.wpuf-login-form .forgetmenot label{
    display: inline;
}

.wpuf-login-form  .input{
    height: 35px !important;
    border: solid 1px #ddd !important;
    width: 70% !important;
    margin-bottom: 5%;
}

#wp-submit{
    background-color: #0bc2d2 !important;
    border-radius: 0px !important;
    border: none !important;
    color: #fff !important;
    padding-left: 25px;
    padding-right: 25px;
    height: 35px !important;
    //font-weight: bold;
    -webkit-transition:All 0.5s ease;
    -moz-transition:All 0.5s ease;
    -o-transition:All 0.5s ease;
    margin-bottom: 3%;
    margin-top: 3%;
}

#wp-submit:hover{
    background-color: #068691 !important;
    color: #fff !important;
}

ul.wpuf-form .wpuf-submit input[type=submit]{
    background-color: #0bc2d2 !important;
    border-radius: 0px !important;
    border: none !important;
    color: #fff !important;
    padding-left: 25px;
    padding-right: 25px;
    height: 35px !important;
    background-image: none !important;
    //font-weight: bold;
    -webkit-transition:All 0.5s ease;
    -moz-transition:All 0.5s ease;
    -o-transition:All 0.5s ease;
    margin-bottom: 3%;
    margin-top: 3%;
}

ul.wpuf-form .wpuf-submit input[type=submit]:hover{
    background-color: #068691 !important;
    color: #fff !important;
}

.wpuf-user-name{

    font-size: 1.5em !important;
    font-weight: bold;
    text-transform: capitalize;
}

.wpuf-author-inside{
    padding-bottom: 15px !important;
}

.btn-default{
    border-radius: 0px !important;
}

.sig_title{
    //border-bottom: solid 1px #ccc !important;
}
sup {
    top: -4.5px !important;
}
.navbar-default{
    background-color: transparent !important;
    border: none !important;
}
.site-navigation-inner .navbar-responsive-collapse {
    float:none !important;
    padding-left:0;
    padding-right:0;
}
.navbar-default .navbar-nav > li > a{
    border: solid 1px #ccc !important;
    font-size: 1.4em !important;
}
.navbar{
    margin-top: 25px !important;
    margin-bottom: 1px !important;
}
.navbar-nav {
    float:none;
    text-align:center;
}
.navbar-nav > li {
    float:none;
    display:inline-block;
    margin:0 2px 10px;
}
.navbar-nav > li > a {
    padding-bottom: 5px !important;
    padding-top: 5px !Important
}

.branch-p1,
.branch-p2,
.branch-p3,
.branch-p4 {
    padding: 5px 10px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
}

.branch-p1{
    height: 180px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px; /* border radius */
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box; /* prevents bg color from leaking outside the border */
    background-color: #344975; /* layer fill content */
    color: #fff;
    margin-bottom: 20px;
}

.branch p{
    text-align: center;
    padding-top: 10px;
    font-size: 16px;
    font-family: Arial;
}

.branch-p2{
    height: 180px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px; /* border radius */
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box; /* prevents bg color from leaking outside the border */
    background-color: #0c9696; /* layer fill content */
    color: #fff;
    margin-bottom: 20px;

}

.branch-p3{
    height: 180px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px; /* border radius */
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box; /* prevents bg color from leaking outside the border */
    background-color: #b65a19; /* layer fill content */
    color: #fff;
    margin-bottom: 20px;
}

.branch-p4{
    height: 180px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px; /* border radius */
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box; /* prevents bg color from leaking outside the border */
    background-color: #98960d; /* layer fill content */
    color: #fff;
    margin-bottom: 20px;
}

.phase-title{
    width: 90%;
    height: 251px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px; /* border radius */
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box; /* prevents bg color from leaking outside the border */
    background-color: #850103; /* layer fill content */
    -moz-box-shadow: 6px 6px 16px rgba(0,0,0,.66); /* drop shadow */
    -webkit-box-shadow: 6px 6px 16px rgba(0,0,0,.66); /* drop shadow */
    box-shadow: 6px 6px 16px rgba(0,0,0,.66); /* drop shadow */
    background: #6f0d0c;
    background: -moz-linear-gradient(left,  #6f0d0c 0%, #ac4c4d 100%);
    background: -webkit-linear-gradient(left,  #6f0d0c 0%,#ac4c4d 100%);
    background: linear-gradient(to right,  #6f0d0c 0%,#ac4c4d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6f0d0c', endColorstr='#ac4c4d',GradientType=1 );
    padding:20px 15px 10px;
}

.phase-base{
    position:relative;
    z-index:1;
    background-image: url('images/link-3.jpg');
    background-position: center;
    background-repeat:no-repeat;
}

.phase-base .banner {
    position:absolute;
    z-index:2;
    top:0;
    left:220px;
    right:220px;
}

.phase-base .banner img {
    margin:0 auto;
}

.chart-edit-btn {
    position:fixed;
    z-index:9999;
    right:10px;
    top:470px !important;
    font-size:36px;
}

.phase-title h4{
    color: #fff;
    font-size: 23px;
    font-weight:bold;
    font-family: 'Arial', sans-serif;
}

.phase-title p{
    color: #fff;
    font-size: 18px;
    line-height:23px;
    text-align: center;
    padding-top: 5px;
}

.branch h4{
    font-family: 'Arial', sans-serif;
    font-size:19px;
    font-weight:bold;
}

.main-title{
    color: #861002;
    text-shadow: 3px 3px 7px #333;

}
.main-title h1{
    font-size: 5.8em;
    font-family: 'Exo', sans-serif;
    //font-family: 'Cabin', sans-serif;

}

.main-title p{
    font-size: 2.5em;
    font-family: 'Exo', sans-serif;
}

.title-link a{
    color: #861002 !important;
    font-family: 'Exo', sans-serif;
}

.title-link a p{
    font-size: 1.5em;
    line-height: 0.5;
}

.user-logo img{
    display: block;
    margin: 0 auto;
}

.wpuf-label{
    font-size: 1.3em !important;
    color: #777 !important;
}



.all-post .page-title a{
    color: #333 !important;
}

ul.wpuf-form li .wpuf-fields .wpuf-help {
    color:#000;
    font-size:14px;
    font-weight:bold;
}


@media screen and (max-width: 1840px) {
    .chart-edit-btn span {
        display:none;
    }
}

@media screen and (max-width: 768px) {
    .navbar-nav {
        margin-left:0;
        margin-right:0;
    }

    .navbar-nav > li {
        display:block;
    }
}


@media print{



    body {
        word-wrap: break-word;
        font-family: open_Regular;
    }

    /* Alignment */
    .alignleft {
        display: inline;
        float: left;
        margin-right: 1.5em;
    }
    .alignright {
        display: inline;
        float: right;
        margin-left: 1.5em;
    }
    .aligncenter {
        clear: both;
        display: block;
        margin: 0 auto;
    }


    /* Images and wp-captions should always fit and be responsive */
    img {
        display: inline-block;
        height: auto;
        max-width: 100%;
    }
    img[class*="wp-image-"] {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .wp-caption {
        border: 1px solid #ccc;
        margin-bottom: 10px;
        max-width: 100%;
        border: 1px solid #ccc;
        border-radius: 4px;
        padding: 0 10px;
    }
    .wp-caption.aligncenter {
        margin-bottom: 10px;
    }
    .wp-caption img[class*="wp-image-"] {
        display: block;
    }
    .wp-caption .wp-caption-text {
        text-align: center;
        margin-top: 10px;
    }

    /* WP Gallery */
    .gallery {
        margin-bottom: 1.5em;
    }
    .gallery a img {
        border: none;
        height: auto;
        max-width: 90%;
    }
    .gallery dd {
        margin: 0;
    }


    /* Make sure embeds and iframes fit their containers */
    embed,
    iframe,
    object {
        max-width: 100%;
    }


    /* Text meant only for screen readers */
    .screen-reader-text {
        clip: rect(1px, 1px, 1px, 1px);
        position: absolute !important;
    }
    .screen-reader-text:hover,
    .screen-reader-text:active,
    .screen-reader-text:focus {
        background-color: #f1f1f1;
        border-radius: 3px;
        box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
        clip: auto !important;
        color: #21759b;
        display: block;
        font-size: 14px;
        font-weight: bold;
        height: auto;
        left: 5px;
        line-height: normal;
        padding: 15px 23px 14px;
        text-decoration: none;
        top: 5px;
        width: auto;
        z-index: 100000; /* Above WP toolbar */
    }


    /* Content */
    .main-content-inner {
        padding-bottom: 1.5em;
    }
    .hentry {
        margin: 0 0 1.5em;
    }


    /* Clearing */
    .clear {
        clear: both;
    }


    /* Here some needed widget styles
     * Most widgets are adapted in the file bootstrap-wp.js - and REALLY easy to modify! ;) */
    .widget { margin-bottom: 2em; }
    .widget_nav_menu ul.sub-menu li, .widget_pages ul.children li { padding-left: 15px; }

    /* Hiding the search widget's button in widgets. thats just too old-skool. :) but if you want it back, just delete the next line.
     * Note: you can change the whole appearance of the search_form() function in our searchform.php */
    .widget_search .search-form input[type="submit"] { display: none; }

    /* Make sure select elements fit in widgets */
    .widget select {
        max-width: 100%;
    }

    /* Nested comments? They are threaded and nested already, you just need to add your own styling to finalize!
     * For example with some margin, like the line below ;) Delete, modify, change classes in HTML if you desire another style */
    .comment .children { margin-left: 1.5em; }

    /*
     == Quick CSS styling tips ==

     You can start off in a rough direction with some minimal styles.
     See below for some tips. ;)


     == Want to have the whole site wrapped? ==

     Just fill the .container class with some background color to have a the whole site "wrapped".
     This works so easy because every main part is wrapped only once into a container class by bootstrap.
     Try out by decommenting the next line and go from there.

     .container { background: #f9f9f9; border-right: 1px solid #eee; border-left: 1px solid #eee; }


     == Want to wrap just the content and sidebar in Bootstrap style? ==

     That one is a great example to show that some things are much cleaner and easier to do via just adding some HTML classes.
     In this case, we will add just one CSS class "panel", look for example at the beginning in content.php!


     == Infinite Scrolling by Jetpack ==
     You can enable this cool feature by simply decommenting the lines below and make sure you use the same classes on the right place in your html..

    /* Globally hidden elements when Infinite Scroll is supported and in use.
     * Older / Newer Posts Navigation (the pagination, must always be hidden), Theme Footer only when set to scrolling.. */

    /*
    .infinite-scroll .page-links,
    .infinite-scroll.neverending .site-footer {
            display: none;
    }
    */

    /* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */

    /*
    .infinity-end.neverending .site-footer {
            display: block;
    }
    */

    /* Hey, if you don't need my comments anymore, just delete me! :)  */

    .search-field{
        background-color: #fff;
        border: solid 1px #ddd;
        border-radius: 0px;
        margin-top: 10px;
        color: #555;
        font-weight: normal;
        -webkit-box-shadow: none;
        box-shadow: none;
        font-family: open_light;


    }
    .search-field:focus{
        border: solid 1px #aaa;
        background-color: #fafafa;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .red{background-color: red;
         height: 100px;}

    .blue{background-color: blue;
          height: 100px;}

    .green{background-color: green;
           height: 100px;}

    .yellow{
        background-color: yellow;
        height: 100px;
    }

    .grey{
        background-color: #ddd;
        height: 100px;
    }
    .brown{
        background-color:#9f740d;
        height: 100px;
    }

    .pink{
        background-color: #ff19f7;
        height: 100px;
    }
    .black{
        background-color: #000;
        height: 100px;
    }

    .btn-login{
        background-color: #0bc2d2 !important;
        border-radius: 0px !important;
        border: none !important;
        color: #fff !important;
        padding-left: 45px;
        padding-right: 45px;
        //font-weight: bold;
        -webkit-transition:All 0.5s ease;
        -moz-transition:All 0.5s ease;
        -o-transition:All 0.5s ease;

    }

    .btn-login:hover{
        background-color: #068691 !important;
        color: #fff !important;
    }

    .wpuf-login-form p label{
        display: block;

    }

    .wpuf-login-form .forgetmenot label{
        display: inline;
    }

    .wpuf-login-form  .input{
        height: 35px !important;
        border: solid 1px #ddd !important;
        width: 70% !important;
        margin-bottom: 5%;
    }

    #wp-submit{
        background-color: #0bc2d2 !important;
        border-radius: 0px !important;
        border: none !important;
        color: #fff !important;
        padding-left: 25px;
        padding-right: 25px;
        height: 35px !important;
        //font-weight: bold;
        -webkit-transition:All 0.5s ease;
        -moz-transition:All 0.5s ease;
        -o-transition:All 0.5s ease;
        margin-bottom: 3%;
        margin-top: 3%;
    }

    #wp-submit:hover{
        background-color: #068691 !important;
        color: #fff !important;
    }

    ul.wpuf-form .wpuf-submit input[type=submit]{
        background-color: #0bc2d2 !important;
        border-radius: 0px !important;
        border: none !important;
        color: #fff !important;
        padding-left: 25px;
        padding-right: 25px;
        height: 35px !important;
        background-image: none !important;
        //font-weight: bold;
        -webkit-transition:All 0.5s ease;
        -moz-transition:All 0.5s ease;
        -o-transition:All 0.5s ease;
        margin-bottom: 3%;
        margin-top: 3%;
    }

    ul.wpuf-form .wpuf-submit input[type=submit]:hover{
        background-color: #068691 !important;
        color: #fff !important;
    }

    .wpuf-user-name{

        font-size: 1.5em !important;
        font-weight: bold;
        text-transform: capitalize;
    }

    .wpuf-author-inside{
        padding-bottom: 15px !important;
    }

    .btn-default{
        border-radius: 0px !important;
    }

    .sig_title{
        //border-bottom: solid 1px #ccc !important;
    }

    .navbar-default{
        background-color: transparent !important;
        border: none !important;
    }
    .navbar-default .navbar-nav > li > a{
        border: solid 1px #ccc !important;
        margin-left: 15px;
        font-size: 1.1em !important;
        //height: 35px !important;
    }
    .navbar{
        margin-top: 25px !important;
        margin-bottom: 1px !important;
    }
    .navbar-nav > li > a {
        padding-bottom: 5px !important;
        padding-top: 5px !Important
    }

    .branch-p1{
        //width: 247px;
        height: 180px;
        -moz-border-radius: 15px;
        -webkit-border-radius: 15px;
        border-radius: 15px; /* border radius */
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box; /* prevents bg color from leaking outside the border */
        background-color: #005e7f; /* layer fill content */
        -moz-box-shadow: -6px 4px 16px rgba(0,0,0,.66); /* drop shadow */
        -webkit-box-shadow: -6px 4px 16px rgba(0,0,0,.66); /* drop shadow */
        box-shadow: -6px 4px 16px rgba(0,0,0,.66); /* drop shadow */
        background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDI0NyAxODEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iaGF0MCIgZ3JhZGllbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giIHgxPSIyNC4zODI5NjQyNTMwMDg2JSIgeTE9IjExMC4zNDk5NTQyNjk5NDElIiB4Mj0iNzUuNjE3MDM1NzQ2OTkxNCUiIHkyPSItMTAuMzQ5OTU0MjY5OTQxMiUiPgo8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjMDI2NzhjIiBzdG9wLW9wYWNpdHk9IjEiLz4KPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMTdhY2UzIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgPC9saW5lYXJHcmFkaWVudD4KCjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyNDciIGhlaWdodD0iMTgxIiBmaWxsPSJ1cmwoI2hhdDApIiAvPgo8L3N2Zz4=); /* gradient overlay */
        background-image: -moz-linear-gradient(67deg, #02678c 0%, #17ace3 100%); /* gradient overlay */
        background-image: -o-linear-gradient(67deg, #02678c 0%, #17ace3 100%); /* gradient overlay */
        background-image: -webkit-linear-gradient(67deg, #02678c 0%, #17ace3 100%); /* gradient overlay */
        background-image: linear-gradient(23deg, #02678c 0%, #17ace3 100%); /* gradient overlay */
        padding: 5px;
        color: #fff;
        margin-bottom: 20px;

    }

    .branch p{
        text-align: center;
        padding-top: 10px;
    }

    .branch-p2{
        //width: 221px;
        height: 180px;
        -moz-border-radius: 15px;
        -webkit-border-radius: 15px;
        border-radius: 15px; /* border radius */
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box; /* prevents bg color from leaking outside the border */
        background-color: #007f7f; /* layer fill content */
        -moz-box-shadow: -6px 4px 16px rgba(0,0,0,.66); /* drop shadow */
        -webkit-box-shadow: -6px 4px 16px rgba(0,0,0,.66); /* drop shadow */
        box-shadow: -6px 4px 16px rgba(0,0,0,.66); /* drop shadow */
        background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDIyMSAxNjIiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iaGF0MCIgZ3JhZGllbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giIHgxPSIyNC4zODI5NjQyNTMwMDg2JSIgeTE9IjExMC4zNDk5NTQyNjk5NDElIiB4Mj0iNzUuNjE3MDM1NzQ2OTkxNCUiIHkyPSItMTAuMzQ5OTU0MjY5OTQxMiUiPgo8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjMDc5MTkwIiBzdG9wLW9wYWNpdHk9IjEiLz4KPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMmJiOGI3IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgPC9saW5lYXJHcmFkaWVudD4KCjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMjEiIGhlaWdodD0iMTYyIiBmaWxsPSJ1cmwoI2hhdDApIiAvPgo8L3N2Zz4=); /* gradient overlay */
        background-image: -moz-linear-gradient(67deg, #079190 0%, #2bb8b7 100%); /* gradient overlay */
        background-image: -o-linear-gradient(67deg, #079190 0%, #2bb8b7 100%); /* gradient overlay */
        background-image: -webkit-linear-gradient(67deg, #079190 0%, #2bb8b7 100%); /* gradient overlay */
        background-image: linear-gradient(23deg, #079190 0%, #2bb8b7 100%); /* gradient overlay */
        padding: 5px;
        color: #fff;
        margin-bottom: 20px;

    }

    .branch-p3{
        //width: 221px;
        height: 180px;
        -moz-border-radius: 15px;
        -webkit-border-radius: 15px;
        border-radius: 15px; /* border radius */
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box; /* prevents bg color from leaking outside the border */
        background-color: #a14f0b; /* layer fill content */
        -moz-box-shadow: -6px 4px 16px rgba(0,0,0,.66); /* drop shadow */
        -webkit-box-shadow: -6px 4px 16px rgba(0,0,0,.66); /* drop shadow */
        box-shadow: -6px 4px 16px rgba(0,0,0,.66); /* drop shadow */
        background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDIyMSAxNjIiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iaGF0MCIgZ3JhZGllbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giIHgxPSIyNC4zODI5NjQyNTMwMDg2JSIgeTE9IjExMC4zNDk5NTQyNjk5NDElIiB4Mj0iNzUuNjE3MDM1NzQ2OTkxNCUiIHkyPSItMTAuMzQ5OTU0MjY5OTQxMiUiPgo8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjYWM1ODE0IiBzdG9wLW9wYWNpdHk9IjEiLz4KPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZGE3YTJiIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgPC9saW5lYXJHcmFkaWVudD4KCjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMjEiIGhlaWdodD0iMTYyIiBmaWxsPSJ1cmwoI2hhdDApIiAvPgo8L3N2Zz4=); /* gradient overlay */
        background-image: -moz-linear-gradient(67deg, #ac5814 0%, #da7a2b 100%); /* gradient overlay */
        background-image: -o-linear-gradient(67deg, #ac5814 0%, #da7a2b 100%); /* gradient overlay */
        background-image: -webkit-linear-gradient(67deg, #ac5814 0%, #da7a2b 100%); /* gradient overlay */
        background-image: linear-gradient(23deg, #ac5814 0%, #da7a2b 100%); /* gradient overlay */

        padding: 5px;
        color: #fff;
        margin-bottom: 20px;
    }

    .branch-p4{
        //width: 221px;
        height: 180px;
        -moz-border-radius: 15px;
        -webkit-border-radius: 15px;
        border-radius: 15px; /* border radius */
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box; /* prevents bg color from leaking outside the border */
        background-color: #7f7f00; /* layer fill content */
        -moz-box-shadow: -6px 4px 16px rgba(0,0,0,.66); /* drop shadow */
        -webkit-box-shadow: -6px 4px 16px rgba(0,0,0,.66); /* drop shadow */
        box-shadow: -6px 4px 16px rgba(0,0,0,.66); /* drop shadow */
        background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDIyMSAxNjIiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iaGF0MCIgZ3JhZGllbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giIHgxPSIyNC4zODI5NjQyNTMwMDg2JSIgeTE9IjExMC4zNDk5NTQyNjk5NDElIiB4Mj0iNzUuNjE3MDM1NzQ2OTkxNCUiIHkyPSItMTAuMzQ5OTU0MjY5OTQxMiUiPgo8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjNWMwMjAzIiBzdG9wLW9wYWNpdHk9IjEiLz4KPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzVjMDIwMyIgc3RvcC1vcGFjaXR5PSIxIi8+CjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiM4YzhiMGMiIHN0b3Atb3BhY2l0eT0iMSIvPgo8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNiM2IyMWMiIHN0b3Atb3BhY2l0eT0iMSIvPgogICA8L2xpbmVhckdyYWRpZW50PgoKPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjIyMSIgaGVpZ2h0PSIxNjIiIGZpbGw9InVybCgjaGF0MCkiIC8+Cjwvc3ZnPg==); /* gradient overlay */
        background-image: -moz-linear-gradient(67deg, #5c0203 0%, #5c0203 0%, #8c8b0c 0%, #b3b21c 100%); /* gradient overlay */
        background-image: -o-linear-gradient(67deg, #5c0203 0%, #5c0203 0%, #8c8b0c 0%, #b3b21c 100%); /* gradient overlay */
        background-image: -webkit-linear-gradient(67deg, #5c0203 0%, #5c0203 0%, #8c8b0c 0%, #b3b21c 100%); /* gradient overlay */
        background-image: linear-gradient(23deg, #5c0203 0%, #5c0203 0%, #8c8b0c 0%, #b3b21c 100%); /* gradient overlay */

        padding: 5px;
        color: #fff;
        margin-bottom: 20px;
    }

    .phase-title{
        width: 90%;
        height: 251px;
        -moz-border-radius: 15px;
        -webkit-border-radius: 15px;
        border-radius: 15px; /* border radius */
        //-moz-border-radius: 126px;
        //-webkit-border-radius: 126px;
        //border-radius: 126px; /* border radius */
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box; /* prevents bg color from leaking outside the border */
        background-color: #850103; /* layer fill content */
        -moz-box-shadow: 0 17px 32px rgba(0,0,0,.53); /* drop shadow */
        -webkit-box-shadow: 0 17px 32px rgba(0,0,0,.53); /* drop shadow */
        box-shadow: 0 17px 32px rgba(0,0,0,.53); /* drop shadow */
        background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDI1MSAyNTEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iaGF0MCIgZ3JhZGllbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giIHgxPSIyNC4zODI5NjQyNTMwMDg2JSIgeTE9IjExMC4zNDk5NTQyNjk5NDElIiB4Mj0iNzUuNjE3MDM1NzQ2OTkxNCUiIHkyPSItMTAuMzQ5OTU0MjY5OTQxMiUiPgo8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjNWMwMjAzIiBzdG9wLW9wYWNpdHk9IjEiLz4KPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjYjY1NDU1IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgPC9saW5lYXJHcmFkaWVudD4KCjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyNTEiIGhlaWdodD0iMjUxIiBmaWxsPSJ1cmwoI2hhdDApIiAvPgo8L3N2Zz4=); /* gradient overlay */
        background-image: -moz-linear-gradient(67deg, #5c0203 0%, #b65455 100%); /* gradient overlay */
        background-image: -o-linear-gradient(67deg, #5c0203 0%, #b65455 100%); /* gradient overlay */
        background-image: -webkit-linear-gradient(67deg, #5c0203 0%, #b65455 100%); /* gradient overlay */
        background-image: linear-gradient(23deg, #5c0203 0%, #b65455 100%); /* gradient overlay */
        padding: 5px;
    }

    .phase-base{
        background-image: url('images/link.jpg');
        background-position: center;
    }


    .phase-title h4{
        color: #fff;
        font-size: 1.8em;
        font-weight: 500;
    }

    .phase-title p{
        color: #fff;
        font-size: 1.3em;
        text-align: center;
        padding-top: 20px;
        font-family: 'Arial', sans-serif;
    }

    .branch h4{
        font-family: 'Exo', sans-serif;
        font-size: 1.5em;
    }

    .main-title{
        color: #861002;
        text-shadow: 3px 3px 7px #333;

    }
    .main-title h1{
        font-size: 5.8em;
        font-family: 'Exo', sans-serif;
        //font-family: 'Cabin', sans-serif;

    }

    .main-title p{
        font-size: 2.5em;
        font-family: 'Exo', sans-serif;
    }

    .title-link a{
        color: #861002 !important;
        font-family: 'Exo', sans-serif !important;
    }

    .title-link a p{
        font-size: 1.5em;
        line-height: 0.5;
    }

    .user-logo img{
        display: block;
        margin: 0 auto;
    }

    .wpuf-label{
        font-size: 1.3em !important;
        color: #777 !important;
    }



    .all-post .page-title a{
        color: #333 !important;
    }
}

.page-header {
    padding-bottom: 9px;
    margin-top: 10px !important;
    margin-bottom: 5px !important;
    border-bottom: 1px solid #EEE;
}

.main-content-inner {
    padding-bottom: 0.2em !important;
}
.hentry {
    margin: 0px 0px 0.2em !important;
}

.print-page{
    display: none;
    position: absolute;
    margin: 50px;
}

.copy-info{
    display: none !important;
}


#sf-sidebar .sf-nav ul li, #sf-sidebar .sf-view ul li {
    text-align: center;
    text-transform: none !important;
    cursor: pointer;
}

.sf-navicon-button:after {
    display: block;
    content: "Menu";
    line-height: 18px;
    margin-top: 20px!important;
    font-size: 11px;
    text-align: center;
    text-decoration: none !important;
    width: 45px !important;
    color: #FFF;
    font-size: 17px !important;
}

#sf-sidebar .sf-nav ul li.checkbox-row {padding:0;}
#sf-sidebar .sf-nav ul li.checkbox-row:after {bottom:10px;}
#sf-sidebar li.checkbox-row label {display:block;padding:20px 0;cursor:pointer;}
#sf-sidebar li.checkbox-row input {display:inline-block;margin-right:5px;}


ul.wpuf-form .wpuf-submit input[type="submit"] {
    background-color: #0BC2D2 !important;
    border-radius: 0px !important;
    border: medium none !important;
    color: #FFF !important;
    padding-left: 25px;
    padding-right: 25px;
    height: 35px !important;
    background-image: none !important;
    transition: all 0.5s ease 0s;
    margin-bottom: 3%;
    margin-top: 3%;
    position: fixed !important;
    top: 15px !important;
    right: 15px !important;
}

.print-screen{
    display: none;
}

.page-template-register-page .wppb-register-user,
.page-template-register-page p,
.page-template-login-page form,
.page-template-login-page p,
.page-template-page-home p {
    font-size:17px;
}

.wpuf-form-add input,
.wpuf-form-add textarea {
    font-size:16px;
}

.wpuf-form-add .sig_title .wpuf-label,
.wpuf-form-add .your_logo_user .wpuf-label,
.wpuf-form-add .brand_title .wpuf-label,
.wpuf-form-add .tagline_id .wpuf-label,
.wpuf-form-add .ideation_area_for_title___description_ideas1 .wpuf-label,
.wpuf-form-add .ideation_area_for_title___description_ideas2 .wpuf-label,
.wpuf-form-add .ideation_area_for_title___description_ideas3 .wpuf-label,
.wpuf-form-add .ideation_area_for_title___description_ideas4 .wpuf-label,
.wpuf-form-add li[data-label="Description"] .wpuf-label {
    color:#000 !important;
}

ul.wpuf-form li .wpuf-fields input[type="text"],
ul.wpuf-form li .wpuf-fields input[type="password"],
ul.wpuf-form li .wpuf-fields input[type="email"],
ul.wpuf-form li .wpuf-fields input[type="url"],
ul.wpuf-form li .wpuf-fields input[type="number"],
ul.wpuf-form li .wpuf-fields textarea {
    color:#000;
    font-weight:bold;
}

.wpuf-form-add .phase_one_title .wpuf-label,
.wpuf-form-add .phase_two_title .wpuf-label,
.wpuf-form-add .phase_three_title .wpuf-label,
.wpuf-form-add .phase_four_title .wpuf-label {
    color:#923838 !important;
}

.wpuf-form-add .branch_one_title .wpuf-label,
.wpuf-form-add .branch__two_title .wpuf-label,
.wpuf-form-add .branch_three_title .wpuf-label,
.wpuf-form-add .branch_four_title .wpuf-label,
.wpuf-form-add .branch_one_title_p2 .wpuf-label,
.wpuf-form-add .branch_two_title_p2 .wpuf-label,
.wpuf-form-add .branch_three_title_p2 .wpuf-label,
.wpuf-form-add .branch_four_title_p2 .wpuf-label,
.wpuf-form-add .branch_one_title_p3 .wpuf-label,
.wpuf-form-add .branch_two_title_p3 .wpuf-label,
.wpuf-form-add .branch_three_title_p3 .wpuf-label,
.wpuf-form-add .branch_four_title_p3 .wpuf-label,
.wpuf-form-add .branch_one_title_p4 .wpuf-label,
.wpuf-form-add .branch_two_title_p4 .wpuf-label,
.wpuf-form-add .branch_three_title_p4 .wpuf-label,
.wpuf-form-add .branch_four_title_p4 .wpuf-label {
    color:#4f6dad !important;
}

.tagline {
    font-size:20px;
    font-weight:bold;
}

html {overflow-x:auto !important;}
.sss-chart {min-width:1140px;}


.stage-title {
    font-size:31px;
}






