/* -------------------------------------------------------------
  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 */
/* ==========================================================================
    Style Button
========================================================================== */
/* =Main content and comment content
-------------------------------------------------------------- */
/*------------------------------------------------------------------
[Main Of Contents]

1. Reset HTML/CSS, Unitest, Body
-------------------------------------------------------------------*/
/* ==========================================================================
   1. Reset HTML/CSS, Unitest, Body
========================================================================== */
/* Images */
/*  Pie_chart */
/* Navigation Menu */
.btn, button, .button, input[type="submit"] {
  line-height: 40px;
  letter-spacing: 0.25em;
  margin-bottom: 4px;
  font-weight: 400;
  display: inline-block;
  outline: medium none;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  position: relative;
  font-size: 14px;
  color: #d1d1d1 !important;
  background-color: rgba(251, 251, 251, 0);
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #d1d1d1;
  padding-top: ;
  padding-right: 28px;
  padding-bottom: ;
  padding-left: 28px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  /* BACKGROUND GRADIENT */ }
  .btn i.right, button i.right, .button i.right, input[type="submit"] i.right {
    float: right; }
    .btn i.left, button i.left, .button i.left, input[type="submit"] i.left {
      float: left; }
  .btn > [class*="glyphicon"], button > [class*="glyphicon"], .button > [class*="glyphicon"], input[type="submit"] > [class*="glyphicon"], .btn > [class*="fa-"], button > [class*="fa-"], .button > [class*="fa-"], input[type="submit"] > [class*="fa-"] {
    padding: 0 17px;
    font-size: 1.5em;
    line-height: 40px;
    position: relative; }
  .btn.btn-primary, button.btn-primary, .button.btn-primary, input[type="submit"].btn-primary {
    color: #fff !important;
    background-color: #dd3d2e;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #dd3d2e;
    padding-top: ;
    padding-right: 28px;
    padding-bottom: ;
    padding-left: 28px;
    -webkit-border-radius: ;
    -khtml-border-radius: ;
    -moz-border-radius: ;
    -ms-border-radius: ;
    -o-border-radius: ;
    border-radius: ;
    /* BACKGROUND GRADIENT */ }
    .btn.btn-primary:hover, button.btn-primary:hover, .button.btn-primary:hover, input[type="submit"].btn-primary:hover, .btn.btn-primary:focus, button.btn-primary:focus, .button.btn-primary:focus, input[type="submit"].btn-primary:focus {
      color: #fff !important;
      background-color: #d1d1d1;
      border-color: #d1d1d1; }
  .btn.btn-default-alt, button.btn-default-alt, .button.btn-default-alt, input[type="submit"].btn-default-alt {
    padding: 8px 30px;
    margin: 0 2px 6px 0;
    border: none;
    letter-spacing: 0;
    color: #333 !important;
    background-color: #fff; }
    .btn.btn-default-alt.active, button.btn-default-alt.active, .button.btn-default-alt.active, input[type="submit"].btn-default-alt.active, .btn.btn-default-alt.focus, button.btn-default-alt.focus, .button.btn-default-alt.focus, input[type="submit"].btn-default-alt.focus, .btn.btn-default-alt:hover, button.btn-default-alt:hover, .button.btn-default-alt:hover, input[type="submit"].btn-default-alt:hover, .btn.btn-default-alt:active, button.btn-default-alt:active, .button.btn-default-alt:active, input[type="submit"].btn-default-alt:active, .btn.btn-default-alt:focus, button.btn-default-alt:focus, .button.btn-default-alt:focus, input[type="submit"].btn-default-alt:focus {
      background-color: #e6e6e6;
      color: #333; }
  .btn.btn-primary-alt, button.btn-primary-alt, .button.btn-primary-alt, input[type="submit"].btn-primary-alt {
    padding: 8px 30px;
    margin: 0 2px 6px 0;
    border: none;
    letter-spacing: 0;
    color: #fff !important;
    background-color: #337ab7; }
    .btn.btn-primary-alt.active, button.btn-primary-alt.active, .button.btn-primary-alt.active, input[type="submit"].btn-primary-alt.active, .btn.btn-primary-alt.focus, button.btn-primary-alt.focus, .button.btn-primary-alt.focus, input[type="submit"].btn-primary-alt.focus, .btn.btn-primary-alt:hover, button.btn-primary-alt:hover, .button.btn-primary-alt:hover, input[type="submit"].btn-primary-alt:hover, .btn.btn-primary-alt:active, button.btn-primary-alt:active, .button.btn-primary-alt:active, input[type="submit"].btn-primary-alt:active, .btn.btn-primary-alt:focus, button.btn-primary-alt:focus, .button.btn-primary-alt:focus, input[type="submit"].btn-primary-alt:focus {
      background-color: #286090;
      color: #fff; }
  .btn.btn-success, button.btn-success, .button.btn-success, input[type="submit"].btn-success {
    padding: 8px 30px;
    margin: 0 2px 6px 0;
    border: none;
    letter-spacing: 0;
    color: #fff !important;
    background-color: #5cb85c; }
    .btn.btn-success.active, button.btn-success.active, .button.btn-success.active, input[type="submit"].btn-success.active, .btn.btn-success.focus, button.btn-success.focus, .button.btn-success.focus, input[type="submit"].btn-success.focus, .btn.btn-success:hover, button.btn-success:hover, .button.btn-success:hover, input[type="submit"].btn-success:hover, .btn.btn-success:active, button.btn-success:active, .button.btn-success:active, input[type="submit"].btn-success:active, .btn.btn-success:focus, button.btn-success:focus, .button.btn-success:focus, input[type="submit"].btn-success:focus {
      background-color: #449d44;
      color: #fff; }
  .btn.btn-info, button.btn-info, .button.btn-info, input[type="submit"].btn-info {
    padding: 8px 30px;
    margin: 0 2px 6px 0;
    border: none;
    letter-spacing: 0;
    color: #fff !important;
    background-color: #5bc0de; }
    .btn.btn-info.active, button.btn-info.active, .button.btn-info.active, input[type="submit"].btn-info.active, .btn.btn-info.focus, button.btn-info.focus, .button.btn-info.focus, input[type="submit"].btn-info.focus, .btn.btn-info:hover, button.btn-info:hover, .button.btn-info:hover, input[type="submit"].btn-info:hover, .btn.btn-info:active, button.btn-info:active, .button.btn-info:active, input[type="submit"].btn-info:active, .btn.btn-info:focus, button.btn-info:focus, .button.btn-info:focus, input[type="submit"].btn-info:focus {
      background-color: #31b0d5;
      color: #fff; }
  .btn.btn-warning, button.btn-warning, .button.btn-warning, input[type="submit"].btn-warning {
    padding: 8px 30px;
    margin: 0 2px 6px 0;
    border: none;
    letter-spacing: 0;
    color: #fff !important;
    background-color: #f0ad4e; }
    .btn.btn-warning.active, button.btn-warning.active, .button.btn-warning.active, input[type="submit"].btn-warning.active, .btn.btn-warning.focus, button.btn-warning.focus, .button.btn-warning.focus, input[type="submit"].btn-warning.focus, .btn.btn-warning:hover, button.btn-warning:hover, .button.btn-warning:hover, input[type="submit"].btn-warning:hover, .btn.btn-warning:active, button.btn-warning:active, .button.btn-warning:active, input[type="submit"].btn-warning:active, .btn.btn-warning:focus, button.btn-warning:focus, .button.btn-warning:focus, input[type="submit"].btn-warning:focus {
      background-color: #ec971f;
      color: #fff; }
  .btn.btn-danger, button.btn-danger, .button.btn-danger, input[type="submit"].btn-danger {
    padding: 8px 30px;
    margin: 0 2px 6px 0;
    border: none;
    letter-spacing: 0;
    color: #fff !important;
    background-color: #d9534f; }
    .btn.btn-danger.active, button.btn-danger.active, .button.btn-danger.active, input[type="submit"].btn-danger.active, .btn.btn-danger.focus, button.btn-danger.focus, .button.btn-danger.focus, input[type="submit"].btn-danger.focus, .btn.btn-danger:hover, button.btn-danger:hover, .button.btn-danger:hover, input[type="submit"].btn-danger:hover, .btn.btn-danger:active, button.btn-danger:active, .button.btn-danger:active, input[type="submit"].btn-danger:active, .btn.btn-danger:focus, button.btn-danger:focus, .button.btn-danger:focus, input[type="submit"].btn-danger:focus {
      background-color: #c9302c;
      color: #fff; }
  .btn.btn-link, button.btn-link, .button.btn-link, input[type="submit"].btn-link {
    padding: 8px 30px;
    margin: 0 2px 6px 0;
    border: none;
    letter-spacing: 0;
    color: #337ab7 !important;
    background-color: #fff; }
    .btn.btn-link.active, button.btn-link.active, .button.btn-link.active, input[type="submit"].btn-link.active, .btn.btn-link.focus, button.btn-link.focus, .button.btn-link.focus, input[type="submit"].btn-link.focus, .btn.btn-link:hover, button.btn-link:hover, .button.btn-link:hover, input[type="submit"].btn-link:hover, .btn.btn-link:active, button.btn-link:active, .button.btn-link:active, input[type="submit"].btn-link:active, .btn.btn-link:focus, button.btn-link:focus, .button.btn-link:focus, input[type="submit"].btn-link:focus {
      background-color: transparent;
      color: #23527c !important;
      text-decoration: underline; }
  .btn.btn-white, button.btn-white, .button.btn-white, input[type="submit"].btn-white {
    border-color: #fff;
    background-color: transparent;
    color: #fff !important; }
    .btn.btn-white:hover, button.btn-white:hover, .button.btn-white:hover, input[type="submit"].btn-white:hover {
      background-color: #fff;
      border-color: #fff;
      color: #4d4d4d !important; }

.btn:hover, button:hover, .button:hover, input[type="submit"]:hover, .btn:focus, button:focus, .button:focus, input[type="submit"]:focus {
  outline: medium none;
  text-decoration: none;
  color: #fff !important;
  background-color: #d1d1d1;
  border-color: #d1d1d1;
  /* ==========================================================================
    End Style Button
========================================================================== */ }

.entry-meta {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  color: #4d4d4d;
  border: 1px solid #f2f2f2;
  background: #fff; }
  .entry-meta > span {
    text-align: center;
    display: block; }
  .entry-meta a {
    color: #de3c2f; }
    .entry-meta a:hover {
      color: #b2b2b2;
      text-decoration: none; }

.datetime:before, .event-date:before, .event-place:before, .item-likes:before, span.author a:before {
  font-family: 'rt-icons';
  content: "\e64d";
  color: #de3c2f;
  font-size: 16px;
  position: relative;
  top: 2px; }

.datetime:before {
  content: "\e673";
  padding: 0 8px 0 2px; }

.event-date:before {
  content: "\e673";
  padding: 0 0.5em 0 0; }

.event-place:before {
  content: "\e68c";
  padding: 0 0.5em 0 0; }

.item-likes:before {
  content: "\e677";
  padding: 0 6px 0 2px; }

span.author a:before {
  content: "\e680";
  padding: 0 8px 0 2px; }

.post-content {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-top: none;
  padding: 35px 34px 0;
  background: #fff;
  text-align: center; }
  .post-content h1 {
    margin-top: 0; }
  .post-content h2.entry-title {
    margin-top: 0; }
  .post-content a {
    color: #de3c2f; }
    .post-content a:hover {
      color: #b2b2b2;
      text-decoration: none; }

.post-button {
  margin: 33px 0 0; }
  .post-button .btn {
    margin: 9px 0 -1px; }

.side-item a {
  color: #de3c2f; }
  .side-item a:hover {
    color: #b2b2b2;
    text-decoration: none; }

.entry-content > .wpb_row .row .side-item .row > [class*="col-"] {
  margin-top: 0;
  margin-bottom: 0; }

.entry-content > .wpb_row .row .side-item .row {
  margin: 0 -15px; }

.entry-title {
  font-size: 40px;
  margin-bottom: 10px;
  line-height: 40px; }
  .entry-title a {
    color: #4d4d4d; }
  .entry-title a:hover {
    color: #de3c2f;
    text-decoration: none; }

.item-categories {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 14px;
  font-weight: 400; }
  .item-categories p {
    margin: 0 0 33px; }

.entry-header {
  margin-bottom: 24px; }

.entry-header img.wp-post-image {
  margin-bottom: 24px; }

.entry-header .entry-title a {
  text-decoration: none; }

.entry-header .entry-format {
  margin-top: 24px;
  font-weight: normal; }

.entry-header .comments-link {
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.84615;
  color: #757575; }

article.sticky .featured-post {
  border-top: 4px double #ededed;
  border-bottom: 4px double #ededed;
  color: #757575;
  font-size: 13px;
  line-height: 3.69231;
  margin-bottom: 24px;
  text-align: center; }

.entry-content h1, .comment-content h1, .entry-content h2, .comment-content h2, .entry-content h3, .comment-content h3, .entry-content h4, .comment-content h4, .entry-content h5, .comment-content h5, .entry-content h6, .comment-content h6 {
  margin: 0; }

.entry-content .more-link {
  white-space: nowrap; }

.entry-content ol, .comment-content ol, .entry-content ul, .comment-content ul, .mu_register ul {
  margin: 0 0 24px;
  line-height: 1.71429; }

.entry-content ul ul, .comment-content ul ul, .entry-content ol ol, .comment-content ol ol, .entry-content ul ol, .comment-content ul ol, .entry-content ol ul, .comment-content ol ul {
  margin-bottom: 0; }

.entry-content ul, .comment-content ul, .mu_register ul {
  list-style: disc outside; }

.entry-content ol, .comment-content ol {
  list-style: decimal outside; }

.entry-content blockquote, .comment-content blockquote, article blockquote {
  font-size: 20px;
  position: relative;
  margin: 20px 0;
  padding: 27px 20px 29px 98px;
  line-height: 1.57;
  color: #4d4d4d;
  border: 1px solid #f2f2f2;
  font-style: italic; }
  .entry-content blockquote:before, .comment-content blockquote:before, article blockquote:before, .entry-content blockquote:after, .comment-content blockquote:after, article blockquote:after {
    font-family: 'pt-sans-regular';
    font-size: 100px;
    font-style: normal;
    content: '\201c';
    color: #de3c2f;
    position: absolute;
    left: 46px;
    top: 10px; }

article blockquote {
  margin: 0 0 -1px; }

.entry-content blockquote p:last-child, .comment-content blockquote p:last-child, article blockquote p:last-child {
  margin-bottom: 0; }

.entry-content code, .comment-content code {
  font-family: Consolas, Monaco, Lucida Console, monospace;
  font-size: 12px;
  line-height: 2; }

.entry-content pre, .comment-content pre {
  border: 1px solid #ededed;
  color: #666;
  font-family: Consolas, Monaco, Lucida Console, monospace;
  font-size: 12px;
  line-height: 1.71429;
  margin: 24px 0;
  overflow: auto;
  padding: 24px; }

.entry-content pre code, .comment-content pre code {
  display: block; }

.entry-content abbr, .comment-content abbr, .entry-content dfn, .comment-content dfn, .entry-content acronym, .comment-content acronym {
  border-bottom: 1px dotted #666;
  cursor: help; }

.entry-content address, .comment-content address {
  display: block;
  line-height: 1.71429;
  margin: 0 0 24px; }

img.alignleft, .wp-caption.alignleft {
  margin: 12px 24px 12px 0; }

img.alignright, .wp-caption.alignright {
  float: right;
  margin: 5px 0 15px 30px !important;
  max-width: 50%; }

img.aligncenter, .wp-caption.aligncenter {
  clear: both;
  margin-top: 12px;
  margin-bottom: 12px; }

.entry-content embed, .entry-content iframe, .entry-content object, .entry-content video {
  margin-bottom: 24px; }

.entry-content dl, .comment-content dl {
  margin: 0 24px; }

.entry-content dt, .comment-content dt {
  font-weight: bold;
  line-height: 1.71429; }

.entry-content dd, .comment-content dd {
  line-height: 1.71429;
  margin-bottom: 24px; }

.entry-content table, .comment-content table {
  width: 100%; }

.entry-excerpt {
  color: #4d4d4d;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 24px;
  padding-bottom: 11px;
  margin-bottom: 21px; }
  .entry-excerpt p {
    margin-bottom: 16px !important; }

.entry-content td, .comment-content td {
  border-top: 1px solid #ededed;
  padding: 6px 10px 6px 0; }

.site-content article {
  border-bottom: 4px double #ededed;
  margin-bottom: 72px;
  padding-bottom: 24px;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto; }

.page-links {
  clear: both;
  line-height: 1.71429; }

footer.entry-meta {
  font-size: 13px;
  line-height: 1.84615;
  color: #757575;
  margin: 10px 0;
  text-align: center; }

.single-author .entry-meta .by-author {
  display: none; }

.mu_register h2 {
  color: #757575;
  font-weight: normal;
  /* =Comments
-------------------------------------------------------------- */ }

.comments-title {
  margin-bottom: 48px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: normal; }

.comments-area article {
  margin: 24px 0;
  margin: 1.71429rem 0; }

.comments-area article header {
  margin: 0 0 48px;
  margin: 0 0 3.42857rem;
  overflow: hidden;
  position: relative; }

.comments-area article header img {
  float: left;
  padding: 0;
  line-height: 0; }

.comments-area article header cite, .comments-area article header time {
  display: block;
  margin-left: 85px;
  margin-left: 6.07143rem; }

.comments-area article header cite {
  font-style: normal;
  font-size: 15px;
  line-height: 1.42857; }

.comments-area cite b {
  font-weight: normal; }

.comments-area article header time {
  line-height: 1.71429;
  text-decoration: none;
  font-size: 12px;
  color: #5e5e5e; }

.comments-area article header a {
  text-decoration: none;
  color: #5e5e5e; }

.comments-area article header a:hover {
  color: #21759b; }

.comments-area article header cite a {
  color: #444; }

.comments-area article header cite a:hover {
  text-decoration: underline; }

.comments-area article header h4 {
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: normal;
  color: #fff;
  background-color: #0088d0;
  background-repeat: repeat-x;
  background-image: -moz-linear-gradient(top, #009cee, #0088d0);
  background-image: -ms-linear-gradient(top, #009cee, #0088d0);
  background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
  background-image: -o-linear-gradient(top, #009cee, #0088d0);
  background-image: linear-gradient(top, #009cee, #0088d0);
  border-radius: 3px;
  border: 1px solid #007cbd; }

.comments-area .bypostauthor cite span {
  position: absolute;
  margin-left: 5px;
  padding: 2px 5px;
  font-size: 10px; }

.comments-area .bypostauthor cite b {
  font-weight: bold; }

a.comment-reply-link, a.comment-edit-link {
  color: #686868;
  font-size: 13px;
  line-height: 1.84615; }

a.comment-reply-link:hover, a.comment-edit-link:hover {
  color: #21759b; }

.commentlist .pingback {
  line-height: 1.71429;
  margin-bottom: 24px;
  /* Comment form */ }

#respond {
  margin-top: 48px;
  padding: 0 15px; }

#respond h3#reply-title {
  font-size: 16px;
  line-height: 1.5; }

#respond h3#reply-title #cancel-comment-reply-link {
  margin-left: 10px;
  font-weight: normal;
  font-size: 12px; }

#respond form {
  margin: 24px 0; }

#respond form p {
  margin: 11px 0; }

#respond form p.logged-in-as {
  margin-bottom: 24px; }

#respond form label {
  display: block;
  line-height: 1.71429; }

#respond form input[type="text"], #respond form textarea {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 12px;
  line-height: 1.71429;
  padding: 10px;
  width: 100%; }

#respond form p.form-allowed-tags {
  margin: 0;
  font-size: 12px;
  line-height: 2;
  color: #5e5e5e; }

.required {
  color: red; }

.title_shortcode .section_header h2 {
  text-transform: uppercase;
  margin: 0 0 10px; }
  .title_shortcode .wpb_row, .title_shortcode .wpb_content_element {
    margin-bottom: 0; }
  .title_shortcode p {
    font-size: 22px;
    color: #b2b2b2;
    max-width: 60%;
    margin: 0 auto; }

.error404 {
  text-align: center;
  padding-bottom: 100px !important;
  margin: 0 !important;
  border: none !important; }
  .error404 h1.entry-title {
    font-size: 300px;
    font-weight: 700;
    color: #de3c2f;
    margin: 0;
    font-family: "Open Sans";
    line-height: 300px; }
  .error404 .entry-content h2 {
    text-transform: uppercase;
    margin: 0 0 28px; }
  .error404 form.searchform {
    display: block;
    margin: 0 auto;
    max-width: 250px; }
  .error404 form.searchform:before {
    color: #4d4d4d;
    background: none; }
  .error404 form.searchform input[type="text"] {
    color: #b2b2b2; }
  .error404 form.searchform input[type="submit"] {
    background: transparent !important; }

.side-item {
  border: 1px solid #f2f2f2; }

.item-content {
  margin: 34px 40px 34px 10px; }

.entry-tags {
  padding: 14px 0 0;
  margin-bottom: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase; }

.team .entry-header {
  padding: 0 0 100px 0;
  margin: 0; }
  .team .entry-header img.wp-post-image {
    margin: 0; }
  .team .entry-header .entry-title {
    margin-top: 0; }
  .team .entry-header .border-paragraphs {
    margin: 30px 0 30px; }
    .team .entry-header .border-paragraphs p {
      padding: 9px 0 10px;
      margin: 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
      .team .entry-header .border-paragraphs p:first-child {
        border-top: 1px solid rgba(0, 0, 0, 0.05); }
  .team .entry-thumbnail img {
    width: 100%; }
  .team .layout-team-2 .cms-grid-title h3 strong {
    font-weight: 800; }
  .team .layout-team-2 .cms-grid-item-team {
    background: #fff;
    border: none; }
  .team .btn {
    margin: 0 auto;
    display: block; }

.gallery .entry-header {
  margin: 0; }
  .gallery .social-icons {
    padding: 10px 0 20px; }

.social-icons {
  margin: 2px 0 10px; }

#page-right-sidebar article {
  margin-right: 100px;
  text-align: center; }

.related {
  padding-top: 100px; }
  .related h2 {
    margin: 40px 0; }

iframe {
  width: 100%;
  display: block; }

#page-blog-masonry .container {
  padding-bottom: 100px; }
  #page-blog-masonry article {
    margin-bottom: 30px; }
  #page-blog-masonry .cs_pagination {
    padding: 0; }
  #page-blog-masonry .carousel-control {
    left: 0; }
  #page-blog-masonry .carousel-control.right {
    right: 0;
    left: auto; }
  #page-blog-masonry h3.entry-title {
    font-size: 30px;
    line-height: 30px;
    margin: 0 0 25px 0; }
  #page-blog-masonry .entry-meta {
    border: none;
    border-top: 1px solid #f2f2f2;
    margin: 30px -34px 0; }
  #page-blog-masonry .entry-meta span {
    padding: 10px 5px 5px;
    color: #4d4d4d; }
    #page-blog-masonry .entry-meta span i {
      display: block; }
  #page-blog-masonry .entry-meta a {
    color: #4d4d4d; }
    #page-blog-masonry .entry-meta a:hover {
      color: #b2b2b2; }
  #page-blog-masonry .gallery-item-description {
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.2em;
    opacity: 1;
    padding: 0 40px 20px;
    text-align: left;
    text-transform: uppercase; }
  #page-blog-masonry .gallery-item-description p {
    opacity: 1;
    transform: none; }
  #page-blog-masonry .gallery-item-description a {
    color: #fff; }
    #page-blog-masonry .gallery-item-description a:hover {
      color: #de3c2f; }
    #page-blog-masonry .gallery-item-description a i {
      font-size: 1em; }
  #page-blog-masonry .carousel-indicators {
    display: none; }
  #page-blog-masonry .cs_pagination .btn {
    border-color: #4d4d4d;
    color: #4d4d4d !important; }
    #page-blog-masonry .cs_pagination .btn:hover, #page-blog-masonry .cs_pagination .btn:focus {
      background-color: #4d4d4d;
      color: #fff !important;
      border-color: #4d4d4d; }

.blog #content article + article {
  margin-top: 71px; }

#page-blog-right-sidebar .container, #page-blog-left-sidebar .container, #page-blog-full .container {
  padding-bottom: 100px; }
  #page-blog-right-sidebar article + article, #page-blog-left-sidebar article + article, #page-blog-full article + article {
    margin-top: 71px; }

.post-navigation {
  padding: 30px 100px 0 40px; }

.nav-links a {
  text-align: center;
  padding: 0;
  color: #4d4d4d;
  border: 1px solid #4d4d4d;
  margin-left: 5px;
  min-width: 40px;
  max-width: 40px;
  font-size: 0;
  line-height: 0;
  font-weight: 400;
  text-transform: uppercase;
  display: inline-block; }
  .nav-links a i {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    margin-right: 0.2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 38px;
    font-size: 14px;
    margin-left: 0.2em;
    text-shadow: none !important; }
  .nav-links a:hover {
    text-decoration: none;
    background-color: #de3c2f;
    border-color: #de3c2f;
    color: #fff; }
  .nav-links a:last-child {
    float: right; }

.blog-single .comments-main, .events .comments-main {
  margin-left: 100px;
  padding-left: 40px;
  margin-top: 116px; }

.blog-single {
  padding-bottom: 100px; }
  .blog-single h2.entry-title {
    margin-top: 0;
    margin-bottom: 22px;
    font-size: 50px;
    line-height: 50px; }
  .blog-single .post-share-buttons {
    left: -42px; }
  .blog-single .entry-thumbnail {
    margin-bottom: 32px; }
  .blog-single .entry-content {
    margin-bottom: 40px; }
  .blog-single .comments-area > #respond {
    margin-left: 40px;
    margin-right: 100px; }

#page-search-results article h2.entry-title {
  margin-top: 0; }
  #page-search-results article + article {
    padding-bottom: 0; }
  #page-search-results .events .with-share-buttons {
    margin-left: 0;
    padding-left: 0; }
  #page-search-results .events .post-content {
    text-align: center; }

.entry-thumbnail {
  position: relative; }

.author-meta h2 {
  margin: 0 0 2px; }
  .author-meta .author-place {
    margin: -3px 0 7px;
    text-transform: uppercase;
    font-size: 14px; }
  .author-meta a[class^="socialico-"] {
    opacity: 0.4; }
  .author-meta a[class^="socialico-"]:hover {
    opacity: 1; }

.carousel-control {
  border: 1px solid #fff;
  color: #fff !important;
  border-radius: 0px;
  width: 50px;
  height: 50px;
  left: -50px;
  top: 50%;
  margin-top: -25px;
  text-shadow: none;
  opacity: 0;
  background-image: none !important;
  filter: alpha(opacity=100); }
  .carousel-control span {
    width: 50px !important;
    height: 50px !important;
    margin: 0 !important;
    font-size: 16px !important;
    left: 0 !important;
    top: 0 !important;
    line-height: 50px !important;
    z-index: 0 !important; }
  .carousel-control .icon-prev:before {
    content: '\e801'; }
  .carousel-control .icon-next:before {
    content: '\e80a'; }
  .carousel-control.right {
    right: -50px; }

.carousel-indicators {
  z-index: 1 !important; }
  .carousel-indicators li {
    width: 14px;
    height: 14px;
    border-width: 1px;
    margin: 0;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-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.active {
    border-color: #de3c2f;
    width: 14px;
    height: 14px;
    background-color: transparent; }

.carousel:hover .carousel-control {
  left: 50px;
  opacity: 1; }
  .carousel:hover .carousel-control.right {
    left: auto;
    right: 50px; }

nav.paging-navigation {
  text-align: center;
  margin-top: 60px; }

.pagination .page-numbers {
  text-align: center;
  padding: 0;
  color: #4d4d4d;
  border: 1px solid #4d4d4d;
  margin-left: 5px;
  min-width: 40px;
  max-width: 40px;
  font-size: 14px;
  line-height: 38px;
  font-weight: 400;
  text-transform: uppercase;
  display: inline-block; }
  .pagination .page-numbers.current {
    background-color: #4d4d4d;
    border-color: #4d4d4d;
    color: #fff; }
  .pagination a:hover {
    text-decoration: none;
    background-color: #de3c2f;
    border-color: #de3c2f;
    color: #fff; }
  .pagination a.prev, .pagination a.next {
    font-size: 0;
    line-height: 0; }
  .pagination a.prev:before, .pagination a.next:before {
    content: '\e82b';
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: 0.2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 38px;
    font-size: 14px;
    margin-left: 0.2em;
    text-shadow: none !important; }
  .pagination a.next:before {
    content: '\e82c'; }

.cms-grid-filter {
  margin: 13px 0 33px 0;
  text-align: center; }
  .cms-grid-filter ul {
    display: inline-block;
    margin: 0;
    text-align: center;
    padding: 0;
    list-style: none; }
  .cms-grid-filter ul li {
    display: inline-block; }
  .cms-grid-filter ul li a {
    margin: 0 20px 0;
    display: block;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    width: auto !important;
    color: #4d4d4d; }
    .cms-grid-filter ul li a:hover, .cms-grid-filter ul li a.active, .cms-grid-filter ul li a:focus {
      color: #de3c2f;
      text-decoration: none; }

.testimonials img.attachment-full {
  width: 100%; }

.comments-area .comment-list {
  margin: 0;
  padding: 0;
  position: relative; }
  .comments-area .comment-list ul.children {
    padding: 0; }
  .comments-area .comment-list ul.children li.depth-2 .comment-body {
    padding-left: 100px; }
    .comments-area .comment-list ul.children li.depth-3 .comment-body {
      padding-left: 200px; }
    .comments-area .comment-list ul.children li.depth-4 .comment-body {
      padding-left: 400px; }
    .comments-area .comment-list ul.children li.depth-5 .comment-body {
      padding-left: 500px; }
  .comments-area li {
    padding-top: 30px; }
  .comments-area h2 {
    margin-bottom: 10px;
    margin-top: 20px;
    font-size: 40px;
    line-height: 40px;
    font-weight: 900; }
  .comments-area .comment-author-image {
    display: table-cell;
    vertical-align: top;
    padding-right: 20px; }
  .comments-area .comment-author-image img {
    max-width: 80px; }
  .comments-area .comment-main {
    padding: 0 0 8px 0;
    margin-bottom: 7px;
    display: table-cell;
    vertical-align: top; }
  .comments-area .comment-body:after {
    content: '';
    position: absolute;
    height: 1px;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.05); }
  .comments-area #respond {
    margin-top: 80px;
    padding: 0; }
  .comments-area #respond h3#reply-title {
    font-size: 40px;
    margin: 0 0 46px;
    line-height: 40px; }
  .comments-area #respond form {
    margin: 0; }
  .comments-area #respond form p {
    margin-bottom: 10px;
    margin-top: 0;
    position: relative; }
  .comments-area #respond form [class*="icon-"] {
    position: absolute;
    font-size: 16px;
    color: #4d4d4d;
    left: 20px;
    top: 20px; }
  .comments-area #respond form input[type="text"], .comments-area #respond form textarea {
    height: 40px;
    border: 1px solid #f2f2f2;
    background-color: #fff;
    border-radius: 0;
    color: #000;
    padding: 6px 40px 6px 50px;
    font-size: 16px;
    font-style: italic; }
  .comments-area #respond form textarea {
    height: auto;
    max-width: 100%; }
  .comments-area input[type="submit"] {
    padding-left: 67px;
    padding-right: 67px;
    margin-top: 20px; }

.comment-meta {
  line-height: 1;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em; }
  .comment-meta a {
    color: #de3c2f; }
  .comment-meta a:hover {
    text-decoration: none; }
  .comment-meta .comment-date {
    display: block;
    margin-top: 4px; }

.reply {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin: -10px 0 10px; }
  .reply a {
    color: #de3c2f; }
  .reply a:hover {
    text-decoration: none;
    color: #b2b2b2; }

.comment-list, .comment-list .children {
  list-style-type: none; }

footer {
  text-align: center;
  color: #e2e2e2;
  font-size: 16px; }
  footer.entry-meta {
    display: none; }

a.bottom_logo {
  padding: 35px 0 20px 0;
  display: inline-block;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #fff !important;
  word-break: break-word; }
  a.bottom_logo strong {
    letter-spacing: 0.1em;
    font-weight: 800; }
  a.bottom_logo:hover {
    color: #fff !important; }

form.wpcf7-form .wpcf7-form-control-wrap input {
  width: 350px;
  max-width: 100%;
  margin: 5px auto 6px;
  display: inline-block;
  color: #b2b2b2;
  height: 40px;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 0;
  padding: 0 40px 0 30px;
  font-size: 16px;
  font-style: italic; }
  form.wpcf7-form input[type='submit'] {
    margin-top: 15px; }

#cshero-footer-top {
  margin: ;
  padding: 75px 0 50px 0;
  color: #fff; }

#cshero-footer-bottom {
  margin: ;
  padding: 40px 0 25px 0;
  color: #fff; }
  #cshero-footer-bottom a {
    color: #de3c2f; }
  #cshero-footer-bottom a:hover {
    color: #fff; }

#cshero-header-top {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  color: #4d4d4d;
  position: relative;
  background-color: #fff;
  margin: ;
  padding: 0 45px; }
  #cshero-header-top [class^="rt-icon-"] {
    position: relative;
    padding-right: 0.45em;
    font-size: 1.1em;
    line-height: 0;
    top: 0.1em;
    color: #de3c2f; }
  #cshero-header-top:after {
    content: '';
    display: block;
    position: absolute;
    height: 1px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f2f2f2; }

.info {
  margin: 5px 0;
  min-height: 1px; }
  .info span {
    padding-right: 33px; }
  .info p:last-child {
    margin: 0 !important; }

.widget_search {
  max-width: 300px;
  margin: 0 auto; }

form.searchform {
  position: relative;
  margin: 0;
  /* ==========================================================================
   All Style Header
========================================================================== */ }
  form.searchform:before {
    font-size: 16px;
    content: "\e68d";
    font-family: 'rt-icons';
    color: #fff;
    z-index: 1;
    right: 0;
    cursor: pointer;
    line-height: 40px;
    top: 0;
    background: #de3c2f;
    text-align: center;
    width: 40px;
    height: 40px; }
  form.searchform:hover:before {
    color: #4d4d4d; }
  form.searchform input[type="text"] {
    height: 40px;
    border: 1px solid #f2f2f2 !important;
    background-color: #fff;
    border-radius: 0;
    color: #000;
    padding: 6px 50px 6px 30px;
    font-size: 16px;
    font-style: italic;
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }
  form.searchform input[type="submit"] {
    margin: 0;
    padding: 0;
    background: transparent !important;
    width: 40px;
    height: 40px;
    opacity: 1;
    z-index: 999;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    /* BACKGROUND GRADIENT */ }
  form.searchform input[type="submit"]:hover {
    color: #4d4d4d; }

#cshero-header {
  width: 100%;
  position: relative;
  margin: ;
  padding: 0 45px; }
  #cshero-header.header-fixed, #cshero-header.header-fixed-page {
    z-index: 9;
    position: fixed;
    top: 0;
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    background-color: ; }
  #cshero-header.header-fixed #cshero-header-logo a, #cshero-header.header-fixed-page #cshero-header-logo a {
    line-height: 60px; }
    #cshero-header.header-fixed #cshero-header-logo a img, #cshero-header.header-fixed-page #cshero-header-logo a img {
      max-height: 40px; }
  #cshero-header > .container {
    position: relative;
    z-index: 1; }

#cshero-header-navigation {
  /*** Admin Bar ***/ }
  #cshero-header-navigation.header-fixed {
    z-index: 9;
    position: fixed;
    top: 0;
    width: 100%; }
  #cshero-header-navigation.header-fixed .main-navigation .menu-main-menu > li > a, #cshero-header-navigation.header-fixed .main-navigation .menu-main-menu > ul > li > a {
    line-height: 60px;
    color: #fff; }
    #cshero-header-navigation.header-fixed .main-navigation .menu-main-menu > li > a:hover, #cshero-header-navigation.header-fixed .main-navigation .menu-main-menu > ul > li > a:hover {
      color: #dd3d2e; }
    #cshero-header-navigation.header-fixed .main-navigation .menu-main-menu > li.current-menu-item > a, #cshero-header-navigation.header-fixed .main-navigation .menu-main-menu > ul > li.current-menu-item > a, #cshero-header-navigation.header-fixed .main-navigation .menu-main-menu > li.current-menu-ancestor > a, #cshero-header-navigation.header-fixed .main-navigation .menu-main-menu > ul > li.current-menu-ancestor > a, #cshero-header-navigation.header-fixed .main-navigation .menu-main-menu > li.current_page_item > a, #cshero-header-navigation.header-fixed .main-navigation .menu-main-menu > ul > li.current_page_item > a, #cshero-header-navigation.header-fixed .main-navigation .menu-main-menu > li.current_page_ancestor > a, #cshero-header-navigation.header-fixed .main-navigation .menu-main-menu > ul > li.current_page_ancestor > a {
      color: #ccc; }

.admin-bar {
  /*** End Admin Bar ***/
  /*** Logo ***/ }
  .admin-bar #cshero-header.header-fixed, .admin-bar #cshero-header.header-fixed-page {
    top: 32px; }

#cshero-header-logo {
  text-align: center;
  padding: 20px 0; }
  #cshero-header-logo a {
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    text-align: center;
    line-height: ; }
  #cshero-header-logo a img {
    max-height: 125px; }

#cshero-header-social {
  position: absolute;
  top: 40px;
  right: 45px; }

ul.cms-social {
  text-align: right;
  /*** End Logo ***/
  /* ==========================================================================
  End All Style Header
========================================================================== */ }
  ul.cms-social li {
    display: inline-block; }
  ul.cms-social li a[class^="socialico-"] {
    padding-right: 33px; }
  ul.cms-social li a[class^="socialico-"]:hover {
    opacity: 1; }
  ul.cms-social li a.socialico-facebook:hover:before {
    color: #507cbe !important; }
  ul.cms-social li a.socialico-twitter:hover:before {
    color: #00abef !important; }
  ul.cms-social li a.socialico-google:hover:before {
    color: #cb4437 !important; }
  ul.cms-social li a.socialico-linkedin:hover:before {
    color: #00649b !important; }
  ul.cms-social li a.socialico-dribble:hover:before {
    color: #f76799 !important; }

body {
  background-color: #fff;
  overflow: visible;
  overflow-x: hidden; }
  body #page {
    margin: ;
    padding: ; }
  body #main {
    margin: ;
    padding: ; }
  body .wpb_animate_when_almost_visible {
    opacity: 1; }

.entry-content > .wpb_row .row .row > [class*="col-"] {
  margin-top: 15px;
  margin-bottom: 15px; }

.entry-content > .wpb_row .wpb_row {
  margin-left: -15px;
  margin-right: -15px; }

.entry-content > .wpb_row .row .row {
  margin: 0; }

.entry-content > .vc_row-fluid {
  position: relative; }

.entry-content .wpb_row {
  margin-bottom: 0 !important; }

.container .container {
  width: 100%;
  padding: 0; }

.section_header {
  margin: 0 0 10px;
  font-size: 60px;
  line-height: 60px;
  position: relative;
  word-wrap: break-word;
  text-transform: uppercase; }

.highlight {
  color: #de3c2f; }

.grey {
  color: #4d4d4d; }

.text-uppercase {
  text-transform: uppercase; }

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

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

.align-left {
  text-align: left; }

.align-right {
  text-align: right; }

.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; }

img {
  height: auto;
  max-width: 100%; }

strong {
  font-weight: 800; }

.text-bold strong {
  color: #4d4d4d; }

#main > #page-default {
  position: relative;
  z-index: 1; }

.margin_0 {
  margin: 0;
  /*
================> Unit Test
*/ }

table {
  border-bottom: 1px solid #ededed;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 2;
  margin: 0 0 20px;
  width: 100%; }

th, th a {
  text-transform: uppercase; }

caption, th, td {
  font-weight: normal;
  text-align: left; }

td {
  border-top: 1px solid #ededed;
  padding: 6px 10px 6px 0;
  /*--- Definition Lists ---*/ }

dl {
  margin: 0 0 0 50px; }

dl dt {
  font-weight: normal;
  line-height: 26px;
  text-transform: uppercase;
  font-family: "Open Sans"; }

dl dd {
  line-height: 26px; }

code, kbd {
  background-color: transparent;
  border-radius: 4px;
  color: inherit;
  font-size: 100%;
  padding: 2px 4px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none; }

ins {
  border: none;
  padding: 2px;
  text-decoration: none;
  background: #fff9c0; }

pre {
  border: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  color: inherit;
  display: block;
  font-size: inherit;
  line-height: 26px;
  margin: 0 0 20px;
  padding: 20px 35px;
  overflow: hidden;
  background: #f5f5f5;
  /* Type ul*/ }

ul {
  list-style-type: square; }

li > ul, li > ol {
  margin: 0; }

menu, ol, ul {
  margin: 16px 0;
  padding: 0 0 0 40px; }

ul.list1 {
  list-style: none;
  color: #4d4d4d;
  padding: 0;
  margin: 30px 0; }
  ul.list1 li {
    position: relative;
    padding: 9px 0 10px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05); }
  ul.list1 li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.05); }
  ul.list1 li:before {
    content: '';
    display: block;
    position: absolute;
    border: 1px solid #de3c2f;
    left: 10px;
    top: 22px;
    width: 10px;
    height: 10px;
    border-radius: 50%; }
  ul.list2 {
    list-style: none;
    padding-left: 20px !important; }
  ul.list2 li {
    position: relative;
    padding: 8px 0 8px;
    color: #b2b2b2; }
  ul.list2 li:before {
    font-family: 'fontello';
    content: '\e82c';
    font-size: 28px;
    color: #de3c2f;
    display: block;
    position: absolute;
    left: -18px;
    top: 0; }

ol.list3 {
  counter-reset: li;
  list-style: none outside none;
  padding: 0; }
  ol.list3 li {
    position: relative;
    padding: 8px 0 8px 38px; }
  ol.list3 li:after {
    content: counter(li,decimal-leading-zero);
    counter-increment: li;
    position: absolute;
    left: 2px;
    top: 50%;
    margin-top: -16px;
    font-weight: 700;
    color: inherit;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    background-color: #de3c2f;
    border-radius: 100%; }

.pagination {
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
  text-align: center; }
  .pagination > li {
    display: inline; }
  .pagination > li > a, .pagination > li > span, .pagination > li i {
    text-align: center;
    padding: 9px 0;
    color: #4d4d4d;
    border: 1px solid #4d4d4d;
    margin-left: 10px;
    min-width: 40px;
    max-width: 40px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    background-color: #fff;
    position: relative;
    display: inline-block; }
  .pagination > li:first-child i, .pagination > li:last-child i {
    padding: 8px 0; }
  .pagination > li:first-child:hover i, .pagination > li:last-child:hover i {
    background-color: #de3c2f;
    border-color: #de3c2f;
    color: #fff; }
  .pagination > li:first-child i {
    margin-left: 0; }
  .pagination > li:last-child i {
    margin-right: 0; }
  .pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    background-color: #4d4d4d;
    border-color: #4d4d4d;
    color: #fff; }

.lists {
  /* =Breadcrumb
-------------------------------------------------------------- */ }
  .lists h3 {
    margin: 20px 0 10px 0; }

.page-title {
  margin: 0 0 100px;
  padding: 30px 0 30px 0; }

#breadcrumb-text {
  /* =Widgets
-------------------------------------------------------------- */ }
  #breadcrumb-text ul.breadcrumbs {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 5px 0;
    color: #fff;
    position: relative;
    z-index: 4; }
  #breadcrumb-text ul.breadcrumbs li {
    margin: 0 !important; }
  #breadcrumb-text ul.breadcrumbs li a {
    color: #fff; }
  #breadcrumb-text ul.breadcrumbs li + li {
    opacity: 0.9; }
    #breadcrumb-text ul.breadcrumbs li + li:before {
      color: #ccc;
      content: "/\00a0";
      padding: 0 22px; }

.widget-area .widget ul ul {
  margin-left: 0; }

.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 {
  /*================== To Top ================*/ }
  #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; }

.back_to_top {
  bottom: 5px;
  right: 5px;
  display: none;
  width: 60px;
  height: 40px;
  overflow: hidden;
  position: fixed;
  text-decoration: none;
  z-index: 9999;
  font-size: 0;
  color: transparent;
  background-color: #de3c2f; }
  .back_to_top:after {
    color: #fff;
    content: '\e80f';
    font-size: 16px;
    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.3s ease-in-out 0s;
    -moz-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; }

.back_to_top.on {
  opacity: 1;
  filter: alpha(opacity=100);
  display: block; }

#back_to_top:hover {
  background-color: #319ed6;
  bottom: 8px;
  -webkit-transition: all 0.15s linear 0s;
  -moz-transition: all 0.15s linear 0s;
  -ms-transition: all 0.15s linear 0s;
  transition: all 0.15s linear 0s;
  cursor: pointer; }

body .wpb_content_element, body .wpb_button {
  margin: 0; }

.bg_teaser .wpb_column {
  padding: 0; }
  .bg_teaser .cms-fancyboxes-wraper {
    position: relative;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: 50% 0; }
  .bg_teaser .cms-fancyboxes-wraper:before, .bg_teaser .cms-fancyboxes-wraper:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .bg_teaser .cms-fancyboxes-wraper .fancy-box-title h3 a {
    color: #fff; }
    .bg_teaser .cms-fancyboxes-wraper .fancy-box-title h3 a:hover {
      color: #fff; }
  .bg_teaser .cms-fancyboxes-wraper .fancy-box-content p {
    color: #e2e2e2;
    opacity: 0.8;
    font-size: 24px;
    line-height: 1.6em; }
  .bg_teaser .cms-fancyboxes-body {
    padding: 35px 30px;
    z-index: 2;
    position: relative; }
  .bg_teaser .cms-fancyboxes-body.row {
    margin: 0; }
  .bg_teaser .btn-default {
    background-color: transparent;
    border-color: #fff;
    color: #fff !important; }
  .bg_teaser .btn-default:hover {
    background-color: #fff;
    color: #4d4d4d !important; }

.dark_bg_1 {
  background: url(../images/teaser01.jpg); }
  .dark_bg_1:after {
    background-color: rgba(50, 77, 91, 0.9); }

.dark_bg_2 {
  background: url(../images/teaser02.jpg); }
  .dark_bg_2:after {
    background-color: rgba(71, 65, 70, 0.9); }

.dark_bg_3 {
  background: url(../images/teaser03.jpg); }
  .dark_bg_3:after {
    background-color: rgba(93, 53, 49, 0.9); }

.donate {
  position: relative; }
  .donate:after, .donate:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.8;
    display: block; }
  .donate:after {
    opacity: 0.92;
    background-color: #fff; }
  .donate .vc_pie_chart .vc_pie_wrapper {
    background: transparent; }
  .donate span.vc_pie_chart_value {
    color: #de3c2f;
    z-index: 999; }
  .donate .vc_pie_chart h4.wpb_pie_chart_heading {
    z-index: 999; }
  .donate .btn {
    z-index: 99;
    margin: 15px auto;
    display: block; }

.donate-top {
  z-index: 999; }

h2.text-uppercase {
  text-align: right;
  font-size: 30px;
  line-height: 30px;
  margin-top: 20px;
  margin-bottom: 10px;
  z-index: 9999;
  color: #4d4d4d;
  position: relative;
  /* Slideshow*/ }

.wpb_revslider_element .tp-dottedoverlay {
  background: #323232 !important;
  opacity: 0.5; }
  .wpb_revslider_element .tp-dottedoverlay:after, .wpb_revslider_element .tp-dottedoverlay:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3; }
  .wpb_revslider_element .tp-dottedoverlay:after {
    background: #20bbe9;
    background: -moz-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #319ed6), color-stop(100%, #de3c2f));
    background: -webkit-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
    background: -o-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
    background: -ms-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
    background: linear-gradient(to right, #319ed6 0%, #de3c2f 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$mainColor2', endColorstr='$mainColor',GradientType=1); }
  .wpb_revslider_element .btn-default {
    border: 1px solid #fff !important;
    color: #fff !important; }
  .wpb_revslider_element .btn-default:hover {
    background-color: #fff;
    color: #4d4d4d !important;
    border-color: #fff; }
  .wpb_revslider_element .tp-bullets.simplebullets.round .bullet {
    padding: 10px;
    background: none;
    width: 50px;
    height: 5px;
    margin: 0 5px;
    display: inline-block; }
  .wpb_revslider_element .tp-bullets.simplebullets.round .bullet:before {
    width: 50px;
    height: 1px;
    background: #fff;
    cursor: pointer;
    content: "";
    display: block; }
  .wpb_revslider_element .tp-bullets.simplebullets.round .bullet.selected:before {
    opacity: 0.3; }
  .wpb_revslider_element .tp-bullets.simplebullets.round .bullet:hover:before {
    background: #de3c2f; }

.bg_banner {
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: 50% 0;
  position: relative;
  /*Contact*/ }
  .bg_banner:before {
    opacity: 0.3;
    background: #20bbe9;
    background: -moz-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #319ed6), color-stop(100%, #de3c2f));
    background: -webkit-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
    background: -o-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
    background: -ms-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
    background: linear-gradient(to right, #319ed6 0%, #de3c2f 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$mainColor2', endColorstr='$mainColor',GradientType=1); }
  .bg_banner:after {
    background-color: #323232;
    opacity: 0.5; }
  .bg_banner:after, .bg_banner:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .bg_banner .teaser_content {
    padding: 200px 30px 50px;
    position: relative;
    z-index: 2;
    text-align: center; }
  .bg_banner .teaser_content h3 {
    font-size: 40px;
    line-height: 40px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #fff; }
  .bg_banner .teaser_content .btn {
    margin: 22px 0 10px 0; }

.contact {
  background-position: 50% 14px; }
  .contact > .no-container {
    position: relative; }
  .contact > .no-container:after {
    background-color: #fff;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=92)";
    filter: alpha(opacity=92);
    opacity: 0.92; }
  .contact > .no-container:before, .contact > .no-container:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.8; }
  .contact > .no-container .wpb_wrapper {
    position: relative;
    z-index: 4; }
  .contact .cms-fancyboxes-wraper .fancy-box-icon {
    font-size: 48px;
    line-height: 48px;
    color: #de3c2f; }
  .contact .cms-fancyboxes-wraper p {
    margin-top: 27px;
    margin-bottom: 15px; }
  .contact .cms-fancyboxes-wraper .fancy-box-content {
    font-size: 20px;
    line-height: 30px; }

.contact-form .contact-form-left div, .contact-form .contact-form-right div {
  margin-bottom: 10px;
  position: relative;
  margin-top: 0; }
  .contact-form i {
    font-size: 16px;
    color: #4d4d4d;
    left: 20px;
    top: 0;
    line-height: 40px;
    padding-right: 0.45em;
    z-index: 1;
    position: absolute; }
  .contact-form br {
    display: none; }
  .contact-form form.wpcf7-form {
    background: #fff;
    width: 100%;
    float: left;
    padding: 50px 50px 40px;
    margin: 15px 0 -150px 0; }
  .contact-form form.wpcf7-form input[type="text"], .contact-form form.wpcf7-form input[type="email"], .contact-form form.wpcf7-form textarea {
    border: 1px solid #f2f2f2;
    color: #000;
    padding: 6px 40px 6px 50px;
    width: 100%;
    margin: 0;
    max-width: 100%; }
  .contact-form form.wpcf7-form input[type="text"]:focus, .contact-form form.wpcf7-form input[type="email"]:focus, .contact-form form.wpcf7-form textarea:focus {
    border-color: #b2b2b2; }
  .contact-form form.wpcf7-form textarea {
    max-height: 140px; }
  .contact-form form.wpcf7-form input[type="submit"] {
    margin: 30px auto 4px;
    text-align: center;
    display: block;
    padding-left: 58px;
    padding-right: 58px; }
  .contact-form form.wpcf7-form img.ajax-loader {
    display: none; }

.our-blog .btn {
  display: block;
  margin: 0 auto;
  border-color: #fff;
  color: #fff !important; }
  .our-blog .btn:hover, .our-blog .btn:focus {
    background-color: #fff;
    color: #4d4d4d !important;
    border-color: #fff; }
  .our-blog .vc_col-sm-6 {
    padding: 0; }
  .our-blog.light .btn {
    border-color: #4d4d4d;
    color: #4d4d4d !important; }
  .our-blog.light .btn:hover, .our-blog.light .btn:focus {
    background-color: #4d4d4d;
    color: #fff !important;
    border-color: #4d4d4d; }

.parallax > .no-container {
  background-attachment: fixed !important;
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
  -webkit-transition: all 0.15s ease !important;
  -moz-transition: all 0.15s ease !important;
  -o-transition: all 0.15s ease !important;
  -ms-transition: all 0.15s ease !important;
  transition: all 0.15s ease !important;
  background-position: 50% 0;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px; }
  .parallax > .no-container:before {
    background-color: #444;
    opacity: 0.85; }
  .parallax > .no-container:after {
    background: #20bbe9;
    background: -moz-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #319ed6), color-stop(100%, #de3c2f));
    background: -webkit-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
    background: -o-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
    background: -ms-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
    background: linear-gradient(to right, #319ed6 0%, #de3c2f 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$mainColor2', endColorstr='$mainColor',GradientType=1);
    opacity: 0.2; }
  .parallax > .no-container:before, .parallax > .no-container:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .parallax > .no-container .wpb_wrapper {
    position: relative;
    z-index: 4; }
  .parallax.light > .no-container:before {
    background-color: #fff;
    opacity: 0.93; }

.blog-item {
  position: relative;
  overflow: hidden; }
  .blog-item .blog-item-info {
    position: absolute;
    text-align: center;
    opacity: 0;
    bottom: 0;
    width: 100%;
    right: 100%;
    padding: 0 10px 10px;
    -webkit-transition: all 0.5s ease 0.1s;
    -moz-transition: all 0.5s ease 0.1s;
    -ms-transition: all 0.5s ease 0.1s;
    transition: all 0.5s ease 0.1s; }
  .blog-item .blog-item-info h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px; }
  .blog-item .blog-item-info h3 a {
    color: #fff; }
    .blog-item .blog-item-info h3 a:hover {
      color: #de3c2f;
      text-decoration: none; }
  .blog-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-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; }
  .blog-item:hover:before {
    display: block;
    opacity: 0.3;
    background: #20bbe9;
    background: -moz-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #319ed6), color-stop(100%, #de3c2f));
    background: -webkit-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
    background: -o-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
    background: -ms-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
    background: linear-gradient(to right, #319ed6 0%, #de3c2f 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$mainColor2', endColorstr='$mainColor',GradientType=1); }
  .blog-item:hover .blog-item-info {
    opacity: 1;
    right: 0; }

.teaser_icon + p {
  margin: 27px 0 15px 0; }
  .teaser_icon + p:last-child {
    margin: 27px 0 15px 0; }

.light_section a {
  color: #de3c2f; }
  .light_section a:hover {
    color: #b2b2b2; }

a[class^="socialico-"]:hover {
  opacity: 1; }
  a[class^="socialico-"]:hover:before {
    color: #de3c2f !important; }

a.socialico-facebook:hover:before, a.color-icon.socialico-facebook:before {
  color: #507cbe !important; }

a.socialico-twitter:hover:before, a.color-icon.socialico-twitter:before {
  color: #00abef !important; }

a.socialico-google:hover:before, a.color-icon.socialico-google:before {
  color: #cb4437 !important; }

a.color-icon:hover:before {
  opacity: 0.6; }

.events {
  padding-bottom: 100px; }
  .events .with-share-buttons {
    margin-left: 100px; }
  .events .post-share-buttons {
    left: -42px; }
  .events .entry-header {
    margin: 0; }
  .events .post-content {
    text-align: left; }

.with-share-buttons {
  padding: 0 0 0 40px;
  position: relative; }

.post-share-buttons {
  position: absolute;
  top: 0;
  left: -2px;
  border: 1px solid #f2f2f2;
  z-index: 3; }
  .post-share-buttons a + a {
    border-top: 1px solid #f2f2f2; }

.post-share-buttons a, .post-share-buttons a:before {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  line-height: 40px;
  opacity: 1; }

.cs_pagination, .cms_pagination {
  padding: 40px 0;
  text-align: center; }
  .cs_pagination .btn, .cms_pagination .btn {
    border-color: #fff;
    color: #fff !important;
    position: relative;
    z-index: 4; }
  .cs_pagination .btn:hover, .cms_pagination .btn:hover {
    border-color: #4d4d4d;
    color: #fff !important; }
  .cs_pagination p, .cms_pagination p {
    margin: 0 !important; }

.cols-1 {
  width: 100%; }

.cols-2 {
  width: 50%; }

.cols-3 {
  width: 33.333%; }

.cols-4 {
  width: 25%; }

.cols-5 {
  width: 20%; }

form div.wpcf7-mail-sent-ok, form div.wpcf7-validation-errors {
  color: #de3c2f;
  display: block;
  font-weight: 800;
  text-align: center;
  border: none;
  margin: 0; }
  form div.wpcf7-mail-sent-ok:before, form div.wpcf7-validation-errors:before {
    font-family: 'rt-icons';
    content: "\e600";
    padding-right: 10px; }

#page-search-results {
  padding-bottom: 100px; }
  #page-search-results article + article {
    margin-top: 71px; }

form select {
  width: 100%; }

.rt-icon .wpb_content_element .wpb_wrapper [class*="col-"] {
  margin: 15px 0; }

.contact-page .page-title {
  margin: 0; }

img {
  max-width: 100%; }

.alignleft {
  float: left; }

.alignright {
  float: right; }

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption {
  /* Keep wide captions from overflowing their container. */
  max-width: 100%;
  padding: 4px; }

.wp-caption .wp-caption-text, .gallery-caption, .entry-caption {
  font-style: italic;
  font-size: 12px;
  line-height: 2;
  color: #757575; }

img.wp-smiley, .rsswidget img {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0; }

.entry-content dl.gallery-item {
  margin: 0; }

.gallery-item a, .gallery-caption {
  width: 90%; }

.gallery-item a {
  display: block; }

.gallery-caption a {
  display: inline; }

.gallery-columns-1 .gallery-item a {
  max-width: 100%;
  width: auto; }

.gallery .gallery-icon img {
  height: auto;
  max-width: 90%;
  padding: 5%; }

.gallery-columns-1 .gallery-icon img {
  padding: 3%;
  /* Video background */ }

.row-bg-video {
  position: relative;
  overflow: hidden; }
  .row-bg-video .cms-bg-video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%; }
  .row-bg-video .wp-video-shortcode {
    width: 100% !important;
    height: auto !important; }

.vc_pie_chart {
  /*Accordion*/ }
  .vc_pie_chart.wpb_content_element {
    opacity: 1; }
  .vc_pie_chart .vc_pie_wrapper {
    background: #fff;
    position: relative; }
  .vc_pie_chart .vc_pie_wrapper, .vc_pie_chart .vc_pie_chart_back, .vc_pie_chart canvas, .vc_pie_chart .vc_pie_wrapper .vc_pie_chart_value {
    width: 270px !important;
    height: 270px !important;
    line-height: 225px !important; }
  .vc_pie_chart .vc_pie_chart_back {
    border-color: #fff;
    opacity: 1; }
  .vc_pie_chart canvas {
    position: absolute !important;
    top: 0;
    left: 0; }
  .vc_pie_chart .vc_pie_chart_value {
    font-size: 80px !important;
    font-weight: 800; }
  .vc_pie_chart .vc_pie_chart_value:after {
    font-weight: 300;
    content: '%'; }
  .vc_pie_chart h4.wpb_pie_chart_heading {
    left: 50%;
    position: absolute;
    top: 60%;
    font-size: 18px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }

.wpb_wrapper {
  /*Tabs*/ }
  .wpb_wrapper .wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header {
    line-height: 1;
    letter-spacing: 0.2em;
    display: block;
    padding: 0;
    color: #4d4d4d;
    word-wrap: break-word;
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    background-color: transparent; }
    .wpb_wrapper .wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header a {
      padding: 12px 50px 10px 30px;
      color: #4d4d4d;
      border: 1px solid #4d4d4d; }
    .wpb_wrapper .wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header a:after {
      color: #fff;
      font-family: 'fontello';
      content: '\e80a';
      position: absolute;
      font-size: 16px;
      line-height: 40px;
      text-align: center;
      right: 0;
      top: 0;
      bottom: 0;
      width: 40px;
      background-color: #de3c2f;
      letter-spacing: 0;
      -webkit-transition: all 0.3s ease-in-out 0s;
      -moz-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; }
    .wpb_wrapper .wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header a:hover {
      color: #de3c2f; }
    .wpb_wrapper .wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header a:hover:after {
      color: #4d4d4d; }
  .wpb_wrapper .wpb_accordion .wpb_accordion_wrapper .ui-state-active a:after {
    content: '\e800'; }
    .wpb_wrapper .wpb_accordion .wpb_accordion_wrapper .ui-state-active .ui-icon {
      background: none; }
  .wpb_wrapper .wpb_accordion .wpb_accordion_wrapper .wpb_accordion_section + .wpb_accordion_section {
    margin-top: 8px; }
  .wpb_wrapper .wpb_accordion .wpb_accordion_wrapper .wpb_accordion_content {
    padding: 23px 30px 30px;
    margin-top: -3px; }

.wpb_tabs {
  /*Tour*/ }
  .wpb_tabs.wpb_content_element .wpb_tabs_nav {
    border-bottom-color: transparent;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0 0 -1px 0 !important; }
  .wpb_tabs.wpb_content_element .wpb_tabs_nav li {
    margin: 0; }
    .wpb_tabs.wpb_content_element .wpb_tabs_nav li a {
      padding: 0 24px;
      margin-right: 2px;
      margin-top: 0px;
      border: 1px solid rgba(0, 0, 0, 0.05);
      color: #b2b2b2;
      line-height: 40px; }
    .wpb_tabs.wpb_content_element .wpb_tabs_nav li a i {
      top: 3px; }
    .wpb_tabs.wpb_content_element .wpb_tabs_nav li.ui-tabs-active {
      background-color: transparent; }
    .wpb_tabs.wpb_content_element .wpb_tabs_nav li.ui-tabs-active a {
      border-bottom-color: #fff;
      color: #4d4d4d; }
    .wpb_tabs.wpb_content_element .wpb_tabs_nav li:hover {
      background-color: transparent; }
  .wpb_tabs.wpb_content_element .ui-tabs-panel {
    padding: 30px 40px !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: transparent !important; }

.wpb_tour {
  /*Layout-team-1*/ }
  .wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav li {
    margin: 0 !important; }
    .wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav li a {
      border: 1px solid rgba(0, 0, 0, 0.05);
      padding: 0 15px;
      margin-bottom: 3px;
      font-size: 16px;
      text-transform: uppercase;
      line-height: 50px;
      color: #b2b2b2;
      position: relative; }
    .wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav li a i {
      top: 3px; }
    .wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav li:hover {
      background-color: transparent; }
    .wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav li.ui-tabs-active {
      background: none;
      position: relative;
      z-index: 2; }
    .wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav li.ui-tabs-active a {
      color: #4d4d4d; }
      .wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav li.ui-tabs-active a:before, .wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav li.ui-tabs-active a:after {
        display: block;
        content: '';
        width: 9px;
        border-left: 9px solid rgba(0, 0, 0, 0.05);
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
        height: 0;
        position: absolute;
        right: -9px;
        top: 50%;
        margin-top: -9px; }
      .wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav li.ui-tabs-active a:after {
        border-left-color: #fff;
        border-left-width: 7px; }
  .wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tab {
    padding-left: 5px; }
    .wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tab .wpb_content_element {
      padding: 30px 40px;
      border: 1px solid rgba(0, 0, 0, 0.05); }
    .wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tab .wpb_content_element p [class*="fa-"] {
      padding-right: 0.45em; }

.layout-team-1 .team-item-image {
  max-width: 270px;
  overflow: hidden;
  margin-top: 0;
  position: relative; }
  .layout-team-1 .team-item-image .has-thumbnail {
    max-width: 270px; }
  .layout-team-1 .cms-grid-item + .cms-grid-item {
    margin-top: 30px; }
  .layout-team-1 .cms-grid-item:nth-child(2n) .team-item-image {
    float: left; }
  .layout-team-1 .cms-grid-item:nth-child(2n) .team-item-description {
    text-align: right;
    padding-left: 0; }
  .layout-team-1 .cms-grid-item:nth-child(2n+1) .team-item-image {
    float: right; }
  .layout-team-1 .cms-grid-item:nth-child(2n+1) .team-item-description {
    text-align: left;
    padding-right: 0; }
  .layout-team-1 .cms-grid-item-team {
    border: 1px solid #f2f2f2;
    overflow: hidden; }

.layout-team-1, .layout-team-2 {
  /*Layout-team-2*/ }
  .layout-team-1 .team-item-description, .layout-team-2 .team-item-description {
    padding: 34px 18px 20px;
    text-align: center; }
  .layout-team-1 .cms-grid-title h3, .layout-team-2 .cms-grid-title h3 {
    font-size: 30px;
    margin: 0 0 14px;
    line-height: 1; }
  .layout-team-1 .cms-grid-title h3 strong, .layout-team-2 .cms-grid-title h3 strong {
    font-weight: inherit; }
  .layout-team-1 .cms-grid-categories, .layout-team-2 .cms-grid-categories {
    margin: -16px 0 10px; }
  .layout-team-1 .cms-grid-categories a, .layout-team-2 .cms-grid-categories a {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.1em;
    color: #de3c2f; }
  .layout-team-1 .cms-grid-categories a:hover, .layout-team-2 .cms-grid-categories a:hover {
    text-decoration: none; }
  .layout-team-1 .cms-grid-social, .layout-team-2 .cms-grid-social {
    margin: 2px 0 10px; }

.layout-team-2 {
  /*Layout-team-3*/ }
  .layout-team-2 .cms-grid-item-team {
    border: 1px solid #f2f2f2; }
  .layout-team-2 .team-item-description {
    min-height: 285px; }

.layout-team-3 {
  /*partner-carousel*/ }
  .layout-team-3 .cms-grid-item-team {
    margin-bottom: 20px;
    text-align: center; }
  .layout-team-3 .team-item-description {
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: inherit;
    background-color: #fff;
    padding: 9px 20px; }
  .layout-team-3 .cms-grid-title h3 {
    font-size: 20px;
    margin-bottom: 6px;
    margin-top: 20px;
    line-height: 1; }
  .layout-team-3 .cms-grid-title h3 a {
    color: #4d4d4d; }
    .layout-team-3 .cms-grid-title h3 a:hover {
      color: #de3c2f;
      text-decoration: none; }
  .layout-team-3 .cms-grid-caption {
    line-height: 1; }

.owl-carousel {
  /*alerts */ }
  .owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0; }
  .owl-carousel .owl-nav > div {
    color: transparent;
    font-size: 0;
    position: absolute;
    right: -35px; }
  .owl-carousel .owl-nav > div:first-child {
    left: -35px;
    right: auto; }
    .owl-carousel .owl-nav > div:first-child:after {
      content: '\e833'; }
  .owl-carousel .owl-nav > div:after {
    font-family: 'fontello';
    font-size: 50px;
    content: '\e834';
    color: rgba(0, 0, 0, 0.05); }
  .owl-carousel .owl-controls .owl-nav .owl-prev, .owl-carousel .owl-controls .owl-nav .owl-next {
    cursor: pointer; }
  .owl-carousel .owl-controls .owl-dot {
    cursor: pointer; }
  .owl-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
    -webkit-tap-highlight-color: transparent; }
  .owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1; }
  .owl-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #d6d6d6;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    -webkit-border-radius: 30px;
    -khtml-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    /* BACKGROUND GRADIENT */ }
  .owl-carousel .owl-dots .owl-dot.active span, .owl-carousel .owl-dots .owl-dot:hover span {
    background: #869791; }

.alerts {
  /*progress*/ }
  .alerts .vc_message_box {
    padding: 15px;
    margin-bottom: 20px; }
  .alerts .vc_color-success.vc_message_box-solid {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6; }
  .alerts .vc_color-alert-info.vc_message_box-solid {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1; }
  .alerts .vc_color-alert-warning.vc_message_box-solid {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc; }
  .alerts .vc_color-danger.vc_message_box-solid {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1; }

.vc_progress_bar {
  /*testimonials*/ }
  .vc_progress_bar.wpb_content_element .vc_label {
    margin-bottom: 15px;
    font-weight: 800;
    font-size: 20px;
    line-height: 30px; }
  .vc_progress_bar.wpb_content_element .vc_label span.vc_label_units {
    font-weight: 300; }
  .vc_progress_bar.wpb_content_element .vc_single_bar {
    overflow: visible;
    height: 10px;
    position: relative;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    /* BACKGROUND GRADIENT */
    -webkit-box-shadow: none;
    -webkit-box-shadow: none 2px 5px rgba(0, 0, 0, .4);
    -khtml-box-shadow: none 2px 5px rgba(0, 0, 0, .4);
    -moz-box-shadow: none 2px 5px rgba(0, 0, 0, .4);
    -ms-box-shadow: none 2px 5px rgba(0, 0, 0, .4);
    -o-box-shadow: none 2px 5px rgba(0, 0, 0, .4);
    box-shadow: none 2px 5px rgba(0, 0, 0, .4);
    /* BACKGROUND GRADIENT */
    /* BOX SIZING */
    border: none;
    margin-bottom: 20px;
    background: #f5f5f5; }
  .vc_progress_bar.wpb_content_element .vc_single_bar .vc_bar {
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    /* BACKGROUND GRADIENT */ }

.layout-testimonials .media {
  overflow: hidden; }
  .layout-testimonials .media-image {
    padding-right: 20px; }
  .layout-testimonials .media-image img {
    margin-bottom: 10px;
    margin-bottom: 10px; }
  .layout-testimonials .media-info {
    display: table-cell;
    vertical-align: middle; }
  .layout-testimonials .media-info .cms-carousel-title h4 {
    line-height: 1;
    margin: 0 0 6px; }
  .layout-testimonials .media-info .cms-carousel-categories a {
    color: #b2b2b2; }
  .layout-testimonials .cms-carousel-content {
    position: relative;
    padding: 10px 16px;
    background-color: #f5f5f5;
    margin-bottom: 18px; }
  .layout-testimonials .cms-carousel-content:after, .layout-testimonials .cms-carousel-content:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -18px;
    border-style: solid;
    border-width: 18px 0 0 18px;
    border-color: rgba(0, 0, 0, 0.05) transparent transparent transparent; }
  .layout-testimonials .cms-carousel-content:after {
    left: auto;
    right: 0;
    border-style: solid;
    border-width: 18px 18px 0 0; }
  .layout-testimonials.owl-carousel .owl-dots {
    margin-top: 0; }
  .layout-testimonials.owl-carousel .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid #de3c2f;
    margin: 2px; }
    .layout-testimonials.owl-carousel .owl-dots .owl-dot.active span {
      border: 2px solid #de3c2f;
      background-color: #de3c2f; }

.layout-testimonials1 {
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
  color: #4d4d4d;
  position: relative;
  padding: 30px 40px;
  display: none;
  /*pricing tables*/ }
  .layout-testimonials1:after, .layout-testimonials1:before {
    font-family: pt-sans-regular;
    font-size: 100px;
    font-style: normal;
    content: '\201c';
    color: #de3c2f;
    position: absolute;
    left: 46px;
    top: 15px; }
  .layout-testimonials1:before {
    left: 0; }
  .layout-testimonials1:after {
    left: auto;
    right: 0;
    content: '\201d'; }
  .layout-testimonials1 .info {
    font-size: 16px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: inherit;
    margin-top: 15px;
    margin-bottom: 10px;
    display: inline-block; }
  .layout-testimonials1 .info .cms-carousel-title {
    display: inline-block;
    color: #de3c2f; }
  .layout-testimonials1 .info .cms-carousel-title h4 {
    color: #de3c2f; }
  .layout-testimonials1 .info .cms-grid-job {
    display: inline-block; }

.layout-pricing {
  /*Causes*/ }
  .layout-pricing .price-table {
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center; }
  .layout-pricing .price-table .plan-name {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #f5f5f5;
    padding: 20px 0; }
  .layout-pricing .price-table .plan-name h3 {
    font-weight: 300;
    text-transform: uppercase;
    margin: 0;
    font-size: 24px;
    line-height: 1; }
  .layout-pricing .price-table .plan-price {
    margin: 35px 0 25px;
    position: relative; }
  .layout-pricing .price-table .plan-price span:first-child {
    font-size: 40px;
    position: absolute;
    background-color: #de3c2f;
    color: #fff;
    line-height: 70px;
    width: 70px;
    height: 70px;
    left: 50%;
    top: -10px;
    margin-left: -35px;
    opacity: 0.15;
    -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 */ }
    .layout-pricing .price-table .plan-price span + span {
      font-size: 50px;
      line-height: 50px;
      position: relative;
      letter-spacing: -1px;
      display: block;
      color: #de3c2f; }
    .layout-pricing .price-table .plan-price span + span + p {
      font-size: 20px;
      text-transform: uppercase; }
  .layout-pricing .price-table .plan-price p {
    display: inline;
    color: #4d4d4d;
    font-size: 40px;
    margin-left: -4px;
    letter-spacing: -1px; }
  .layout-pricing .price-table ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center; }
  .layout-pricing .price-table .features-list li {
    margin: 10px 30px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05); }
    .layout-pricing .price-table .features-list li:before {
      font-family: 'rt-icons';
      content: "\e600";
      padding-right: 8px;
      color: #de3c2f; }
    .layout-pricing .price-table .features-list li.disabled:before {
      color: #4d4d4d;
      content: "\e602"; }
  .layout-pricing .price-table .call-to-action {
    margin: 30px 20px 30px; }
  .layout-pricing .price-table .call-to-action .btn-default {
    background-color: transparent; }
    .layout-pricing .price-table .call-to-action .btn-default:hover {
      color: #4d4d4d;
      background-color: #4d4d4d; }
  .layout-pricing .price-table .call-to-action .btn-primary {
    background-color: #de3c2f; }
    .layout-pricing .price-table .call-to-action .btn-primary:hover {
      color: #4d4d4d;
      background-color: #4d4d4d; }
  .layout-pricing.style2 .price-table {
    background-color: #f5f5f5; }
  .layout-pricing.style2 .price-table .plan-name {
    background-color: #de3c2f; }
    .layout-pricing.style2 .price-table .plan-name h3 {
      color: #fff; }

.layout-causes {
  text-align: center; }
  .layout-causes .owl-stage {
    padding-bottom: 1px; }
  .layout-causes .item-image {
    position: relative; }
  .layout-causes .cms-carousel-title h3 {
    position: absolute;
    bottom: 26px;
    right: 20px;
    left: 20px;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center; }
  .layout-causes .cms-carousel-content {
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 35px 34px 0; }
  .layout-causes .cms-carousel-content p {
    margin: 0; }
  .layout-causes .cms-carousel-content .btn {
    margin: 9px 0 -1px; }
  .layout-causes .row {
    position: relative;
    margin-top: 24px !important; }
  .layout-causes .row strong {
    font-size: 30px; }
  .layout-causes .row strong .highlight {
    font-size: 50px; }
  .layout-causes .row .col-xs-6 > span {
    margin: -8px 0 20px;
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400; }
  .layout-causes .row .of {
    position: absolute;
    font-style: italic;
    font-weight: 400;
    left: 50%;
    top: 30px;
    margin-left: -12px; }
  .layout-causes .row .of:before {
    content: '';
    display: block;
    position: absolute;
    top: -35%;
    left: 50%;
    width: 1px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.05);
    -webkit-transform: rotate(20deg);
    -khtml-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .layout-causes .row p {
    margin: 0; }
  .layout-causes .cms-grid-item {
    margin-bottom: 30px; }

.layout-causes .progress, .causes .progress {
  overflow: visible;
  height: 10px;
  position: relative;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  /* BACKGROUND GRADIENT */
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  margin: 0; }
  .layout-causes .progress-bar, .causes .progress-bar {
    background-color: #de3c2f;
    color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 10px; }
  .layout-causes .progress-bar .progress-bar span, .causes .progress-bar .progress-bar span {
    position: relative;
    color: #fff;
    top: -5px;
    font-size: 0.9em;
    display: none; }

.causes {
  text-align: center;
  /*Table*/ }
  .causes .entry-header h2 {
    padding-bottom: 30px; }
  .causes .entry-header img.wp-post-image {
    margin: 0; }
  .causes .entry-header .row {
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.05); }
  .causes .entry-header .row strong {
    font-size: 30px; }
    .causes .entry-header .row strong .highlight {
      font-size: 50px; }
  .causes .entry-header .col-xs-6 {
    padding: 34px 0 0; }
  .causes .entry-header .col-xs-6 > span {
    margin: -8px 0 20px;
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400; }
  .causes .entry-header .col-xs-6 + .col-xs-6 {
    border-left: 1px solid rgba(0, 0, 0, 0.05); }
  .causes .entry-header .btn {
    margin: 9px 0 -1px 0; }

.table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
  padding: 8px;
  text-align: left; }
  .table > tbody > tr > td, .table > tfoot > tr > td, .table > thead > tr > td {
    padding: 8px;
    vertical-align: top;
    border-top: 1px solid #ddd; }

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9; }

.table-bordered {
  border: 1px solid #ddd;
  /*Fanxybox*/ }
  .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > th {
    border: 1px solid #ddd; }

.cms-fancyboxes-wraper .media-right {
  padding-left: 20px;
  display: table-cell;
  vertical-align: top; }
  .cms-fancyboxes-wraper .media-left {
    padding-right: 20px;
    display: table-cell;
    vertical-align: top; }
  .cms-fancyboxes-wraper .media-body {
    display: table-cell;
    vertical-align: top; }
  .cms-fancyboxes-wraper .fancy-box-icon {
    font-size: 56px;
    color: #4d4d4d; }
  .cms-fancyboxes-wraper .fancy-box-title h3 {
    font-size: 60px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 33px;
    position: relative;
    padding-bottom: 10px;
    line-height: 60px; }
  .cms-fancyboxes-wraper .fancy-box-title h3 a {
    color: #4d4d4d; }
    .cms-fancyboxes-wraper .fancy-box-title h3 a:hover {
      color: #de3c2f;
      text-decoration: none; }
  .cms-fancyboxes-wraper .fancy-box-title h3:after {
    content: '';
    position: absolute;
    width: 50px;
    margin-left: -25px;
    height: 1px;
    background-color: rgba(204, 204, 204, 0.2);
    bottom: -12px;
    left: 50%; }
  .cms-fancyboxes-wraper .fancy-box-content {
    font-size: 24px;
    line-height: 1.6em;
    opacity: 0.8; }
  .cms-fancyboxes-wraper .fancy-box-content strong {
    color: #4d4d4d; }
  .cms-fancyboxes-wraper .cms-fancyboxes-foot {
    margin: 37px 0 10px; }
  .cms-fancyboxes-wraper.style1 .fancy-box-icon {
    font-size: 64px;
    color: #de3c2f; }
  .cms-fancyboxes-wraper.style1 .fancy-box-title h3 {
    font-size: 24px;
    line-height: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 300; }
    .cms-fancyboxes-wraper.style1 .fancy-box-title h3 a {
      color: #4d4d4d; }
    .cms-fancyboxes-wraper.style1 .fancy-box-title h3 a:hover {
      color: #4d4d4d; }
    .cms-fancyboxes-wraper.style1 .fancy-box-title h3:after {
      display: none; }
  .cms-fancyboxes-wraper.style2 .fancy-box-icon {
    font-size: 48px;
    color: #000;
    border-color: #000;
    padding: 0.35em;
    max-width: 1.6em;
    border-width: 3px;
    border-style: solid;
    line-height: 48px;
    margin: 0 auto; }
  .cms-fancyboxes-wraper.style2 .fancy-box-content {
    font-size: 20px; }
  .cms-fancyboxes-wraper.style3 .fancy-box-icon {
    padding: 0.35em;
    max-width: 1.8em;
    border-width: 3px;
    border-style: solid;
    color: #de3c2f;
    border-color: #de3c2f;
    font-size: 64px;
    line-height: 64px;
    margin: 0 auto;
    -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 */ }
  .cms-fancyboxes-wraper.style3 .fancy-box-content {
    font-size: 20px; }
  .cms-fancyboxes-wraper.style3 .fancy-box-title h3 {
    font-size: 24px;
    line-height: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 300; }
    .cms-fancyboxes-wraper.style3 .fancy-box-title h3 a {
      color: #4d4d4d; }
    .cms-fancyboxes-wraper.style3 .fancy-box-title h3 a:hover {
      color: #4d4d4d; }
    .cms-fancyboxes-wraper.style3 .fancy-box-title h3:after {
      display: none; }
  .cms-fancyboxes-wraper.style4 .fancy-box-icon {
    padding: 0.3em;
    max-width: 1.7em;
    margin-bottom: 12px;
    text-align: center;
    font-size: 48px;
    line-height: 48px;
    background-color: #000;
    color: #fff;
    margin: 0 auto; }
  .cms-fancyboxes-wraper.style4 .fancy-box-content {
    font-size: 20px; }
  .cms-fancyboxes-wraper.style4 .fancy-box-title h3 {
    font-size: 30px;
    margin-bottom: 18px;
    margin-top: 10px;
    line-height: 30px;
    font-weight: 300; }
    .cms-fancyboxes-wraper.style4 .fancy-box-title h3 a {
      color: #4d4d4d; }
    .cms-fancyboxes-wraper.style4 .fancy-box-title h3 a:hover {
      color: #4d4d4d; }
    .cms-fancyboxes-wraper.style4 .fancy-box-title h3:after {
      display: none; }
  .cms-fancyboxes-wraper.style5 .fancy-box-icon {
    padding: 0.3em;
    max-width: 1.7em;
    margin-bottom: 12px;
    text-align: center;
    margin: 0 auto;
    font-size: 64px;
    line-height: 64px;
    background-color: #de3c2f;
    color: #fff;
    -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 */ }
  .cms-fancyboxes-wraper.style5 .fancy-box-content {
    font-size: 20px; }
  .cms-fancyboxes-wraper.style5 .fancy-box-title h3 {
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 20px;
    line-height: 24px;
    font-weight: 300; }
    .cms-fancyboxes-wraper.style5 .fancy-box-title h3 a {
      color: #4d4d4d; }
    .cms-fancyboxes-wraper.style5 .fancy-box-title h3 a:hover {
      color: #4d4d4d; }
    .cms-fancyboxes-wraper.style5 .fancy-box-title h3:after {
      display: none; }
  .cms-fancyboxes-wraper.style6 .cms-fancy-box-main {
    padding: 40px;
    border: 1px solid #f2f2f2;
    position: relative; }
  .cms-fancyboxes-wraper.style6 .fancy-box-icon {
    padding: 0.3em;
    max-width: 1.7em;
    margin-bottom: 12px;
    text-align: center;
    margin: 0 auto;
    font-size: 64px;
    line-height: 64px;
    background-color: #de3c2f;
    color: #fff; }
  .cms-fancyboxes-wraper.style6 .fancy-box-content {
    font-size: 20px; }
  .cms-fancyboxes-wraper.style6 .fancy-box-title h3 {
    font-size: 30px;
    margin-bottom: 18px;
    margin-top: 10px;
    line-height: 30px;
    font-weight: 300; }
    .cms-fancyboxes-wraper.style6 .fancy-box-title h3 a {
      color: #4d4d4d; }
    .cms-fancyboxes-wraper.style6 .fancy-box-title h3 a:hover {
      color: #4d4d4d; }
    .cms-fancyboxes-wraper.style6 .fancy-box-title h3:after {
      display: none; }
  .cms-fancyboxes-wraper.style7 .cms-fancy-box-main {
    padding: 40px;
    background-color: #f5f5f5;
    position: relative; }
  .cms-fancyboxes-wraper.style7 .fancy-box-icon {
    font-size: 64px;
    line-height: 64px;
    color: #de3c2f; }
  .cms-fancyboxes-wraper.style7 .fancy-box-content {
    font-size: 20px; }
  .cms-fancyboxes-wraper.style7 .fancy-box-title h3 {
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 20px;
    line-height: 24px;
    font-weight: 300; }
    .cms-fancyboxes-wraper.style7 .fancy-box-title h3 a {
      color: #4d4d4d; }
    .cms-fancyboxes-wraper.style7 .fancy-box-title h3 a:hover {
      color: #4d4d4d; }
    .cms-fancyboxes-wraper.style7 .fancy-box-title h3:after {
      display: none; }
  .cms-fancyboxes-wraper.style8 .cms-fancy-box-main {
    padding: 35px 40px;
    background-color: #000;
    position: relative; }
  .cms-fancyboxes-wraper.style8 .fancy-box-icon {
    font-size: 64px;
    line-height: 64px;
    color: #fff; }
  .cms-fancyboxes-wraper.style8 .fancy-box-content {
    font-size: 20px;
    color: #fff; }
  .cms-fancyboxes-wraper.style8 .fancy-box-title h3 {
    font-size: 30px;
    margin-bottom: 18px;
    margin-top: 10px;
    line-height: 30px;
    font-weight: 300; }
    .cms-fancyboxes-wraper.style8 .fancy-box-title h3 a {
      color: #fff; }
    .cms-fancyboxes-wraper.style8 .fancy-box-title h3 a:hover {
      color: #fff; }
    .cms-fancyboxes-wraper.style8 .fancy-box-title h3:after {
      display: none; }
  .cms-fancyboxes-wraper.style8 .cms-fancyboxes-foot .btn-primary:hover {
    background-color: #fff;
    border-color: #fff;
    color: #4d4d4d !important; }
  .cms-fancyboxes-wraper.style9 .cms-fancy-box-main {
    padding: 35px 40px;
    background-color: #de3c2f;
    position: relative; }
  .cms-fancyboxes-wraper.style9 .fancy-box-icon {
    font-size: 48px;
    line-height: 48px;
    color: #fff;
    padding: 0.35em;
    max-width: 1.8em;
    border-width: 3px;
    border-style: solid;
    margin: 0 auto;
    -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 */
    border: 3px solid #fff; }
  .cms-fancyboxes-wraper.style9 .fancy-box-content {
    font-size: 20px;
    color: #fff; }
  .cms-fancyboxes-wraper.style9 .fancy-box-title h3 {
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 20px;
    line-height: 24px;
    font-weight: 300; }
    .cms-fancyboxes-wraper.style9 .fancy-box-title h3 a {
      color: #4d4d4d; }
    .cms-fancyboxes-wraper.style9 .fancy-box-title h3 a:hover {
      color: #4d4d4d; }
    .cms-fancyboxes-wraper.style9 .fancy-box-title h3:after {
      display: none; }
  .cms-fancyboxes-wraper.style9 .cms-fancyboxes-foot .btn-default {
    background-color: transparent; }
    .cms-fancyboxes-wraper.style9 .cms-fancyboxes-foot .btn-default:hover {
      background-color: #4d4d4d; }

.fancyboxes-layout2 .fancy-box-icon {
  font-size: 56px;
  line-height: 56px;
  color: #de3c2f; }
  .fancyboxes-layout2 .fancy-box-title h3 {
    font-size: 30px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 18px;
    margin-top: 0;
    padding: 0; }
  .fancyboxes-layout2 .fancy-box-title h3 a {
    color: #4d4d4d; }
    .fancyboxes-layout2 .fancy-box-title h3 a:hover {
      color: #4d4d4d; }
  .fancyboxes-layout2 .fancy-box-title h3:after {
    display: none; }
  .fancyboxes-layout2 .fancy-box-content {
    font-size: 20px;
    opacity: 1; }
  .fancyboxes-layout2.style10 .cms-fancy-box-main {
    padding: 40px;
    border: 1px solid #f2f2f2; }
  .fancyboxes-layout2.style10 .fancy-box-icon {
    font-size: 48px;
    line-height: 48px;
    color: #fff;
    padding: 0.3em;
    max-width: 1.7em;
    margin-bottom: 12px;
    text-align: center;
    background-color: #4d4d4d;
    -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 */ }
  .fancyboxes-layout2.style10 .fancy-box-title h3 {
    font-size: 24px;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 10px;
    margin-top: 0;
    padding: 0; }
    .fancyboxes-layout2.style10 .fancy-box-title h3 a {
      color: #4d4d4d; }
    .fancyboxes-layout2.style10 .fancy-box-title h3 a:hover {
      color: #4d4d4d; }
    .fancyboxes-layout2.style10 .fancy-box-title h3:after {
      display: none; }
  .fancyboxes-layout2.style10 .fancy-box-content {
    font-size: 20px;
    opacity: 1; }

.fancyboxes-layout3 .fancy-box-icon {
  font-size: 48px;
  line-height: 48px;
  color: #fff;
  padding: 0.3em;
  max-width: 1.7em;
  margin-bottom: 12px;
  text-align: center;
  background-color: #de3c2f; }
  .fancyboxes-layout3 .fancy-box-title h3 {
    font-size: 24px;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 10px;
    margin-top: 0;
    padding: 0; }
  .fancyboxes-layout3 .fancy-box-title h3 a {
    color: #4d4d4d; }
    .fancyboxes-layout3 .fancy-box-title h3 a:hover {
      color: #4d4d4d; }
  .fancyboxes-layout3 .fancy-box-title h3:after {
    display: none; }
  .fancyboxes-layout3 .fancy-box-content {
    font-size: 20px;
    opacity: 1; }
  .fancyboxes-layout3.style11 .cms-fancy-box-main {
    padding: 35px 40px;
    background: #de3c2f; }
  .fancyboxes-layout3.style11 .fancy-box-icon {
    padding: 0.35em;
    max-width: 1.8em;
    border: 3px solid #fff;
    margin-bottom: 12px;
    text-align: center; }
  .fancyboxes-layout3.style11 .fancy-box-title h3 {
    font-size: 30px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 18px;
    margin-top: 0;
    padding: 0; }
    .fancyboxes-layout3.style11 .fancy-box-title h3 a {
      color: #4d4d4d; }
    .fancyboxes-layout3.style11 .fancy-box-title h3 a:hover {
      color: #4d4d4d; }
    .fancyboxes-layout3.style11 .fancy-box-title h3:after {
      display: none; }
  .fancyboxes-layout3.style11 .fancy-box-content {
    font-size: 20px;
    opacity: 1;
    color: #fff; }

.fancyboxes-layout4 {
  /*Counter*/ }
  .fancyboxes-layout4 .fancy-box-title h3 {
    text-align: right;
    margin: 0; }
  .fancyboxes-layout4 .fancy-box-title h3 a:hover {
    color: #4d4d4d; }
  .fancyboxes-layout4 .fancy-box-icon {
    font-size: 48px;
    line-height: 48px;
    color: #fff;
    padding: 0.3em;
    max-width: 1.7em;
    text-align: center;
    background-color: #de3c2f;
    -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 */ }
  .fancyboxes-layout4 .fancy-box-content {
    font-size: 20px;
    opacity: 1;
    float: left !important;
    width: auto !important; }
  .fancyboxes-layout4.style12 .cms-fancy-box-main {
    padding: 40px;
    background: #f5f5f5; }
  .fancyboxes-layout4.style12 .fancy-box-icon {
    font-size: 64px;
    line-height: 64px;
    color: #de3c2f;
    background: none; }
  .fancyboxes-layout4.style12 .fancy-box-title h3 {
    font-size: 24px;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 10px;
    margin-top: 0;
    padding: 0; }
    .fancyboxes-layout4.style12 .fancy-box-title h3 a {
      color: #4d4d4d; }
    .fancyboxes-layout4.style12 .fancy-box-title h3 a:hover {
      color: #4d4d4d; }
    .fancyboxes-layout4.style12 .fancy-box-title h3:after {
      display: none; }
  .fancyboxes-layout4.style13 .cms-fancy-box-main {
    padding: 35px 40px;
    background: #de3c2f; }
  .fancyboxes-layout4.style13 .fancy-box-icon {
    font-size: 64px;
    line-height: 64px;
    color: #fff;
    padding: 0.35em;
    min-width: 1.8em;
    border: 3px solid #fff;
    -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 */ }
  .fancyboxes-layout4.style13 .fancy-box-title h3 {
    font-size: 24px;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 10px;
    margin-top: 0;
    padding: 0; }
    .fancyboxes-layout4.style13 .fancy-box-title h3 a {
      color: #4d4d4d; }
    .fancyboxes-layout4.style13 .fancy-box-title h3 a:hover {
      color: #4d4d4d; }
    .fancyboxes-layout4.style13 .fancy-box-title h3:after {
      display: none; }
  .fancyboxes-layout4.style13 .fancy-box-content {
    color: #fff; }

.layout-counter {
  text-align: center;
  color: #fff;
  /*Layout event*/ }
  .layout-counter .cms-counter-body {
    position: relative;
    z-index: 4; }
  .layout-counter .cms-icon {
    font-size: 56px;
    color: #4d4d4d;
    line-height: 56px; }
  .layout-counter .cms-counter {
    font-size: 50px;
    margin-bottom: 6px;
    margin-top: 20px;
    font-weight: 900;
    line-height: 50px; }
  .layout-counter p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #4d4d4d;
    text-transform: uppercase; }

.layout-gallery {
  /*layout events*/ }
  .layout-gallery .cms-carousel-title {
    position: absolute;
    overflow: hidden;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 25px 35px 25px;
    text-align: center;
    z-index: 5;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    transition: all 0.5s linear;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0; }
  .layout-gallery .cms-carousel-title h3 {
    margin: 0 40px 6px 40px;
    font-size: 30px;
    font-weight: 700;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(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;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0; }
  .layout-gallery .cms-carousel-links, .layout-gallery .cms-carousel-links:before {
    -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;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    filter: alpha(opacity=0);
    opacity: 0; }
  .layout-gallery .cms-carousel-links:before {
    background: #20bbe9;
    background: -moz-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #319ed6), color-stop(100%, #de3c2f));
    background: -webkit-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
    background: -o-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
    background: -ms-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
    background: linear-gradient(to right, #319ed6 0%, #de3c2f 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$mainColor2', endColorstr='$mainColor',GradientType=1); }
  .layout-gallery .cms-carousel-links a {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    top: -50px;
    left: 50%;
    z-index: 3;
    font-size: 16px;
    text-align: center;
    transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    -moz-transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    -ms-transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    -o-transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    -webkit-transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    border: 1px solid #fff;
    color: #fff; }
  .layout-gallery .cms-carousel-links a:before {
    font-family: 'rt-icons';
    content: "\e68d"; }
  .layout-gallery .cms-carousel-links a.p-view {
    margin-left: -45px; }
  .layout-gallery .cms-carousel-links a.p-link {
    margin-left: 5px;
    transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    -moz-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    -ms-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    -o-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    -webkit-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s; }
    .layout-gallery .cms-carousel-links a.p-link:before {
      content: "\e68c"; }
  .layout-gallery .cms-carousel-links a:hover {
    background-color: #fff;
    color: #4d4d4d;
    text-decoration: none; }
  .layout-gallery .cms-carousel-item:hover .cms-carousel-links {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1; }
    .layout-gallery .cms-carousel-item:hover .cms-carousel-links a {
      top: 12%; }
    .layout-gallery .cms-carousel-item:hover .cms-carousel-links:before {
      filter: alpha(opacity=50);
      opacity: 0.5; }
  .layout-gallery .cms-carousel-item:hover .cms-carousel-title {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1; }
    .layout-gallery .cms-carousel-item:hover .cms-carousel-title h3, .layout-gallery .cms-carousel-item:hover .cms-carousel-title p {
      color: #fff;
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -o-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
      -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
      filter: alpha(opacity=100);
      opacity: 1; }

.layout-events {
  margin-left: 100px;
  /* layout gallery1 */ }
  .layout-events .cms-grid-item + .cms-grid-item {
    margin-top: 30px; }
  .layout-events h2 {
    margin-top: 20px;
    margin-bottom: 16px; }
  .layout-events h2 a {
    color: #4d4d4d; }
  .layout-events h2 a:hover {
    color: #de3c2f;
    text-decoration: none; }
  .layout-events .entry-tags {
    padding-top: 0;
    margin: 18px -40px 0;
    overflow: hidden;
    zoom: 1;
    text-align: center;
    color: #4d4d4d;
    font-weight: 400; }
  .layout-events .entry-tags span {
    display: table-cell;
    vertical-align: middle;
    width: 1%;
    padding: 15px 10px; }
  .layout-events .entry-tags span + span {
    border-left: 1px solid rgba(0, 0, 0, 0.05); }
  .layout-events .item-content {
    margin-bottom: 0; }

.layout-gallery1 #primary .gallery {
  padding: 0; }
  .layout-gallery1 [class*="col-"] {
    padding: 0; }
  .layout-gallery1 .cms-grid-item:hover .gallery-image-links {
    opacity: 1; }
    .layout-gallery1 .cms-grid-item:hover .gallery-image-links a {
      top: 12%; }
    .layout-gallery1 .cms-grid-item:hover .gallery-image-links:before {
      opacity: 0.5; }

.gallery-image {
  position: relative; }

.gallery-image-links, .gallery-image-links:before {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  filter: alpha(opacity=0);
  opacity: 0; }

.gallery-image-links:before {
  background: #20bbe9;
  background: -moz-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #319ed6), color-stop(100%, #de3c2f));
  background: -webkit-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
  background: -o-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
  background: -ms-linear-gradient(left, #319ed6 0%, #de3c2f 100%);
  background: linear-gradient(to right, #319ed6 0%, #de3c2f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$mainColor2', endColorstr='$mainColor',GradientType=1); }
  .gallery-image-links a {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    top: -50px;
    left: 50%;
    z-index: 3;
    font-size: 16px;
    text-align: center;
    transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    -moz-transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    -ms-transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    -o-transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    -webkit-transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    border: 1px solid #fff;
    color: #fff; }
  .gallery-image-links a:before {
    font-family: 'rt-icons';
    content: "\e68d"; }
  .gallery-image-links a.p-view {
    margin-left: -45px; }
  .gallery-image-links a.p-link {
    margin-left: 5px;
    transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    -moz-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    -ms-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    -o-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    -webkit-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s; }
  .gallery-image-links a.p-link:before {
    content: "\e68c"; }
  .gallery-image-links a:hover {
    background-color: #fff;
    color: #4d4d4d;
    text-decoration: none; }

.gallery-classic-item-description {
  padding: 0px 10px 10px;
  text-align: center;
  /* layout gallery2 */ }
  .gallery-classic-item-description h3 {
    margin-top: 20px;
    margin-bottom: 10px; }
  .gallery-classic-item-description h3 a {
    color: #4d4d4d; }
  .gallery-classic-item-description h3 a:hover {
    color: #de3c2f;
    text-decoration: none; }

.layout-gallery2 .cms-grid-item:hover .gallery-image-links {
  opacity: 1; }
  .layout-gallery2 .cms-grid-item:hover .gallery-image-links a {
    top: 12%; }
  .layout-gallery2 .cms-grid-item:hover .gallery-image-links:before {
    opacity: 0.5; }
  .layout-gallery2 .cms-grid-item:hover .gallery-item-description {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1; }
  .layout-gallery2 .cms-grid-item:hover .gallery-item-description h3, .layout-gallery2 .cms-grid-item:hover .gallery-item-description p {
    color: #fff;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1; }

.gallery-item-description {
  position: absolute;
  overflow: hidden;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 25px 35px 25px;
  text-align: center;
  z-index: 5;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0; }
  .gallery-item-description h3 {
    margin: 0 40px 6px 40px;
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(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;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0; }
  .gallery-item-description h3 a {
    color: #fff !important; }
  .gallery-item-description h3 a:hover {
    color: #de3c2f !important;
    text-decoration: none; }
  .gallery-item-description p {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear; }

.item-meta {
  margin: -12px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 14px;
  font-weight: 400; }

.gallery-padding {
  margin-bottom: 30px; }

.layout-gallery2 [class*="col-"] {
  margin-bottom: 15px;
  margin-top: 15px; }

.layout-blog-style2 .post-content {
  text-align: left;
  padding-top: 15px;
  padding-bottom: 18px; }
  .layout-blog-style2 .entry-content p:last-child {
    margin-bottom: 33px; }

.main-navigation ul.ping-right {
  left: auto;
  right: 100%; }
  .main-navigation ul.ping-left {
    left: 100%;
    right: auto; }

#cshero-header-navigation {
  background: #323232;
  /* Minimum width of 992 pixels. */ }
  #cshero-header-navigation .main-navigation .menu-main-menu {
    text-align: center; }
  #cshero-header-navigation .main-navigation .menu-main-menu > li > a, #cshero-header-navigation .main-navigation .menu-main-menu > ul > li > a {
    color: #fff;
    font-size: 14px;
    padding: 15px 40px 15px 44px;
    margin: ;
    line-height: ;
    text-transform: uppercase; }
  #cshero-header-navigation .main-navigation .menu-main-menu > li > a:hover, #cshero-header-navigation .main-navigation .menu-main-menu > ul > li > a:hover {
    color: #dd3d2e; }
  #cshero-header-navigation .main-navigation .menu-main-menu > li > a:focus, #cshero-header-navigation .main-navigation .menu-main-menu > ul > li > a:focus {
    outline: none; }
  #cshero-header-navigation .main-navigation .menu-main-menu > li > a.current, #cshero-header-navigation .main-navigation .menu-main-menu > ul > li > a.current {
    color: #de3c2f; }
  #cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-item > a, #cshero-header-navigation .main-navigation .menu-main-menu > ul > li.current-menu-item > a, #cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-ancestor > a, #cshero-header-navigation .main-navigation .menu-main-menu > ul > li.current-menu-ancestor > a, #cshero-header-navigation .main-navigation .menu-main-menu > li.current_page_item > a, #cshero-header-navigation .main-navigation .menu-main-menu > ul > li.current_page_item > a, #cshero-header-navigation .main-navigation .menu-main-menu > li.current_page_ancestor > a, #cshero-header-navigation .main-navigation .menu-main-menu > ul > li.current_page_ancestor > a {
    color: #ccc; }
  #cshero-header-navigation .main-navigation .menu-main-menu > li ul a, #cshero-header-navigation .main-navigation .menu-main-menu > ul > li ul a {
    color: #fff;
    font-size: 14px;
    background-color: #4d4d4d; }
  #cshero-header-navigation .main-navigation .menu-main-menu > li ul a:hover, #cshero-header-navigation .main-navigation .menu-main-menu > ul > li ul a:hover, #cshero-header-navigation .main-navigation .menu-main-menu > li ul a:focus, #cshero-header-navigation .main-navigation .menu-main-menu > ul > li ul a:focus {
    color: #d33;
    background-color: #4d4d4d;
    outline: none; }
  #cshero-header-navigation .main-navigation li ul li a {
    border-bottom: 1px solid ; }

@media screen and (min-width: 992px) {
  /* Minimum width of 992 pixels. */
    #menu-mobile, .cs-menu-toggle {
      display: none; }
    #cshero-header-navigation.collapse {
      display: block; }
    .main-navigation div.nav-menu > ul {
      display: inline-block !important;
      text-align: center;
      width: 100%; }
    .main-navigation ul {
      margin: 0;
      text-indent: 0;
      padding: 0; }
    .main-navigation li a, .main-navigation li {
      display: inline-block;
      text-decoration: none; }
    .main-navigation li a {
      border-bottom: 0;
      text-transform: uppercase;
      white-space: nowrap;
      letter-spacing: 0.2em;
      font-weight: 400; }
    .main-navigation li a:hover, .main-navigation li a:focus {
      color: #000; }
    .main-navigation li {
      margin: 0;
      position: relative; }
      .main-navigation li + li:before {
        content: '';
        width: 1px;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        background-color: rgba(255, 255, 255, 0.15); }
      .main-navigation li.menu-item-has-children > a:after {
        font-family: 'fontello';
        content: '\e82e';
        padding-left: 7px; }
    .main-navigation li li {
      margin: 0; }
    .main-navigation li ul {
      margin: 0;
      padding: 7px 0;
      position: absolute;
      top: 100%;
      z-index: 999;
      height: 1px;
      width: 1px;
      overflow: hidden;
      clip: rect(1px, 1px, 1px, 1px);
      min-width: 12em;
      -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
      -khtml-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
      -ms-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
      -o-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
      /* BACKGROUND GRADIENT */
      /* BOX SIZING */
      background: #fff;
      /**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 {
      display: block;
      position: relative; }
      .main-navigation li ul li + li:before {
        position: absolute;
        content: '';
        height: 1px;
        width: auto;
        left: 30px;
        right: 30px;
        background-color: #f2f2f2; }
      .main-navigation li ul li.menu-item-has-children > a:after {
        content: '\e830'; }
    .main-navigation li ul li a {
      display: block;
      padding: 0.75em 1.1em;
      white-space: normal;
      border: none !important;
      letter-spacing: normal; }
    .main-navigation li ul li a:hover, .main-navigation li ul li a:focus {
      background: #e3e3e3;
      color: #444; }
    .main-navigation .current-menu-item > a, .main-navigation .current-menu-ancestor > a, .main-navigation .current_page_item > a, .main-navigation .current_page_ancestor > a {
      /* 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 div.nav-menu > ul {
    max-height: 0;
    overflow: hidden;
    transition: all 500ms ease; }

  #header-navigation {
    display: block;
    background: #ccc;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    z-index: 9;
    min-height: 0; }

  #menu-mobile {
    display: block;
    position: absolute;
    top: 15px;
    right: 30px;
    cursor: pointer; }

  .main-navigation div.nav-menu > ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    .main-navigation div.nav-menu > ul li {
      list-style: none; }
      .main-navigation div.nav-menu > ul li a {
        display: block;
        color: #5e5e5e; }
        .main-navigation div.nav-menu > ul li a:hover, .main-navigation div.nav-menu > ul li a:focus {
          color: #21759b; }

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

  #cshero-menu-mobile {
    display: block;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 1001;
    visibility: visible;
    font-size: 0;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-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; }
    #cshero-menu-mobile.close-open {
      display: none; }
    #cshero-menu-mobile span, #cshero-menu-mobile span:before, #cshero-menu-mobile span:after {
      display: block;
      width: 20px;
      height: 1px;
      position: absolute;
      background-color: #4d4d4d;
      content: '';
      left: 0;
      -webkit-transition: all 0.2s ease-in-out 0s;
      -moz-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; }
    #cshero-menu-mobile span {
      left: 20px;
      top: 50%;
      margin-top: -1px; }
      #cshero-menu-mobile span:before {
        top: -5px; }
      #cshero-menu-mobile span:after {
        top: 5px; }
    #cshero-menu-mobile:hover span:before {
      top: -7px; }
      #cshero-menu-mobile:hover span:after {
        top: 7px; }

  .cshero-menu-close {
    background-color: #fff;
    cursor: pointer;
    display: none;
    height: 60px;
    left: auto;
    right: 0;
    position: fixed;
    top: 0;
    transition: all 0.2s ease-in-out 0s;
    visibility: visible;
    width: 60px;
    z-index: 1001; }
    .cshero-menu-close.open {
      display: block; }
    .cshero-menu-close:after {
      color: #4d4d4d;
      content: "\e602";
      font-family: "rt-icons";
      font-size: 40px;
      left: 10px;
      position: absolute;
      top: 14px; }
    .cshero-menu-close span {
      display: none; }

  .admin-bar #cshero-menu-mobile, .admin-bar .cshero-menu-close {
    top: 30px; }

  #cshero-header-navigation {
    display: none;
    /* Dropdown Sub Menu */ }
    #cshero-header-navigation .main-navigation .menu-main-menu > li > a, #cshero-header-navigation .main-navigation .menu-main-menu > ul > li > a {
      line-height: normal; }
    #cshero-header-navigation.open-menu {
      visibility: visible;
      opacity: 1;
      background-color: rgba(0, 0, 0, 0.9);
      z-index: 10;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      position: fixed;
      -webkit-transition: all 0.2s linear 0s;
      -moz-transition: all 0.2s linear 0s;
      -ms-transition: all 0.2s linear 0s;
      transition: all 0.2s linear 0s;
      display: block; }
    #cshero-header-navigation .main-navigation .menu-main-menu {
      position: fixed;
      overflow: auto;
      background-color: #fff;
      width: auto;
      top: 30px;
      left: 30px;
      bottom: 30px;
      right: 30px;
      padding: 20px;
      word-wrap: break-word;
      text-align: left;
      margin: 0;
      list-style: none;
      max-height: 500px; }
      #cshero-header-navigation .main-navigation .menu-main-menu > li > a {
        padding: 10px 15px;
        font-size: 1.1em;
        text-transform: uppercase;
        font-weight: 800;
        color: #4d4d4d;
        display: block; }
        #cshero-header-navigation .main-navigation .menu-main-menu > li > a:hover {
          color: #4d4d4d;
          text-decoration: none; }
        #cshero-header-navigation .main-navigation .menu-main-menu > li.current-menu-item > a {
          color: #4d4d4d; }
        #cshero-header-navigation .main-navigation .menu-main-menu > li.menu-item-has-children > a {
          padding-right: 2.5em;
          position: relative; }
        #cshero-header-navigation .main-navigation .menu-main-menu > li.menu-item-has-children:hover > a {
          background: #4d4d4d;
          color: #fff; }
          #cshero-header-navigation .main-navigation .menu-main-menu > li.menu-item-has-children:hover span.cs-menu-toggle:before {
            color: #fff; }
        #cshero-header-navigation .main-navigation .menu-main-menu > li.menu-item-has-children ul.sub-menu {
          width: auto !important;
          padding: 0;
          margin: 0 0 0 10px;
          list-style: none; }
          #cshero-header-navigation .main-navigation .menu-main-menu > li.menu-item-has-children ul.sub-menu li a {
            padding: 10px;
            border: none;
            font-size: 1.1em;
            display: block;
            width: auto; }
            #cshero-header-navigation .main-navigation .menu-main-menu > li.menu-item-has-children ul.sub-menu li a:before {
              content: '-';
              padding-right: 5px; }
            #cshero-header-navigation .main-navigation .menu-main-menu > li.menu-item-has-children ul.sub-menu li a:hover {
              color: #4d4d4d;
              text-decoration: none; }
            #cshero-header-navigation .main-navigation .menu-main-menu > li.menu-item-has-children ul.sub-menu li.menu-item-has-children > a {
              padding-right: 2.5em;
              position: relative; }
              #cshero-header-navigation .main-navigation .menu-main-menu > li.menu-item-has-children ul.sub-menu li.menu-item-has-children > a:hover {
                background: #4d4d4d;
                color: #fff; }
            #cshero-header-navigation .main-navigation .menu-main-menu > li.menu-item-has-children ul.sub-menu li.menu-item-has-children li a:before {
              content: '--';
              padding-right: 5px; }

  .cs-menu-toggle {
    display: block; }

  #cshero-header-navigation .main-navigation .menu-main-menu > li {
    position: relative; }
    #cshero-header-navigation .main-navigation .menu-main-menu > li li {
      position: relative; }
    #cshero-header-navigation .main-navigation .menu-main-menu > li .cs-menu-toggle {
      color: #999;
      cursor: pointer;
      position: absolute;
      right: 1.44em;
      text-align: center;
      top: 10px;
      width: 30px; }
      #cshero-header-navigation .main-navigation .menu-main-menu > li .cs-menu-toggle:before {
        font-family: 'fontello';
        content: '\e82e';
        position: absolute;
        height: 0;
        width: 0;
        font-size: 20px;
        color: #4d4d4d; }
      #cshero-header-navigation .main-navigation .menu-main-menu > li .cs-menu-toggle:before:hover {
        color: #fff; }
    #cshero-header-navigation .main-navigation .menu-main-menu > li ul.sub-menu {
      max-height: 0;
      overflow: hidden;
      padding-left: 10px;
      -webkit-transition: max-height 0.8s;
      -moz-transition: max-height 0.8s;
      -ms-transition: max-height 0.8s;
      transition: max-height 0.8s; }
      #cshero-header-navigation .main-navigation .menu-main-menu > li ul.sub-menu.submenu-open {
        max-height: 1000px; }
      #cshero-header-navigation .main-navigation .menu-main-menu > li ul.sub-menu.submenu-open + .cs-menu-toggle i:before {
        content: "\f106"; }
      #cshero-header-navigation .main-navigation .menu-main-menu > li ul.sub-menu .cs-menu-toggle {
        right: 12px; } }

aside + .widget {
  margin-top: 43px; }
  aside.widget a {
    color: #4d4d4d; }
  aside.widget a:hover {
    color: #de3c2f;
    text-decoration: none; }
  aside.widget ul {
    margin: 0;
    padding: 0;
    list-style: none; }

ul#jtwt li + li {
  margin-top: 10px;
  clear: both; }
  ul#jtwt li + li .tweet_right {
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05); }
  ul#jtwt li div.avatar {
    float: left;
    padding-top: 10px; }
  ul#jtwt li div.avatar img {
    max-width: 48px; }
  ul#jtwt li div.tweet_right {
    overflow: hidden;
    zoom: 1;
    margin-left: 60px; }

ul.cs-popular li {
  margin-top: 2px;
  padding: 25px 0 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 0; }
  ul.cs-popular li:first-child {
    padding-top: 8px;
    margin-top: 0; }
  ul.cs-popular li:last-child {
    margin-top: 2px;
    padding: 25px 0 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 0; }
  ul.cs-popular li .cs-media {
    display: table-cell;
    vertical-align: top;
    padding-right: 20px;
    margin: 0;
    width: auto; }
  ul.cs-popular li .cs-details {
    display: table-cell;
    vertical-align: top; }
  ul.cs-popular li .cs-details .date {
    line-height: 1;
    margin-bottom: 14px;
    color: #4d4d4d;
    letter-spacing: 0.2em;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase; }

ul#recentcomments li {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 15px 0; }
  ul#recentcomments li:first-child {
    padding-top: 0; }
  ul#recentcomments li:before {
    font-family: 'rt-icons';
    content: "\e674";
    font-size: 20px;
    line-height: 1;
    position: relative;
    top: 2px;
    padding-right: 10px;
    color: #4d4d4d; }
  ul#recentcomments li span.comment-author-link {
    color: #4d4d4d; }
  ul#recentcomments li span.comment-author-link:hover {
    color: #de3c2f; }

.wpb_gallery .wpb_image_grid .wpb_image_grid_ul {
  padding-top: 7px; }
  .wpb_gallery .wpb_image_grid .wpb_image_grid_ul .isotope-item {
    margin: 0 10px 10px 0; }
  .wpb_gallery .wpb_image_grid .wpb_image_grid_ul .isotope-item img {
    width: 75px;
    height: 75px;
    -webkit-border-radius: 1px;
    -khtml-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
    border-radius: 1px;
    /* BACKGROUND GRADIENT */ }

.widget_recent_entries ul li {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 15px 0 15px 40px; }
  .widget_recent_entries ul li:first-child {
    padding-top: 0; }
  .widget_recent_entries ul li:first-child:before {
    top: 5px; }
  .widget_recent_entries ul li:before {
    font-family: 'rt-icons';
    content: "\e714";
    font-size: 24px;
    line-height: 1;
    position: absolute;
    top: 21px;
    left: 0;
    padding-right: 10px;
    color: #4d4d4d; }

.widget_archive ul li, .widget_categories ul li, .widget_meta ul li, .widget_nav_menu ul li, .widget_pages ul li {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
  .widget_archive ul li a, .widget_categories ul li a, .widget_meta ul li a, .widget_nav_menu ul li a, .widget_pages ul li a {
    display: inline-block;
    padding: 9px 0 10px 40px;
    position: relative; }
  .widget_archive ul li a:before, .widget_categories ul li a:before, .widget_meta ul li a:before, .widget_nav_menu ul li a:before, .widget_pages ul li a:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border: 1px solid #de3c2f;
    border-radius: 50%;
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -5px; }

.widget_nav_menu ul {
  width: 100% !important; }
  .widget_nav_menu ul li {
    border-bottom: none !important; }
  .widget_nav_menu ul li a {
    display: block !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
  .widget_nav_menu ul ul {
    padding-left: 20px; }
  .widget_nav_menu ul ul li:first-child a {
    padding-top: 15px; }

.widget_tag_cloud .tagcloud a {
  color: #b2b2b2;
  margin: 0 26px 0 0;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0;
  border: none;
  line-height: 30px; }
  .widget_tag_cloud .tagcloud a:hover {
    background: transparent;
    border: none; }

#calendar_wrap {
  width: 100%;
  margin-bottom: 15px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 26px 24px 0; }
  #calendar_wrap #wp-calendar {
    color: #b2b2b2;
    font-size: 14px;
    line-height: 26px; }

.widget_calendar table {
  font-size: 14px;
  line-height: 26px;
  width: 100%;
  border: none; }
  .widget_calendar caption {
    line-height: 1;
    font-size: 30px;
    padding: 8px 4px 18px;
    text-align: center;
    color: #4d4d4d;
    margin: 0 !important;
    text-transform: none !important;
    font-weight: 300; }
  .widget_calendar thead th {
    color: #4d4d4d; }
  .widget_calendar th {
    font-weight: 900 !important;
    font-size: 20px;
    padding: 0 6px;
    text-align: center;
    color: #b2b2b2; }
  .widget_calendar th:nth-child(6), .widget_calendar th:nth-child(7) {
    color: #de3c2f; }
  .widget_calendar tbody td {
    font-size: 20px;
    border: none;
    padding: 1px 4px;
    position: relative;
    color: #b2b2b2; }
  .widget_calendar tbody td:hover {
    color: #b2b2b2 !important; }
  .widget_calendar tbody td a {
    font-weight: 700;
    color: #de3c2f; }
  .widget_calendar tfoot td {
    padding: 24px 0 0; }
  .widget_calendar tfoot td a {
    color: #4d4d4d;
    text-align: center;
    font-size: 0;
    width: 40px;
    height: 40px;
    border: 1px solid #4d4d4d;
    display: inline-block;
    line-height: 38px; }
  .widget_calendar tfoot td a:hover, .widget_calendar tfoot td a:focus {
    text-decoration: none;
    color: #fff;
    background: #de3c2f;
    border-color: #de3c2f;
    outline: none; }
  .widget_calendar td {
    text-align: center;
    padding: 0 6px;
    vertical-align: top; }
  .widget_calendar #prev {
    text-align: right; }
  .widget_calendar #prev a {
    margin-right: -10px; }
  .widget_calendar #prev a:before {
    font-size: 20px;
    font-family: 'fontello';
    content: '\e840'; }
  .widget_calendar #next {
    text-align: left; }
  .widget_calendar #next a {
    margin-left: -11px; }
  .widget_calendar #next a:after {
    font-size: 20px;
    font-family: 'fontello';
    content: '\e841'; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300; }

p {
  margin: 0 0 15px; }
  p:last-child {
    margin: 0 0 15px; }
  p a:hover {
    color: #de3c2f !important;
    text-decoration: none; }
  p a:hover i {
    color: #de3c2f; }

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-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;
  color: #de3c2f; }
  a:hover {
    color: #b2b2b2;
    -webkit-transition: all 0.15s linear 0s;
    -moz-transition: all 0.15s linear 0s;
    -ms-transition: all 0.15s linear 0s;
    transition: all 0.15s linear 0s;
    text-decoration: none; }
  a:focus {
    text-decoration: none;
    outline: none; }

aside .widget + .widget {
  margin-top: 43px; }

.widget > h3, .widget .widget-title {
  font-size: 30px;
  margin: 0 0 28px;
  font-weight: 900;
  position: relative;
  line-height: 30px; }

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

  #page-blog-right-sidebar article, #page-blog-right-sidebar nav.paging-navigation {
    margin-right: 100px; }

  #page-blog-left-sidebar article, #page-blog-left-sidebar nav.paging-navigation {
    margin-left: 100px; }

  .blog-single article, .author article, .category article, .archive article {
    margin-right: 100px; }
    .blog-single .comments-main, .author .comments-main, .category .comments-main, .archive .comments-main {
      margin-left: 0;
      margin-right: 100px; }

  #page-search-results article {
    margin-right: 100px; }
    #page-search-results article + article {
      padding-bottom: 0; } }

@media screen and (max-width: 1200px) {
  #cshero-header-top, #cshero-header {
    padding: 0; }

  .post-navigation {
    padding-right: 0; }

  #cshero-header-navigation .main-navigation .menu-main-menu > li > a {
    padding-left: 26px;
    padding-right: 20px; }

  #cshero-header-social {
    right: 0; }

  .events .with-share-buttons {
    margin-left: 0; }

  #page-right-sidebar article {
    margin-right: 0; }

  .blog-single .comments-main, .events .comments-main {
    margin-left: 0; }

  .layout-events {
    margin-left: 0; }

  .blog-single .comments-area > #respond, .events .comments-area > #respond {
    margin-left: 0;
    padding-left: 40px;
    margin-right: 0; } }

@media (min-width: 992px) {
  .cshero-menu-close {
    display: none; }

  .text-md-center {
    text-align: center !important; }

  .display_table_md .container .row {
    display: table;
    min-width: 100%;
    height: 100%;
    margin: auto !important; }

  .display_table_cell_md {
    display: table-cell;
    vertical-align: middle;
    overflow: hidden;
    zoom: 1;
    float: none !important; }

  .side-item .entry-meta {
    border-width: 0 0 1px 0;
    margin-left: -30px; }
    .side-item .entry-meta .datetime:before, .side-item .entry-meta .author a:before, .side-item .entry-meta .item-likes:before {
      display: block;
      padding: 0; }

  .item-content.right {
    margin-left: 10px; } }

@media screen and (min-width: 1024px) {
  .owl-carousel .owl-nav > div {
    right: -35px; }
    .owl-carousel .owl-nav > div:first-child {
      left: -35px; } }

@media screen and (max-width: 1024px) {
  body .container {
    width: 100%; }

  .cms-row-full-width > .no-container {
    margin-left: 0;
    margin-right: 0; }
    .cms-row-full-width > .no-container > .row {
      margin-left: 0;
      margin-right: 0; }
      .cms-row-full-width > .no-container > .row > .wpb_column {
        padding: 0; }

  .layout-causes .cms-carousel-content {
    padding-left: 20px;
    padding-right: 20px; } }

@media (min-width: 768px) and (max-width: 991px) {
  .owl-carousel .owl-nav > div {
    right: -25px; }
    .owl-carousel .owl-nav > div:first-child {
      left: -25px; } }

@media (min-width: 768px) {
  .entry-meta > span {
    display: table-cell;
    vertical-align: middle;
    width: 1%;
    padding: 13px 0; }
    .entry-meta > span + span {
      border-left: 1px solid #f2f2f2; }

  .fancyboxes-layout4 .cms-fancy-box-main {
    display: table; }
    .fancyboxes-layout4 .cms-fancy-box-main [class*="col-"] {
      display: table-cell;
      vertical-align: middle;
      float: none; } }

@media (min-width: 992px) and (max-width: 1024px) {
  .owl-carousel .owl-nav > div {
    right: -15px; }
    .owl-carousel .owl-nav > div:first-child {
      left: -15px; }
    .owl-carousel .owl-nav > div:after {
      font-size: 28px; }

  .causes .layout-causes {
    padding: 0 15px; }
    .causes .owl-carousel .owl-nav > div {
      right: 0; }
    .causes .owl-carousel .owl-nav > div:first-child {
      left: 0;
      right: auto; } }

@media (max-width: 991px) {
  .container {
    max-width: 750px; }

  .rightsidebar {
    padding-top: 30px;
    padding-bottom: 0; }

  .leftsidebar {
    padding-top: 0;
    padding-bottom: 30px; }

  .vc_col-sm-1, .vc_col-sm-2, .vc_col-sm-3, .vc_col-sm-4, .vc_col-sm-5, .vc_col-sm-6, .vc_col-sm-7, .vc_col-sm-8, .vc_col-sm-9, .vc_col-sm-10, .vc_col-sm-11, .vc_col-sm-12 {
    width: 100% !important; }

  #cshero-header-top .info {
    display: none; }
    #cshero-header-top:after {
      display: none; }

  .has-thumbnail img {
    width: 100%; }

  .layout-testimonials {
    margin-top: 30px; }

  .donate-top [class*="col-"] {
    padding: 0; }

  .team .row .row [class*="col-"] {
    padding: 0 !important; }

  h2.text-uppercase {
    text-align: center; }

  .donate {
    text-align: center; }

  .vc_pie_chart {
    margin: 30px 0 !important; }

  .layout-causes .cms-carousel-content {
    line-height: 37px; }

  #purchase h2 {
    text-align: center; }
    #purchase .vc_column_container {
      margin: 15px 0;
      text-align: center; }
      #purchase .vc_column_container + .vc_column_container {
        margin-top: 30px; }

  #recent h2, .our-blog h2, .contact h2, .section_header h2 {
    font-size: 50px !important;
    line-height: 50px !important; }

  .section_header {
    font-size: 50px !important;
    line-height: 50px !important; }

  .item-content {
    margin: 34px 40px;
    text-align: center; }

  .layout-team-2 [class*="col-sm-"] + [class*="col-sm-"] {
    margin-top: 30px !important; }

  .layout-blog-style1 .cms-grid-item + .cms-grid-item {
    margin-top: 30px; }

  .layout-counter {
    margin-top: 30px; }

  .layout-team-1 .cms-grid-item:nth-child(2n+1) .team-item-image, .layout-team-1 .cms-grid-item:nth-child(2n) .team-item-image {
    float: none; }
    .layout-team-1 .cms-grid-item:nth-child(2n+1) .team-item-description, .layout-team-1 .cms-grid-item:nth-child(2n) .team-item-description {
      padding: 34px 18px 20px;
      text-align: center; }
    .layout-team-1 .team-item-image {
      max-width: 100%; }
    .layout-team-1 .team-item-image .has-thumbnail {
      max-width: 100%; }

  .wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav li a {
    font-size: 13px; }

  .layout-events {
    margin-left: 0; }

  #page-blog-left-sidebar .leftsidebar {
    margin-bottom: 30px; }

  #page-blog-right-sidebar .rightsidebar {
    margin-top: 30px; }

  .comments-area .comment-list ul li.depth-2 .comment-body {
    padding-left: 30px; }
    .comments-area .comment-list ul li.depth-3 .comment-body {
      padding-left: 60px; }
    .comments-area .comment-list ul li.depth-4 .comment-body {
      padding-left: 90px; }
    .comments-area .comment-list ul li.depth-5 .comment-body {
      padding-left: 120px; }

  .bordered-table.row {
    padding-bottom: 40px !important; }

  .blog-single [class*="col-sm-"] {
    margin-top: 30px; }

  .cms-fancyboxes-body [class*="col-sm-"] + [class*="col-sm-"] {
    margin-top: 30px !important; }
    .cms-fancyboxes-body [class*="col-xs-"] + [class*="col-xs-"] {
      margin-top: 30px !important; }

  .partner-carousel.owl-carousel .owl-item img {
    width: auto !important;
    margin: 0 auto; }
    .partner-carousel.owl-carousel .owl-nav > div {
      right: 0; }
    .partner-carousel.owl-carousel .owl-nav > div:first-child {
      left: 0; }

  #calendar_wrap {
    padding-left: 15px;
    padding-right: 15px; }

  #page-blog-right-sidebar .container, #page-blog-left-sidebar .container, #page-blog-masonry .container {
    padding-left: 0;
    padding-right: 0; } }

@media screen and (max-width: 767px) {
  .container {
    max-width: 500px; }

  .col-xs-10 {
    width: 100% !important; }

  .entry-content > .wpb_row .wpb_row {
    margin-left: 0;
    margin-right: 0; }

  .cms-grid .cms-grid-item {
    padding: 0 !important; }

  #cshero-header-social {
    position: relative;
    padding: 10px 0 0;
    top: 0; }
    #cshero-header-social ul.cms-social {
      text-align: center; }

  .error404 h1.entry-title {
    font-size: 130px;
    line-height: 130px; }

  .events .with-share-buttons {
    margin-top: 30px; }

  #page-blog-right-sidebar #primary, #page-blog-left-sidebar #primary {
    margin-top: 30px; }

  #recent h2, .our-blog h2, .contact h2, .section_header h2 {
    font-size: 30px !important;
    line-height: 30px !important; }

  .section_header {
    font-size: 30px !important;
    line-height: 30px !important; }

  .fancyboxes-layout4 {
    text-align: center; }
    .fancyboxes-layout4 .cms-fancy-box-main {
      display: table; }
    .fancyboxes-layout4 .fancy-box-title h3 {
      text-align: center; }
    .fancyboxes-layout4 .icon {
      left: 39%; }
    .fancyboxes-layout4.style12 .icon, .fancyboxes-layout4.style13 .icon {
      left: 31%; }

  .table-responsive {
    overflow-x: scroll;
    overflow-y: hidden; }

  .causes .owl-carousel .owl-nav > div {
    right: -15px; }
    .causes .owl-carousel .owl-nav > div:first-child {
      left: -15px;
      right: auto; } }

@media screen and (max-width: 736px) {
  .causes .owl-carousel .owl-nav > div {
    right: -35px; }
    .causes .owl-carousel .owl-nav > div:first-child {
      left: -35px;
      right: auto; } }

@media screen and (max-width: 600px) {
  .post-share-buttons {
    display: none; }

  .with-share-buttons, .post-navigation {
    padding-left: 0; }

  .blog-single .comments-main, .events .comments-main {
    padding-left: 0; }
    .blog-single .comments-area > #respond, .events .comments-area > #respond {
      padding-left: 0; } }

@media screen and (max-width: 480px) {
  .wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav li.ui-tabs-active a:before, .wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav li.ui-tabs-active a:after {
    display: none; }
    .wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tab {
      padding: 0; }

  .layout-causes .row strong .highlight {
    font-size: 30px; }

  .layout-counter .cms-counter {
    font-size: 1.4em; }

  .cms-fancyboxes-wraper .fancy-box-title h3 {
    font-size: 1.4em;
    line-height: 1.4em; }

  a.bottom_logo {
    font-size: 20px;
    letter-spacing: 0.1em; }

  .events .conatiner {
    margin: 0 15px; }

  .blog-single .comments-main {
    padding-left: 0; }

  .comments-area > #respond {
    margin-left: 0; }

  .cols-2 {
    width: 100%; }

  .cols-3 {
    width: 100%; }

  .cols-4 {
    width: 100%; }

  .cols-5 {
    width: 100%; }

  .owl-carousel .owl-nav > div {
    right: -15px; }
    .owl-carousel .owl-nav > div:first-child {
      left: -15px; }
    .owl-carousel .owl-nav > div:after {
      font-size: 25px; }

  .causes .layout-causes {
    padding: 0 15px; }
    .causes .owl-carousel .owl-nav > div {
      right: 0; }
      .causes .owl-carousel .owl-nav > div:first-child {
        left: 0;
        right: auto; } }

@media screen and (max-width: 375px) {
  #cshero-header-logo a img {
    width: 80%; }

  .contact-form form.wpcf7-form {
    padding: 30px 10px; }

  form#searchform {
    width: 80%;
    float: right; } }

@media screen and (max-width: 320px) {
  .error404 form#searchform {
    width: 100%;
    float: none; }

  .our-team .layout-team-2 > .row {
    margin: 0; }

  .pagination > li > a, .pagination > li > span, .pagination > li i {
    margin-top: 3px; }

  .btn, button, .button, input[type="submit"] {
    font-size: 11px; }

  .btn > [class*="glyphicon"], button > [class*="glyphicon"], .button > [class*="glyphicon"], input[type="submit"] > [class*="glyphicon"], .btn > [class*="fa-"], button > [class*="fa-"], .button > [class*="fa-"], input[type="submit"] > [class*="fa-"] {
    padding: 0 5px; }

  .btn.btn-success, button.btn-success, .button.btn-success, input.btn-success[type="submit"] {
    padding: 8px 10px; }

  .fancyboxes-layout4 .icon {
    left: 31%; }
    .fancyboxes-layout4.style12 .icon, .fancyboxes-layout4.style13 .icon {
      left: 14%; }

  .gallery-item-description {
    padding-bottom: 10px; } }
