/*
** Table Of Contents

**bootstrap overrides
**vertical margins and paddings
**general styles
**utilites
**styled lists
**icons
**buttons 
**common sections styles
**light section
**grey section
**darkgrey section
**dark section
**color section
**boxed layout
**template styles
**main menu (min 768px) styles
**main menu mobile styles
**blog
**widgets
**shortcodes
**plugins
  - Owl Carousel
  - BxSlider
  - Fraction Slider
  - FlexSlider
  - prettyPhoto
  - Easy pieChart
  - toTop
  - Isotope Portfolio

*/

/*
**bootstrap overrides
*/

/*5 columns for bootstrap*/

.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15
{
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-15
{
    width: 20%;
    float: left;
}

@media (min-width: 768px)
{
    .col-sm-15
    {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px)
{
    .col-md-15
    {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px)
{
    .col-lg-15
    {
        width: 20%;
        float: left;
    }
}

/*pagination*/

.pagination > li
{
    border-radius: 4px;
}

.pagination > li > a,
.pagination > li > span
{
    margin-right: 5px;
    padding: 9px 14px;
    color: #4c4c4c;
    border: none;
    font-size: 15px;
    font-weight: bold;
    border-radius: 4px;
    background: #f3f3f3;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus
{
    color: #ef8322;
    box-shadow: none;
    background: transparent;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus
{
    box-shadow: none;
    background: #ef8322;
    color: #ffffff;
}

/*forms*/

.form-control
{
    height: 42px;
    border-color: #e4e4e4;
    border-radius: 4px;
    color: #1a1a1a;
}

.form-inline .form-control
{
    margin-bottom: 7px;
}

.form-control, .form-control:focus
{
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control.invalid
{
    -webkit-box-shadow: 0 0 0 2px #ef8322;
    box-shadow: 0 0 0 2px #ef8322;
}

.form-control:focus
{
    border-color: #4c4c4c;
    color: #4c4c4c;
}

.form-control:-moz-placeholder
{
    color: #4c4c4c;
    opacity: 1;
}

.form-control::-moz-placeholder
{
    color: #4c4c4c;
    opacity: 1;
}

.form-control:-ms-input-placeholder
{
    color: #4c4c4c;
}

.form-control::-webkit-input-placeholder
{
    color: #4c4c4c;
}

.form-control:focus:-moz-placeholder
{
    color: transparent;
    opacity: 1;
}

.form-control:focus::-moz-placeholder
{
    color: transparent;
    opacity: 1;
}

.form-control:focus:-ms-input-placeholder
{
    color: transparent;
}

.form-control:focus::-webkit-input-placeholder
{
    color: transparent;
}

/*carousel*/

.carousel
{
    overflow: hidden;
}

.carousel-indicators li
{
    width: 12px;
    height: 12px;
    margin: 0;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

.carousel-indicators li:hover
{
    opacity: 0.8;
}

.carousel-control
{
    border: 1px solid #ffffff;
    color: #ffffff !important;
    border-radius: 3px;
    width: 50px;
    height: 50px;
    left: -50px;
    top: 50%;
    margin-top: -25px;
    text-shadow: none;
    opacity: 1;
    background-image: none !important;
    filter: alpha(opacity=100);
}

.carousel-control.right
{
    right: -50px;
}

.carousel:hover .carousel-control
{
    left: 50px;
}

.carousel:hover .carousel-control.right
{
    left: auto;
    right: 50px;
}

.carousel-control span
{
    font-family: 'fontello' !important;
    width: 50px !important;
    height: 50px !important;
    margin: 0 !important;
    font-size: 16px !important;
    left: 0 !important;
    top: 0 !important;
    line-height: 50px;
}

.carousel-control .icon-prev:before
{
    content: '\e801';
}

.carousel-control .icon-next:before
{
    content: '\e80a';
}

/*collapse accordion*/

.panel-heading .panel-title
{
    font-size: 20px;
    font-weight: 400;
    padding: 0;
    position: relative;
}

.panel-heading .panel-title > a
{
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    display: block;
    padding: 13px 20px 13px 10px;
    border: 1px solid #e4e4e4;
    border-radius: 3px;
    background-color: #FFF7DB;
}

.panel-heading .panel-title > a:after
{
    content: '-';
    position: absolute;
    right: 14px;
    top: 13px;
}

.panel-heading .panel-title > a:hover
{
    color: #ffffff;
    background-color: #ef8322;
    border-color: #ef8322;
}

.panel-heading .panel-title > a.collapsed:after
{
    content: '+';
    right: 12px;
}

.panel
{
    box-shadow: none;
}

.panel-group .panel
{
    border-radius: 0;
    background-color: transparent;
}

.panel-default > .panel-heading
{
    background-color: transparent;
    color: inherit;
    position: relative;
    border: none;
    border-radius: 0;
    padding: 0;
}

.panel-default
{
    border-color: transparent;
}

.panel-group .panel + .panel
{
    margin-top: 3px;
}

.panel-group .panel-heading + .panel-collapse .panel-body
{
	padding: 23px 20px 15px;
	margin-top: -3px;
	border: 1px solid #e4e4e4;
	border-radius: 3px;
	background-color: #FFD;
}

/*progress bars*/

.progress
{
    height: 7px;
    border-radius: 4px;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #f5f5f5;
    margin-left: 0px;
    margin-bottom: 45px;
    margin-top: 40px;
}

.progress-bar
{
    background-color: #ef8322;
    color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.progress-bar span
{
    position: absolute;
    font-size: 1.5em;
    left: 25px;
    margin-top: -30px;
}

/*nav*/
.nav > li {
    font-size: 16px;
    text-align: center;
}

.nav > li > a
{
    color: inherit;
}

.nav > li > a:hover,
.nav > li > a:focus
{
    background: transparent;
}

/*tabs*/

.tab-content {
  padding: 0;
  border-radius: 0 5px 5px 5px;
  background-color: #ffffff;
  padding: 10px 0px;
  border-top: 1px solid #e4e4e4;
}

.nav-tabs
{
    border-bottom-color: transparent;
    font-size: 16px;
    margin-top: 0px;
    margin-bottom: -1px;
}

.nav-tabs > li > a
{
    padding: 13px 20px;
    margin-right: 2px;
    margin-top: 0px;
    border: 1px solid #e4e4e4;
    color: #4c4c4c;
    background: #FEEDD1;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus
{
    border-bottom-color: transparent;
    background-color: #ffffff;
    color: #4c4c4c;
}

/*
**vertical margins and paddings
*/

section > .container
{
    padding-top: 30px;
    padding-bottom: 30px;
}

.darkgrey_section + .darkgrey_section > .container,
.dark_section + .dark_section > .container,
.color_section + .color_section > .container,
.light_section + .light_section > .container,
.grey_section + .grey_section > .container
{
    padding-top: 5px;
}

.darkgrey_section + .darkgrey_section[class*="with_"] > .container,
.dark_section + .dark_section[class*="with_"] > .container,
.color_section + .color_section[class*="with_"] > .container,
.light_section + .light_section[class*="with_"] > .container,
.grey_section + .grey_section[class*="with_"] > .container
{
    padding-top: 70px;
}

.row + .row
{
    margin-top: 20px;
}

section > .container > .row > [class*="col-"],
footer > .container > .row > [class*="col-"]
{
    margin-top: 10px;
    margin-bottom: 10px;
}

.table_section .row
{
    display: table;
    width: 100%;
}

.table_section [class*="col-"]
{
    display: table-cell;
    vertical-align: middle;
    float: none;
}

@media screen and (max-width: 767px)
{
    .table_section .row,
  .table_section [class*="col-"]
    {
        display: block;
        width: auto;
    }
    [class*="col-xs"] + [class*="col-xs"]
    {
        margin-top: 0;
    }
}

.action_section > .container
{
    padding-top: 40px;
    padding-bottom: 40px;
}

#pagination > .container
{
    padding-top: 30px;
    padding-bottom: 30px;
}

#footer > .container
{
    padding-top: 50px;
    padding-bottom: 30px;
}

#copyright > .container
{
    padding-top: 30px;
    padding-bottom: 30px;
}
@media (min-width: 320px) and (max-width:480px){
#copyright > .container
{
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 12px;
}
}
@media (max-width: 767px)
{
    .container
    {
        max-width: 600px;
    }
}

/*
**general styles
*/

html,
body
{
    position: relative;
    font-size: 30px;
}

::selection
{
    color: #ffffff;
    background-color: #ef8322;
}

::-moz-selection
{
    color: #ffffff;
    background-color: #ef8322;
}

body
{
    font-family: "微軟正黑體", ubuntu, sans-serif;
    font-size: 15px;
    font-weight: normal;
    line-height: 20px;
    background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6
{
    line-height: 1;
    font-weight: bold;
}

p
{
    margin-bottom: 16px;
    line-height: 26px;
}

blockquote,
.blockquote
{
    font-size: 14px;
    position: relative;
    margin: 20px 0;
    padding: 16px 16px 16px 30px;
    line-height: 1.6;
    border-left: 5px solid #ef8322;
    font-style: italic;
}

blockquote h3
{
    font-size: 0.9em;
    font-style: normal;
}

blockquote h3:before,
blockquote h3:after
{
    content: ' - ';
}

img
{
    max-width: 100%;
}

a
{
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

a:hover
{
    text-decoration: none;
    -webkit-transition: all 0.15s linear 0s;
    -moz-transition: all 0.15s linear 0s;
    -o-transition: all 0.15s linear 0s;
    -ms-transition: all 0.15s linear 0s;
    transition: all 0.15s linear 0s;
}

a:focus
{
    outline: medium none;
    text-decoration: none;
}

a img
{
    -webkit-transition: all 0.15s ease-in-out 0s;
    -moz-transition: all 0.15s ease-in-out 0s;
    -o-transition: all 0.15s ease-in-out 0s;
    -ms-transition: all 0.15s ease-in-out 0s;
    transition: all 0.15s ease-in-out 0s;
}

a:hover img
{
    opacity: 0.8;
}

iframe
{
    border: none;
    max-width: 100%;
}

label[for]
{
    display: none;
}

.about-caption i
{
    color: #ef8322;
    font-size: 36px;
}

.about-caption h3
{
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 20px;
    margin: 0 0 13px;
    text-transform: uppercase;
    vertical-align: middle;
}

/*page about*/

#organizer a img
{
    width: 180px;
}

#organizer a
{
    text-align: center;
    display: inline-block;
    margin: 0 30px 60px 30px;
    color: #ef8322;
    width: 180px;
}

#organizer-sub a img
{
    width: 120px;
}

#organizer-sub a
{
    text-align: center;
    display: inline-block;
    margin: 0 15px 50px 15px;
    width: 165px;
}

.staff dt:before
{
    font-family: 'rt-icons';
    content: "\e680";
    font-size: 12px;
    line-height: 1;
    position: relative;
    top: 0px;
    padding-right: 10px;
    color: #ef8322;
}

.staff dd
{
    text-indent: 22px;
}

/*page sponsor*/

.sponsor .s-class:before
{
    font-family: 'rt-icons';
    content: "\e6e7";
    font-size: 25px;
    line-height: 1;
    position: relative;
    top: 0px;
    padding-right: 10px;
    color: #ef8322;
}

.sponsor .s-name
{
    color: #ef8322;
    font-size: 20px;
}

@media (max-width: 767px)
{
    .about-caption > div
    {
        text-align: center;
    }
    .about-caption > div > p
    {
        text-align: left;
    }
}

/*
**utilites
*/

.alignleft
{
    float: left;
    margin: 5px 20px 15px 0;
}

.with_background
{
    border-radius: 5px;
    padding: 20px;
    background-color: #f5f5f5;
}

.with_border
{
    border-radius: 5px;
    padding: 20px;
    border: 1px solid #e4e4e4;
}

#response,
.highlight
{
    color: #ef8322;
}

/*dividers*/

.divider20
{
    margin: 20px 0;
}

.divider40
{
    margin: 40px 0;
}

.topmargin0
{
    margin-top: 0;
}

/*
**styled lists
*/

ul.list1
{
    list-style: none;
    padding-left: 22px;
}

ul.list1 li
{
    position: relative;
    padding: 4px 0 4px;
}

ul.list1 li:before
{
    content: '';
    display: block;
    position: absolute;
    border: 2px solid;
    left: -19px;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
}

ol.list3
{
    counter-reset: li;
    list-style: none outside none;
    padding: 0;
}

ol.list3 li
{
    position: relative;
    padding: 4px 0 4px 34px;
}

ol.list3 li:after
{
    content: counter(li,decimal-leading-zero) ".";
    counter-increment: li;
    position: absolute;
    left: 2px;
    top: 50%;
    margin-top: -12px;
    font-weight: 700;
    color: inherit;
    width: 26px;
    height: 26px;
    text-align: center;
    line-height: 26px;
}

/*
**icons
*/

a[class^="socialico-"]
{
    font-size: 0px !important;
    display: inline-block;
    position: relative;
    padding-right: 30px;
    line-height: 30px;
    vertical-align: top;
    margin-right: 5px;
}

a[class^="socialico-"]:before
{
    display: inline-block;
    text-indent: 0;
    overflow: hidden;
    font-family: 'socialicoregular';
    font-size: 25px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 1px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

a[class^="socialico-"]:hover:before
{
    -webkit-transition: all 0.1s ease-in-out 0s;
    -moz-transition: all 0.1s ease-in-out 0s;
    -o-transition: all 0.1s ease-in-out 0s;
    -ms-transition: all 0.1s ease-in-out 0s;
    transition: all 0.1s ease-in-out 0s;
}

h1 > [class*="rt-icon-"],
h2 > [class*="rt-icon-"],
h3 > [class*="rt-icon-"],
h4 > [class*="rt-icon-"],
h5 > [class*="rt-icon-"],
h6 > [class*="rt-icon-"],
p > [class*="rt-icon-"]
{
    font-size: 1.2em;
    position: relative;
    top: .1em;
    line-height: 0;
    padding-right: 0.1em;
}

a > [class*="rt-icon-"],
.theme_button > [class*="rt-icon-"]
{
    font-size: 1.4em;
    line-height: 0;
    position: relative;
    top: 3px;
    padding-right: 4px;
}

.theme_button > [class*="glyphicon"],
.theme_button > [class*="fa-"]
{
    padding-right: 7px;
}

.theme_button > [class*="rt-icon-"],
.theme_button > [class*="glyphicon"],
.theme_button > [class*="fa-"]
{
    margin-left: -13px;
}

/* 
**buttons 
*/

.theme_button
{
    font-size: 15px;
    padding: 12px 26px;
    line-height: 1;
    display: inline-block;
    background-color: #ef8322;
    border: 1px solid #ef8322;
    -webkit-border-radius: 3px;
    border-radius: 5px;
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
    -webkit-transition: all 0.4s linear 0s;
    -moz-transition: all 0.4s linear 0s;
    -o-transition: all 0.4s linear 0s;
    -ms-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
}

.theme_button:active,
.theme_button:hover,
.theme_button:focus
{
    color: #ef8322;
    background-color: transparent;
    border-color: #ef8322;
    opacity: 1;
    text-decoration: none;
    outline: none;
    border-bottom: 1px solid;
    -webkit-transition: all 0.1s linear 0s;
    -moz-transition: all 0.1s linear 0s;
    -o-transition: all 0.1s linear 0s;
    -ms-transition: all 0.1s linear 0s;
    transition: all 0.1s linear 0s;
}

.theme_button:active
{
    top: 1px;
}

.theme_button.border
{
    background-color: transparent;
    border: 2px solid #ef8322;
    padding-top: 10px;
    padding-bottom: 10px;
}

/*
**common sections styles
*/

/*parallax*/

/*parallax*/

.is-safari .parallex
{
    background-attachment: scroll;
}

.parallax
{
    background-attachment: fixed !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    overflow: hidden;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: relative;
}

@media (max-width: 767px)
{
    .parallax
    {
        -webkit-background-size: auto auto !important;
        -moz-background-size: auto auto !important;
        -o-background-size: auto auto !important;
        background-size: auto auto !important;
    }
}

.parallax:after
{
    background: #1a1a1a;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.6;
    z-index: 0;
}

.parallax.grey_section:after
{
    background-color: #f3f3f3;
    opacity: 0.9;
}

.parallax.color_section:after
{
    background-color: #ef8322;
}

.parallax.dark_section:after
{
    background-color: #1a1a1a;
}

.parallax.darkgrey_section:after
{
    background-color: #9b9b9b;
}

.parallax > .container, .gradient > .container
{
    z-index: 3;
    position: relative;
}

.gradient
{
    position: relative;
    overflow: hidden;
}

.gradient:before {
  content: '';
  display: block;
  position: absolute;
  width: 1400px;
  height: 1400px;
  top: 50%;
  left: 50%;
  margin-top: -700px;
  margin-left: -700px;
  z-index: 2;
  background: -moz-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 50%);
  /* FF3.6+ */
  background: -webkit-gradient(radial, center center, 0px, center center, 50%, color-stop(0%, rgba(255, 255, 255, 0.24)), color-stop(50%, rgba(255, 255, 255, 0)));
  /* Chrome,Safari4+ */
  background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 50%);
  /* Chrome10+,Safari5.1+ */
  background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 50%);
  /* Opera 12+ */
  background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 50%);
  /* IE10+ */
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 50%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33ffffff', endColorstr='#00ffffff',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}

.with_background_image
{
    background-image: url(../img/background_section.png);
}

.with_top_border .container,
.with_bottom_border .container
{
    position: relative;
}

.with_top_border .container:before,
.with_bottom_border .container:after
{
    content: '';
    display: block;
    position: absolute;
    height: 1px;
    left: 0px;
    right: 0px;
    top: 0;
    background-color: #e4e4e4;
}

.with_bottom_border .container:after
{
    top: auto;
    bottom: 0;
}

.section_header
{
    margin-top: 4px;
    margin-bottom: 42px;
    font-size: 20px;
    position: relative;
    color: #ef8322;
    text-transform: capitalize;
    font-weight: normal;
}

.section_header:after
{
    background-color: #e4e4e4;
    bottom: -30px;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    width: 200px;
    left: 50%;
}

.section_header.page-title
{
    font-size: 48px;
}

.text-center .section_header:before, .text-center.section_header:before
{
    left: 50%;
    margin-left: -85px;
}

.text-center .section_header:after, .text-center.section_header:after
{
    margin-left: -95px;
    left: 50%;
}

.section_header + p
{
    font-size: 16px;
    line-height: 1.5em;
    max-width: 80%;
    margin: 40px auto 24px;
    position: relative;
}

.section_header.text-center + p
{
    max-width: 60%;
    margin-bottom: 14px;
}

.section_header + blockquote
{
    font-size: 16px;
    max-width: 60%;
    margin: 50px auto 44px;
    border: none;
    background-color: transparent;
    padding: 0 40px;
}

.section_header + blockquote:before, .section_header + blockquote:after
{
    font-style: normal;
    font-family: 'fontello';
    content: '\e808';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 30px;
    color: #ef8322;
}

.section_header + blockquote:after
{
    content: '\e809';
    left: auto;
    right: 0;
}

.color_section .section_header:after
{
    background-color: #ffffff;
}

.color_section .section_header:before
{
    background-color: rgba(255, 255, 255, 0.3);
}

/*page preloader*/

.preloader
{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 13000;
    height: 100%;
}

.preloader_image
{
    width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    top: 50%;
    background: url(../img/preloader.gif) no-repeat 50% 50% transparent;
    margin: -40px 0 0 -40px;
}

/**light section*/

.light_section
{
    background-color: #ffffff;
    color: #4c4c4c;
}

.light_section h1,
.light_section h2,
.light_section h3,
.light_section h4,
.light_section h5,
.light_section h6
{
    color: #4c4c4c;
}

.light_section h1 a,
.light_section h2 a,
.light_section h3 a,
.light_section h4 a,
.light_section h5 a,
.light_section h6 a
{
    color: inherit;
}

.light_section h1 a:hover,
.light_section h2 a:hover,
.light_section h3 a:hover,
.light_section h4 a:hover,
.light_section h5 a:hover,
.light_section h6 a:hover
{
    color: #ef8322;
}

.light_section .section_header
{
    color: #ef8322;
}

.light_section a
{
    color: #4c4c4c;
}

.light_section a:hover
{
    color: #ef8322;
}

.light_section .theme_button
{
    color: #ffffff;
}

.light_section .theme_button:hover, .light_section .theme_button:focus
{
    color: #ef8322;
}

.light_section .theme_button.border:hover, .light_section .theme_button.border:focus
{
    background-color: #ef8322;
    color: #ffffff;
}

.light_section .widget_tag_cloud a:hover
{
    color: #ffffff;
}

/**grey section*/

.grey_section
{
    background-color: #f3f3f3;
    color: #3f3f3f;
}

.grey_section h1,
.grey_section h2,
.grey_section h3,
.grey_section h4,
.grey_section h5,
.grey_section h6
{
    color: #444444;
}

.grey_section a
{
    color: #4c4c4c;
}

.grey_section a:hover
{
    color: #ef8322;
}

.grey_section .section_header
{
    color: #ef8322;
}

.grey_section .theme_button
{
    color: #4c4c4c;
    border-color: #d7d7d7;
}

.grey_section .theme_button:hover, .grey_section .theme_button:focus
{
    color: #ffffff;
    border-color: #ef8322;
}

.grey_section .theme_button.border
{
    border-color: #ef8322;
}

.grey_section .theme_button.border:hover, .grey_section .theme_button.border:focus
{
    background-color: #ef8322;
    color: #ffffff;
}

.grey_section .with_background
{
    background-color: #f0f0f0;
}

.grey_section .with_border
{
    border-color: #d7d7d7;
}

.grey_section.with_top_border .container:before, .grey_section.with_bottom_border .container:after
{
    background-color: #d7d7d7;
}

.grey_section hr
{
    border-color: #e1e1e1;
}

.grey_section aside .widget > h3,
.grey_section aside .widget .widget-title
{
    background-color: #ffffff;
}

.grey_section .nav > li > a:hover,
.grey_section .nav > li > a:focus
{
    background-color: #f0f0f0;
    color: #4c4c4c;
}

.grey_section .nav > li.active > a:hover,
.grey_section .nav > li.active > a:focus,
.grey_section .nav-tabs > li.active > a:hover,
.grey_section .nav-tabs > li.active > a:focus
{
    background-color: #ffffff;
}

.grey_section .panel-heading .panel-title > a,
.grey_section .panel-group .panel-heading + .panel-collapse .panel-body
{
    border-color: #d7d7d7;
}

.grey_section .progress
{
    background-color: #ffffff;
}

.grey_section .testimonials-carousel
{
    border: none;
}

.grey_section .widget_recent_entries li + li,
.grey_section .widget_recent_comments li + li,
.grey_section .widget_archive li + li,
.grey_section .widget_categories li + li,
.grey_section .widget_meta li + li,
.grey_section .widget_nav_menu li + li,
.grey_section .widget_pages li + li,
.grey_section .widget_popular_entries li + li
{
    border-color: #d7d7d7;
}

.grey_section .tweet_list li + li .tweet_right
{
    border-color: #d7d7d7;
}

.grey_section .price-table,
.grey_section .features-list li
{
    border-color: #d7d7d7;
}

.grey_section .widget_tag_cloud a
{
    border-color: #d7d7d7;
}

.grey_section .widget_tag_cloud a:hover
{
    color: #ffffff;
}

.grey_section .widget_calendar caption,
.grey_section .widget_calendar thead,
.grey_section .widget_calendar tbody,
.grey_section .widget_calendar tfoot,
.grey_section .widget_calendar tbody td
{
    border-color: #d7d7d7;
}

.grey_section .owl-theme .owl-controls .owl-buttons div
{
    border-color: #d7d7d7;
}

.grey_section #isotope_filters a
{
    border-color: #d7d7d7;
}

.grey_section .project-details p + p
{
    border-color: #d7d7d7;
}

.grey_section .gallery-item-description p, .grey_section .gallery-item-description h3, .grey_section .gallery-item-description a, .grey_section .gallery-item-description h4
{
    color: #ffffff;
}

.grey_section .gallery-item-description a:hover
{
    color: #4c4c4c;
}

/**darkgrey section*/

.darkgrey_section
{
    background-color: #9b9b9b;
    color: #bbbbbb;
}

.darkgrey_section h1,
.darkgrey_section h2,
.darkgrey_section h3,
.darkgrey_section h4,
.darkgrey_section h5,
.darkgrey_section h6
{
    color: #ffffff;
}

.darkgrey_section h1 a,
.darkgrey_section h2 a,
.darkgrey_section h3 a,
.darkgrey_section h4 a,
.darkgrey_section h5 a,
.darkgrey_section h6 a
{
    color: #ffffff;
}

.darkgrey_section h1 a:hover,
.darkgrey_section h2 a:hover,
.darkgrey_section h3 a:hover,
.darkgrey_section h4 a:hover,
.darkgrey_section h5 a:hover,
.darkgrey_section h6 a:hover
{
    color: #ef8322;
}

.darkgrey_section a
{
    color: #ef8322;
}

.darkgrey_section a:hover
{
    color: #ffffff;
}

.darkgrey_section .theme_button
{
    border-color: #b4b4b4;
    color: #ffffff;
}

.darkgrey_section .theme_button:hover, .darkgrey_section .theme_button:focus
{
    border-color: #ef8322;
}

.darkgrey_section .theme_button.border
{
    border-color: #ef8322;
}

.darkgrey_section .theme_button.border:hover, .darkgrey_section .theme_button.border:focus
{
    background-color: #ef8322;
}

.darkgrey_section .with_background
{
    background-color: #a3a3a3;
}

.darkgrey_section .with_border
{
    border-color: #b4b4b4;
}

.darkgrey_section.with_top_border .container:before, .darkgrey_section.with_bottom_border .container:after
{
    background-color: #b4b4b4;
}

.darkgrey_section .section_header:before
{
    background-color: #b4b4b4;
}

.darkgrey_section .form-control
{
    color: #ffffff;
    border-color: #b4b4b4;
    background-color: #a3a3a3;
}

.darkgrey_section hr
{
    border-color: #b4b4b4;
}

.darkgrey_section aside
{
    border-color: #b4b4b4;
}

.darkgrey_section aside .widget > h3,
.darkgrey_section aside .widget .widget-title
{
    background-color: #a3a3a3;
}

.darkgrey_section aside .widget a
{
    color: #ffffff;
}

.darkgrey_section .pagination > li > a, .darkgrey_section .pagination > li > span
{
    border-color: #b4b4b4;
    background-color: #a3a3a3;
}

.darkgrey_section .pagination > .active > a,
.darkgrey_section .pagination > .active > span,
.darkgrey_section .pagination > .active > a:hover,
.darkgrey_section .pagination > .active > span:hover,
.darkgrey_section .pagination > .active > a:focus,
.darkgrey_section .pagination > .active > span:focus,
.darkgrey_section .pagination > li > a:hover,
.darkgrey_section .pagination > li > span:hover,
.darkgrey_section .pagination > li > a:focus,
.darkgrey_section .pagination > li > span:focus
{
    border-color: #b4b4b4;
    -webkit-box-shadow: inset 0px 0px 10px 0px rgba(255, 255, 255, 0.1);
    box-shadow: inset 0px 0px 10px 0px rgba(255, 255, 255, 0.1);
}

.darkgrey_section .thumbnail
{
    border-color: #b4b4b4;
}

.darkgrey_section .thumbnail .caption
{
    border-color: #b4b4b4;
    background-color: #a3a3a3;
}

.darkgrey_section .progress
{
    background-color: #a3a3a3;
}

.darkgrey_section .percent
{
    color: #ffffff;
}

.darkgrey_section .owl-theme .owl-controls .owl-buttons div
{
    border-color: #b4b4b4;
    color: #ffffff;
}

.darkgrey_section .testimonials-carousel
{
    border-color: #b4b4b4;
}

.darkgrey_section .widget_recent_entries li + li,
.darkgrey_section .widget_recent_comments li + li,
.darkgrey_section .widget_archive li + li,
.darkgrey_section .widget_categories li + li,
.darkgrey_section .widget_meta li + li,
.darkgrey_section .widget_nav_menu li + li,
.darkgrey_section .widget_pages li + li,
.darkgrey_section .widget_popular_entries li + li
{
    border-color: #b4b4b4;
}

.darkgrey_section .widget_nav_menu ul ul
{
    border-color: #b4b4b4;
}

.darkgrey_section .widget_recent_comments li:before
{
    color: #ffffff;
}

.darkgrey_section .tweet_list li + li .tweet_right
{
    border-color: #b4b4b4;
}

.darkgrey_section .widget_flickr img
{
    border-color: #b4b4b4;
}

.darkgrey_section .widget_popular_entries .media-object
{
    border-color: #b4b4b4;
}

.darkgrey_section .price-table,
.darkgrey_section .features-list li
{
    border-color: #b4b4b4;
}

.darkgrey_section .plan-name
{
    border-color: #b4b4b4;
    background-color: #a3a3a3;
}

.darkgrey_section .price-table.style2
{
    background-color: #a3a3a3;
}

.darkgrey_section .plan-price p
{
    color: #ffffff;
}

.darkgrey_section .features-list .disabled:before
{
    color: #cecece;
}

.darkgrey_section .widget_tag_cloud a
{
    border-color: #b4b4b4;
}

.darkgrey_section .widget_tag_cloud a:hover
{
    color: #ffffff;
}

.darkgrey_section .widget_calendar caption,
.darkgrey_section .widget_calendar thead,
.darkgrey_section .widget_calendar tbody,
.darkgrey_section .widget_calendar tfoot,
.darkgrey_section .widget_calendar tbody td
{
    border-color: #b4b4b4;
}

.darkgrey_section .widget_calendar caption,
.darkgrey_section .widget_calendar thead
{
    background-color: #a3a3a3;
}

.darkgrey_section .widget_calendar tbody td a
{
    background-color: #ef8322;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.darkgrey_section .widget_calendar tbody td a:hover
{
    background-color: #a3a3a3;
}

.darkgrey_section .nav > li > a,
.darkgrey_section .vertical-tabs .nav > li > a
{
    border-color: #b4b4b4;
}

.darkgrey_section .nav > li > a:hover,
.darkgrey_section .vertical-tabs .nav > li > a:hover
{
    background-color: #a3a3a3;
}

.darkgrey_section .panel-group .panel-heading + .panel-collapse .panel-body
{
    border-color: #b4b4b4;
}

.darkgrey_section .nav-tabs > li > a,
.darkgrey_section .vertical-tabs .nav > li > a,
.darkgrey_section .panel-heading .panel-title > a
{
    border-color: #b4b4b4;
    background-color: #989898;
    color: #ffffff;
}

.darkgrey_section .panel-heading .panel-title > a:hover
{
    background-color: #ef8322;
    border-color: #ef8322;
}

.darkgrey_section .tab-content,
.darkgrey_section .panel-group .panel-heading + .panel-collapse .panel-body
{
    background-color: #a3a3a3;
    border-color: #b4b4b4;
}

.darkgrey_section .nav-tabs > li.active > a,
.darkgrey_section .vertical-tabs .nav > li.active a
{
    background-color: #a3a3a3;
    border-color: #b4b4b4;
}

.darkgrey_section .nav-tabs > li.active > a
{
    border-bottom-color: #a3a3a3;
}

.darkgrey_section .nav-tabs > li.active > a:hover,
.darkgrey_section .nav-tabs > li.active > a:focus
{
    color: #ffffff;
}

.darkgrey_section .vertical-tabs .nav > li.active a
{
    color: #ffffff;
}

.darkgrey_section .vertical-tabs .nav > li.active a:after
{
    border-left-color: #a3a3a3;
}

.darkgrey_section .vertical-tabs .nav > li.active a:before
{
    border-left-color: #b4b4b4;
}

.darkgrey_section .entry-meta,
.darkgrey_section .entry-tags,
.darkgrey_section .blog-single .entry-tags
{
    border-color: #b4b4b4 !important;
}

.darkgrey_section .entry-tags a:before, .darkgrey_section .entry-meta a:before, .darkgrey_section time:before, .darkgrey_section .reply a:before
{
    color: #ffffff;
}

.darkgrey_section .entry-thumbnail img
{
    background-color: #a3a3a3;
    border-color: #b4b4b4;
}

.darkgrey_section .author-meta
{
    background-color: #a3a3a3;
    border-color: #b4b4b4;
}

.darkgrey_section .comments-area .media-object
{
    background-color: #a3a3a3;
    border-color: #b4b4b4;
}

.darkgrey_section .comments-area .media-body
{
    background-color: #a3a3a3;
    border-color: #b4b4b4;
}

.darkgrey_section .comment-meta
{
    border-color: #b4b4b4 !important;
}

@media (min-width: 768px)
{
    .darkgrey_section .author-meta .col-sm-2 img
    {
        background-color: #adadad;
        border-color: #b4b4b4;
    }
}

.darkgrey_section #isotope_filters a
{
    color: #ffffff;
    border-color: #b4b4b4;
}

.darkgrey_section .project-details p + p
{
    border-color: #b4b4b4;
}

.darkgrey_section + .darkgrey_section
{
    border-top: none;
}

/**dark section*/

.dark_section
{
    background-color: #1a1a1a;
    color: #f5f5f5;
}

.dark_section h1,
.dark_section h2,
.dark_section h3,
.dark_section h4,
.dark_section h5,
.dark_section h6
{
    color: #ffffff;
}

.dark_section h1 a,
.dark_section h2 a,
.dark_section h3 a,
.dark_section h4 a,
.dark_section h5 a,
.dark_section h6 a
{
    color: #ffffff;
}

.dark_section h1 a:hover,
.dark_section h2 a:hover,
.dark_section h3 a:hover,
.dark_section h4 a:hover,
.dark_section h5 a:hover,
.dark_section h6 a:hover
{
    color: #ef8322;
}

.dark_section a
{
    color: #ef8322;
}

.dark_section a:hover
{
    color: #ffffff;
}

.dark_section .theme_button
{
    color: #ffffff;
}

.dark_section .theme_button:hover, .dark_section .theme_button:focus
{
    border-color: #ef8322;
    color: #ef8322;
}

.dark_section .theme_button.border
{
    border-color: #ef8322;
}

.dark_section .theme_button.border:hover, .dark_section .theme_button.border:focus
{
    background-color: #ef8322;
}

.dark_section .with_background
{
    background-color: #222222;
}

.dark_section .with_border
{
    border-color: #343434;
}

.dark_section.with_top_border .container:before, .dark_section.with_bottom_border .container:after
{
    background-color: #343434;
}

.dark_section .section_header:before
{
    background-color: #b4b4b4;
}

.dark_section hr
{
    border-color: #343434;
}

.dark_section aside
{
    border-color: #343434;
}

.dark_section aside .widget > h3,
.dark_section aside .widget .widget-title
{
    background-color: #222222;
}

.dark_section aside .widget a
{
    color: #ffffff;
}

.dark_section .pagination > li > a, .dark_section .pagination > li > span
{
    border-color: #343434;
    background-color: #222222;
}

.dark_section .pagination > .active > a,
.dark_section .pagination > .active > span,
.dark_section .pagination > .active > a:hover,
.dark_section .pagination > .active > span:hover,
.dark_section .pagination > .active > a:focus,
.dark_section .pagination > .active > span:focus,
.dark_section .pagination > li > a:hover,
.dark_section .pagination > li > span:hover,
.dark_section .pagination > li > a:focus,
.dark_section .pagination > li > span:focus
{
    border-color: #343434;
    -webkit-box-shadow: inset 0px 0px 10px 0px rgba(255, 255, 255, 0.1);
    box-shadow: inset 0px 0px 10px 0px rgba(255, 255, 255, 0.1);
}

.dark_section .thumbnail
{
    border-color: #343434;
}

.dark_section .thumbnail .caption
{
    border-color: #343434;
    background-color: #222222;
}

.dark_section .progress
{
    background-color: #222222;
}

.dark_section .percent
{
    color: #ffffff;
}

.dark_section .owl-theme .owl-controls .owl-buttons div
{
    border-color: #343434;
    color: #ffffff;
}

.dark_section .testimonials-carousel
{
    border-color: #343434;
}

.dark_section .widget_recent_entries li + li,
.dark_section .widget_recent_comments li + li,
.dark_section .widget_archive li + li,
.dark_section .widget_categories li + li,
.dark_section .widget_meta li + li,
.dark_section .widget_nav_menu li + li,
.dark_section .widget_pages li + li,
.dark_section .widget_popular_entries li + li
{
    border-color: #343434;
}

.dark_section .widget_nav_menu ul ul
{
    border-color: #343434;
}

.dark_section .widget_recent_comments li:before
{
    color: #ffffff;
}

.dark_section .tweet_list li + li .tweet_right
{
    border-color: #343434;
}

.dark_section .widget_flickr img
{
    border-color: #343434;
}

.dark_section .widget_popular_entries .media-object
{
    border-color: #343434;
}

.dark_section .plan-price
{
    color: #ffffff;
}

.dark_section .price-table.style2
{
    background-color: #222222;
}

.dark_section .plan-price p
{
    color: #ffffff;
}

.dark_section .widget_tag_cloud a
{
    border-color: #343434;
}

.dark_section .widget_tag_cloud a:hover
{
    color: #ffffff;
}

.dark_section .widget_calendar caption,
.dark_section .widget_calendar thead,
.dark_section .widget_calendar tbody,
.dark_section .widget_calendar tfoot,
.dark_section .widget_calendar tbody td
{
    border-color: #343434;
}

.dark_section .widget_calendar caption,
.dark_section .widget_calendar thead
{
    background-color: #222222;
}

.dark_section .widget_calendar tbody td a
{
    background-color: #ef8322;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.dark_section .widget_calendar tbody td a:hover
{
    background-color: #222222;
}

.dark_section .nav > li > a,
.dark_section .vertical-tabs .nav > li > a
{
    border-color: #343434;
}

.dark_section .nav > li > a:hover,
.dark_section .vertical-tabs .nav > li > a:hover
{
    background-color: #222222;
}

.dark_section .panel-group .panel-heading + .panel-collapse .panel-body
{
    border-color: #343434;
}

.dark_section .nav-tabs > li > a,
.dark_section .vertical-tabs .nav > li > a,
.dark_section .panel-heading .panel-title > a
{
    border-color: #343434;
    background-color: #171717;
    color: #ffffff;
}

.dark_section .panel-heading .panel-title > a:hover
{
    background-color: #ef8322;
    border-color: #ef8322;
}

.dark_section .tab-content,
.dark_section .panel-group .panel-heading + .panel-collapse .panel-body
{
    background-color: #222222;
    border-color: #343434;
}

.dark_section .nav-tabs > li.active > a,
.dark_section .vertical-tabs .nav > li.active a
{
    background-color: #222222;
    border-color: #343434;
}

.dark_section .nav-tabs > li.active > a
{
    border-bottom-color: #222222;
}

.dark_section .nav-tabs > li.active > a:hover,
.dark_section .nav-tabs > li.active > a:focus
{
    color: #ffffff;
}

.dark_section .vertical-tabs .nav > li.active a
{
    color: #ffffff;
}

.dark_section .vertical-tabs .nav > li.active a:after
{
    border-left-color: #222222;
}

.dark_section .vertical-tabs .nav > li.active a:before
{
    border-left-color: #343434;
}

.dark_section .entry-meta,
.dark_section .entry-tags,
.dark_section .blog-single .entry-tags
{
    border-color: #343434 !important;
}

.dark_section .entry-tags a:before, .dark_section .entry-meta a:before, .dark_section time:before, .dark_section .reply a:before
{
    color: #ffffff;
}

.dark_section .entry-thumbnail img
{
    background-color: #222222;
    border-color: #343434;
}

.dark_section .author-meta
{
    background-color: #222222;
    border-color: #343434;
}

.dark_section .comments-area .media-object
{
    background-color: #222222;
    border-color: #343434;
}

.dark_section .comments-area .media-body
{
    background-color: #222222;
    border-color: #343434;
}

.dark_section .comment-meta
{
    border-color: #343434 !important;
}

@media (min-width: 768px)
{
    .dark_section .author-meta .col-sm-2 img
    {
        background-color: #2c2c2c;
        border-color: #343434;
    }
}

.dark_section #isotope_filters a
{
    color: #ffffff;
    border-color: #343434;
}

.dark_section .project-details p + p
{
    border-color: #343434;
}

/**color section*/

.color_section
{
    background-color: #ef8322;
    color: #ffffff;
}

.color_section h1,
.color_section h2,
.color_section h3,
.color_section h4,
.color_section h5,
.color_section h6
{
    color: #ffffff;
}

.color_section h1 a,
.color_section h2 a,
.color_section h3 a,
.color_section h4 a,
.color_section h5 a,
.color_section h6 a
{
    color: #ffffff;
}

.color_section h1 a:hover,
.color_section h2 a:hover,
.color_section h3 a:hover,
.color_section h4 a:hover,
.color_section h5 a:hover,
.color_section h6 a:hover
{
    color: #fee4ea;
}

.color_section a
{
    color: #ffffff;
}

.color_section a:hover
{
    color: #fee4ea;
}

.color_section blockquote, .color_section .blockquote
{
    border-color: #fb819f;
}

.color_section .theme_button
{
    border-color: #ffffff;
    color: #ffffff;
}

.color_section .theme_button:hover, .color_section .theme_button:focus
{
    background-color: #ffffff;
    color: #1a1a1a;
}

.color_section .theme_button.border
{
    border-color: #4c4c4c;
}

.color_section .theme_button.border:hover, .color_section .theme_button.border:focus
{
    background-color: #ef8322;
}

.color_section .with_background
{
    background-color: #fa5f85;
}

.color_section .with_border
{
    border-color: #fb819f;
}

.color_section.with_top_border .container:before, .color_section.with_bottom_border .container:after
{
    background-color: #fb819f;
}

.color_section .section_header:before
{
    background-color: #fb819f;
}

.color_section #response,
.color_section .highlight
{
    color: #ffffff;
}

.color_section .form-control
{
    color: #ffffff;
    border-color: #fb819f;
    background-color: #fa5f85;
}

.color_section .form-control:-moz-placeholder
{
    color: #fee4ea;
}

.color_section .form-control::-moz-placeholder
{
    color: #fee4ea;
}

.color_section .form-control:-ms-input-placeholder
{
    color: #fee4ea;
}

.color_section .form-control::-webkit-input-placeholder
{
    color: #fee4ea;
}

.color_section .form-control:focus:-moz-placeholder
{
    color: transparent;
    opacity: 1;
}

.color_section .form-control:focus::-moz-placeholder
{
    color: transparent;
    opacity: 1;
}

.color_section .form-control:focus:-ms-input-placeholder
{
    color: transparent;
}

.color_section .form-control:focus::-webkit-input-placeholder
{
    color: transparent;
}

.color_section hr
{
    border-color: #fb819f;
}

.color_section aside
{
    border-color: #fb819f;
}

.color_section aside .widget > h3,
.color_section aside .widget .widget-title
{
    background-color: #fa5f85;
    border-color: #ffffff;
}

.color_section aside .widget a
{
    color: #ffffff;
}

.color_section aside .widget a:hover
{
    color: #fee4ea;
}

.color_section .pagination > li > a,
.color_section .pagination > li > span
{
    color: #ffffff;
    border-color: #fb819f;
    background-color: #fa5f85;
}

.color_section .pagination > .active > a,
.color_section .pagination > .active > span,
.color_section .pagination > .active > a:hover,
.color_section .pagination > .active > span:hover,
.color_section .pagination > .active > a:focus,
.color_section .pagination > .active > span:focus,
.color_section .pagination > li > a:hover,
.color_section .pagination > li > span:hover,
.color_section .pagination > li > a:focus,
.color_section .pagination > li > span:focus
{
    background-color: #ffffff;
    border-color: #ffffff;
    color: #1a1a1a;
    -webkit-box-shadow: inset 0px 0px 10px 0px rgba(255, 255, 255, 0.1);
    box-shadow: inset 0px 0px 10px 0px rgba(255, 255, 255, 0.1);
}

.color_section .thumbnail
{
    border-color: #fb819f;
}

.color_section .thumbnail .caption
{
    border-color: #fb819f;
    background-color: #fa5f85;
}

.color_section .thumbnail + h3 + p
{
    color: #1a1a1a;
}

.color_section .progress
{
    background-color: #fa5f85;
}

.color_section .progress-bar
{
    background-color: #ffffff;
}

.color_section .percent
{
    color: #ffffff;
}

.color_section .owl-theme .owl-controls .owl-buttons div
{
    border-color: #fb819f;
    color: #ffffff;
}

.color_section .owl-theme .owl-controls .owl-buttons div:hover
{
    background-color: #ffffff;
    border-color: #ffffff;
    color: #4c4c4c;
}

.color_section .testimonials-carousel
{
    border-color: #fb819f;
}

.color_section .testimonials-carousel .carousel-indicators li
{
    border-color: #ffffff;
}

.color_section .testimonials-carousel .carousel-indicators li.active
{
    background-color: #ffffff;
}

.color_section .widget_recent_entries li + li,
.color_section .widget_recent_comments li + li,
.color_section .widget_archive li + li,
.color_section .widget_categories li + li,
.color_section .widget_meta li + li,
.color_section .widget_nav_menu li + li,
.color_section .widget_pages li + li,
.color_section .widget_popular_entries li + li
{
    border-color: #fb819f;
}

.color_section .widget_recent_entries a:before, .color_section .widget_archive a:before, .color_section .widget_categories a:before, .color_section .widget_meta a:before, .color_section .widget_nav_menu a:before, .color_section .widget_pages a:before
{
    color: #ffffff;
}

.color_section .widget_nav_menu ul ul
{
    border-color: #fb819f;
}

.color_section .widget_recent_comments li:before
{
    color: #ffffff;
}

.color_section .tweet_list li + li .tweet_right
{
    border-color: #fb819f;
}

.color_section .widget_flickr img
{
    border-color: #fb819f;
}

.color_section .widget_popular_entries .media-object
{
    border-color: #fb819f;
}

.color_section .price-table,
.color_section .features-list li
{
    border-color: #fb819f;
}

.color_section .plan-name
{
    border-color: #fb819f;
    background-color: #fa5f85;
}

.color_section .plan-price span:first-child,
.color_section .plan-price span + span
{
    color: #1a1a1a;
}

.color_section .price-table.style2
{
    background-color: #fa5f85;
}

.color_section .plan-price p
{
    color: #ffffff;
}

.color_section .features-list .enabled:before
{
    color: #1a1a1a;
}

.color_section .features-list .disabled:before
{
    color: #fee4ea;
}

.color_section .widget_tag_cloud a
{
    border-color: #fb819f;
}

.color_section .widget_tag_cloud a:hover
{
    color: #4c4c4c !important;
    background-color: #ffffff;
}

.color_section .widget_calendar caption,
.color_section .widget_calendar thead,
.color_section .widget_calendar tbody,
.color_section .widget_calendar tfoot,
.color_section .widget_calendar tbody td
{
    border-color: #fb819f;
}

.color_section .widget_calendar caption,
.color_section .widget_calendar thead
{
    background-color: #fa5f85;
}

.color_section .widget_calendar tbody td a
{
    background-color: #ef8322;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.color_section .widget_calendar tbody td a:hover
{
    background-color: #fa5f85;
}

.color_section .nav > li > a,
.color_section .vertical-tabs .nav > li > a
{
    border-color: #fb819f;
}

.color_section .nav > li > a:hover,
.color_section .vertical-tabs .nav > li > a:hover
{
    background-color: #fa5f85;
}

.color_section .panel-group .panel-heading + .panel-collapse .panel-body
{
    border-color: #fb819f;
}

.color_section .nav-tabs > li > a,
.color_section .vertical-tabs .nav > li > a,
.color_section .panel-heading .panel-title > a
{
    border-color: #fb819f;
    background-color: #f94b76;
    color: #ffffff;
}

.color_section .panel-heading .panel-title > a:hover
{
    background-color: #ef8322;
    border-color: #ef8322;
}

.color_section .tab-content,
.color_section .panel-group .panel-heading + .panel-collapse .panel-body
{
    background-color: #fa5f85;
    border-color: #fb819f;
}

.color_section .nav-tabs > li.active > a,
.color_section .vertical-tabs .nav > li.active a
{
    background-color: #fa5f85;
    border-color: #fb819f;
}

.color_section .nav-tabs > li.active > a
{
    border-bottom-color: #fa5f85;
}

.color_section .nav-tabs > li.active > a:hover,
.color_section .nav-tabs > li.active > a:focus
{
    color: #ffffff;
}

.color_section .vertical-tabs .nav > li.active a
{
    color: #ffffff;
}

.color_section .vertical-tabs .nav > li.active a:after
{
    border-left-color: #fa5f85;
}

.color_section .vertical-tabs .nav > li.active a:before
{
    border-left-color: #fb819f;
}

.color_section .entry-meta,
.color_section .entry-tags,
.color_section .blog-single .entry-tags
{
    border-color: #fb819f !important;
}

.color_section .entry-tags a:before, .color_section .entry-meta a:before, .color_section time:before, .color_section .reply a:before
{
    color: #ffffff;
}

.color_section .entry-thumbnail img
{
    background-color: #fa5f85;
    border-color: #fb819f;
}

.color_section .author-meta
{
    background-color: #fa5f85;
    border-color: #fb819f;
}

.color_section .comments-area .media-object
{
    background-color: #fa5f85;
    border-color: #fb819f;
}

.color_section .comments-area .media-body
{
    background-color: #fa5f85;
    border-color: #fb819f;
}

.color_section .comment-meta
{
    border-color: #fb819f !important;
}

@media (min-width: 768px)
{
    .color_section .author-meta .col-sm-2 img
    {
        background-color: #fa7394;
        border-color: #fb819f;
    }
}

.color_section #isotope_filters a
{
    color: #ffffff;
    border-color: #fb819f;
}

.color_section #isotope_filters a:hover
{
    background-color: #ffffff;
    border-color: #ffffff;
    color: #4c4c4c;
}

.color_section .project-details p + p
{
    border-color: #fb819f;
}

/*
**boxed layout
*/

body.boxed
{
    position: static;
    width: auto;
    height: auto;
    background: url(../example/bgboxed.jpg) no-repeat scroll 0 0px;
    background-attachment: fixed;
}

.boxed .container
{
    max-width: 100%;
    padding-left: 50px;
    padding-right: 50px;
}

.boxed #box_wrapper.container
{
    padding: 0;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

/*
animated elements
*/

.animated
{
    visibility: visible !important;
}

/*
**template styles
*/

#header
{
    background: rgba(255, 255, 255, 1);
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 10000;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

#header.affix
{
    background: #ffffff;
    position: fixed;
}

#header .navbar-brand
{
    padding: 10px 0 0;
    font-size: 18px;
    color: #ef8322;
    height: auto;
    text-transform: capitalize;
    font-weight: bold;
    max-width: 220px;
    z-index: 9999;
}

@media (max-width: 1199px)
{
    #header .navbar-brand
    {
        transform: scale(0.8);
        -moz-transform: scale(0.8);
        -ms-transform: scale(0.8);
        -webkit-transform: scale(0.8);
        -o-transform: scale(0.8);
        margin-left: -30px;
    }
}

@media (max-width: 991px)
{
    #header .navbar-brand
    {
        display: inline-block;
    }
}

@media (max-width: 767px)
{
    #header.affix
    {
        background-color: #fff;
    }
}

#header .navbar-brand [class*="icon"]
{
    background-color: #ef8322;
    font-size: 30px;
    color: #ffffff;
    border-radius: 100%;
    display: inline-block;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    position: relative;
    left: -4px;
    padding: 0;
    top: auto;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

#header .navbar-brand:hover [class*="icon"]
{
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

/*flexslider mainslider styles*/

#mainslider .flexslider
{
    position: relative;
    overflow: hidden;
    z-index: 1;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}

#mainslider .flexslider:before,
#mainslider .flexslider:after
{
    content: "";
    position: absolute;
    background: transparent;
    z-index: -2;
    bottom: 15px;
    left: 10px;
    width: 50%;
    height: 20%;
    max-width: 300px;
    -webkit-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
    -moz-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
    box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    transform: rotate(-3deg);
}

#mainslider .flexslider:after
{
    right: 10px;
    left: auto;
    -webkit-transform: rotate(3deg);
    -moz-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    -o-transform: rotate(3deg);
    transform: rotate(3deg);
}

#mainslider .slide_description_wrapper
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 32%;
    height: 100%;
    width: 100%;
}

#mainslider .slide_description_wrapper:before, #mainslider .slide_description
{
    display: inline-block;
    vertical-align: middle;
}

#mainslider .slide_description_wrapper:before
{
    content: '';
    display: inline-block;
    width: 0;
    height: 100%;
    vertical-align: middle;
    margin-left: -0.25em;
}

@media (max-width: 1350px)
{
    #mainslider .slide_description_wrapper
    {
        left: 27%;
    }
}

@media (max-width: 1199px)
{
    #mainslider .slide_description_wrapper
    {
        left: 23%;
    }
}

@media (max-width: 1025px)
{
    #mainslider .slide_description_wrapper
    {
        left: 18%;
    }
}

@media (max-width: 928px)
{
    #mainslider .slide_description_wrapper
    {
        left: 14%;
    }
}

@media (max-width: 850px)
{
    #mainslider .slide_description_wrapper
    {
        left: 9%;
    }
}

@media (max-width: 700px)
{
    #mainslider .slide_description_wrapper
    {
        left: 0%;
    }
}

@media (max-width: 650px)
{
    #mainslider .slide_description_wrapper
    {
        left: 10%;
    }
}

@media (max-width: 400px)
{
    #mainslider .flex-control-nav
    {
        display: none;
    }
    #mainslider .slide_description_wrapper
    {
        left: 0%;
    }
}

aside
{
    width: 100%;
    border: 1px solid #e4e4e4;
    border-radius: 3px;
    padding: 20px;
}

aside .widget a
{
    color: #4c4c4c;
}

aside .widget a:hover
{
    color: #ef8322;
}

@media (min-width: 768px)
{
/*sidebar with background*/
    #content.left-sidebar .col-lg-9
    {
        padding-left: 30px;
    }
    #content.right-sidebar .col-lg-9
    {
        padding-right: 30px;
    }
}

#partners-carousel
{
    text-align: center;
}

#related-gallery-items-carousel
{
    margin-top: 30px;
}

#testimonials
{
    background-image: url(../example/parallax/testimonials.jpg);
}

#prices
{
    background-image: url(../example/parallax/prices.jpg);
}

#serv
{
    background-image: url(../example/parallax/serv.jpg);
}

#copyright p
{
    margin-bottom: 0;
    color: #ffffff;
}

#map
{
    height: 400px;
}

#map img
{
    max-width: inherit;
}

/*
**main menu (min 768px) styles
*/

@media (min-width: 768px)
{
/* menu layout */
    .s
  .sf-menu, .sf-menu ul
    {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .sf-menu li
    {
        position: relative;
    }
    .sf-menu ul
    {
        position: absolute;
        display: none;
        top: 100%;
        left: 0;
        z-index: 99;
    }
    .sf-menu > li
    {
        display: inline-block;
    }
    .sf-menu li:hover > ul,
  .sf-menu li.sfHover > ul
    {
        display: block;
    }
    .sf-menu a
    {
        display: block;
        position: relative;
    }
    .sf-menu ul ul
    {
        top: -5px;
        left: 100%;
    }
    .sf-menu .margin_left
    {
        margin-left: 300px;
    }
/* menu skin */
    .sf-menu
    {
        text-align: center;
    }
    .sf-menu ul
    {
        list-style: none;
        padding: 7px 0;
        background-color: #ffffff;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
        min-width: 12em;
        *width: 12em;
    }
    .sf-menu a
    {
        padding: .75em 1.1em;
        text-decoration: none;
        zoom: 1;
    }
    .sf-menu a
    {
        color: #4c4c4c;
    }
    .sf-menu li
    {
        white-space: nowrap;
        *white-space: normal;
        -webkit-transition: background .2s;
        transition: background .2s;
    }
    .sf-menu > li > a
    {
        text-transform: none;
        font-size: 16px;
        padding: 30px 10px;
        font-weight: bold;
        color: #1a1a1a;
        display: inline-block;
    }
    .sf-menu > li > a:hover,
  .sf-menu > li.active > a
    {
        color: #ef8322;
    }
    .sf-menu ul a:hover
    {
        color: #4c4c4c;
        background-color: #ef8322;
    }
    .sf-menu li ul
    {
        text-align: left;
    }
    .sf-menu li ul li:hover a
    {
        color: #ffffff;
    }
    .sf-menu li:hover,
  .sf-menu li.sfHover
    {
        -webkit-transition: none;
        transition: none;
    }
/*** arrows (for all except IE7) **/
    .sf-arrows .sf-with-ul
    {
        padding-right: 2.5em;
        *padding-right: 1em;
    }
/* styling for both css and generated arrows */
    .sf-arrows .sf-with-ul:after
    {
        font-family: 'fontello';
        content: '\e82e';
        position: absolute;
        right: 1.44em;
        height: 0;
        width: 0;
    }
/*top menu level*/
/* styling for right-facing arrows */
    .sf-arrows ul .sf-with-ul:after
    {
        content: '\e830';
    }
}

@media (max-width: 991px)
{
    .sf-menu
    {
        text-align: center;
    }
}

/*
**main menu mobile styles
*/

@media (max-width: 767px)
{
    #header.mobile-active
    {
        bottom: 0;
    }
    #mainmenu_wrapper
    {
        position: fixed;
        visibility: hidden;
        z-index: 10;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: transparent;
        opacity: 0;
        -webkit-transition: all 0.2s linear 0s;
        -moz-transition: all 0.2s linear 0s;
        -o-transition: all 0.2s linear 0s;
        -ms-transition: all 0.2s linear 0s;
        transition: all 0.2s linear 0s;
    }
.mobile-active #mainmenu_wrapper {
    visibility: visible;
    opacity: 1;
    background-color: #111;
    background-color: rgba(0, 0, 0, 0.9);
  }
    #toggle_mobile_menu,
  #toggle_mobile_menu:before,
  #toggle_mobile_menu:after
    {
        display: block;
        position: absolute;
        content: '';
        width: 30px;
        height: 3px;
        background-color: #9b9b9b;
        z-index: 11;
    }
    #toggle_mobile_menu
    {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
        top: 5px;
        cursor: pointer;
        border: 28px solid #ffffff;
        border-left-width: 15px;
        border-right-width: 15px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
        position: fixed;
        right: 7px;
    }
    #toggle_mobile_menu:before
    {
        top: -6px;
    }
    #toggle_mobile_menu:after
    {
        top: 6px;
    }
    .mobile-active #toggle_mobile_menu
    {
        position: fixed;
        right: 0;
        top: 0;
        background-color: #ffffff;
        border-color: #ffffff;
    }
    .mobile-active #toggle_mobile_menu:before
    {
        background-color: #ffffff;
    }
    .mobile-active #toggle_mobile_menu:after
    {
        font-family: 'rt-icons';
        content: "\e602";
        background-color: transparent;
        font-size: 40px;
        color: #4c4c4c;
        top: -8px;
        left: -5px;
    }
    .sf-menu
    {
        text-align: left;
        position: absolute;
        overflow: auto;
        background-color: #ffffff;
        top: 30px;
        left: 30px;
        bottom: 30px;
        right: 30px;
        padding: 20px;
        font-size: 1.2em;
        text-transform: uppercase;
        word-wrap: break-word;
    }
    .sf-menu a
    {
        color: #4c4c4c;
    }
    .sf-menu ul
    {
        list-style: none;
        padding-left: 10px;
    }
    .sf-menu ul li a
    {
        display: block;
        padding: 10px;
        text-transform: none;
    }
    .sf-menu ul li a:before
    {
        content: '-';
        padding-right: 5px;
    }
    .sf-menu ul ul li a:before
    {
        content: '--';
        padding-right: 5px;
    }
    .sf-menu > li > a:hover
    {
        background: #ef8322;
        color: #ffffff;
    }
/*** arrows (for all except IE7) **/
    .sf-arrows .sf-with-ul
    {
        padding-right: 2.5em;
        *padding-right: 1em;
    }
/* styling for both css and generated arrows */
    .sf-arrows .sf-with-ul:after
    {
        font-family: 'fontello';
        content: '\e82e';
        position: absolute;
        right: 1.44em;
        height: 0;
        width: 0;
        font-size: 20px;
    }
/*top menu level*/
    .sf-arrows .sfHover > a,
  .sf-arrows .sfHover > a:hover
    {
        color: #ef8322;
        background-color: transparent;
        border: 1px solid #ef8322;
    }
    .sf-menu li ul li:hover a
    {
        background: #ef8322;
        color: #ffffff;
    }
}

@media (max-width: 400px)
{
    .sf-menu
    {
        top: 15px;
        left: 15px;
        bottom: 15px;
        right: 15px;
        padding: 15px 5px;
    }
}

/*
**widgets
*/

.widget > h3,
.widget .widget-title
{
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

aside .widget > h3,
aside .widget .widget-title
{
    border: 1px solid #ef8322;
    padding: 8px 0 10px 10px;
    background-color: #f3f3f3;
}

aside .widget + .widget
{
    margin-top: 40px;
}

.widget ul
{
    list-style: none;
    margin: 0;
    padding: 0;
}

/*
widget_search,
widget_mailchimp
*/

.widget_search .form-inline .form-group,
.widget_mailchimp .form-inline .form-group
{
    display: inline-block;
    vertical-align: top;
}

.widget_search input[type="text"],
.widget_mailchimp input[type="email"]
{
    max-width: 210px;
    display: inline-block;
}

.widget_search .theme_button,
.widget_mailchimp .theme_button
{
    font-size: 0;
    padding-left: 12px;
    padding-right: 12px;
}

.widget_search .theme_button:before,
.widget_mailchimp .theme_button:before
{
    font-size: 16px;
    content: "\e65d";
    font-family: 'rt-icons';
}

.widget_mailchimp .theme_button:before
{
    content: "\e70f";
}

/*
widget_recent_entries
widget_recent_comments
widget_archive
widget_categories
widget_meta
widget_nav_menu
widget_pages
*/

.widget_recent_comments li
{
    padding: 8px 0 8px 122px;
    text-indent: -122px;
}

.widget_about li
{
    padding: 0px 0 0 0;
}

.widget_recent_comments li:first-child
{
    padding-top: 0;
}

.widget_recent_comments li:before
{
    font-family: 'rt-icons';
    content: "\e6a5";
    font-size: 16px;
    line-height: 1;
    position: relative;
    top: 3px;
    padding-right: 10px;
    color: #ef8322;
}

.widget_about li:before
{
    font-family: 'rt-icons';
    content: "\e6a2";
    font-size: 16px;
    line-height: 1;
    position: relative;
    top: 0px;
    padding-right: 10px;
    color: #ef8322;
}

.widget_trafic li.h4:before
{
    font-family: 'rt-icons';
    content: "\e691";
    font-size: 16px;
    line-height: 1;
    position: relative;
    top: 0px;
    padding-right: 8px;
    color: #ef8322;
}

.widget_trafic ul ul
{
    margin-left: 26px;
}

.widget_trafic ul ul li
{
    line-height: 1.6;
}

.widget_trafic ul ul li:before
{
    content: "■";
    font-size: 16px;
    line-height: 1;
    position: relative;
    top: 0px;
    padding-right: 5px;
    color: #ef8322;
}

.widget_about p
{
    margin-left: 26px;
    margin-top: -5px;
}

.widget_about
{
    margin-bottom: 20px;
}

.signup .row
{
    margin-bottom: 20px;
}

.signup h3:before
{
    font-family: 'rt-icons';
    content: "\e6aa";
    font-size: 19px;
    line-height: 1;
    position: relative;
    top: 0px;
    padding-right: 8px;
    color: #ef8322;
}

.widget_recent_entries li,
.widget_recent_comments li,
.widget_archive li,
.widget_categories li,
.widget_meta li,
.widget_nav_menu li,
.widget_pages li
{
    position: relative;
}

.widget_recent_entries li + li,
.widget_recent_comments li + li,
.widget_archive li + li,
.widget_categories li + li,
.widget_meta li + li,
.widget_nav_menu li + li,
.widget_pages li + li
{
    border-top: 1px solid #e4e4e4;
}

.widget_recent_entries a,
.widget_archive a,
.widget_categories a,
.widget_meta a,
.widget_nav_menu a,
.widget_pages a
{
    display: block;
    padding: 15px 0;
    position: relative;
}

.widget_recent_entries li:first-child a,
.widget_archive li:first-child a,
.widget_categories li:first-child a,
.widget_meta li:first-child a,
.widget_nav_menu li:first-child a,
.widget_pages li:first-child a
{
    padding-top: 0;
}

.widget_recent_entries a:before,
.widget_archive a:before,
.widget_categories a:before,
.widget_meta a:before,
.widget_nav_menu a:before,
.widget_pages a:before
{
    font-family: 'rt-icons';
    content: "\e6a5";
    padding-right: 10px;
    color: #ef8322;
}

.widget_archive span,
.widget_categories span
{
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -10px;
}

.widget_archive li:first-child span,
.widget_categories li:first-child span
{
    margin-top: -14px;
}

.widget_nav_menu ul ul
{
    border-top: 1px solid #e4e4e4;
    padding-left: 20px;
}

.widget_nav_menu ul ul li:first-child a
{
    padding-top: 15px;
}

@media (min-width: 768px)
{
    #copyright .widget_nav_menu li
    {
        display: inline-block;
        position: relative;
        border: none;
        padding-right: 5px;
    }
    #copyright .widget_nav_menu li:before
    {
        content: '';
        position: absolute;
        padding: 0;
        left: -5px;
        top: 5px;
        bottom: 5px;
        width: 1px;
        background-color: #e4e4e4;
        opacity: 0.3;
        display: block;
    }
    #copyright .widget_nav_menu li:first-child:before
    {
        display: none;
    }
    #copyright .widget_nav_menu a
    {
        padding: 0 10px;
    }
    #copyright .widget_nav_menu a:before
    {
        display: none;
    }
}

/*widget_tag_cloud*/

.widget_tag_cloud a
{
    padding: 9px 22px;
    margin: 0 4px 4px 0;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    display: inline-block;
}

.widget_tag_cloud a:hover
{
    background-color: #ef8322;
    border-color: #ef8322;
}

/*widget_flickr*/

.widget_flickr li
{
    display: inline-block;
    margin: 0 5px 5px 0;
}

.widget_flickr img
{
    max-width: 70px;
    padding: 0px;
    border-radius: 5px;
}

/*widget_popular_entries*/

.widget_popular_entries .media-heading
{
    line-height: 1;
}

.widget_popular_entries .media-object
{
    max-width: 60px;
    padding: 0px;
    border-radius: 5px;
}

.widget_popular_entries .excerpt
{
    display: none;
}

.widget_popular_entries li + li
{
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e4e4e4;
}

.darkgrey_section .widget_popular_entries li + li
{
    border-color: #575757;
}

/*widget_calendar*/

#calendar_wrap
{
    width: 100%;
    margin-bottom: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.widget_calendar table
{
    width: 100%;
}

.widget_calendar caption,
.widget_calendar thead,
.widget_calendar tbody,
.widget_calendar tfoot
{
    border: 1px solid #e4e4e4;
}

.widget_calendar caption
{
    font-size: 1.3em;
    text-transform: uppercase;
    padding: 10px 0 2px;
    border-bottom: none;
    background-color: #f5f5f5;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.widget_calendar thead
{
    border-top: none;
    background-color: #f5f5f5;
}

.widget_calendar tfoot
{
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.widget_calendar th
{
    font-weight: normal;
    font-size: 1.1em;
}

.widget_calendar td, .widget_calendar th
{
    text-align: center;
    padding: 8px;
    vertical-align: top;
}

.widget_calendar tbody td
{
    border: 1px solid #e4e4e4;
    position: relative;
}

.widget_calendar tbody td a
{
    display: block;
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    padding: 8px;
    -webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.widget_calendar #prev a:before
{
    font-family: 'fontello';
    content: '\e840';
    padding-right: 10px;
}

.widget_calendar #next a:after
{
    font-family: 'fontello';
    content: '\e841';
    padding-left: 10px;
}

/*widget_twitter*/

.tweet_avatar
{
    float: left;
}

.tweet_right
{
    overflow: hidden;
    zoom: 1;
    margin-left: 60px;
}

.tweet_list li + li
{
    margin-top: 10px;
    clear: both;
}

.tweet_list li + li .tweet_right
{
    border-top: 1px solid #e4e4e4;
}

.tweet_list li + li .tweet_right, .tweet_list li + li .tweet_avatar
{
    padding-top: 10px;
}

/*
**shortcodes
*/

.teaser
{
    text-align: center;
}

.teaser_icon [class*="icon"]
{
    font-size: 60px;
}

.side_teaser .pull-left [class*="icon"],
.side_teaser .pull-right [class*="icon"]
{
    font-size: 50px;
}

.teaser.with_counter p.counter
{
    font-size: 54px;
    margin: 60px 0;
}

.testimonials-carousel
{
    border: 1px solid #e4e4e4;
    padding: 0px 30px 40px;
    border-radius: 5px;
}

.testimonials-carousel .carousel-indicators
{
    bottom: 10px;
}

.testimonials-carousel .carousel-control
{
    display: none;
}

.testimonials-carousel .media-object
{
    max-width: 80px;
    margin-bottom: 10px;
}

.testimonials-carousel .carousel-indicators li
{
    border-color: #ef8322;
}

.testimonials-carousel .carousel-indicators li.active
{
    background-color: #ef8322;
}

/*thumbnail*/

.thumbnail
{
    position: relative;
    text-align: center;
    border: 1px solid #e4e4e4;
    padding: 0;
    overflow: hidden;
}

.thumbnail img
{
    -webkit-transition: -webkit-transform 0.4s;
    -moz-transition: -moz-transform 0.4s;
    transition: transform 0.4s;
}

.thumbnail .caption
{
    padding-top: 30px;
    color: inherit;
    position: absolute;
    height: auto;
    width: 100%;
    top: auto;
    bottom: 0;
    opacity: 0;
    border-top: 1px solid #e4e4e4;
    background-color: #ffffff;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.3s;
    -moz-transition: -moz-transform 0.4s, opacity 0.1s 0.3s;
    transition: transform 0.4s, opacity 0.1s 0.3s;
}

.thumbnail:hover img
{
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
}

.thumbnail:hover .caption
{
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.1s;
    -moz-transition: -moz-transform 0.4s, opacity 0.1s;
    transition: transform 0.4s, opacity 0.1s;
}

.thumbnail + h3
{
    text-align: center;
    font-size: 1.4em;
    margin: -10px 0 2px;
}

.thumbnail + h3 + p
{
    text-align: center;
    color: #ef8322;
}

/*vertical tabs*/

.vertical-tabs .nav > li > a
{
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    margin-bottom: 3px;
    font-size: 16px;
    line-height: 1.7em;
}

.vertical-tabs .nav > li.active a
{
    color: #4c4c4c;
}

@media (min-width: 768px)
{
    .vertical-tabs .nav
    {
        margin-right: -25px;
    }
    .vertical-tabs .tab-content
    {
        border-radius: 5px;
    }
    .vertical-tabs .nav > li.active
    {
        position: relative;
        z-index: 2;
    }
    .vertical-tabs .nav > li.active a:after,
  .vertical-tabs .nav > li.active a:before
    {
        display: block;
        content: '';
        width: 9px;
        border-left: 9px solid #e4e4e4;
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
        height: 0;
        position: absolute;
        right: -9px;
        top: 50%;
        margin-top: -9px;
    }
    .vertical-tabs .nav > li.active a:after
    {
        border-left-color: #fff;
        border-left-width: 7px;
    }
}

/*price tables*/

.price-table,
.price-table ul
{
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.price-table
{
    border: 3px solid #f5f5f5;
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.price-table:hover
{
    border-color: #ef8322;
}

.plan-name
{
    padding: 15px 0;
}

.plan-name h3
{
    margin: 0;
}

.best-value
{
    margin-top: -40px !important;
}

.best-value .plan-price span:first-child, .best-value .plan-price span + span
{
    color: #ef8322;
}

.best-value .plan-name
{
    padding: 25px 0;
}

.best-value .plan-price
{
    margin-bottom: 25px;
}

.best-value .features-list li
{
    margin: 15px 40px;
}

.best-value .call-to-action
{
    margin: 40px 20px 50px;
}

.best-value .theme_button
{
    border-color: #ef8322;
}

@media (max-width: 767px)
{
    .best-value
    {
        margin-top: 0px !important;
    }
}

.plan-price
{
    margin-top: 15px;
}

.plan-price span:first-child
{
    font-size: 30px;
    line-height: 1em;
    top: -35px;
    color: #ffffff;
    position: relative;
    margin-left: 14px;
}

.plan-price span + span
{
    font-size: 30px;
    line-height: 50px;
    position: relative;
    letter-spacing: -1px;
    top: -35px;
    color: #ffffff;
}

.plan-price p
{
    display: inline;
    color: #9b9b9b;
    font-size: 40px;
    margin-left: -4px;
    letter-spacing: -1px;
}

.plan-price span + span + p
{
    margin-left: -88px;
    font-size: 2em;
}

.features-list li
{
    margin: 10px 80px;
    padding-top: 10px;
    border-bottom: 1px solid #f3f3f3;
}

.features-list .enabled:before,
.features-list .disabled:before
{
    font-family: 'rt-icons';
    content: "\e600";
    padding-right: 8px;
    color: #ffffff;
}

.features-list .disabled:before
{
    color: #ffffff;
    content: "\e602";
}

.call-to-action
{
    margin: 20px 20px 30px;
}

.style2
{
    background-color: #f5f5f5;
}

.style2 .plan-name h3
{
    color: #9b9b9b;
}

.style2 .theme_button
{
    background-color: #9b9b9b;
    border-color: #9b9b9b;
    color: #ffffff;
}

.style2 .theme_button:hover
{
    background-color: #ef8322;
    border-color: #ef8322;
}

@media (max-width: 991px)
{
    .features-list li
    {
        margin: 10px 40px;
    }
}

/*contact form*/

.contact-form-respond
{
    padding-left: 20px;
}

.contact-form-respond:before
{
    font-family: 'rt-icons';
    content: "\e600";
    padding-right: 10px;
}

/*contact-info*/

.social-mid i
{
    font-size: 14px;
    height: 30px;
    padding: 8px 0 0 10px;
    width: 30px;
    background: #ef8322;
    border-radius: 100%;
    color: #ffffff;
}

.social-mid a:hover i
{
    color: #1a1a1a;
}

/*
**plugins
*/

/* 
 *  Core Owl Carousel CSS File
 *  v1.3.3
 */

/* display none until init */

.owl-carousel
{
    display: none;
    position: relative;
    width: 100%;
    -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper:after
{
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-wrapper
{
    display: none;
    position: relative;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer
{
    overflow: hidden;
    position: relative;
    width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight
{
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item
{
    float: left;
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item
{
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-controls
{
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div
{
    cursor: pointer;
}

/* mouse grab icon */

.grabbing
{
    cursor: url(../img/grabbing.png) 8 8, move;
}

.owl-theme
{
}

.owl-theme .owl-item.loading
{
    min-height: 150px;
    background: url(../img/AjaxLoader.gif) no-repeat center center;
}

.owl-theme .owl-controls.clickable .owl-buttons div:hover
{
    filter: Alpha(Opacity=100);
    opacity: 1;
    text-decoration: none;
}

.owl-theme .owl-controls.clickable .owl-page:hover span
{
    filter: Alpha(Opacity=100);
    opacity: 1;
}

.owl-theme .owl-controls
{
    margin-top: 20px;
    text-align: center;
}

.owl-theme .owl-controls .owl-page
{
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls .owl-page span
{
    display: block;
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    filter: Alpha(Opacity=50);
    opacity: 0.5;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background-color: #ef8322;
}

.owl-theme .owl-controls .owl-page span.owl-numbers
{
    height: auto;
    width: auto;
    color: #ffffff;
    padding: 2px 10px;
    font-size: 12px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.owl-theme .owl-controls .owl-buttons div {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
  font-size: 0;
  color: transparent;
  width: 40px;
  height: 40px;
  text-align: center;
  margin: 0 5px;
  left: 10px;
  border-radius: 4px;
  border: 1px solid #e4e4e4;
  color: #4c4c4c;
  -webkit-transition: all 0.2s linear 0s;
  -moz-transition: all 0.2s linear 0s;
  -o-transition: all 0.2s linear 0s;
  -ms-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}

.owl-theme .owl-controls .owl-buttons div:hover
{
    color: #ffffff;
    border-color: #ef8322;
    background-color: #ef8322;
}

.owl-theme .owl-controls .owl-buttons div.owl-next
{
    right: 10px;
    left: auto;
}

.owl-theme .owl-controls .owl-buttons div:before
{
    content: '\f104';
    font-family: 'FontAwesome';
    line-height: 40px;
    font-size: 20px;
}

.owl-theme .owl-controls .owl-buttons div.owl-next:before
{
    content: '\f105';
}

/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */

/* RESET AND LAYOUT
===================================*/

.bx-wrapper
{
    position: relative;
    margin: 0 auto 60px;
    padding: 0;
    *zoom: 1;
}

.bx-wrapper img
{
    max-width: 100%;
    display: block;
}

/* THEME
===================================*/

.bx-wrapper .bx-viewport
{
    left: -5px;
    -webkit-transform: translatez(0);
    -moz-transform: translatez(0);
    -ms-transform: translatez(0);
    -o-transform: translatez(0);
    transform: translatez(0);
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto
{
    position: absolute;
    bottom: -30px;
    width: 100%;
}

/* LOADER */

.bx-wrapper .bx-loading
{
    min-height: 50px;
    background: url(images/bx_loader.gif) center center no-repeat #ffffff;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2000;
}

/* PAGER */

.bx-wrapper .bx-pager
{
    text-align: center;
    font-size: .85em;
    font-family: Arial;
    font-weight: bold;
    color: #666;
    padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item
{
    display: inline-block;
    *zoom: 1;
    *display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a
{
    background: #666;
    text-indent: -9999px;
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    outline: 0;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active
{
    background: #000;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev
{
    left: 10px;
    background: url(../img/controls.png) no-repeat 0 -32px;
}

.bx-wrapper .bx-next
{
    right: 10px;
    background: url(../img/controls.png) no-repeat -43px -32px;
}

.bx-wrapper .bx-prev:hover
{
    background-position: 0 0;
}

.bx-wrapper .bx-next:hover
{
    background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a
{
    position: absolute;
    top: 50%;
    margin-top: -16px;
    outline: 0;
    width: 32px;
    height: 32px;
    text-indent: -9999px;
    z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled
{
    display: none;
}

/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto
{
    text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start
{
    display: block;
    text-indent: -9999px;
    width: 10px;
    height: 11px;
    outline: 0;
    background: url(../img/controls.png) -86px -11px no-repeat;
    margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active
{
    background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop
{
    display: block;
    text-indent: -9999px;
    width: 9px;
    height: 11px;
    outline: 0;
    background: url(../img/controls.png) -86px -44px no-repeat;
    margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active
{
    background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager
{
    text-align: left;
    width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto
{
    right: 0;
    width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666 \9;
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}

.bx-wrapper .bx-caption span
{
    color: #fff;
    font-family: Arial;
    display: block;
    font-size: .85em;
    padding: 10px;
}

/*
fraction slider
*/

/* SLIDER STYLES */

.slider-wrapper
{
    position: relative;
    width: 100%;
}

.slider
{
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.fraction-slider
{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.fraction-slider .slide
{
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 5000;
    overflow: hidden;
}

.fraction-slider .active-slide
{
    z-index: 9999;
}

.fraction-slider .fs_obj
{
    display: none;
    position: absolute;
    top: 0px;
    left: 100%;
    z-index: 7000;
}

.fraction-slider .fs_fixed_obj
{
    z-index: 6000;
    left: 0;
}

.fraction-slider .fs_obj *
{
    position: relative;
    top: 0px;
    left: 0px;
}

.fs_loader
{
    width: 100%;
    height: 400px;
    background: url(../img/fs.spinner.gif) center center no-repeat transparent;
}

/** CONTROLS **/

.fraction-slider .prev,
.fraction-slider .next
{
    display: none;
    position: absolute;
    width: 45px;
    height: 45px;
    z-index: 9999;
}

.fraction-slider .prev:before,
.fraction-slider .next:before
{
    content: '\e833';
    font-family: 'fontello';
    position: absolute;
    top: 10px;
}

.fraction-slider .next:before
{
    content: '\e834';
}

.fraction-slider .prev
{
    left: 10px;
    top: 45%;
}

.fraction-slider .next
{
    right: 10px;
    top: 185px;
}

.fraction-slider:hover .prev,
.fraction-slider:hover .next
{
    display: block;
}

/** PAGER **/

.fs-pager-wrapper
{
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 10px;
    text-align: center;
    z-index: 9999;
    background-color: #fbd81a;
}

.fs-pager-wrapper a
{
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 4px solid #fbd81a;
    position: relative;
    top: -8px;
    background-color: #ffffff;
    border-radius: 100%;
    margin: 0 5px 0 0;
}

.fs-pager-wrapper .active
{
    background-color: #fbd81a;
}

.slider-wrapper
{
    overflow: hidden;
}

.fraction-slider p {
  color: #ffffff;
  position: absolute;
  top: -200px;
  z-index: 8000;
  padding: 1% 2%;
  font-size: 18px;
  line-height: 100%;
  color: #ffffff;
  white-space: nowrap;
  text-transform: uppercase;
}

.fraction-slider p.big
{
    font-size: 30px;
}

/*
flexslider
*/

/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */

/* Browser Resets
*********************************/

.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus
{
    outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav
{
    margin: 0;
    padding: 0;
    list-style: none;
}

/* FlexSlider Necessary Styles
*********************************/

.flexslider
{
    margin: 0;
    padding: 0;
}

.flexslider .slides > li
{
    display: none;
    -webkit-backface-visibility: hidden;
}

/* Hide the slides before the JS is loaded. Avoids image jumping */

.flexslider .slides img
{
    width: 100%;
    display: block;
}

.slide_overlay:after
{
    background: #000000;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.35;
}

.flex-pauseplay span
{
    text-transform: capitalize;
}

/* Clearfix for the .slides element */

.slides:after
{
    content: "\0020";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

html[xmlns] .slides
{
    display: block;
}

* html .slides
{
    height: 1%;
}

/* No JavaScript Fallback */

/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */

.no-js .slides > li:first-child
{
    display: block;
}

/* FlexSlider Default Theme
*********************************/

.flexslider
{
    margin: 0 0;
    position: relative;
    zoom: 1;
}

.flex-viewport
{
    max-height: 2000px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.loading .flex-viewport
{
    max-height: 300px;
}

.flexslider .slides
{
    zoom: 1;
}

/*.carousel li { margin-right: 5px; }*/

/* Direction Nav */

.flex-direction-nav
{
    *height: 0;
}

.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  border: 2px solid #ef8322;
  font-size: 0;
  color: transparent;
  text-align: center;
}

.flex-direction-nav .flex-prev
{
    left: 10px;
}

.flex-direction-nav .flex-next
{
    right: 10px;
    text-align: right;
}

.flexslider:hover .flex-prev
{
    opacity: 0.7;
    left: 10px;
}

.flexslider:hover .flex-next
{
    opacity: 0.7;
    right: 10px;
}

.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover
{
    opacity: 1;
}

.flex-direction-nav .flex-disabled
{
    opacity: 0 !important;
    filter: alpha(opacity=0);
    cursor: default;
}

.flex-direction-nav a:before
{
    font-family: "fontello";
    font-size: 20px;
    content: '\e833';
    color: #9b9b9b;
    position: absolute;
    top: 5px;
    left: 12px;
}

.flex-direction-nav a.flex-next:before
{
    content: '\e834';
    left: 14px;
}

/* Pause/Play */

.flex-pauseplay a
{
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 5px;
    left: 10px;
    opacity: 0.8;
    z-index: 10;
    overflow: hidden;
    cursor: pointer;
    color: #000;
}

.flex-pauseplay a:before
{
    font-family: 'rt-icons';
    font-size: 20px;
    display: inline-block;
    content: "\e6a2";
}

.flex-pauseplay a:hover
{
    opacity: 1;
}

.flex-pauseplay a.flex-play:before
{
    content: "\e711";
}

/* Control Nav */

.flex-control-nav
{
    width: 100%;
    position: absolute;
    bottom: 40px;
    text-align: center;
    z-index: 2;
}

.flex-control-nav li
{
    margin: 0 3px;
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.flex-control-paging li a
{
    width: 18px;
    height: 18px;
    display: block;
    background: #ef8322;
    border: 2px solid #ef8322;
    cursor: pointer;
    text-indent: -9999px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
}

.flex-control-paging li a:hover
{
    background-color: transparent;
}

.flex-control-paging li a.flex-active
{
    background-color: transparent;
}

.flex-control-thumbs
{
    margin: 5px 0 0;
    position: static;
    overflow: hidden;
}

.flex-control-thumbs li
{
    width: 25%;
    float: left;
    margin: 0;
}

.flex-control-thumbs img
{
    width: 100%;
    display: block;
    opacity: .7;
    cursor: pointer;
}

.flex-control-thumbs img:hover
{
    opacity: 1;
}

.flex-control-thumbs .flex-active
{
    opacity: 1;
    cursor: default;
}

@media screen and (max-width: 860px)
{
    .flex-direction-nav .flex-prev
    {
        opacity: 1;
        left: 10px;
    }
    .flex-direction-nav .flex-next
    {
        opacity: 1;
        right: 10px;
    }
}

/*
prettyPhoto
*/

div.facebook .pp_expand
{
    background: url(../img/prettyPhoto/facebook/sprite.png) -31px -26px no-repeat;
    cursor: pointer;
}

div.facebook .pp_expand:hover
{
    background: url(../img/prettyPhoto/facebook/sprite.png) -31px -47px no-repeat;
    cursor: pointer;
}

div.facebook .pp_contract
{
    background: url(../img/prettyPhoto/facebook/sprite.png) 0 -26px no-repeat;
    cursor: pointer;
}

div.facebook .pp_contract:hover
{
    background: url(../img/prettyPhoto/facebook/sprite.png) 0 -47px no-repeat;
    cursor: pointer;
}

div.facebook .pp_close
{
    width: 22px;
    height: 22px;
    background: url(../img/prettyPhoto/facebook/sprite.png) -1px -1px no-repeat;
    cursor: pointer;
    z-index: 3000;
}

div.facebook .pp_description
{
    margin: 0 37px 0 0;
}

div.facebook .pp_loaderIcon
{
    background: url(../img/prettyPhoto/facebook/loader.gif) center center no-repeat;
}

div.facebook .pp_arrow_previous
{
    background: url(../img/prettyPhoto/facebook/sprite.png) 0 -71px no-repeat;
    height: 22px;
    margin-top: 0;
    width: 22px;
}

div.facebook .pp_arrow_previous.disabled
{
    background-position: 0 -96px;
    cursor: default;
}

div.facebook .pp_arrow_next
{
    background: url(../img/prettyPhoto/facebook/sprite.png) -32px -71px no-repeat;
    height: 22px;
    margin-top: 0;
    width: 22px;
}

div.facebook .pp_arrow_next.disabled
{
    background-position: -32px -96px;
    cursor: default;
}

div.facebook .pp_nav
{
    margin-top: 0;
}

div.facebook .pp_nav p
{
    font-size: 15px;
    padding: 0 3px 0 4px;
    margin-top: -2px;
}

div.facebook .pp_nav .pp_play
{
    background: url(../img/prettyPhoto/facebook/sprite.png) -1px -123px no-repeat;
    height: 22px;
    width: 22px;
}

div.facebook .pp_nav .pp_pause
{
    background: url(../img/prettyPhoto/facebook/sprite.png) -32px -123px no-repeat;
    height: 22px;
    width: 22px;
}

div.facebook .pp_next:hover
{
    background: url(../img/prettyPhoto/facebook/btnNext.png) center right no-repeat;
    cursor: pointer;
}

div.facebook .pp_previous:hover
{
    background: url(../img/prettyPhoto/facebook/btnPrevious.png) center left no-repeat;
    cursor: pointer;
}

div.pp_pic_holder a:focus
{
    outline: none;
}

div.pp_overlay
{
    background: #000;
    display: none;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9500;
}

div.pp_pic_holder
{
    display: none;
    position: absolute;
    width: 100px;
    z-index: 10000;
}

.pp_content
{
    height: 40px;
    min-width: 40px;
    overflow: hidden;
}

* html .pp_content
{
    width: 40px;
}

.pp_content_container
{
    position: relative;
    text-align: left;
    width: 100%;
}

.pp_content_container .pp_left
{
    padding-left: 20px;
}

.pp_content_container .pp_right
{
    padding-right: 20px;
}

.pp_content_container .pp_details
{
    float: left;
    padding: 7px 10px;
    background-color: #ffffff;
}

.pp_description
{
    display: none;
    margin: 0;
}

.pp_social
{
    float: left;
    margin: 0;
}

.pp_social .facebook
{
    float: left;
    margin-left: 5px;
    width: auto;
    overflow: hidden;
}

.pp_social .twitter
{
    float: left;
}

.pp_nav
{
    clear: right;
    float: left;
    margin: 3px 10px 0 0;
}

.pp_nav p
{
    float: left;
    white-space: nowrap;
    margin: 2px 4px;
}

.pp_nav .pp_play, .pp_nav .pp_pause
{
    float: left;
    margin-right: 4px;
    text-indent: -10000px;
}

a.pp_arrow_previous, a.pp_arrow_next
{
    display: block;
    float: left;
    height: 15px;
    margin-top: 3px;
    overflow: hidden;
    text-indent: -10000px;
    width: 14px;
}

.pp_hoverContainer
{
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2000;
}

.pp_gallery
{
    display: none;
    left: 50%;
    margin-top: -50px;
    position: absolute;
    z-index: 10000;
}

.pp_gallery div
{
    float: left;
    overflow: hidden;
    position: relative;
}

.pp_gallery ul
{
    float: left;
    height: 35px;
    position: relative;
    white-space: nowrap;
    margin: 0 0 0 5px;
    padding: 0;
}

.pp_gallery ul a
{
    border: 1px rgba(0, 0, 0, 0.5) solid;
    display: block;
    float: left;
    height: 33px;
    overflow: hidden;
}

.pp_gallery ul a img
{
    border: 0;
}

.pp_gallery li
{
    display: block;
    float: left;
    margin: 0 5px 0 0;
    padding: 0;
}

.pp_gallery li.default a
{
    background: url(../img/prettyPhoto/facebook/default_thumbnail.gif) 0 0 no-repeat;
    display: block;
    height: 33px;
    width: 50px;
}

.pp_gallery .pp_arrow_previous, .pp_gallery .pp_arrow_next
{
    margin-top: 7px !important;
}

a.pp_next
{
    background: url(../img/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;
    display: block;
    float: right;
    height: 100%;
    text-indent: -10000px;
    width: 49%;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    -ms-transition: none;
    transition: none;
}

a.pp_previous
{
    background: url(../img/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;
    display: block;
    float: left;
    height: 100%;
    text-indent: -10000px;
    width: 49%;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    -ms-transition: none;
    transition: none;
}

a.pp_expand, a.pp_contract
{
    cursor: pointer;
    display: none;
    height: 20px;
    position: absolute;
    right: 30px;
    text-indent: -10000px;
    top: 10px;
    width: 20px;
    z-index: 20000;
}

a.pp_close
{
    position: absolute;
    right: 6px;
    top: -16px;
    display: block;
    line-height: 22px;
    text-indent: -10000px;
}

.pp_loaderIcon
{
    display: block;
    height: 24px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 24px;
    margin: -12px 0 0 -12px;
}

#pp_full_res
{
    line-height: 1 !important;
}

#pp_full_res .pp_inline
{
    text-align: left;
}

#pp_full_res .pp_inline p
{
    margin: 0 0 15px;
}

div.ppt
{
    color: #ffffff;
    display: none;
    font-size: 17px;
    z-index: 9999;
    margin: 0 0 5px 15px;
}

.pp_top, .pp_bottom
{
    height: 20px;
    position: relative;
}

* html .pp_top, * html .pp_bottom
{
    padding: 0 20px;
}

.pp_top .pp_left, .pp_bottom .pp_left
{
    height: 20px;
    left: 0;
    position: absolute;
    width: 20px;
}

.pp_top .pp_middle, .pp_bottom .pp_middle
{
    height: 20px;
    left: 20px;
    position: absolute;
    right: 20px;
}

* html .pp_top .pp_middle, * html .pp_bottom .pp_middle
{
    left: 0;
    position: static;
}

.pp_top .pp_right, .pp_bottom .pp_right
{
    height: 20px;
    left: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
}

.pp_fade, .pp_gallery li.default a img
{
    display: none;
}

/*
easy pie chart
*/

.chart
{
    position: relative;
    display: inline-block;
    width: 160px;
    height: 160px;
    margin-top: 20px;
    margin-bottom: 0px;
    text-align: center;
}

.chart canvas
{
    position: absolute;
    top: 0;
    left: 0;
}

.percent
{
    display: inline-block;
    font-size: 2em;
    color: #4c4c4c;
    line-height: 160px;
    z-index: 2;
}

.percent:after
{
    content: '%';
    margin-left: 0.1em;
    font-size: .8em;
}

.angular
{
    margin-top: 100px;
}

.angular .chart
{
    margin-top: 0;
}

/* 
totop 
*/

#toTop
{
    bottom: 20px;
    right: 20px;
    display: none;
    width: 40px;
    height: 40px;
    overflow: hidden;
    position: fixed;
    text-decoration: none;
    z-index: 9999;
    font-size: 0;
    color: transparent;
    background-color: #1a1a1a;
    border-radius: 3px;
}

#toTop:after
{
    color: #ffffff;
    content: '\e829';
    font-size: 25px;
    line-height: 40px;
    font-family: 'fontello';
    text-align: center;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

#toTopHover, #toTop:hover
{
    background-color: #ef8322;
}

#toTop:hover:after
{
    color: #ffffff;
}

#toTop:active, #toTop:focus
{
    outline: medium none;
}

/*
isotope portfolio
*/

#isotope_filters
{
    text-align: center;
    margin: 30px 0 30px;
}

#isotope_filters a
{
    padding: 9px 22px;
    margin: 0 4px 4px 0;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    display: inline-block;
    color: #4c4c4c;
}

#isotope_filters a:hover
{
    background-color: #ef8322;
    border-color: #ef8322;
    color: #ffffff;
}

.gallery-item
{
    padding: 1px;
    overflow: hidden;
    position: relative;
    max-width: 100%;
}

.gallery-item-description
{
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 35px;
    text-align: center;
}

.gallery-item-description .cost
{
    color: #ef8322;
    font-size: 20px;
}

.gallery-item-description h3 a
{
    color: #ef8322;
    font-weight: bold;
}

.gallery-item-description h3 a:hover
{
    color: #4c4c4c;
}

.gallery-item img
{
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.gallery-item .gallery-item-description
{
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.7);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.gallery-item h3
{
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    transform: translateY(-100px);
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.gallery-item p
{
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -o-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.gallery-item:hover .gallery-item-description
{
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
}

.view-first:hover img
{
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.gallery-item:hover h3, .gallery-item:hover p
{
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.gallery-item:hover p
{
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    -ms-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

@media (max-width: 421px)
{
    #isotope_filters a
    {
        padding: 9px 15px;
    }
}

@media (max-width: 365px)
{
    #isotope_filters a
    {
        padding: 9px 15px;
        margin: 0 2px 4px 0;
    }
}

@media (max-width: 357px)
{
    #isotope_filters a
    {
        padding: 9px 9px;
    }
}

/*
isotope animations
*/

.isotope,
.isotope .isotope-item
{
    -webkit-transition-duration: 0.6s;
    -moz-transition-duration: 0.6s;
    -ms-transition-duration: 0.6s;
    -o-transition-duration: 0.6s;
    transition-duration: 0.6s;
}

.isotope
{
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    -ms-transition-property: height, width;
    -o-transition-property: height, width;
    transition-property: height, width;
}

.isotope .isotope-item
{
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    -ms-transition-property: -ms-transform, opacity;
    -o-transition-property: -o-transform, opacity;
    transition-property: transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition
{
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -ms-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
}

/*switcher styles*/

#switcher
{
    position: fixed;
    padding: 0 10px 0 20px;
    top: 30%;
    left: -200px;
    width: 200px;
    height: 100px;
    background-color: #ffffff;
    z-index: 12500;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

#switcher.active
{
    left: 0;
}

#switcher span
{
    -webkit-box-shadow: 3px 0 5px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 3px 0 5px 0 rgba(0, 0, 0, 0.2);
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #1a1a1a;
    background-color: #ffffff;
    text-align: center;
    right: -50px;
    top: 0;
    cursor: pointer;
}

#switcher li
{
    margin-bottom: 10px;
}

#switcher p
{
    margin-top: -7px;
}

#switcher-version a
{
    padding: 6px 12px;
    display: inline-block;
    line-height: 1;
}

#switcher-version a.light, #switcher-version a.dark:hover
{
    background-color: #f1f1f1;
    color: #1a1a1a;
}

#switcher-version a.dark, #switcher-version a.light:hover
{
    background-color: #9b9b9b;
    color: #ffffff;
}

#switcher-colors a
{
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #ef8322;
}

#switcher-colors a.color2
{
    background-color: #c46004;
}

#switcher-colors a.color3
{
    background-color: #b0cc4b;
}

/*mainslider*/

.tb
{
    display: table;
    height: 100%;
    position: relative;
    width: 100%;
    z-index: 2;
}

.tb-cell
{
    display: table-cell;
    height: 100%;
    text-align: center;
    vertical-align: middle;
}

#mainslider .line
{
    display: table;
    font-size: 34px;
    font-weight: 300;
    line-height: 34px;
    margin: 0 auto 15px;
    padding: 0 80px;
    position: relative;
}

#header-title-1 h4, #header-title-2 h4
{
    color: #ef8322;
    font-weight: bold;
    margin-top: 0;
    padding: 0 60px;
    text-transform: capitalize;
}

#header-title-1 h2, #header-title-2 h2
{
    color: #ffffff;
    display: inline-block;
    font-size: 40px;
    font-weight: bold;
    margin-top: 0;
    padding: 0 60px;
    text-transform: capitalize;
}

@media (max-width: 767px)
{
    #mainslider .flexslider
    {
        top: -1px;
    }
}

@media (max-width: 650px)
{
    #header-title-1 h2, #header-title-2 h2
    {
        font-size: 30px;
    }
}

@media (max-width: 487px)
{
    #header-title-1 h2, #header-title-2 h2
    {
        font-size: 20px;
    }
}

@media (max-width: 320px)
{
    #header-title-1 h4, #header-title-2 h4
    {
        font-size: 15px;
    }
    #header-title-1 h2, #header-title-2 h2
    {
        font-size: 15px;
    }
}

/*theme button*/

#about_us .about_desc a, .serv-content a, #isotope_filters a, #blog .detail-button a, .contact-form-submit button, #prices .price-table .call-to-action a, #mainslider p a
{
    display: inline-block;
    width: 130px;
    height: 45px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    border-radius: 5px;
}

.type-15
{
    overflow: hidden;
    background: transparent;
}

.type-15 span
{
    position: absolute;
    width: 100%;
    height: 100%;
    display: inline-block;
    opacity: 1;
    left: 0;
    top: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 11px 0;
    text-align: center;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: all 0.6s cubic-bezier(0.05, 0.06, 0.05, 0.95);
    transition: all 0.6s cubic-bezier(0.05, 0.06, 0.05, 0.95);
    box-shadow: none;
    color: #ef8322;
    font-size: 15px;
    font-weight: bold;
    border: 1px solid #ef8322;
    border-radius: 5px;
    text-transform: capitalize;
}

.type-15 span:first-of-type
{
    z-index: 9;
}

.type-15 span:last-of-type
{
    background: #ef8322;
    left: -100%;
}

.type-15:hover span
{
    left: 0;
    color: #ffffff;
}

@media (max-width: 767px)
{
    #isotope_filters a
    {
        width: 80px;
    }
}

@media (max-width: 358px)
{
    #isotope_filters a
    {
        width: 69px;
    }
    #isotope_filters .type-15 span
    {
        font-size: 12px;
    }
}

/*about us*/

#about_us .color
{
    color: #ef8322;
    margin-top: 15px;
}

#about_us h2
{
    margin-bottom: 20px;
}

@media (max-width: 767px)
{
    .about_desc h2
    {
        font-size: 20px;
    }
    .about_desc img
    {
        margin-left: 18%;
    }
}

@media (max-width: 400px)
{
    .about_desc img
    {
        margin-left: 6%;
    }
    .about_desc img
    {
        margin-left: 0%;
    }
}

/*story*/

.story p
{
    margin-top: 20px;
    text-align: center;
    line-height: 20px;
}

.story .nav-tabs > li > a
{
    font-size: 15px;
}

.story .tab-content, .story .nav-tabs > li > a
{
    border-color: #ef8322;
}

.story .nav-tabs > li.active > a, .story .nav-tabs > li.active > a:hover, .story .nav-tabs > li.active > a:focus
{
    border-color: #ef8322;
    border-bottom-color: transparent;
}

.story img
{
    border-radius: 5px;
}

.story .tab-content .list2
{
    margin-top: 15px;
    line-height: 25px;
}

@media (max-width: 991px)
{
    .story .nav-tabs > li > a
    {
        font-size: 13px;
    }
    .nav-tabs > li > a
    {
        padding: 13px 10px;
    }
}

@media (max-width: 349px)
{
    .story .nav-tabs > li > a
    {
        font-size: 12px;
    }
    .nav-tabs > li > a
    {
        padding: 11px 7px;
    }
}

/*services*/

.grid
{
    position: relative;
    clear: both;
    margin: 0 auto;
    list-style: none;
    text-align: center;
}

.grid figure
{
    position: relative;
    float: left;
    overflow: hidden;
    margin: 10px 1%;
    min-width: 370px;
    max-width: 480px;
    max-height: 360px;
    width: 48%;
    height: auto;
    background: #ef8322;
    text-align: center;
    cursor: pointer;
}

.grid figure img
{
    position: relative;
    display: block;
    min-height: 100%;
    width: 100%;
    opacity: 0.8;
}

.grid figure figcaption
{
    padding: 2em;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after
{
    pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

figure.grid_about_us
{
    background: #ef8322;
    margin: 0 auto;
}

figure.grid_about_us
{
}

figure.grid_about_us img
{
    opacity: 0.9;
}

figure.grid_about_us figcaption::after,
figure.grid_about_us img,
figure.grid_about_us p
{
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

figure.grid_about_us figcaption::after
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    content: '';
    opacity: 0;
    -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
    transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 0, 1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

figure.grid_about_us h2,
figure.grid_about_us p
{
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
}

figure.grid_about_us h2
{
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
    text-transform: capitalize;
    padding-top: 26%;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}

figure.grid_about_us p
{
    padding: 0.5em 2em;
    text-transform: none;
    font-size: 0.85em;
    opacity: 0;
}

figure.grid_about_us:hover img
{
    opacity: 0.4;
    -webkit-transform: scale3d(1.05, 1.05, 1);
    transform: scale3d(1.05, 1.05, 1);
}

figure.grid_about_us:hover figcaption::after
{
    opacity: 1;
    -webkit-transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
    transform: rotate3d(0, 0, 1, 45deg) scale3d(1, 1, 1);
}

figure.grid_about_us:hover h2,
figure.grid_about_us:hover p
{
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

@media (max-width: 1199px)
{
    .grid figure
    {
        min-width: 318px;
    }
}

@media (max-width: 991px)
{
    .grid figure
    {
        min-width: 249px;
    }
    figure.grid_about_us h2
    {
        font-size: 20px;
    }
}

@media (max-width: 767px)
{
    .grid figure
    {
        min-width: 420px;
    }
}

@media (max-width: 465px)
{
    .grid figure
    {
        min-width: 320px;
    }
}

@media (max-width: 360px)
{
    .grid figure
    {
        min-width: 270px;
    }
}

.about h4
{
    color: #4c4c4c;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: capitalize;
    text-align: left;
}

.about
{
    padding-bottom: 30px;
    position: relative;
}

ul.list2
{
    list-style: none;
    padding-left: 20px;
}

ul.list2 li
{
    position: relative;
    padding: 4px 0 4px 10px;
    text-transform: capitalize;
}

ul.list2 li:before
{
    font-family: 'FontAwesome';
    content: '\f00c';
    font-size: 18px;
    display: block;
    position: absolute;
    left: -18px;
    color: #ef8322;
}

.serv-content p
{
    line-height: 25px;
}

/*team*/

#team h4
{
    margin: 20px 0 10px;
}

#team img
{
    border: 2px solid #ef8322;
    border-radius: 5px;
}

#team .grey-color
{
    color: #9b9b9b;
}

/*testimonials*/

#testimonials-carousel .media-body
{
    padding-left: 10px;
}

#testimonials-carousel .media-body p
{
    font-size: 13px;
    line-height: 22px;
    color: #b2b2b2;
    font-weight: normal;
}

#testimonials .row + .row
{
    margin-top: 0px;
}

#testimonials-carousel .owl-controls .owl-buttons div
{
    border: none;
    position: absolute;
    color: #ef8322;
}

#testimonials-carousel .owl-controls .owl-buttons .owl-prev
{
    left: -60px;
    margin-top: -30px;
    top: 50%;
}

#testimonials-carousel .owl-controls .owl-buttons .owl-next
{
    margin-top: -30px;
    right: -40px;
    top: 50%;
}

#testimonials-carousel .owl-controls .owl-buttons div:before
{
    font-size: 50px;
}

#testimonials-carousel .owl-controls .owl-buttons div:hover
{
    background: transparent;
    color: #ffffff;
}

@media (max-width: 550px)
{
    #testimonials-carousel .owl-controls .owl-buttons
    {
        display: none;
    }
}

/*contact*/

#contact button
{
    border: none;
}

#contact a
{
    color: #ef8322;
}

#contact a:hover
{
    color: #4c4c4c;
}

/*# sourceMappingURL=main.css.map */

/* main logo*/

#mainslider .container .row
{
    position: relative;
}

.mainlogo
{
    position: absolute;
}

@media (min-width: 768px)
{
    .mainlogo
    {
        top: 120px;
        left: 5%;
    }
}

@media (min-width: 992px)
{
    .mainlogo
    {
        top: 50px;
        left: 3%;
    }
}

@media (min-width: 1200px)
{
    .mainlogo
    {
        top: 50px;
        left: 5%;
    }
}

@media (max-width: 481px)
{
    .mainlogo
    {
        top: 50px;
        left: 5%;
    }
    .mainlogo img
    {
        display: none;
    }
}

@media (max-width: 768px)
{
    .mainlogo
    {
        top: 50px;
        left: 5%;
    }
    .mainlogo img
    {
        display: none;
    }
}

.mainvi
{
    background-image: url(../images/dsc_mainv.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    -moz-background-size: contain;
    background-size: contain;
    -o-background-size: contain;
    height: 560px;
}

.mainlogo p.mline3
{
    display: none;
}
.mainlogo img.logoInline
{
    display: inline-block;
}

@media (min-width: 320px) and (max-width: 460px)
{
    .mainvi
    {
        background-position: -30px 50px;
        background-repeat: no-repeat;
        -moz-background-size: contain;
        background-size: contain;
        -o-background-size: contain;
        height: 400px;
    }
     .mainlogo img.logoInline
    {
       display:none;
    }
    .mainlogo 
    {
    padding-top: 240px;
    }
    .mainlogo h4
    {
    font-size: 16px;
        text-align:center;
    }
}
@media (min-width: 569px) and (max-width: 768px)
{
    .mainvi
    {
        background-position: 100px 140px;
        background-repeat: no-repeat;
        -moz-background-size: contain;
        background-size: contain;
        -o-background-size: contain;
        height: 580px;
    }
  
}

@media (min-width: 461px) and (max-width: 768px)
{
    .mainlogo img.logoInline
    {
        width: 70%;
        float: left;
    }
    .mainlogo h4
    {
        text-align: left;
        font-size: 18px;
        padding-top: 5px;
        text-shadow: 2px 2px #fff;
        clear: both;
    }
    .mainlogo p.mline3
    {
        width: 50%;
    }
    .mainlogo p.mline3 span.bbb:before
    {
        content: '\00a0 \00a0 \00a0 \00a0';
    }
}


@media (min-width:769px) and (max-width:991px)
{
    .mainvi
    {
        background-position: 120px 0;
        background-repeat: no-repeat;
        -moz-background-size: contain;
        background-size: contain;
        -o-background-size: contain;
        height: 580px;
    }


    .mainlogo
    {
        text-align: left;
    }
    .mainlogo img.logoInline
    {
        width: 35%;
        clear: both;
    }
    .mainlogo h4
    {
        display: block;
        width: 100%;
        text-align: left;
        font-size: 21px;
        padding-top: 2px;
        text-shadow: 2px 2px #fff;
    }
}

span.spacer
{
    position: relative;
    width: 20px;
}

/*.collapse.in ul li
{
    font-size: 16px;
    background-color: #eeeeee;
    text-align: center;
}*/

@media (min-width: 750px){
    .nav > li {
        font-size: 15px;
    }
}

.navbar-nav>li>.dropdown-menu
{
}

dl dd
{
    margin-bottom: 28px;
    line-height: 26px;
    margin-top: -3px;
}

dl dt
{
    font-size: 1em;
    font-weight: 600;
    text-align: center;
}

ul.bg-warning, .bg-danger
{
    padding: 10px;
    list-style: none;
    line-height: 1.6;
}

.bg-warning
{
    margin-bottom: 25px;
}

.bg-warning li:before
{
    content: "■ ";
    color: #ef8322;
}

.bg-danger li:before
{
    content: "■ ";
    color: #e83e1c;
}

table.sche tr td
{
    vertical-align: middle;
}
table.sche th {
    text-align: center;
}
.orgtitle
{
    font-weight: normal;
    font-size: 15px;
    line-height: 20px;
}

.textStyBlue
{
    color: #4baa9f;
}

.textStyTao
{
    color: #c25fa5;
}

.textStyGrey
{
    color: #6b6c6c;
}

.textStyOrange
{
    color: #dc8f27;
}

.textStyGreen
{
    color: #73a241;
}

.textStyPink
{
    color: #e65a62;
}

.widget_recent_comments
{
    height: 280px;
    overflow-x: hidden;
    margin-top: 15px;
}
@media (min-width:769px) and (max-width:953px)
{
    ul.navbar-nav li a img {
    width: 28px;
    }
}
@media (min-width:769px) and (max-width:834px)
{
    ul.navbar-nav li a img {
    width: 28px;
    }
    .navbar-brand {
    width: 160px;
    }
}
dl.staff dt {
text-align:left;
    padding: 0 0 10px 0;
}
table.sche td:nth-of-type(1) {font-weight: bold;font-size: 18px;}
/*responsive table*/
    @media
    only screen and (max-width: 760px),
    (min-device-width: 768px) and (max-device-width: 1024px)  {

        /* Force table to not be like tables anymore */
        table.sche, table.sche thead, table.sche tbody, table.sche th, table.sche td, table.sche tr {
            display: block;
            vertical-align: middle;
        }

        /* Hide table headers (but not display: none;, for accessibility) */
        table.sche thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

        table.sche tr { border: 1px solid #ccc; }

        table.sche td {
            /* Behave  like a "row" */
            border: none;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-left: 50%;
        }

        table.sche td:before {
            /* Now like a table header */
            position: absolute;
            /* Top/left values mimic padding */
            top: 6px;
            left: 6px;
            width: 45%;
            padding-right: 10px;
            white-space: nowrap;
        }

        /*
        Label the data
        */
        table.sche td:nth-of-type(1):before { content: "日期地點";  }
        table.sche td:nth-of-type(2):before { content: "國際會議廳"; padding-top: 10%;}
        table.sche td:nth-of-type(3):before { content: "第一會議室"; padding-top: 10%;}
        table.sche td:nth-of-type(4):before { content: "第二會議室"; padding-top: 10%;}
        table.sche td:nth-of-type(5):before { content: "遠距會議室"; padding-top: 10%;}
        table.sche td:nth-of-type(6):before { content: "交誼廳"; padding-top: 10%;}
    }


    }
.bg-blue
{
    background-color: #9cd7d1;
}
.bg-pink
{
    background-color: #FCD2D9;
}
.bg-orange
{
    background-color: #feedd1;
}
.sponsbg1 {
    background-image: url(../images/sponsor/backg1.jpg);
}
.sponsbg2 {
    background-image: url(../images/sponsor/backg2.jpg);
}
.sponsbg3 {
    background-image: url(../images/sponsor/backg3.jpg);
}
.speaker-info {
  cursor: pointer;
}
.bg-purple {
	background-color: #E6D8F8;
}
.bg-yellow{
	background-color: #FFFFCA;
}
.bg-gery{
	background-color: #ECECEC;
}
.bg-green{
	background-color: #E8FCBC;
}
.intro table tr td {
	vertical-align: middle;
	}
.mtop {margin-top: 22px;}
.mright {margin-right: 10px;}
.bg-sch {background-color:#DCEFED}
#tab2 table tr td h3 {word-wrap: break-word; word-break: break-all;}
#tab2 table tr td img {
  max-width: none;
}
