/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   css3-prefix             - arguments: Property, Value
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-horizontal   - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   background-opacity      - arguments: Color: #000, Opacity: .85
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Right: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transform-style         - arguments: Style: preserve-3d
    -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
    -                            - Examples: @include transition (all 2s ease-in-out);
    -                                        @include transition (opacity 1s ease-in 2s, width 2s ease-out);
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
    -   keyframes               - arguments: Animation name
                                - content:   Animation css
    -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                             (http://www.w3schools.com/cssref/css3_pr_animation.asp)

------------------------------------------------------------- */
/* ADDS A BROWSER PREFIX TO THE PROPERTY */
/* ------------------------------- Class --------------------------
-------------------------------------------------------------------- */
/* =Front page template
-------------------------------------------------------------- */
/* Navigation Menu */
.intro-text {
  font-size: 16px;
  line-height: 22px; }

.border-bottom:after {
  content: "";
  display: block;
  width: 27%;
  height: 3px;
  margin-top: 7px;
  background: #ffbf00; }

a {
  /* ---------------------------------- Fancybox -------------------------
------------------------------------------------------------------------ */ }
  a:hover, a:active, a:focus {
    outline: none;
    text-decoration: none; }

.template-cms_fancybox_single {
  background: #eee;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  /* BACKGROUND GRADIENT */
  /* -------------------------------- Grid --------------------------------
------------------------------------------------------------------------- */ }
  .template-cms_fancybox_single .cms-fancybox-item {
    padding: 30px 15px;
    min-height: 230px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px 1px;
    -khtml-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px 1px;
    -moz-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px 1px;
    -ms-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px 1px;
    -o-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px 1px;
    box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px 1px;
    /* BACKGROUND GRADIENT */
    /* BOX SIZING */ }
    .template-cms_fancybox_single .cms-fancybox-item .fancy-box-icon {
      margin-bottom: 25px;
      color: #5aae24;
      font-size: 34px;
      line-height: 1; }
    .template-cms_fancybox_single .cms-fancybox-item h3 {
      color: #0750ae;
      font-weight: 500; }
    .template-cms_fancybox_single .cms-fancybox-item .cms-fancyboxes-foot {
      display: inline-block;
      padding: 7px 15px;
      background: #5aae24;
      text-decoration: none;
      line-height: 28px;
      margin-top: 15px;
      -webkit-transition: all, 0.5s;
      -khtml-transition: all, 0.5s;
      -moz-transition: all, 0.5s;
      -ms-transition: all, 0.5s;
      -o-transition: all, 0.5s;
      transition: all, 0.5s;
      /* BACKGROUND GRADIENT */
      /* TRIPLE BORDERS */ }
      .template-cms_fancybox_single .cms-fancybox-item .cms-fancyboxes-foot a {
        color: #fff; }
      .template-cms_fancybox_single .cms-fancybox-item .cms-fancyboxes-foot:hover {
        background: #0750ae; }
        .template-cms_fancybox_single .cms-fancybox-item .cms-fancyboxes-foot:hover a {
          text-decoration: none;
          color: #fff; }

.template-cms_grid .cms-grid-item {
  margin-bottom: 30px; }
  .template-cms_grid .cms-grid-item .grid-content {
    position: relative;
    overflow: hidden; }
    .template-cms_grid .cms-grid-item .grid-content .cms-grid-media img {
      -webkit-transition: all, 0.3s;
      -khtml-transition: all, 0.3s;
      -moz-transition: all, 0.3s;
      -ms-transition: all, 0.3s;
      -o-transition: all, 0.3s;
      transition: all, 0.3s;
      /* BACKGROUND GRADIENT */
      /* TRIPLE BORDERS */ }
    .template-cms_grid .cms-grid-item .grid-content .cms-grid-title {
      position: absolute;
      width: 100%;
      padding: 15px 10px;
      z-index: 99;
      bottom: 0;
      text-transform: uppercase;
      background: #0750ae;
      -webkit-transition: all, 0.3s;
      -khtml-transition: all, 0.3s;
      -moz-transition: all, 0.3s;
      -ms-transition: all, 0.3s;
      -o-transition: all, 0.3s;
      transition: all, 0.3s;
      /* BACKGROUND GRADIENT */
      /* TRIPLE BORDERS */
      -webkit-transform: translateY(100%);
      -khtml-transform: translateY(100%);
      -moz-transform: translateY(100%);
      -ms-transform: translateY(100%);
      -o-transform: translateY(100%);
      transform: translateY(100%);
      /* BACKGROUND GRADIENT */
      /* TRANSFORM STYLE */ }
      .template-cms_grid .cms-grid-item .grid-content .cms-grid-title a {
        color: #eee;
        text-decoration: none; }
  .template-cms_grid .cms-grid-item:hover .grid-content .cms-grid-media img {
    opacity: 0.7;
    -webkit-transition: all, 0.5s;
    -khtml-transition: all, 0.5s;
    -moz-transition: all, 0.5s;
    -ms-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
    /* BACKGROUND GRADIENT */
    /* TRIPLE BORDERS */
    -webkit-transform: scale(1.05);
    -khtml-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
    .template-cms_grid .cms-grid-item:hover .grid-content .cms-grid-title {
      -webkit-transition: all, 0.3s;
      -khtml-transition: all, 0.3s;
      -moz-transition: all, 0.3s;
      -ms-transition: all, 0.3s;
      -o-transition: all, 0.3s;
      transition: all, 0.3s;
      /* BACKGROUND GRADIENT */
      /* TRIPLE BORDERS */
      -webkit-transform: translateY(0);
      -khtml-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0);
      /* BACKGROUND GRADIENT */
      /* TRANSFORM STYLE */ }

.achiver-project {
  /* ------------------------------ Get Post -------------------------------
------------------------------------------------------------------------- */ }
  .achiver-project .cms-grid-item .grid-content .cms-grid-title {
    font-size: 14px; }

.news .wpb_column #cms-getpost-bycat {
  /* ------------------------------------- Footer ------------------------------
------------------------------------------------------------------------------- */ }
  .news .wpb_column #cms-getpost-bycat .first-item .cms-posts-title h3 {
    margin: 15px 0 8px; }
    .news .wpb_column #cms-getpost-bycat .first-item .cms-posts-title h3 a {
      color: #333; }
  .news .wpb_column #cms-getpost-bycat .first-item:hover h3 a {
    -webkit-transition: all, 0.5s;
    -khtml-transition: all, 0.5s;
    -moz-transition: all, 0.5s;
    -ms-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
    /* BACKGROUND GRADIENT */
    /* TRIPLE BORDERS */
    color: #faa703 !important;
    text-decoration: none; }
  .news .wpb_column #cms-getpost-bycat .item h3 a {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: all, 0.5s;
    -khtml-transition: all, 0.5s;
    -moz-transition: all, 0.5s;
    -ms-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
    /* BACKGROUND GRADIENT */
    /* TRIPLE BORDERS */ }
  .news .wpb_column #cms-getpost-bycat .item:hover h3 a {
    -webkit-transition: all, 0.5s;
    -khtml-transition: all, 0.5s;
    -moz-transition: all, 0.5s;
    -ms-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
    /* BACKGROUND GRADIENT */
    /* TRIPLE BORDERS */
    color: #faa703 !important;
    text-decoration: none; }

footer {
  margin-top: 30px;
  /* -------------------------------- Social share ------------------------------ 
-------------------------------------------------------------------------------*/ }
  footer .container {
    background: transparent;
    color: #ddd; }
  footer #footer-top {
    background: #193f61;
    padding: 15px 0 35px 0;
    font-size: 15px; }
  footer #footer-top .widget-title {
    color: #faa703;
    text-transform: uppercase; }
  footer #footer-top img {
    max-width: 100%; }
  footer #footer-bottom {
    font-size: 13px;
    padding: 10px 0;
    background: #333; }

.widget_social_share_widget {
  margin-top: 20px;
  /* --------------------------------- Single -------------------------------------
--------------------------------------------------------------------------------- */ }
  .widget_social_share_widget .wrap-icon-list {
    padding-left: 0; }
  .widget_social_share_widget .wrap-icon-list li {
    display: inline-block; }
    .widget_social_share_widget .wrap-icon-list li a {
      display: inline-block;
      width: 40px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      color: #fff;
      font-size: 16px;
      -webkit-border-radius: 5px;
      -khtml-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px;
      border-radius: 5px;
      /* BACKGROUND GRADIENT */
      -webkit-transition: all, 0.5s;
      -khtml-transition: all, 0.5s;
      -moz-transition: all, 0.5s;
      -ms-transition: all, 0.5s;
      -o-transition: all, 0.5s;
      transition: all, 0.5s;
      /* BACKGROUND GRADIENT */
      /* TRIPLE BORDERS */ }
    .widget_social_share_widget .wrap-icon-list li a.facebook {
      background: #3d5a99; }
    .widget_social_share_widget .wrap-icon-list li a.twitter {
      background: #1da1f2; }
    .widget_social_share_widget .wrap-icon-list li a.google {
      background: #db4437; }
    .widget_social_share_widget .wrap-icon-list li a.linkedein {
      background: #0077b5; }
    .widget_social_share_widget .wrap-icon-list li a.pinterest {
      background: #bd081c; }
    .widget_social_share_widget .wrap-icon-list li a:hover {
      opacity: 0.7; }

#content {
  padding: 15px;
  background: #fff;
  margin-bottom: 30px;
  /* ---------------------------------- Related product -----------------------------
----------------------------------------------------------------------------------- */ }
  #content .option {
    font-size: 14px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd; }
  #content .option span {
    font-size: 16px;
    font-weight: 500; }
  #content .option p {
    margin-top: 5px; }
  #content .option:last-child {
    border-bottom: none; }
  #content .thumbnail {
    margin-bottom: 15px; }
  #content .thumbnail img {
    max-width: 100%; }
  #content h2.entry-title {
    margin-top: 0;
    font-size: 20px;
    line-height: 22px;
    font-weight: 500; }

.related-product {
  /* ------------------------------- archive ------------------------------
------------------------------------------------------------------------ */ }
  .related-product .title {
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #5aae24;
    font-weight: 500;
    font-size: 20px;
    line-height: 22px; }
  .related-product .related-content {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px; }
  .related-product .related-content .cms-grid-media img {
    -webkit-transition: all, 0.3s;
    -khtml-transition: all, 0.3s;
    -moz-transition: all, 0.3s;
    -ms-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
    /* BACKGROUND GRADIENT */
    /* TRIPLE BORDERS */ }
  .related-product .related-content .related-title {
    position: absolute;
    z-index: 99;
    width: 100%;
    bottom: 0;
    font-size: 14px;
    padding: 5px;
    background: rgba(0, 0, 0, 0.8);
    -webkit-transition: all, 0.3s;
    -khtml-transition: all, 0.3s;
    -moz-transition: all, 0.3s;
    -ms-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
    /* BACKGROUND GRADIENT */
    /* TRIPLE BORDERS */
    -webkit-transform: translateY(100%);
    -khtml-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .related-product .related-content:hover a {
    color: #fff; }
    .related-product .related-content:hover .cms-grid-media img {
      opacity: 0.8;
      -webkit-transform: scale(1.05);
      -khtml-transform: scale(1.05);
      -moz-transform: scale(1.05);
      -ms-transform: scale(1.05);
      -o-transform: scale(1.05);
      transform: scale(1.05);
      /* BACKGROUND GRADIENT */
      /* TRANSFORM STYLE */
      -webkit-transition: all, 0.3s;
      -khtml-transition: all, 0.3s;
      -moz-transition: all, 0.3s;
      -ms-transition: all, 0.3s;
      -o-transition: all, 0.3s;
      transition: all, 0.3s;
      /* BACKGROUND GRADIENT */
      /* TRIPLE BORDERS */ }
    .related-product .related-content:hover .related-title {
      -webkit-transition: all, 0.3s;
      -khtml-transition: all, 0.3s;
      -moz-transition: all, 0.3s;
      -ms-transition: all, 0.3s;
      -o-transition: all, 0.3s;
      transition: all, 0.3s;
      /* BACKGROUND GRADIENT */
      /* TRIPLE BORDERS */
      -webkit-transform: translateY(0);
      -khtml-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0);
      /* BACKGROUND GRADIENT */
      /* TRANSFORM STYLE */ }

.archive {
  /* ---------------------------------- pagination -------------------------------
--------------------------------------------------------------------------------- */ }
  .archive.category article {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd; }
    .archive.category article .entry-content a {
      color: #333;
      font-size: 18px; }
      .archive.category article .entry-content a:hover {
        color: #faa703; }
    .archive.category article .entry-meta a {
      font-size: 14px; }
      .archive.category article .entry-meta a:hover {
        color: #faa703; }
    .archive.category article:last-child {
      border-bottom: none; }

.pagination {
  width: 100%;
  float: left;
  /* -------------------------------Contact Form --------------------------------
------------------------------------------------------------------------------- */ }
  .pagination span, .pagination a {
    display: inline-block;
    line-height: 40px;
    padding: 0 15px;
    color: #fff;
    background: #0750ae;
    -webkit-transition: all, 0.5s;
    -khtml-transition: all, 0.5s;
    -moz-transition: all, 0.5s;
    -ms-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
    /* BACKGROUND GRADIENT */
    /* TRIPLE BORDERS */ }
  .pagination span.current, .pagination a.current, .pagination span:hover, .pagination a:hover {
    background: #faa703; }

.wpcf7-form {
  color: #aaa;
  font-size: 14px; }
  .wpcf7-form .wpcf7-form-control {
    border: 1px solid #ddd; }
  .wpcf7-form .wpcf7-form-control.wpcf7-text {
    padding: 0 5px;
    height: 36px; }
  .wpcf7-form .wpcf7-textarea {
    max-height: 170px;
    padding: 7px; }
  .wpcf7-form .wpcf7-submit {
    background: #0750ae;
    color: #eee;
    border: none;
    line-height: 40px;
    padding: 0 15px;
    font-size: 15px;
    -webkit-transition: all, 0.5s;
    -khtml-transition: all, 0.5s;
    -moz-transition: all, 0.5s;
    -ms-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
    /* BACKGROUND GRADIENT */
    /* TRIPLE BORDERS */ }
  .wpcf7-form .wpcf7-submit:hover {
    background: #faa703; }

#back_to_top.on {
  position: fixed;
  bottom: 15px;
  right: 15px;
  cursor: pointer;
  width: 45px;
  height: 45px;
  line-height: 44px;
  text-align: center;
  color: #fff;
  background: #0750ae;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  /* BACKGROUND GRADIENT */
  -webkit-transition: all, 0.3s;
  -khtml-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
  /* BACKGROUND GRADIENT */
  /* TRIPLE BORDERS */ }
  #back_to_top.on:hover {
    background: #faa703; }

#cs-header {
  width: 100%;
  position: relative; }
  #cs-header.header-fixed {
    z-index: 9;
    background: #ccc;
    position: fixed;
    top: 0;
    -webkit-transition: all 2s ease-in-out;
    -khtml-transition: all 2s ease-in-out;
    -moz-transition: all 2s ease-in-out;
    -ms-transition: all 2s ease-in-out;
    -o-transition: all 2s ease-in-out;
    transition: all 2s ease-in-out;
    /* BACKGROUND GRADIENT */
    /* TRIPLE BORDERS */ }

.admin-bar #cs-header.header-fixed {
  top: 32px; }

.container {
  background: #eee; }

#header-logo img {
  max-width: 100%; }

#slider {
  margin-top: 15px; }

#header-navigation {
  margin: 15px 0 30px 0; }

.entry-page-image {
  margin-bottom: 14px; }

.template-front-page .site-content article {
  border: 0;
  margin-bottom: 0; }

.template-front-page .widget-area {
  clear: both;
  float: none;
  width: auto;
  padding-top: 24px;
  border-top: 1px solid #ededed; }

.template-front-page .widget-area .widget li {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.71429;
  list-style-type: square;
  list-style-position: inside; }

.template-front-page .widget-area .widget li a {
  color: #757575; }

.template-front-page .widget-area .widget li a:hover {
  color: #21759b; }

.template-front-page .widget-area .widget_text img {
  float: left;
  margin: 8px 24px 8px 0;
  /* =Widgets
-------------------------------------------------------------- */ }

.widget-area .widget ul ul {
  margin-left: 12px; }

.widget_rss li {
  margin: 12px 0; }

.widget_recent_entries .post-date, .widget_rss .rss-date {
  color: #aaa;
  font-size: 11px;
  margin-left: 12px; }

#wp-calendar {
  margin: 0;
  width: 100%;
  font-size: 13px;
  line-height: 1.84615;
  color: #686868; }

#wp-calendar th, #wp-calendar td, #wp-calendar caption {
  text-align: left; }

#wp-calendar #next {
  padding-right: 24px;
  text-align: right; }

.widget_search label {
  display: block;
  font-size: 13px;
  line-height: 1.84615; }

.widget_twitter li {
  list-style-type: none; }

.widget_twitter .timesince {
  display: block;
  text-align: right;
  /* =Plugins
----------------------------------------------- */ }

img#wpstats {
  display: block;
  margin: 0 auto 24px;
  /* =Breadcrumb
----------------------------------------------- */ }

#breadcrumb-text ul.breadcrumbs {
  margin: 0;
  padding: 0;
  list-style: none; }
  #breadcrumb-text ul.breadcrumbs li {
    display: inline-block;
    margin: 0 10px; }
    #breadcrumb-text ul.breadcrumbs li:first-child {
      margin-left: 0; }

.main-navigation {
  /* Minimum width of 992 pixels. */ }
  .main-navigation ul.ping-right {
    left: auto;
    right: 100%; }
  .main-navigation ul.ping-left {
    left: 100%;
    right: auto; }

@media screen and (min-width: 992px) {
  /* Minimum width of 992 pixels. */
    #menu-mobile {
      display: none; }
    .main-navigation {
      background: #0750ae; }
    .main-navigation ul.nav-menu {
      display: inline-block !important;
      text-align: left;
      width: 100%;
      padding-left: 0; }
    .main-navigation ul.nav-menu {
      margin: 0;
      text-indent: 0; }
    .main-navigation li a, .main-navigation li {
      display: inline-block;
      text-decoration: none; }
    .main-navigation li a {
      border-bottom: 0;
      color: #fff;
      line-height: 3.69231;
      text-transform: uppercase;
      white-space: nowrap;
      font-size: 16px;
      -webkit-transition: all, 0.5s;
      -khtml-transition: all, 0.5s;
      -moz-transition: all, 0.5s;
      -ms-transition: all, 0.5s;
      -o-transition: all, 0.5s;
      transition: all, 0.5s;
      /* BACKGROUND GRADIENT */
      /* TRIPLE BORDERS */ }
    .main-navigation li a:hover, .main-navigation li a:focus {
      color: #ffbf00; }
    .main-navigation li {
      padding: 0 20px;
      position: relative; }
    .main-navigation li li {
      margin: 0; }
    .main-navigation li ul {
      margin: 0;
      padding: 0;
      position: absolute;
      top: 100%;
      z-index: 1;
      height: 1px;
      width: 1px;
      overflow: hidden;
      clip: rect(1px, 1px, 1px, 1px);
      /**Menu dam vao tuong**/ }
    .main-navigation li ul ul {
      top: 0;
      left: 100%;
      /**End menu dam vao tuong**/ }
      .main-navigation li ul ul.back {
        right: 100%;
        left: auto; }
        .main-navigation li ul ul.back ul:not(.back) {
          right: 100%;
          left: auto; }
        .main-navigation li ul ul.back ul.back {
          left: 100%;
          right: auto; }
          .main-navigation li ul ul.back ul.back ul:not(.back) {
            left: 100%;
            right: auto; }
          .main-navigation li ul ul.back ul.back ul.back {
            right: 100%;
            left: auto; }
    .main-navigation ul li:hover > ul, .main-navigation ul li:focus > ul, .main-navigation .focus > ul {
      border-left: 0;
      clip: inherit;
      overflow: inherit;
      height: inherit;
      width: inherit; }
    .main-navigation li ul li a {
      display: block;
      font-size: 13px;
      padding: 8px 10px;
      line-height: 1.2;
      width: 240px;
      white-space: normal; }
    .main-navigation li ul li a:hover, .main-navigation li ul li a:focus {
      color: #ffbf00; }
    .main-navigation .current-menu-item > a, .main-navigation .current-menu-ancestor > a, .main-navigation .current_page_item > a, .main-navigation .current_page_ancestor > a {
      color: #ffbf00;
      font-weight: bold;
      /* mega menu */ }
    .main-navigation .columns2 > li:nth-of-type(2n+1) {
      clear: left;
      border-right: 0px solid transparent; }
    .main-navigation .columns3 > li:nth-child(3n+1) {
      clear: left;
      border-right: 0px solid transparent; }
    .main-navigation .columns4 > li:nth-child(4n+1) {
      clear: left;
      border-right: 0px solid transparent; }
    .main-navigation .columns5 > li:nth-child(5n+1) {
      clear: left;
      border-right: 0px solid transparent; }
    .main-navigation .columns5 > li {
      width: 20% !important; }
    .main-navigation .columns4 > li {
      width: 25% !important; }
    .main-navigation .columns3 > li {
      width: 33% !important; }
    .main-navigation .columns2 > li {
      width: 50% !important; }
    .main-navigation [class*="columns"] > li {
      float: left; }
      .main-navigation [class*="columns"] > li > a {
        width: 100%; } }

@media screen and (max-width: 991px) {
  .main-navigation ul.nav-menu {
    max-height: 0;
    overflow: hidden;
    transition: all 500ms ease; }

  #header-navigation {
    display: block;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    z-index: 9;
    min-height: 0; }
    #header-navigation .nav-menu {
      padding: 15px;
      background: #0b458c; }

  #menu-mobile {
    display: block;
    position: absolute;
    top: 15px;
    right: 30px;
    cursor: pointer;
    color: #fff;
    text-align: center; }
    #menu-mobile i {
      font-size: 30px; }
    #menu-mobile span {
      font-size: 12px;
      margin-top: -8px; }
    #menu-mobile i, #menu-mobile span {
      display: block; }

  .main-navigation ul.nav-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: none; }
    .main-navigation ul.nav-menu > li {
      list-style: none;
      border-bottom: 1px solid #1c5396; }
      .main-navigation ul.nav-menu > li:last-child {
        border-bottom: none; }
      .main-navigation ul.nav-menu > li > a {
        display: block;
        color: #eee;
        line-height: 38px; }
        .main-navigation ul.nav-menu > li > a:hover, .main-navigation ul.nav-menu > li > a:focus {
          color: #faa703; }
      .main-navigation ul.nav-menu > li li a {
        color: #eee;
        line-height: 24px;
        font-size: 14px; }
        .main-navigation ul.nav-menu > li li a:hover, .main-navigation ul.nav-menu > li li a:focus {
          color: #faa703; }

  .collapse .main-navigation ul.nav-menu {
    display: block;
    max-height: 2000px; } }

.widget-area, .wpb_widgetised_column {
  float: left;
  width: 100%; }
  .widget-area .widget-title, .wpb_widgetised_column .widget-title {
    background: #0750ae;
    color: #eee;
    line-height: 45px;
    text-transform: uppercase;
    text-align: center;
    float: left;
    width: 100%;
    margin-top: 0; }
  .widget-area .textwidget, .wpb_widgetised_column .textwidget {
    width: 100%;
    float: left;
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 20px; }
  .widget-area .textwidget img, .wpb_widgetised_column .textwidget img {
    max-width: 100%; }
    .widget-area .textwidget img.help, .wpb_widgetised_column .textwidget img.help {
      margin: -10px; }
  .widget-area .textwidget .template-cms_getpost_bycat--layout2 .item, .wpb_widgetised_column .textwidget .template-cms_getpost_bycat--layout2 .item {
    width: 100%;
    float: left;
    margin-bottom: 15px; }
    .widget-area .textwidget .template-cms_getpost_bycat--layout2 .item .cms-grid-media, .wpb_widgetised_column .textwidget .template-cms_getpost_bycat--layout2 .item .cms-grid-media {
      float: left;
      width: 45%;
      padding-right: 7px; }
    .widget-area .textwidget .template-cms_getpost_bycat--layout2 .item .cms-posts-title, .wpb_widgetised_column .textwidget .template-cms_getpost_bycat--layout2 .item .cms-posts-title {
      float: left;
      width: 55%; }
      .widget-area .textwidget .template-cms_getpost_bycat--layout2 .item .cms-posts-title h3, .wpb_widgetised_column .textwidget .template-cms_getpost_bycat--layout2 .item .cms-posts-title h3 {
        margin: 0; }
      .widget-area .textwidget .template-cms_getpost_bycat--layout2 .item .cms-posts-title a, .wpb_widgetised_column .textwidget .template-cms_getpost_bycat--layout2 .item .cms-posts-title a {
        font-size: 14px;
        color: #444;
        line-height: 16px; }
    .widget-area .textwidget .template-cms_getpost_bycat--layout2 .item:hover .cms-posts-title a, .wpb_widgetised_column .textwidget .template-cms_getpost_bycat--layout2 .item:hover .cms-posts-title a {
      color: #faa703; }
  .widget-area .widget_wp_statsmechanic, .wpb_widgetised_column .widget_wp_statsmechanic {
    float: left;
    width: 100%; }
  .widget-area .widget_wp_statsmechanic #mvcwid, .wpb_widgetised_column .widget_wp_statsmechanic #mvcwid {
    padding: 0;
    float: left;
    width: 100%;
    border: 1px solid #ddd; }
    .widget-area .widget_wp_statsmechanic #mvcwid #mvccount, .wpb_widgetised_column .widget_wp_statsmechanic #mvcwid #mvccount {
      padding-bottom: 0; }

@media screen and (min-width: 1200px) {
  body .cs-boxed {
    margin: auto;
    width: 1200px; } }

@media screen and (max-width: 992px) {
  body > div > div > .container, #cs-header > .container {
    width: 100% !important; } }

@media screen and (min-width: 768px) {
  .intro-heading {
    margin-top: 0 !important; }

  .main-navigation ul.nav-menu {
    text-align: right; }
    .main-navigation ul.nav-menu li.menu-item-has-children:after {
      color: #eee;
      font-size: 14px;
      content: "\f0d7";
      font-family: "Fontawesome";
      vertical-align: 1px; }
    .main-navigation ul.nav-menu .sub-menu {
      background: #0b458c;
      text-align: left; }
      .main-navigation ul.nav-menu .sub-menu li {
        border-bottom: 1px solid #1c5396; }
        .main-navigation ul.nav-menu .sub-menu li:last-child {
          border-bottom: none; }
        .main-navigation ul.nav-menu .sub-menu li a {
          text-transform: none;
          font-size: 15px;
          display: inline-block;
          line-height: 24px; }

  .news .wpb_column #cms-getpost-bycat .first-item {
    float: left;
    padding-right: 15px;
    width: 40%; }
    .news .wpb_column #cms-getpost-bycat .first-item .cms-posts-title h3 {
      font-size: 18px;
      text-transform: uppercase; }
      .news .wpb_column #cms-getpost-bycat .first-item .cms-posts-title h3 a {
        font-weight: 500; }
    .news .wpb_column #cms-getpost-bycat .item {
      float: right;
      padding-left: 15px;
      width: 60%;
      margin-bottom: 15px; }
    .news .wpb_column #cms-getpost-bycat .item .wrapper-item {
      border-bottom: 1px solid #ddd;
      float: left;
      padding-bottom: 15px;
      width: 100%; }
      .news .wpb_column #cms-getpost-bycat .item .wrapper-item .cms-grid-media {
        float: left;
        width: 15%; }
      .news .wpb_column #cms-getpost-bycat .item .wrapper-item .cms-posts-title {
        float: left;
        padding-left: 20px;
        width: 85%; }
      .news .wpb_column #cms-getpost-bycat .item .wrapper-item h3 {
        line-height: 18px;
        margin: 0 0 5px 0; }

  .signle-content {
    display: flex; }
    .signle-content #content {
      height: 98%; }

  .wpcf7-form .wpcf7-textarea {
    width: 60%; } }

@media screen and (max-width: 768px) {
  .news .wpb_column #cms-getpost-bycat .first-item {
    margin-bottom: 15px; }
    .news .wpb_column #cms-getpost-bycat .first-item .cms-posts-title h3 {
      margin: 15px 0 8px; }
      .news .wpb_column #cms-getpost-bycat .first-item .cms-posts-title h3 a {
        color: #333;
        font-weight: 500; }
    .news .wpb_column #cms-getpost-bycat .first-item:hover h3 a {
      -webkit-transition: all, 0.5s;
      -khtml-transition: all, 0.5s;
      -moz-transition: all, 0.5s;
      -ms-transition: all, 0.5s;
      -o-transition: all, 0.5s;
      transition: all, 0.5s;
      /* BACKGROUND GRADIENT */
      /* TRIPLE BORDERS */
      color: #faa703 !important; }
    .news .wpb_column #cms-getpost-bycat .item {
      margin-bottom: 15px; }
    .news .wpb_column #cms-getpost-bycat .item h3 {
      margin: 15px 0 8px; }
      .news .wpb_column #cms-getpost-bycat .item h3 a {
        color: #333;
        font-size: 16px;
        font-weight: 500;
        -webkit-transition: all, 0.5s;
        -khtml-transition: all, 0.5s;
        -moz-transition: all, 0.5s;
        -ms-transition: all, 0.5s;
        -o-transition: all, 0.5s;
        transition: all, 0.5s;
        /* BACKGROUND GRADIENT */
        /* TRIPLE BORDERS */ }
    .news .wpb_column #cms-getpost-bycat .item:hover h3 a {
      -webkit-transition: all, 0.5s;
      -khtml-transition: all, 0.5s;
      -moz-transition: all, 0.5s;
      -ms-transition: all, 0.5s;
      -o-transition: all, 0.5s;
      transition: all, 0.5s;
      /* BACKGROUND GRADIENT */
      /* TRIPLE BORDERS */
      color: #faa703 !important; }

  #content .entry-content .entry-title {
    margin-top: 15px; }

  .template-cms_grid .cms-grid-item .grid-content .cms-grid-title {
    opacity: 0.7;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
    .template-cms_grid .cms-grid-item .grid-content .cms-grid-title a {
      color: #fff;
      text-decoration: none; }
    .template-cms_grid .cms-grid-item:hover .grid-content .cms-grid-title {
      opacity: 1; } }
