/* ==== Table of contents ====

	0.0  - Less and General Styles
	1.0  - General Styles
		1.1 - Base button
	2.0  - Navigation
		2.1 - Navigation Scrolled Down
		2.2 - Admin Bar
	3.0 - Site Footer
		3.1 - Footer Social Icons
	4.0 - Entry Header
		4.1 - Entry Content
			4.1.1 - Templates Single Cause Content
		4.2 - Entry Footer
		4.3 - Entry Tags
		4.4 - Author box
		4.5 - Pagination with numbers
		4.6 - Post Navigation
		4.7 - Sidebar - Widget area
		4.8 - Comments
		4.9 - Gallery
	5.0 - 404
	6.0 - VC Humanitas Breadcrumbs
		6.1 - VC Section Header
		6.2 - VC Underline Section Header
		6.3 - VC Member Article
		6.4 - VC Feature
		6.5 - VC Fullwidth Single Cause Parallax
		6.6 - VC Fullwidth Event Parallax
		6.7 - VC Causes Isotope
		6.8 - VC Posts Shortcode
		6.9 - VC Countdown Bar
		6.10 - VC Contact Home
	7.0 - Less Variables + Mixins
	8.0 - Special Classes
	
 =============================*/
/*--------------------------------------------------------------
1.0 - General Styles
--------------------------------------------------------------*/
html,
body {
  position: relative;
  box-sizing: border-box;
}
body {
  background: rgba(30, 32, 36, 0.02);
  overflow-x: hidden;
  position: relative;
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  line-height: 14px;
}
ul,
ol {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
span {
  color: inherit;
}
a {
  text-decoration: none;
  outline: 0;
}
a:hover {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h5,
h6 {
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: #383838;
  font-weight: 700;
}
h1 {
  font-size: 28px;
  line-height: 28px;
}
h2 {
  font-size: 24px;
  line-height: 24px;
}
h3 {
  font-size: 18px;
  line-height: 18px;
}
h4 {
  font-size: 16px;
  line-height: 16px;
}
h5 {
  font-size: 14px;
  line-height: 14px;
}
h6 {
  font-size: 13px;
  line-height: 13px;
}
p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #4d4d4d;
  margin: 0;
  padding: 0;
}
.colored {
  color: #ec4050;
}
.my_rev_button {
  background: #ec4050 !important;
}
.my_rev_button:hover {
  background: #ffffff !important;
  color: #383838 !important;
}
.relative {
  position: relative;
}
.img-responsive {
  width: 100%;
  height: auto;
}
table,
dl,
p,
.entry-content {
  font-family: 'Lato', sans-serif;
}
/*--------------------------------------------------------------
1.1 - Base button
--------------------------------------------------------------*/
.base-btn-icon {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-weight: 700;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.base-btn-icon.large {
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
}
.base-btn-icon.small {
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  font-weight: 500;
}
.base-btn-icon i {
  color: inherit;
  padding-right: 5px;
  position: relative;
  z-index: 5;
}
.base-btn-icon span {
  display: inline-block;
  position: relative;
  z-index: 5;
}
.base-btn-icon.btn_colored {
  background: #ec4050;
  color: #ffffff;
}
.base-btn-icon.btn_colored:before,
.base-btn-icon.btn_colored:after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  background: rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  left: 0;
  z-index: 2;
  -ms-transform: rotate(10deg);
  /* IE 9 */
  -webkit-transform: rotate(10deg);
  /* Safari */
  transform: rotate(10deg);
}
.base-btn-icon.btn_colored:before {
  bottom: 150%;
}
.base-btn-icon.btn_colored:after {
  top: 150%;
}
.base-btn-icon.btn_colored:focus {
  color: #ffffff;
}
.base-btn-icon.btn_colored:hover {
  color: #ffffff;
}
.base-btn-icon.btn_colored:hover:before {
  bottom: 50%;
  -ms-transform: rotate(0deg);
  /* IE 9 */
  -webkit-transform: rotate(0deg);
  /* Safari */
  transform: rotate(0deg);
}
.base-btn-icon.btn_colored:hover:after {
  top: 50%;
  -ms-transform: rotate(0deg);
  /* IE 9 */
  -webkit-transform: rotate(0deg);
  /* Safari */
  transform: rotate(0deg);
}
.base-btn-icon.btn_light {
  background: none;
  color: #383838;
  border: 1px solid #808080;
}
.base-btn-icon.btn_light:hover {
  background: #383838;
  color: #ffffff;
  border-color: #383838;
}
.base-btn-icon:focus {
  text-decoration: none;
}
.humanitas-button-container {
  padding: 0 15px;
}
.humanitas-button-container.btn_center {
  text-align: center;
}
.humanitas-button-container.btn_left {
  text-align: left;
}
.humanitas-button-container.btn_right {
  text-align: right;
}
/*--------------------------------------------------------------
2.0 - Navigation
--------------------------------------------------------------*/
.site-header {
  position: fixed;
  display: block;
  min-height: 80px;
  width: 100%;
  z-index: 11000;
  background: #fff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.site-header #search-header-bar {
  width: 100%;
  background: rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid #e6e6e6;
  padding: 10px 0;
}
.site-header #search-header-bar form {
  display: block;
  position: relative;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 767px) {
  .site-header #search-header-bar form {
    width: 100%;
  }
}
.site-header #search-header-bar form:after {
  display: table;
  content: '';
  clear: both;
}
.site-header #search-header-bar form label {
  display: block;
  float: left;
  width: 70%;
}
.site-header #search-header-bar form label input {
  display: block;
  width: 100%;
  height: 30px;
  outline: 0;
  background: #ffffff;
  color: #4d4d4d;
  font-size: 14px;
  line-height: 30px;
  padding: 0 15px;
  border: none;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.site-header #search-header-bar form input[type="submit"] {
  display: block;
  position: relative;
  outline: 0;
  padding: 0;
  width: 30%;
  height: 30px;
  border: none;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  background: #d9d9d9;
  background: #333333;
  color: #ffffff;
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.site-header #search-header-bar form input[type="submit"]:hover {
  background: #ec4050;
}
.site-header .site-title-text {
  padding: 25px 0;
  line-height: 30px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.site-header .site-title-text a {
  color: #ec4050;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.site-header .site-title-text a:hover {
  color: #383838;
}
.site-header .site-title-img {
  display: block;
  padding: 15px 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.site-header .site-title-img img {
  max-height: 50px;
  width: auto;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.site-header .site-title-img img:hover {
  opacity: .8;
}
.site-header .site-title-img.no_logo_paddings {
  padding: 0;
}
.site-header .site-title-img.no_logo_paddings img {
  max-height: 80px;
}
@media all and (max-width: 767px) {
  .site-header {
    min-height: 50px;
  }
  .site-header .site-title-img {
    padding: 5px 0;
  }
  .site-header .site-title-img img {
    max-height: 40px;
  }
  .site-header .site-title-img.no_logo_paddings {
    padding: 0;
  }
  .site-header .site-title-img.no_logo_paddings img {
    max-height: 50px;
  }
  .site-header .site-title-text {
    padding: 10px 0;
  }
}
.site-header #search-button {
  display: block;
  position: absolute;
  right: 15px;
  top: 25px;
  width: 30px;
  height: 30px;
  border: 0;
  padding: 0;
  outline: 0;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  color: #ffffff;
  background: #ec4050;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.site-header #search-button:hover {
  background: #383838;
}
.site-header .menu-toggle {
  display: none;
  position: absolute;
  right: 60px;
  top: 25px;
  width: 30px;
  height: 30px;
  border: 0;
  padding: 0;
  outline: 0;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  color: #ffffff;
  background: #ec4050;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media all and (max-width: 767px) {
  .site-header .menu-toggle {
    display: block;
  }
}
.site-header .menu-toggle:hover {
  background: #383838;
}
@media all and (max-width: 767px) {
  .site-header #search-button,
  .site-header .menu-toggle {
    top: 10px;
  }
}
.site-header .main-navigation {
  position: relative;
}
.site-header .main-navigation .header-primary-menu {
  display: none;
}
.site-header .main-navigation .header-primary-menu > ul > li {
  display: inline-block;
  position: relative;
  padding: 0 20px;
}
@media all and (max-width: 1199px) {
  .site-header .main-navigation .header-primary-menu > ul > li {
    padding: 0 10px;
  }
  .site-header .main-navigation .header-primary-menu > ul > li:last-child {
    padding-right: 0;
  }
}
@media all and (max-width: 991px) {
  .site-header .main-navigation .header-primary-menu > ul > li {
    padding: 0 5px;
  }
  .site-header .main-navigation .header-primary-menu > ul > li:last-child {
    padding-right: 0;
  }
}
.site-header .main-navigation .header-primary-menu > ul > li > a {
  display: block;
  height: 30px;
  position: relative;
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;
  color: #4d4d4d;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.site-header .main-navigation .header-primary-menu > ul > li > a:hover {
  color: #ec4050;
}
.site-header .main-navigation .header-primary-menu > ul > li.current-menu-item > a {
  color: #ec4050;
}
.site-header .main-navigation .header-primary-menu > ul > li > ul li {
  display: block;
  position: relative;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.site-header .main-navigation .header-primary-menu > ul > li > ul li a {
  display: block;
  white-space: nowrap;
}
@media all and (min-width: 768px) {
  .site-header .main-navigation .header-primary-menu {
    display: block !important;
  }
  .site-header .main-navigation .header-primary-menu > ul {
    float: right;
    padding-right: 50px;
    padding-top: 25px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .site-header .main-navigation .header-primary-menu > ul > li {
    display: inline-block;
  }
  .site-header .main-navigation .header-primary-menu > ul > li:first-child {
    padding-left: 0;
  }
  .site-header .main-navigation .header-primary-menu > ul > li.current-menu-item > a:after {
    display: block;
    content: '';
    position: absolute;
    bottom: -25px;
    height: 3px;
    width: 100%;
    background: #ec4050;
  }
  .site-header .main-navigation .header-primary-menu > ul > li.current-menu-item > a:before {
    display: block;
    content: '';
    position: absolute;
    bottom: -23px;
    left: 50%;
    margin-left: -5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 7px 5px;
    border-color: transparent transparent #ec4050 transparent;
  }
  .site-header .main-navigation .header-primary-menu > ul > li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 25px;
  }
  .site-header .main-navigation .header-primary-menu > ul > li > ul li {
    padding: 10px 30px;
    background: #ec4050;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .site-header .main-navigation .header-primary-menu > ul > li > ul li:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .site-header .main-navigation .header-primary-menu > ul > li > ul li.menu-item-has-children:after {
    font-family: "FontAwesome";
    display: block;
    position: absolute;
    right: 10px;
    top: 0;
    line-height: 32px;
    content: "\f105";
    color: #ffffff;
  }
  .site-header .main-navigation .header-primary-menu > ul > li > ul li a {
    color: #ffffff;
  }
  .site-header .main-navigation .header-primary-menu > ul > li > ul li a:hover {
    color: #ffffff;
  }
  .site-header .main-navigation .header-primary-menu > ul > li > ul li > ul {
    display: none;
    position: absolute;
    top: -1px;
    left: 100%;
  }
  .site-header .main-navigation .header-primary-menu > ul > li > ul li > ul.ul-reversed {
    left: auto;
    right: 100%;
  }
  .site-header .main-navigation .header-primary-menu > ul > li > ul li > ul li:hover ul {
    display: block;
  }
  .site-header .main-navigation .header-primary-menu > ul > li > ul li:hover {
    padding: 10px 25px 10px 35px;
  }
  .site-header .main-navigation .header-primary-menu > ul > li > ul li:hover > ul {
    display: block;
  }
  .site-header .main-navigation .header-primary-menu > ul > li:hover > ul {
    display: block;
  }
}
@media all and (max-width: 767px) {
  .site-header .main-navigation .header-primary-menu > ul {
    position: relative;
    padding: 0;
    max-height: 248px;
    overflow-y: scroll;
  }
  .site-header .main-navigation .header-primary-menu > ul > li {
    display: block;
    width: 100%;
    padding: 5px 0;
    border-top: 1px solid #f2f2f2;
  }
  .site-header .main-navigation .header-primary-menu > ul > li a {
    color: #4d4d4d;
    line-height: 20px;
    height: 20px;
    padding: 0 15px;
  }
  .site-header .main-navigation .header-primary-menu > ul > li.menu-item-has-children {
    padding-bottom: 0;
  }
  .site-header .main-navigation .header-primary-menu > ul > li.menu-item-has-children ul {
    padding-top: 5px;
  }
  .site-header .main-navigation .header-primary-menu > ul > li.menu-item-has-children ul a {
    padding-left: 10px;
  }
  .site-header .main-navigation .header-primary-menu > ul > li ul li {
    border-top: 1px solid #f2f2f2;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .site-header .main-navigation .header-primary-menu > ul > li ul li:before {
    font-family: "FontAwesome";
    display: block;
    float: left;
    padding-right: 5px;
    padding-left: 20px;
    line-height: 20px;
    content: "\f105";
    color: #ec4050;
  }
  .site-header .main-navigation .header-primary-menu > ul > li ul li.menu-item-has-children {
    padding-bottom: 0;
  }
  .site-header .main-navigation .header-primary-menu > ul > li ul li.menu-item-has-children ul {
    padding-top: 5px;
  }
  .site-header .main-navigation .header-primary-menu > ul > li ul li.menu-item-has-children ul a {
    padding-left: 30px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .site-header .main-navigation .header-primary-menu > ul > li ul li.menu-item-has-children ul a:hover {
    color: #ec4050;
  }
}
@media all and (max-width: 767px) {
  .site-header .main-navigation {
    padding: 0;
  }
}
/*--------------------------------------------------------------
2.1 - Navigation Scrolled Down
--------------------------------------------------------------*/
@media all and (min-width: 768px) {
  .site-header.scrolled_nav {
    min-height: 50px;
  }
  .site-header.scrolled_nav .site-title-text {
    padding: 10px 0;
  }
  .site-header.scrolled_nav .site-title-img {
    padding: 0;
  }
  .site-header.scrolled_nav #search-button,
  .site-header.scrolled_nav .menu-toggle {
    top: 10px;
  }
  .site-header.scrolled_nav .main-navigation .header-primary-menu > ul {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    padding-top: 10px;
  }
  .site-header.scrolled_nav .main-navigation .header-primary-menu > ul > li.current-menu-item > a:after {
    bottom: -10px;
  }
  .site-header.scrolled_nav .main-navigation .header-primary-menu > ul > li.current-menu-item > a:before {
    bottom: -8px;
  }
  .site-header.scrolled_nav .main-navigation .header-primary-menu > ul > li > ul {
    padding-top: 10px;
  }
}
.x-close:before {
  font-family: 'FontAwesome';
  content: '\f00d' !important;
}
/*--------------------------------------------------------------
2.2 - Admin Bar
--------------------------------------------------------------*/
.site-content {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .site-content {
    padding-top: 50px;
  }
}
.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
@media screen and (max-width: 600px) {
  .admin-bar .site-header {
    top: 0;
  }
  .admin-bar .site-content {
    margin-top: 4px;
    padding-top: 46px;
  }
  .admin-bar .z_index_admin_bar {
    z-index: 10999 !important;
  }
  .admin-bar .header-bars-animated,
  .admin-bar .vc-bars {
    margin-top: 0;
  }
}
#search-header-bar {
  display: none;
}
#primary {
  padding-top: 80px;
  padding-bottom: 80px;
}
#primary.no-padding-top {
  padding-top: 0;
}
/*--------------------------------------------------------------
3.0 - Site Footer
--------------------------------------------------------------*/
#colophon {
  display: block;
  width: 100%;
  background: #1e2024;
}
#colophon .footer-container {
  padding-top: 45px;
  padding-bottom: 85px;
}
#colophon .footer-container .footer-heading {
  color: #e6e6e6;
  font-weight: 500;
}
#colophon .footer-container .footer-col {
  padding-top: 40px;
}
@media all and (max-width: 767px) {
  #colophon .footer-container .footer-col {
    clear: both;
  }
}
#colophon .footer-container .footer-col--text p {
  color: #f2f2f2;
  margin-top: 25px;
}
#colophon .footer-container .first-col .footer-logo-text a {
  line-height: inherit;
  color: #ec4050;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#colophon .footer-container .first-col .footer-logo-text a:hover {
  color: #ffffff;
}
#colophon .footer-container .first-col .footer-logo-img img {
  max-width: 100%;
  height: auto;
}
#colophon .footer-container .first-col p {
  color: #f2f2f2;
  margin-top: 15px;
}
#colophon .second-col #quick-links-items {
  padding-top: 20px;
}
#colophon .second-col #quick-links-items li a {
  display: block;
  line-height: 28px;
  font-size: 14px;
  font-weight: 500;
  color: #e6e6e6;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#colophon .second-col #quick-links-items li a:hover {
  color: #ec4050;
  padding-left: 5px;
}
#colophon .third-col .footer-tags {
  padding-top: 25px;
}
#colophon .third-col .footer-tags a {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  float: left;
  height: 34px;
  padding: 0 10px;
  margin-top: 5px;
  margin-right: 5px;
  color: #e6e6e6;
  font-weight: 500;
  line-height: 34px;
  background: rgba(255, 255, 255, 0.05);
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#colophon .third-col .footer-tags a:before {
  display: block;
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  right: 100%;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
#colophon .third-col .footer-tags a:hover {
  background: none;
  color: #ec4050;
}
#colophon .third-col .footer-tags a:hover:before {
  right: 0;
}
#colophon .fourth-col > p {
  color: #f2f2f2;
  margin-top: 25px;
}
#colophon .fourth-col #mc_embed_signup {
  padding-top: 20px;
}
#colophon .fourth-col #mc_embed_signup input[type="email"] {
  border: 0;
  outline: 0;
  display: block;
  width: 59%;
  margin-right: 1%;
  height: 40px;
  line-height: 40px;
  font-weight: 500;
  color: #383838;
  float: left;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.9);
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#colophon .fourth-col #mc_embed_signup input[type="submit"] {
  border: 0;
  padding: 0;
  outline: 0;
  display: block;
  width: 40%;
  height: 40px;
  line-height: 40px;
  color: #ffffff;
  font-weight: 500;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: #ec4050;
}
#colophon .fourth-col #mc_embed_signup input[type="submit"]:hover {
  background: rgba(255, 255, 255, 0.1);
}
#colophon .fourth-col #mc_embed_signup #mce_type_text {
  display: none;
}
#colophon .site-info {
  display: block;
  width: 100%;
  padding: 25px 0;
  background: #161719;
  text-align: center;
}
#colophon .site-info p {
  color: #b3b3b3;
  font-weight: 300;
}
#colophon .site-info p a {
  color: #ec4050;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#colophon .site-info p a:hover {
  color: #ffffff;
}
/*--------------------------------------------------------------
3.1 - Footer Social Icons
--------------------------------------------------------------*/
#footer-menu-social ul {
  display: block;
  width: 100%;
  padding-top: 30px;
}
#footer-menu-social ul li {
  display: block;
  float: left;
  padding-right: 4px;
  padding-top: 4px;
}
#footer-menu-social ul li a {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.05);
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  color: #ffffff;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#footer-menu-social ul li a:after {
  display: block;
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  right: 100%;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
#footer-menu-social ul li a:hover {
  background: none;
  color: #ec4050;
}
#footer-menu-social ul li a:hover:after {
  right: 0;
}
#footer-menu-social a:before {
  font-family: 'FontAwesome';
  content: '\f0e7';
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#footer-menu-social a[href*="facebook."]:before {
  content: '\f09a';
}
#footer-menu-social a[href*="twitter."]:before {
  content: '\f099';
}
#footer-menu-social a[href*="soundcloud."]:before {
  content: '\f1be';
}
#footer-menu-social a[href*="instagram."]:before {
  content: '\f16d';
}
#footer-menu-social a[href*="youtube."]:before {
  content: '\f16a';
}
#footer-menu-social a[href*="vimeo."]:before {
  content: '\f27d';
}
#footer-menu-social a[href*="odnoklassniki."]:before {
  content: '\f263';
}
#footer-menu-social a[href*="pinterest."]:before {
  content: '\f0d2';
}
#footer-menu-social a[href*="linkedin."]:before {
  content: '\f0e1';
}
#footer-menu-social a[href*="behance."]:before {
  content: '\f1b4';
}
#footer-menu-social a[href*="amazon."]:before {
  content: '\f270';
}
#footer-menu-social a[href*="apple."]:before {
  content: '\f179';
}
#footer-menu-social a[href*="google."]:before {
  content: '\f1a0';
}
#footer-menu-social a[href*="spotify."]:before {
  content: '\f1bc';
}
/*--------------------------------------------------------------
4.0 - Entry Header
--------------------------------------------------------------*/
.entry-header .entry-title {
  font-weight: 500;
  padding-bottom: 10px;
}
.entry-header .entry-title a {
  color: #383838;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.entry-header .entry-title a:hover {
  color: #ec4050;
}
.entry-header .entry-meta {
  padding-bottom: 10px;
}
.entry-header .entry-meta i {
  padding-right: 5px;
  color: #ec4050;
}
.entry-header .entry-meta .span-user,
.entry-header .entry-meta .span-date,
.entry-header .entry-meta .span-cat,
.entry-header .entry-meta .span-comm,
.entry-header .entry-meta .span-sticky {
  display: inline-block;
  padding: 5px 20px 0 0;
  font-family: 'Lato', sans-serif;
  color: #808080;
  font-weight: 400;
}
.entry-header .entry-meta .span-user a,
.entry-header .entry-meta .span-date a,
.entry-header .entry-meta .span-cat a,
.entry-header .entry-meta .span-comm a,
.entry-header .entry-meta .span-sticky a {
  color: #808080;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}
.entry-header .entry-meta .span-user a:hover,
.entry-header .entry-meta .span-date a:hover,
.entry-header .entry-meta .span-cat a:hover,
.entry-header .entry-meta .span-comm a:hover,
.entry-header .entry-meta .span-sticky a:hover {
  color: #ec4050;
}
.entry-header img {
  padding-top: 20px;
  padding-bottom: 20px;
}
.entry-header.h-image-top img {
  padding-top: 0;
  padding-bottom: 30px;
}
.page-header {
  padding-bottom: 50px;
}
/*--------------------------------------------------------------
4.1 - Entry Content
--------------------------------------------------------------*/
.entry-content {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #4d4d4d;
}
.entry-content .post-password-form label {
  display: block;
  float: left;
}
.entry-content .post-password-form label input[type=password] {
  border: 1px solid #cccccc;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-right: none;
  margin-left: 5px;
}
.entry-content .post-password-form input[type=submit] {
  border: 1px solid #cccccc;
  background: #f2f2f2;
  padding: 1px 10px;
}
.entry-content img {
  max-width: 100%;
  height: auto;
}
.entry-content figure.wp-caption {
  margin-top: 15px;
}
.entry-content figure.wp-caption .wp-caption-text {
  display: block;
  width: 100%;
  background: #f2f2f2;
  border: 1px solid #e6e6e6;
  padding: 10px;
}
.entry-content p {
  padding-top: 15px;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  padding-bottom: 15px;
  margin-top: 15px;
}
.entry-content ul {
  list-style-type: circle;
  padding-left: 30px;
}
.entry-content ul li {
  font-family: 'Lato', sans-serif;
  color: #4d4d4d;
  padding-bottom: 5px;
  padding-top: 5px;
  line-height: 20px;
}
.entry-content ol {
  list-style-type: decimal-leading-zero;
  padding-left: 30px;
}
.entry-content ol li {
  font-family: 'Lato', sans-serif;
  color: #4d4d4d;
  padding-bottom: 5px;
  padding-top: 5px;
  line-height: 20px;
}
.entry-content a {
  color: #ec4050;
}
.entry-content blockquote {
  display: block;
  width: 100%;
  background: #f2f2f2;
  text-align: center;
  border: 1px solid #e6e6e6;
  padding: 20px 20px 25px;
  margin: 15px 0;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.entry-content blockquote:before {
  display: block;
  width: 100%;
  text-align: center;
  content: '\f10d';
  font-family: 'FontAwesome';
  color: #ec4050;
  font-size: 22px;
  line-height: 22px;
}
.entry-content blockquote p {
  color: #808080;
  padding-top: 5px;
}
.entry-content table {
  margin-top: 15px;
  margin-bottom: 30px;
  text-align: left;
  border-collapse: collapse;
  border: 1px solid #cccccc;
  line-height: 20px;
}
.entry-content table a {
  color: #ec4050;
}
.entry-content table thead {
  background: #f2f2f2;
}
.entry-content table th,
.entry-content table td {
  padding: 5px 10px;
  border: 1px solid #cccccc;
}
.entry-content dl,
.entry-content address {
  line-height: 20px;
}
.entry-content .bootstrap-wrapper {
  margin-top: 30px;
}
/*--------------------------------------------------------------
4.1.1 - Templates Single Cause Content
--------------------------------------------------------------*/
.templates-single-cause .entry-header .entry-title {
  font-weight: 700;
  padding-bottom: 15px;
  text-align: center;
}
.templates-single-cause .entry-header .entry-meta {
  text-align: center;
}
.templates-single-cause .entry-header .s-cause-progress-button {
  padding-top: 15px;
  padding-bottom: 20px;
}
.templates-single-cause .entry-header .s-cause-progress-button .button-scrollTo {
  text-align: right;
}
.templates-single-cause .entry-header .s-cause-progress-button .button-scrollTo.left-aligned {
  text-align: left;
}
.templates-single-cause .entry-header .s-cause-progress-button .raised-text {
  padding-top: 5px;
}
.templates-single-cause .entry-header .s-cause-progress-button #s-cause-progress {
  display: block;
  margin-top: 15px;
  width: 100%;
}
.templates-single-cause .entry-header .s-cause-progress-button #s-cause-progress .progress {
  margin: 0 !important;
  height: 5px !important;
  background: #e6e6e6;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  box-shadow: 0;
}
.templates-single-cause .entry-header .s-cause-progress-button #s-cause-progress .progress .progress-bar {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #ec4050 !important;
}
.templates-single-cause .entry-header hr {
  margin-top: 15px;
  margin-bottom: 15px;
}
.templates-single-cause .entry-meta {
  padding-bottom: 20px;
}
.templates-single-cause .single-cause-content-form {
  margin-top: 70px;
}
.t-parts-content {
  padding-bottom: 60px;
}
/*--------------------------------------------------------------
4.2 - Entry Footer
--------------------------------------------------------------*/
.entry-footer {
  padding-top: 15px;
}
.entry-footer .base-btn-icon {
  display: block;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
}
.entry-footer .edit-link {
  display: inline-block;
  line-height: 30px;
}
.entry-footer .post-edit-link,
.entry-footer .vc_inline-link {
  display: inline-block;
  margin-top: 5px;
  height: 30px;
  line-height: 28px;
  padding: 0 25px;
  border: 1px solid #cccccc;
  background: #fafafa;
  color: #4d4d4d;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-weight: 500;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.entry-footer .post-edit-link:hover,
.entry-footer .vc_inline-link:hover {
  background: #e6e6e6;
}
/*--------------------------------------------------------------
4.3 - Entry Tags
--------------------------------------------------------------*/
.entry-tags {
  display: block;
  width: 100%;
  padding-top: 30px;
}
.entry-tags a {
  display: inline-block;
  height: 25px;
  line-height: 25px;
  background: #e6e6e6;
  padding: 0 20px;
  margin-right: 5px;
  margin-top: 5px;
  color: #383838;
  font-size: 13px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.entry-tags a:hover {
  background: #ec4050;
  color: #ffffff;
}
/*--------------------------------------------------------------
4.4 - Author box
--------------------------------------------------------------*/
.author-info {
  display: block;
  width: 100%;
  margin-top: 50px;
  border-top: 1px solid #e6e6e6;
  padding-top: 40px;
}
.author-info .author-avatar {
  display: block;
  float: left;
  margin-right: 20px;
}
.author-info .author-url {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  background: #f2f2f2;
  border: 1px solid #e6e6e6;
  padding: 0 20px;
  color: #383838;
  margin-top: 7px;
}
.author-info .author-url:hover {
  border-color: #cccccc;
}
/*--------------------------------------------------------------
4.5 - Pagination with numbers
--------------------------------------------------------------*/
.numbers-pagination-wrapper {
  display: block;
  padding-top: 30px;
}
.numbers-pagination-wrapper .bordered-pagination {
  display: inline-block;
  border: 1px solid #cccccc;
  background: #fafafa;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.numbers-pagination-wrapper .bordered-pagination .page-numbers {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  min-width: 30px;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #4d4d4d;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.numbers-pagination-wrapper .bordered-pagination .page-numbers.current {
  color: #ec4050;
}
.numbers-pagination-wrapper .bordered-pagination .page-numbers.next {
  width: 50px;
  border-left: 1px solid #cccccc;
}
.numbers-pagination-wrapper .bordered-pagination .page-numbers.prev {
  width: 50px;
  border-right: 1px solid #cccccc;
}
.numbers-pagination-wrapper .bordered-pagination .page-numbers.page-number-of-total {
  padding: 0 15px;
  border-right: 1px solid #cccccc;
  text-transform: uppercase;
}
.numbers-pagination-wrapper .bordered-pagination .page-numbers:hover {
  color: #ec4050;
}
@media all and (max-width: 600px) {
  .numbers-pagination-wrapper .bordered-pagination {
    padding-right: 5px;
  }
  .numbers-pagination-wrapper .bordered-pagination .page-numbers.next,
  .numbers-pagination-wrapper .bordered-pagination .page-numbers.prev {
    display: none;
  }
  .numbers-pagination-wrapper .bordered-pagination .page-numbers.page-number-of-total {
    border-right: none;
  }
}
.archive-cause-grid .numbers-pagination-wrapper {
  text-align: center;
}
.split-post-pagination {
  display: block;
  padding-top: 30px;
}
.split-post-pagination p {
  display: inline-block;
  border: 1px solid #cccccc;
  background: #f7f7f7;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  padding: 0  5px 0 15px;
  line-height: 30px;
  color: #333333;
}
.split-post-pagination p .one-page {
  display: inline-block;
  padding: 0 10px;
  color: #ec4050;
}
.split-post-pagination p a .one-page {
  color: #333333;
}
.split-post-pagination p a:hover .one-page {
  color: #ec4050;
}
/*--------------------------------------------------------------
4.6 - Post Navigation
--------------------------------------------------------------*/
.post-navigation {
  display: block;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}
.post-navigation .nav-links {
  display: block;
  width: 100%;
}
.post-navigation .nav-links .nav-previous,
.post-navigation .nav-links .nav-next {
  display: block;
  position: relative;
  width: 50%;
  float: left;
}
.post-navigation .nav-links .nav-previous a,
.post-navigation .nav-links .nav-next a {
  display: inline-block;
  position: relative;
  padding: 12px 15px;
  color: #383838;
  background: #f2f2f2;
  border: 1px solid #e6e6e6;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 14px;
  line-height: 14px;
  font-family: 'Lato', sans-serif;
}
.post-navigation .nav-links .nav-previous a:hover,
.post-navigation .nav-links .nav-next a:hover {
  border-color: #cccccc;
}
.post-navigation .nav-links .nav-next {
  float: right;
  text-align: right;
}
.post-navigation .nav-links .nav-next a {
  padding-right: 35px;
}
.post-navigation .nav-links .nav-next a:after {
  display: block;
  position: absolute;
  right: 15px;
  top: 12px;
  content: '\f101';
  font-family: 'FontAwesome';
  padding-right: 5px;
}
.post-navigation .nav-links .nav-previous a {
  padding-left: 35px;
}
.post-navigation .nav-links .nav-previous a:before {
  position: absolute;
  left: 15px;
  top: 12px;
  display: block;
  content: '\f100';
  font-family: 'FontAwesome';
  padding-right: 5px;
}
@media all and (max-width: 991px) {
  .post-navigation .nav-links .nav-previous,
  .post-navigation .nav-links .nav-next {
    width: 100%;
    float: none;
    text-align: left;
  }
  .post-navigation .nav-links .nav-previous:after,
  .post-navigation .nav-links .nav-next:after {
    display: table;
    content: '';
    clear: both;
  }
  .post-navigation .nav-links .nav-next {
    margin-top: 15px;
  }
}
/*--------------------------------------------------------------
4.7 - Sidebar - Widget area
--------------------------------------------------------------*/
.widget-area {
  padding-top: 60px;
  font-family: 'Lato', sans-serif;
}
.widget-area img {
  max-width: 100%;
  height: auto;
}
.widget-area select {
  display: block;
  width: 100%;
  max-width: 100%;
}
.widget-area select option {
  display: block;
  width: 100%;
  max-width: 300px;
}
.widget-area .widget-title {
  display: block;
  position: relative;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 16px;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e6e6e6;
  font-family: 'Raleway', sans-serif;
}
.widget-area .widget-title:after {
  display: block;
  position: absolute;
  content: '';
  bottom: -2px;
  left: 0;
  width: 30%;
  height: 3px;
  background: #ec4050;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.widget-area .widget {
  margin: 0;
  padding-bottom: 60px;
}
.widget-area .widget:hover .widget-title:after {
  width: 40%;
}
.widget-area .widget.widget_categories ul li {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #e6e6e6;
  line-height: 20px;
  font-size: 14px;
  text-align: right;
}
.widget-area .widget.widget_categories ul li:after {
  display: table;
  content: '';
  clear: both;
}
.widget-area .widget.widget_categories ul li a {
  display: inline-block;
  float: left;
  text-align: left;
  text-decoration: none;
  color: #4d4d4d;
  line-height: 20px;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.widget-area .widget.widget_categories ul li a:hover {
  color: #ec4050;
}
.widget-area .widget.widget_categories ul.children {
  padding-top: 8px;
}
.widget-area .widget.widget_categories ul.children li:first-child {
  border-top: 1px solid #e6e6e6;
}
.widget-area .widget.widget_categories ul.children li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.widget-area .widget.widget_search form:after {
  display: table;
  content: '';
  clear: both;
}
.widget-area .widget.widget_search .widget-title {
  margin-bottom: 30px;
}
.widget-area .widget.widget_search label {
  display: block;
  float: left;
  width: 65%;
}
.widget-area .widget.widget_search input[type="search"] {
  display: block;
  width: 100%;
  height: 40px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-right: none;
  font-size: 14px;
  line-height: 40px;
  margin: 0;
  padding: 0 10px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.widget-area .widget.widget_search input[type="submit"] {
  display: block;
  float: left;
  width: 35%;
  height: 40px;
  font-size: 14px;
  line-height: 40px;
  padding: 0;
  border: 1px solid #e6e6e6;
  border-left: none;
  background: #e6e6e6;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  color: #4d4d4d;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.widget-area .widget.widget_search input[type="submit"]:hover {
  background: #cccccc;
}
.widget-area .widget.widget_archive li,
.widget-area .widget.widget_meta li,
.widget-area .widget.widget_recent_comments li,
.widget-area .widget.widget_recent_entries li,
.widget-area .widget.widget_pages li,
.widget-area .widget.widget_nav_menu li {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #e6e6e6;
  line-height: 20px;
  font-size: 14px;
}
.widget-area .widget.widget_archive li a,
.widget-area .widget.widget_meta li a,
.widget-area .widget.widget_recent_comments li a,
.widget-area .widget.widget_recent_entries li a,
.widget-area .widget.widget_pages li a,
.widget-area .widget.widget_nav_menu li a {
  text-decoration: none;
  color: #4d4d4d;
  line-height: 20px;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.widget-area .widget.widget_archive li a:hover,
.widget-area .widget.widget_meta li a:hover,
.widget-area .widget.widget_recent_comments li a:hover,
.widget-area .widget.widget_recent_entries li a:hover,
.widget-area .widget.widget_pages li a:hover,
.widget-area .widget.widget_nav_menu li a:hover {
  color: #ec4050;
}
.widget-area .widget.widget_recent_entries .post-date {
  font-size: 12px;
}
.widget-area .widget.widget_nav_menu ul li {
  border: none;
}
.widget-area .widget.widget_nav_menu ul li.menu-item-has-children {
  padding-bottom: 0;
}
.widget-area .widget.widget_nav_menu ul li.menu-item-has-children ul {
  padding-left: 10px;
}
.widget-area .widget.widget_nav_menu ul li.menu-item-has-children ul li:last-child {
  padding-bottom: 0;
}
.widget-area .widget.widget_calendar .calendar_wrap {
  display: block;
  width: 100%;
}
.widget-area .widget.widget_calendar .calendar_wrap > table {
  width: 100%;
}
.widget-area .widget.widget_calendar .calendar_wrap > table caption {
  text-align: left;
  padding-bottom: 5px;
}
.widget-area .widget.widget_calendar .calendar_wrap > table thead tr th {
  text-align: left;
  padding-bottom: 5px;
}
.widget-area .widget.widget_calendar .calendar_wrap > table tbody tr td {
  text-align: left;
  padding: 3px 0;
}
.widget-area .widget.widget_calendar .calendar_wrap > table tbody tr td#today,
.widget-area .widget.widget_calendar .calendar_wrap > table tbody tr td a {
  color: #ec4050;
}
.widget-area .widget.widget_calendar .calendar_wrap > table tfoot tr td {
  padding-top: 5px;
}
.widget-area .widget.widget_calendar .calendar_wrap > table tfoot tr td a {
  text-decoration: none;
  color: #ec4050;
}
.widget-area .widget.widget_rss .widget-title img {
  height: 18px;
  width: auto;
}
.widget-area .widget.widget_rss .widget-title a {
  line-height: 18px;
  color: #383838;
  text-decoration: none;
}
.widget-area .widget.widget_rss ul {
  padding: 0;
}
.widget-area .widget.widget_rss ul li {
  padding-top: 15px;
}
.widget-area .widget.widget_rss ul li .rsswidget {
  color: #383838;
  font-weight: 600;
}
.widget-area .widget.widget_rss ul li .rsswidget:hover {
  color: #ec4050;
}
.widget-area .widget.widget_rss ul li .rssSummary {
  line-height: 22px;
  font-weight: 400;
}
.widget-area .widget.widget_rss ul li cite {
  font-weight: 700;
  color: #4d4d4d;
}
.widget-area .widget.widget_tag_cloud .tagcloud:after {
  display: table;
  content: '';
  clear: both;
}
.widget-area .widget.widget_tag_cloud .tagcloud a {
  display: block;
  float: left;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 34px;
  padding: 0 25px;
  margin-top: 5px;
  margin-right: 5px;
  color: #383838;
  font-weight: 500;
  font-size: 14px !important;
  line-height: 34px;
  background: #e6e6e6;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.widget-area .widget.widget_tag_cloud .tagcloud a:before {
  display: block;
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  right: 100%;
  background: #ec4050;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.widget-area .widget.widget_tag_cloud .tagcloud a:hover {
  background: none;
  color: #ffffff;
}
.widget-area .widget.widget_tag_cloud .tagcloud a:hover:before {
  right: 0;
}
.widget-area .mg_top_donors_widget li {
  line-height: 20px;
  padding: 8px 0;
  border-bottom: 1px solid #e6e6e6;
}
@media all and (min-width: 768px) and (max-width: 991px) {
  .widget-area .mg_top_donors_widget li .mg_widgetAmount {
    float: none !important;
  }
}
.widget-area .mg_donations_wrap .mg_widgetPanel {
  line-height: 20px;
  padding: 8px 0;
  border-bottom: 1px solid #e6e6e6;
}
.widget-area .mg_donations_wrap .mg_widgetPanel .mg_widgetName {
  margin-bottom: 0;
}
@media all and (min-width: 767px) {
  .widget-area {
    padding-left: 45px;
    padding-top: 0;
  }
}
/*--------------------------------------------------------------
4.8 - Footer Widgets
--------------------------------------------------------------*/
.footer-widgets {
  padding: 100px 0 20px;
  border-top: 1px solid #e6e6e6;
}
@media all and (min-width: 1200px) {
  .footer-widgets .widget:nth-child(2) {
    padding: 0 60px;
  }
  .footer-widgets .widget:nth-child(1) {
    padding-right: 60px;
  }
  .footer-widgets .widget:nth-child(3) {
    padding-left: 60px;
  }
}
/*--------------------------------------------------------------
4.8 - Comments
--------------------------------------------------------------*/
.comments-area {
  display: block;
  width: 100%;
  padding-top: 50px;
}
.comments-area .comments-title {
  display: block;
  width: 100%;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding-bottom: 10px;
  text-transform: uppercase;
  border-bottom: 1px solid #e6e6e6;
}
.comments-area .comments-title span {
  text-transform: none;
  font-weight: 400;
}
.comments-area .comments-title:after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100px;
  height: 3px;
  background: #ec4050;
}
.comments-area .comment-navigation {
  display: block;
  width: 100%;
}
.comments-area .comment-navigation .nav-links {
  display: block;
  width: 100%;
  padding: 30px 0 0 0;
}
.comments-area .comment-navigation .nav-links:after {
  display: table;
  content: '';
  clear: both;
}
.comments-area .comment-navigation .nav-links .nav-previous {
  display: block;
  width: 50%;
  float: left;
}
.comments-area .comment-navigation .nav-links .nav-previous a {
  display: inline-block;
  height: 40px;
  background: #f2f2f2;
  font-weight: 700;
  font-size: 16px;
  line-height: 40px;
  color: #383838;
  padding: 0 30px;
  text-decoration: none;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #e6e6e6;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.comments-area .comment-navigation .nav-links .nav-previous a:hover {
  border-color: #cccccc;
}
.comments-area .comment-navigation .nav-links .nav-next {
  display: block;
  width: 50%;
  float: right;
  text-align: right;
}
.comments-area .comment-navigation .nav-links .nav-next a {
  display: inline-block;
  height: 40px;
  background: #f2f2f2;
  font-weight: 700;
  font-size: 16px;
  line-height: 40px;
  color: #383838;
  padding: 0 30px;
  text-decoration: none;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #e6e6e6;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.comments-area .comment-navigation .nav-links .nav-next a:hover {
  border-color: #cccccc;
}
@media all and (max-width: 991px) {
  .comments-area .comment-navigation .nav-links .nav-previous,
  .comments-area .comment-navigation .nav-links .nav-next {
    width: 100%;
    float: none;
    text-align: left;
  }
  .comments-area .comment-navigation .nav-links .nav-previous:after,
  .comments-area .comment-navigation .nav-links .nav-next:after {
    display: table;
    content: '';
    clear: both;
  }
  .comments-area .comment-navigation .nav-links .nav-next {
    margin-top: 15px;
  }
}
.comments-area .comment-list {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0 0 30px;
  list-style-type: none;
}
.comments-area .comment-list .children {
  padding-left: 30px;
}
@media all and (max-width: 991px) {
  .comments-area .comment-list .children {
    padding-left: 0;
  }
}
.comments-area .comment-list li .comment-body {
  display: block;
  position: relative;
  padding-top: 40px;
  padding-left: 100px;
  min-height: 125px;
}
.comments-area .comment-list li .comment-body:after {
  display: table;
  content: '';
  clear: both;
}
.comments-area .comment-list li .comment-body .comment-meta {
  display: block;
  position: relative;
}
.comments-area .comment-list li .comment-body .comment-meta:after {
  display: table;
  content: '';
  clear: both;
}
.comments-area .comment-list li .comment-body .comment-meta .vcard {
  display: block;
  float: left;
}
.comments-area .comment-list li .comment-body .comment-meta .vcard img {
  display: block;
  position: absolute;
  top: 0;
  left: -100px;
  width: 85px;
  height: 85px;
  margin-right: 20px;
  vertical-align: top;
}
.comments-area .comment-list li .comment-body .comment-meta .vcard .fn {
  display: inline-block;
  margin: 0;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  vertical-align: top;
}
.comments-area .comment-list li .comment-body .comment-meta .vcard .fn a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.comments-area .comment-list li .comment-body .comment-meta .vcard .fn a:hover {
  color: #ec4050;
}
.comments-area .comment-list li .comment-body .comment-meta .vcard span.says {
  display: none;
}
.comments-area .comment-list li .comment-body .comment-meta .comment-metadata {
  display: inline-block;
}
.comments-area .comment-list li .comment-body .comment-meta .comment-metadata a {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  line-height: 16px;
  padding-left: 20px;
  color: #999999;
}
.comments-area .comment-list li .comment-body .comment-meta .comment-metadata a.comment-edit-link {
  color: #4d4d4d;
  font-weight: 500;
}
.comments-area .comment-list li .comment-body .comment-meta .comment-metadata a:hover {
  color: #ec4050;
}
.comments-area .comment-list li .comment-body .comment-content {
  padding-top: 10px;
}
.comments-area .comment-list li .comment-body .comment-content h1,
.comments-area .comment-list li .comment-body .comment-content h2,
.comments-area .comment-list li .comment-body .comment-content h3,
.comments-area .comment-list li .comment-body .comment-content h4,
.comments-area .comment-list li .comment-body .comment-content h5,
.comments-area .comment-list li .comment-body .comment-content h6 {
  padding-bottom: 10px;
}
.comments-area .comment-list li .comment-body .comment-content address {
  line-height: 24px;
}
.comments-area .comment-list li .comment-body .comment-content ul {
  list-style-type: circle;
  padding-left: 30px;
}
.comments-area .comment-list li .comment-body .comment-content ul li {
  padding-bottom: 5px;
  padding-top: 5px;
  line-height: 18px;
}
.comments-area .comment-list li .comment-body .comment-content ol {
  list-style-type: decimal-leading-zero;
  padding-left: 30px;
}
.comments-area .comment-list li .comment-body .comment-content ol li {
  padding-bottom: 5px;
  padding-top: 5px;
  line-height: 18px;
}
.comments-area .comment-list li .comment-body .comment-content blockquote {
  font-style: italic;
  color: #808080;
}
.comments-area .comment-list li .comment-body .comment-content blockquote p {
  color: #808080;
}
.comments-area .comment-list li .comment-body .comment-content blockquote cite {
  font-style: normal;
  color: #383838;
}
.comments-area .comment-list li .comment-body .comment-content table {
  margin-top: 15px;
  margin-bottom: 30px;
  text-align: left;
  border-collapse: collapse;
  border: 1px solid #cccccc;
  line-height: 20px;
}
.comments-area .comment-list li .comment-body .comment-content table a {
  color: #ec4050;
}
.comments-area .comment-list li .comment-body .comment-content table thead {
  background: #f2f2f2;
}
.comments-area .comment-list li .comment-body .comment-content table th,
.comments-area .comment-list li .comment-body .comment-content table td {
  padding: 5px 10px;
  border: 1px solid #cccccc;
}
.comments-area .comment-list li .comment-body .reply a {
  display: inline-block;
  height: 25px;
  font-size: 14px;
  line-height: 25px;
  padding: 0 15px;
  color: #ffffff;
  margin-top: 10px;
  background: #ec4050;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.comments-area .comment-list li .comment-body .reply a:hover {
  background: #4d4d4d;
}
@media all and (max-width: 500px) {
  .comments-area .comment-list li .comment-body {
    padding-left: 50px;
  }
  .comments-area .comment-list li .comment-body .comment-meta .comment-metadata {
    display: block;
    width: 100%;
    padding-top: 10px;
  }
  .comments-area .comment-list li .comment-body .comment-meta .comment-metadata a {
    padding-left: 0;
  }
  .comments-area .comment-list li .comment-body .comment-meta .vcard {
    display: block;
    width: 100%;
  }
  .comments-area .comment-list li .comment-body .comment-meta .vcard .fn {
    display: block;
  }
  .comments-area .comment-list li .comment-body .comment-meta .vcard .fn:after {
    display: table;
    content: '';
    clear: both;
  }
  .comments-area .comment-list li .comment-body .comment-meta .vcard img {
    left: -50px;
    width: 35px;
    height: 35px;
    margin-right: 15px;
    vertical-align: top;
  }
}
.comments-area .comment-list li.pingback .comment-body {
  min-height: auto;
  padding-left: 0;
  padding-top: 20px;
}
.comments-area .comment-list li.pingback a.url {
  font-style: italic;
  color: #383838;
  font-size: 14px;
  line-height: 24px;
}
.comments-area .comment-list li.pingback a.url:hover {
  color: #ec4050;
}
.comments-area .comment-list li.pingback .edit-link a {
  color: #4d4d4d;
  font-weight: 500;
  padding-left: 15px;
  line-height: 24px;
}
.comments-area .comment-list li.pingback .edit-link a:hover {
  color: #ec4050;
}
.comments-area .comment-respond {
  display: block;
  width: 100%;
  padding-top: 50px;
}
.comments-area .comment-respond h3 {
  font-weight: 700;
  text-transform: uppercase;
}
.comments-area .comment-respond h3 #cancel-comment-reply-link {
  color: #ec4050;
}
.comments-area .comment-respond form {
  display: block;
  width: 100%;
}
.comments-area .comment-respond form p.logged-in-as {
  margin: 0;
}
.comments-area .comment-respond form p.logged-in-as a {
  display: inline-block;
  padding-top: 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #4d4d4d;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.comments-area .comment-respond form p.logged-in-as a:hover {
  color: #ec4050;
}
.comments-area .comment-respond form p.comment-notes {
  margin: 0;
}
.comments-area .comment-respond form p.comment-form-comment,
.comments-area .comment-respond form p.comment-form-author,
.comments-area .comment-respond form p.comment-form-email,
.comments-area .comment-respond form p.comment-form-url {
  margin: 0;
  padding-top: 15px;
}
.comments-area .comment-respond form p.comment-form-comment label,
.comments-area .comment-respond form p.comment-form-author label,
.comments-area .comment-respond form p.comment-form-email label,
.comments-area .comment-respond form p.comment-form-url label {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: #333333;
}
.comments-area .comment-respond form p.comment-form-comment label .required,
.comments-area .comment-respond form p.comment-form-author label .required,
.comments-area .comment-respond form p.comment-form-email label .required,
.comments-area .comment-respond form p.comment-form-url label .required {
  color: #ec4050;
}
.comments-area .comment-respond form p.comment-form-comment textarea,
.comments-area .comment-respond form p.comment-form-author textarea,
.comments-area .comment-respond form p.comment-form-email textarea,
.comments-area .comment-respond form p.comment-form-url textarea {
  display: block;
  width: 100%;
  margin-top: 5px;
  border: none;
  outline: 0;
  background: #f2f2f2;
  font-size: 16px;
  line-height: 20px;
  color: #383838;
  padding: 15px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #e6e6e6;
}
.comments-area .comment-respond form p.comment-form-comment textarea:focus,
.comments-area .comment-respond form p.comment-form-author textarea:focus,
.comments-area .comment-respond form p.comment-form-email textarea:focus,
.comments-area .comment-respond form p.comment-form-url textarea:focus {
  border-color: #cccccc;
}
.comments-area .comment-respond form p.comment-form-author input,
.comments-area .comment-respond form p.comment-form-email input,
.comments-area .comment-respond form p.comment-form-url input {
  display: block;
  width: 100%;
  margin-top: 5px;
  border: none;
  outline: 0;
  background: #f2f2f2;
  font-size: 16px;
  line-height: 20px;
  color: #383838;
  padding: 10px 15px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #e6e6e6;
}
.comments-area .comment-respond form p.comment-form-author input:focus,
.comments-area .comment-respond form p.comment-form-email input:focus,
.comments-area .comment-respond form p.comment-form-url input:focus {
  border-color: #cccccc;
}
.comments-area .comment-respond form p.form-submit {
  margin: 0;
  padding-bottom: 20px;
  padding-top: 20px;
}
.comments-area .comment-respond form p.form-submit input[name=submit] {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  color: #ffffff;
  text-transform: uppercase;
  padding: 12px 20px;
  text-decoration: none;
  border: none;
  background: #333333;
  outline: 0;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.comments-area .comment-respond form p.form-submit input[name=submit] i {
  font-size: 16px;
  line-height: 16px;
  vertical-align: top;
}
.comments-area .comment-respond form p.form-submit input[name=submit]:hover {
  background: #ec4050;
}
/*--------------------------------------------------------------
4.9 - Gallery
--------------------------------------------------------------*/
.gallery {
  display: block;
  position: relative;
  overflow: hidden;
  margin-top: 15px;
  margin-left: -3px;
  margin-right: -3px;
}
.gallery .gallery-item {
  display: block;
  position: relative;
  width: 100%;
  float: left;
  padding: 3px;
  overflow: hidden;
}
.gallery .gallery-item figcaption.wp-caption-text {
  font-family: 'Lato', sans-serif;
  display: block;
  position: absolute;
  bottom: -100%;
  left: 3px;
  right: 3px;
  background: #e6e6e6;
  color: #808080;
  font-size: 14px;
  font-weight: 300;
  line-height: 16px;
  padding: 10px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.gallery .gallery-item:hover figcaption.wp-caption-text {
  bottom: 0;
}
.gallery .gallery-item .gallery-icon a img {
  width: 100%;
  height: auto;
}
.gallery.gallery-columns-2 .gallery-item {
  width: 50%;
}
.gallery.gallery-columns-3 .gallery-item {
  width: 33.33333333%;
}
.gallery.gallery-columns-4 .gallery-item {
  width: 25%;
}
.gallery.gallery-columns-5 .gallery-item {
  width: 20%;
}
.gallery.gallery-columns-6 .gallery-item {
  width: 16.66666666%;
}
.gallery.gallery-columns-7 .gallery-item {
  width: 14.28571428%;
}
.gallery.gallery-columns-8 .gallery-item {
  width: 12.5%;
}
.gallery.gallery-columns-9 .gallery-item {
  width: 11.11111111%;
}
/*--------------------------------------------------------------
5.0 - 404
--------------------------------------------------------------*/
.error-404.not-found {
  text-align: center;
}
.error-404.not-found .big-text-404 {
  font-size: 100px;
  font-weight: 800;
  line-height: 100px;
  padding-bottom: 25px;
  font-family: 'Lato', sans-serif;
}
/*--------------------------------------------------------------
6.0 - VC Humanitas Breadcrumbs
--------------------------------------------------------------*/
.humanitas-breadcrumbs {
  display: block;
  width: 100%;
  padding: 90px 0;
  background: rgba(36, 40, 47, 0.75);
  text-align: center;
}
.humanitas-breadcrumbs .breadcrumb-title {
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
}
.humanitas-breadcrumbs .breadcrumbs-wrap {
  display: block;
  width: 100%;
  padding-top: 10px;
}
.humanitas-breadcrumbs .breadcrumbs-wrap .separator {
  padding: 0 5px;
  color: #ffffff;
}
.humanitas-breadcrumbs .breadcrumbs-wrap .item-home {
  display: inline-block;
  position: relative;
}
.humanitas-breadcrumbs .breadcrumbs-wrap .item-home:before {
  display: block;
  position: absolute;
  right: 100%;
  margin-right: 15px;
  top: 7px;
  content: '';
  width: 22px;
  height: 1px;
  background: #ec4050;
}
.humanitas-breadcrumbs .breadcrumbs-wrap .item-current {
  color: #ffffff;
  display: inline-block;
  position: relative;
  text-transform: capitalize;
}
.humanitas-breadcrumbs .breadcrumbs-wrap .item-current:after {
  display: block;
  position: absolute;
  left: 100%;
  margin-left: 15px;
  top: 7px;
  content: '';
  width: 22px;
  height: 1px;
  background: #ec4050;
}
.humanitas-breadcrumbs .breadcrumbs-wrap a {
  color: #ffffff;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.humanitas-breadcrumbs .breadcrumbs-wrap a:hover {
  color: #ec4050;
}
/*--------------------------------------------------------------
6.1 - VC Section Header
--------------------------------------------------------------*/
.section_header {
  padding: 0 15px;
  text-align: center;
}
.section_header .section-title {
  text-transform: uppercase;
  font-weight: 900;
}
.section_header .section-subtitle {
  display: inline-block;
  position: relative;
  margin-top: 15px;
  font-weight: 400;
}
.section_header .section-subtitle.side_lines {
  padding: 0 37px;
}
.section_header .section-subtitle.side_lines:before {
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  content: '';
  width: 22px;
  height: 1px;
  background: #ec4050;
}
.section_header .section-subtitle.side_lines:after {
  display: block;
  position: absolute;
  top: 8px;
  right: 0;
  content: '';
  width: 22px;
  height: 1px;
  background: #ec4050;
}
/*--------------------------------------------------------------
6.2 - VC Underline Section Header
--------------------------------------------------------------*/
.underline_section_header h4 {
  display: block;
  position: relative;
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e6e6e6;
}
.underline_section_header h4:after {
  display: block;
  position: absolute;
  content: '';
  bottom: -2px;
  left: 0;
  width: 75px;
  height: 3px;
  background: #ec4050;
}
.underline_section_header p {
  padding-bottom: 20px;
}
/*--------------------------------------------------------------
6.3 - VC Member Article
--------------------------------------------------------------*/
.member-article {
  padding-bottom: 35px;
}
.member-article .member-wrapper {
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.08);
}
.member-article .member-wrapper .img-wrapper {
  display: block;
  position: relative;
  overflow: hidden;
  background: #1e2024;
}
.member-article .member-wrapper .img-wrapper img {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.member-article .member-wrapper .img-wrapper .mask {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.member-article .member-wrapper .img-wrapper .mask ul {
  display: block;
  position: absolute;
  top: 60%;
  margin-top: -18px;
  width: 100%;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.member-article .member-wrapper .img-wrapper .mask ul li {
  display: inline-block;
  padding: 0 5px;
}
.member-article .member-wrapper .img-wrapper .mask ul li .social-btn-icon {
  display: block;
  width: 36px;
  height: 36px;
  background: #ec4050;
  color: #ffffff;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.member-article .member-wrapper .img-wrapper .mask ul li .social-btn-icon:hover {
  background: #ffffff;
  color: #383838;
}
.member-article .member-wrapper .img-wrapper .mask ul li .social-btn-icon:before {
  font-family: 'FontAwesome';
  content: '\f0e7';
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.member-article .member-wrapper .img-wrapper .mask ul li .social-btn-icon[href*="facebook."]:before {
  content: '\f09a';
}
.member-article .member-wrapper .img-wrapper .mask ul li .social-btn-icon[href*="twitter."]:before {
  content: '\f099';
}
.member-article .member-wrapper .img-wrapper .mask ul li .social-btn-icon[href*="soundcloud."]:before {
  content: '\f1be';
}
.member-article .member-wrapper .img-wrapper .mask ul li .social-btn-icon[href*="instagram."]:before {
  content: '\f16d';
}
.member-article .member-wrapper .img-wrapper .mask ul li .social-btn-icon[href*="youtube."]:before {
  content: '\f16a';
}
.member-article .member-wrapper .img-wrapper .mask ul li .social-btn-icon[href*="vimeo."]:before {
  content: '\f27d';
}
.member-article .member-wrapper .img-wrapper .mask ul li .social-btn-icon[href*="odnoklassniki."]:before {
  content: '\f263';
}
.member-article .member-wrapper .img-wrapper .mask ul li .social-btn-icon[href*="pinterest."]:before {
  content: '\f0d2';
}
.member-article .member-wrapper .img-wrapper .mask ul li .social-btn-icon[href*="linkedin."]:before {
  content: '\f0e1';
}
.member-article .member-wrapper .img-wrapper .mask ul li .social-btn-icon[href*="behance."]:before {
  content: '\f1b4';
}
.member-article .member-wrapper .img-wrapper .mask ul li .social-btn-icon[href*="amazon."]:before {
  content: '\f270';
}
.member-article .member-wrapper .img-wrapper .mask ul li .social-btn-icon[href*="apple."]:before {
  content: '\f179';
}
.member-article .member-wrapper .img-wrapper .mask ul li .social-btn-icon[href*="google."]:before {
  content: '\f1a0';
}
.member-article .member-wrapper .img-wrapper .mask ul li .social-btn-icon[href*="spotify."]:before {
  content: '\f1bc';
}
.member-article .member-wrapper .member-info {
  background: #ffffff;
  padding: 20px;
}
.member-article .member-wrapper .member-info h3 {
  font-weight: 500;
  margin-bottom: 10px;
}
.member-article .member-wrapper .member-info h5 {
  font-weight: 500;
  margin-bottom: 15px;
}
.member-article .member-wrapper:hover {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}
.member-article .member-wrapper:hover .img-wrapper img {
  opacity: .3;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2);
}
.member-article .member-wrapper:hover .mask ul {
  top: 50%;
}
.member-article .member-wrapper:hover .mask ul li .social-btn-icon {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
/*--------------------------------------------------------------
6.4 - VC Feature
--------------------------------------------------------------*/
.feature {
  display: block;
  position: relative;
  padding-top: 85px;
  text-align: center;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.feature .feature-icon {
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  font-size: 40px;
  color: #4d4d4d;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.feature h4 {
  margin-top: 25px;
  font-weight: 500;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.feature p {
  margin-top: 15px;
}
.feature .feature-btn {
  display: inline-block;
  height: 34px;
  line-height: 34px;
  padding: 0 20px;
  color: #ffffff;
  margin-top: 20px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0;
  background: #ec4050;
}
.feature .feature-btn:hover {
  background: #383838;
}
.feature:hover .feature-icon {
  color: #ec4050;
}
.feature:hover h4 {
  color: #ec4050;
}
.feature.feature_has_button:hover {
  padding-top: 70px;
  padding-bottom: 15px;
}
.feature.feature_has_button:hover .feature-btn {
  opacity: 1;
}
/*--------------------------------------------------------------
6.5 - VC Fullwidth Single Cause Parallax
--------------------------------------------------------------*/
.s-cause-fullwidth {
  display: block;
  width: 100%;
  background: rgba(36, 40, 47, 0.75);
  padding: 100px 0;
  text-align: center;
}
.s-cause-fullwidth .s-cause-title {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 900;
}
.s-cause-fullwidth .s-cause-subtitle {
  color: #ffffff;
  margin-top: 10px;
}
.s-cause-fullwidth .raised-text {
  margin-top: 45px;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
}
.s-cause-fullwidth #s-cause-progress {
  display: inline-block;
  margin-top: 10px;
  width: 40%;
}
@media all and (max-width: 767px) {
  .s-cause-fullwidth #s-cause-progress {
    width: 80%;
  }
}
.s-cause-fullwidth #s-cause-progress .progress {
  margin: 0 !important;
  height: 10px !important;
  background: #ffffff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  box-shadow: 0;
}
.s-cause-fullwidth #s-cause-progress .progress .progress-bar {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #ec4050 !important;
}
.s-cause-fullwidth .s-cause-button-wrapper {
  margin-top: 40px;
}
/*--------------------------------------------------------------
6.6 - VC Fullwidth Event Parallax
--------------------------------------------------------------*/
.event-fullwidth {
  display: block;
  width: 100%;
  background: rgba(36, 40, 47, 0.75);
  padding: 100px 0;
  text-align: center;
}
.event-fullwidth .event-title {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 900;
}
.event-fullwidth .date-location {
  display: block;
  color: #ffffff;
  padding-top: 10px;
}
.event-fullwidth .date-location .date-span {
  padding-right: 15px;
}
.event-fullwidth .event-paragraph {
  color: #ffffff;
  margin-top: 20px;
}
@media all and (min-width: 1200px) {
  .event-fullwidth .event-paragraph {
    padding-left: 18%;
    padding-right: 18%;
  }
}
.event-fullwidth .base-btn-icon {
  margin-top: 30px;
}
/*--------------------------------------------------------------
6.7 - VC Causes Isotope
--------------------------------------------------------------*/
#causes-filter {
  display: block;
  padding: 40px 15px 10px;
  text-align: center;
}
#causes-filter li {
  display: inline-block;
  padding: 5px 10px;
}
#causes-filter li a {
  text-decoration: none;
  display: inline-block;
  position: relative;
  height: 25px;
  line-height: 25px;
  padding: 0 15px;
  background: #e6e6e6;
  color: #383838;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#causes-filter li a.selected,
#causes-filter li a:hover {
  background: #ec4050;
  color: #ffffff;
}
#causes-filter li a.selected:after {
  display: block;
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ec4050;
}
#causes-filter.fullwidth-filters {
  width: 100%;
  background: #ec4050;
  padding: 20px 15px;
}
#causes-filter.fullwidth-filters li {
  padding: 5px;
}
#causes-filter.fullwidth-filters li a {
  background: #ffffff;
}
#causes-filter.fullwidth-filters li a.selected,
#causes-filter.fullwidth-filters li a:hover {
  background: #ffffff;
  color: #ec4050;
}
#causes-filter.fullwidth-filters li a.selected:after {
  border-top-color: #ffffff;
}
#causes-list,
#causes-list-sidebar {
  display: block;
  width: 100%;
}
#causes-list .cause-item,
#causes-list-sidebar .cause-item {
  padding-top: 30px;
  padding-bottom: 20px;
}
#causes-list .cause-item.cause-item-list,
#causes-list-sidebar .cause-item.cause-item-list {
  padding-top: 15px;
  padding-bottom: 15px;
}
#causes-list .cause,
#causes-list-sidebar .cause {
  display: block;
  position: relative;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#causes-list .cause .img-wrapper,
#causes-list-sidebar .cause .img-wrapper {
  display: block;
  position: relative;
  overflow: hidden;
  background: #1e2024;
}
#causes-list .cause .img-wrapper img,
#causes-list-sidebar .cause .img-wrapper img {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#causes-list .cause .img-wrapper .absolute-btn-wrapper,
#causes-list-sidebar .cause .img-wrapper .absolute-btn-wrapper {
  display: block;
  position: absolute;
  width: 100%;
  top: 50%;
  margin-top: -20px;
  left: 0;
  text-align: center;
}
#causes-list .cause .img-wrapper .absolute-btn-wrapper a,
#causes-list-sidebar .cause .img-wrapper .absolute-btn-wrapper a {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
}
#causes-list .cause .raised-text,
#causes-list-sidebar .cause .raised-text {
  margin-top: 20px;
}
#causes-list .cause .cause-content,
#causes-list-sidebar .cause .cause-content {
  display: block;
  background: #ffffff;
  padding: 20px 20px 30px;
}
#causes-list .cause .cause-content h4 a,
#causes-list-sidebar .cause .cause-content h4 a {
  color: #ec4050;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#causes-list .cause .cause-content h4 a:hover,
#causes-list-sidebar .cause .cause-content h4 a:hover {
  color: #383838;
}
#causes-list .cause .cause-content p,
#causes-list-sidebar .cause .cause-content p {
  margin-top: 15px;
}
#causes-list .cause .cause-content p .cause-read-more,
#causes-list-sidebar .cause .cause-content p .cause-read-more {
  color: #383838;
  font-weight: 500;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#causes-list .cause .cause-content p .cause-read-more:hover,
#causes-list-sidebar .cause .cause-content p .cause-read-more:hover {
  color: #ec4050;
}
#causes-list .cause .cause-content .cause-progress,
#causes-list-sidebar .cause .cause-content .cause-progress {
  display: block;
  margin-top: 10px;
  width: 100%;
}
#causes-list .cause .cause-content .cause-progress .progress,
#causes-list-sidebar .cause .cause-content .cause-progress .progress {
  margin: 0 !important;
  height: 6px !important;
  background: #e6e6e6;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  box-shadow: 0;
  overflow: hidden !important;
}
#causes-list .cause .cause-content .cause-progress .progress .progress-bar,
#causes-list-sidebar .cause .cause-content .cause-progress .progress .progress-bar {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #ec4050 !important;
}
#causes-list .cause.cause-list,
#causes-list-sidebar .cause.cause-list {
  background: #ffffff;
  padding: 30px 15px;
  /* == cause-content-page-list == */
}
#causes-list .cause.cause-list .cause-content,
#causes-list-sidebar .cause.cause-list .cause-content {
  padding: 0;
  background: none;
}
@media all and (min-width: 1200px) {
  #causes-list .cause.cause-list .cause-content,
  #causes-list-sidebar .cause.cause-list .cause-content {
    padding-top: 20px;
    padding-left: 30px;
  }
}
@media all and (max-width: 767px) {
  #causes-list .cause.cause-list .cause-content,
  #causes-list-sidebar .cause.cause-list .cause-content {
    padding-top: 30px;
  }
}
#causes-list .cause.cause-list .cause-content h4 a,
#causes-list-sidebar .cause.cause-list .cause-content h4 a {
  color: #383838;
  font-size: 20px;
  font-weight: 700;
}
#causes-list .cause.cause-list .cause-content h4 a:hover,
#causes-list-sidebar .cause.cause-list .cause-content h4 a:hover {
  color: #ec4050;
}
#causes-list .cause.cause-list .cause-content p,
#causes-list-sidebar .cause.cause-list .cause-content p {
  font-size: 16px;
}
#causes-list .cause.cause-list .cause-content .raised-text,
#causes-list-sidebar .cause.cause-list .cause-content .raised-text {
  margin-top: 30px;
}
#causes-list .cause.cause-list .cause-content .base-btn-icon,
#causes-list-sidebar .cause.cause-list .cause-content .base-btn-icon {
  margin-top: 30px;
}
#causes-list .cause.cause-sidebar,
#causes-list-sidebar .cause.cause-sidebar {
  margin-bottom: 50px;
}
#causes-list .cause.cause-sidebar .cause-content h2,
#causes-list-sidebar .cause.cause-sidebar .cause-content h2 {
  font-weight: 500;
  padding-bottom: 10px;
}
#causes-list .cause.cause-sidebar .cause-content h2 a,
#causes-list-sidebar .cause.cause-sidebar .cause-content h2 a {
  color: #383838;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#causes-list .cause.cause-sidebar .cause-content h2 a:hover,
#causes-list-sidebar .cause.cause-sidebar .cause-content h2 a:hover {
  color: #ec4050;
}
#causes-list .cause.cause-sidebar .cause-content .entry-meta,
#causes-list-sidebar .cause.cause-sidebar .cause-content .entry-meta {
  padding-bottom: 10px;
}
#causes-list .cause.cause-sidebar .cause-content .entry-meta i,
#causes-list-sidebar .cause.cause-sidebar .cause-content .entry-meta i {
  padding-right: 5px;
  color: #ec4050;
}
#causes-list .cause.cause-sidebar .cause-content .entry-meta .span-user,
#causes-list-sidebar .cause.cause-sidebar .cause-content .entry-meta .span-user,
#causes-list .cause.cause-sidebar .cause-content .entry-meta .span-date,
#causes-list-sidebar .cause.cause-sidebar .cause-content .entry-meta .span-date,
#causes-list .cause.cause-sidebar .cause-content .entry-meta .span-cat,
#causes-list-sidebar .cause.cause-sidebar .cause-content .entry-meta .span-cat,
#causes-list .cause.cause-sidebar .cause-content .entry-meta .span-comm,
#causes-list-sidebar .cause.cause-sidebar .cause-content .entry-meta .span-comm,
#causes-list .cause.cause-sidebar .cause-content .entry-meta .span-sticky,
#causes-list-sidebar .cause.cause-sidebar .cause-content .entry-meta .span-sticky {
  display: inline-block;
  padding: 5px 20px 0 0;
  font-family: 'Lato', sans-serif;
  color: #808080;
  font-weight: 400;
}
#causes-list .cause.cause-sidebar .cause-content .entry-meta .span-user a,
#causes-list-sidebar .cause.cause-sidebar .cause-content .entry-meta .span-user a,
#causes-list .cause.cause-sidebar .cause-content .entry-meta .span-date a,
#causes-list-sidebar .cause.cause-sidebar .cause-content .entry-meta .span-date a,
#causes-list .cause.cause-sidebar .cause-content .entry-meta .span-cat a,
#causes-list-sidebar .cause.cause-sidebar .cause-content .entry-meta .span-cat a,
#causes-list .cause.cause-sidebar .cause-content .entry-meta .span-comm a,
#causes-list-sidebar .cause.cause-sidebar .cause-content .entry-meta .span-comm a,
#causes-list .cause.cause-sidebar .cause-content .entry-meta .span-sticky a,
#causes-list-sidebar .cause.cause-sidebar .cause-content .entry-meta .span-sticky a {
  color: #808080;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}
#causes-list .cause.cause-sidebar .cause-content .entry-meta .span-user a:hover,
#causes-list-sidebar .cause.cause-sidebar .cause-content .entry-meta .span-user a:hover,
#causes-list .cause.cause-sidebar .cause-content .entry-meta .span-date a:hover,
#causes-list-sidebar .cause.cause-sidebar .cause-content .entry-meta .span-date a:hover,
#causes-list .cause.cause-sidebar .cause-content .entry-meta .span-cat a:hover,
#causes-list-sidebar .cause.cause-sidebar .cause-content .entry-meta .span-cat a:hover,
#causes-list .cause.cause-sidebar .cause-content .entry-meta .span-comm a:hover,
#causes-list-sidebar .cause.cause-sidebar .cause-content .entry-meta .span-comm a:hover,
#causes-list .cause.cause-sidebar .cause-content .entry-meta .span-sticky a:hover,
#causes-list-sidebar .cause.cause-sidebar .cause-content .entry-meta .span-sticky a:hover {
  color: #ec4050;
}
#causes-list .cause.cause-sidebar .cause-content .base-btn-icon,
#causes-list-sidebar .cause.cause-sidebar .cause-content .base-btn-icon {
  margin-top: 30px;
}
#causes-list .cause:hover,
#causes-list-sidebar .cause:hover {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}
#causes-list .cause:hover .img-wrapper .absolute-btn-wrapper a,
#causes-list-sidebar .cause:hover .img-wrapper .absolute-btn-wrapper a {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
#causes-list .cause:hover .img-wrapper img,
#causes-list-sidebar .cause:hover .img-wrapper img {
  opacity: .3;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2);
}
#causes-list.causes-row-padding-top,
#causes-list-sidebar.causes-row-padding-top {
  padding-top: 30px;
}
/*--------------------------------------------------------------
6.8 - VC Posts Shortcode
--------------------------------------------------------------*/
.posts-row {
  display: block;
  width: 100%;
  padding-top: 20px;
}
.posts-row .post-col {
  padding-top: 30px;
}
.posts-row .humanitas-post {
  display: block;
  position: relative;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.posts-row .humanitas-post .img-wrapper {
  display: block;
  position: relative;
  overflow: hidden;
  background: #1e2024;
}
.posts-row .humanitas-post .img-wrapper img {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.posts-row .humanitas-post .img-wrapper .absolute-date {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: center;
  width: 75px;
  height: 75px;
  color: #ffffff;
  background: #ec4050;
}
.posts-row .humanitas-post .img-wrapper .absolute-date .date-day {
  display: block;
  width: 100;
  font-size: 36px;
  line-height: 40px;
  padding-top: 8px;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}
.posts-row .humanitas-post .img-wrapper .absolute-date .month-year {
  font-size: 10px;
  line-height: 15px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.posts-row .humanitas-post .post-content {
  display: block;
  background: #ffffff;
  padding: 20px 20px 25px;
}
.posts-row .humanitas-post .post-content h4 a {
  color: #383838;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.posts-row .humanitas-post .post-content h4 a:hover {
  color: #ec4050;
}
.posts-row .humanitas-post .post-content p {
  margin-top: 15px;
}
.posts-row .humanitas-post .post-content .post-footer-wrapper {
  padding-top: 15px;
}
.posts-row .humanitas-post .post-content .post-footer-wrapper .base-btn-icon {
  display: inline-block;
  float: left;
  margin-right: 15px;
}
.posts-row .humanitas-post .post-content .post-footer-wrapper .span-comm {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  color: #383838;
  white-space: nowrap;
}
.posts-row .humanitas-post .post-content .post-footer-wrapper .span-comm:hover {
  color: #ec4050;
}
.posts-row .humanitas-post .post-content .post-footer-wrapper .span-comm i {
  height: 30px;
  line-height: 30px;
  padding-right: 5px;
}
.posts-row .humanitas-post .post-content .post-footer-wrapper .span-comm span {
  display: inline-block;
  height: 30px;
  line-height: 30px;
}
.posts-row .humanitas-post:hover {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}
.posts-row .humanitas-post:hover .img-wrapper img {
  opacity: .3;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2);
}
/*--------------------------------------------------------------
6.9 - VC Countdown Bar
--------------------------------------------------------------*/
.countdown-bg-wrapper {
  display: block;
  width: 100%;
  padding: 35px 0;
  background: #ec4050;
}
.countdown-bg-wrapper .countdown-text h2 {
  padding: 10px 0;
  text-transform: uppercase;
}
@media all and (max-width: 1199px) {
  .countdown-bg-wrapper .countdown-text h2 {
    text-align: center;
    padding-bottom: 20px;
  }
}
.countdown-bg-wrapper .countdown-ul-wrap ul {
  display: block;
  text-align: center;
}
@media all and (min-width: 1200px) {
  .countdown-bg-wrapper .countdown-ul-wrap ul {
    text-align: right;
  }
}
.countdown-bg-wrapper .countdown-ul-wrap ul li {
  display: inline-block;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ffffff;
  padding: 12px 15px;
  color: #ffffff;
  margin-right: 10px;
}
.countdown-bg-wrapper .countdown-ul-wrap ul li:last-child {
  margin-right: 0;
}
.countdown-bg-wrapper .countdown-ul-wrap ul li span {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 18px;
}
@media all and (max-width: 767px) {
  .countdown-bg-wrapper .countdown-ul-wrap ul li {
    margin-bottom: 10px;
    padding: 7px 10px;
    margin-right: 5px;
  }
  .countdown-bg-wrapper .countdown-ul-wrap ul li:last-child {
    margin-right: 0;
  }
  .countdown-bg-wrapper .countdown-ul-wrap ul li span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
  }
}
/*--------------------------------------------------------------
6.10 - VC Contact Home
--------------------------------------------------------------*/
.contact-home {
  display: block;
  width: 100%;
  background: rgba(36, 40, 47, 0.75);
  padding-top: 100px;
}
.contact-home .contact-title {
  text-align: center;
  font-weight: 900;
  color: #ffffff;
}
.contact-home .contact-subtitle {
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  margin-top: 10px;
}
@media all and (min-width: 1200px) {
  .contact-home .contact-subtitle {
    padding-left: 8%;
    padding-right: 8%;
  }
}
.contact-home .wpcf7 {
  display: block;
  width: 100%;
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.75);
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  padding: 15px 15px 30px;
}
@media all and (min-width: 1200px) {
  .contact-home .wpcf7 {
    width: 82%;
    margin-left: 9%;
  }
}
.contact-home .wpcf7:after {
  content: '';
  display: table;
  clear: both;
}
.contact-home .wpcf7 form:after {
  content: '';
  display: table;
  clear: both;
}
.contact-home .wpcf7 .field {
  padding-top: 30px;
}
.contact-home .wpcf7 .field h4 {
  font-weight: 400;
  margin-bottom: 10px;
}
.contact-home .wpcf7 .field .wpcf7-form-control-wrap input {
  display: block;
  width: 100%;
  height: 47px;
  line-height: 47px;
  border: 0;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: 0;
  padding: 0 15px;
}
.contact-home .wpcf7 .field .wpcf7-form-control-wrap input:focus {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}
.contact-home .wpcf7 .textarea-field {
  padding-top: 30px;
}
.contact-home .wpcf7 .textarea-field h4 {
  font-weight: 400;
  margin-bottom: 10px;
}
.contact-home .wpcf7 .textarea-field .wpcf7-form-control-wrap textarea {
  display: block;
  width: 100%;
  height: 130px;
  line-height: 24px;
  border: 0;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: 0;
  padding: 15px;
}
.contact-home .wpcf7 .textarea-field .wpcf7-form-control-wrap textarea:focus {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}
.contact-home .wpcf7 .button-field {
  display: block;
  position: relative;
  padding-top: 30px;
}
.contact-home .wpcf7 .button-field input {
  display: inline-block;
  height: 45px;
  line-height: 45px;
  padding: 0 25px;
  background: #ec4050;
  color: #ffffff;
  font-weight: 700;
  border: 0;
  outline: 0;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-transform: uppercase;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.contact-home .wpcf7 .button-field input:hover {
  background: #383838;
}
.contact-home .wpcf7 .wpcf7-response-output {
  margin-left: 15px;
  margin-right: 15px;
}
/*--------------------------------------------------------------
7.0 - Less Variables + Mixins
--------------------------------------------------------------*/
/* Variables */
/* Mixins */
.base-font {
  font-family: 'Raleway', sans-serif;
}
.second-font {
  font-family: 'Lato', sans-serif;
}
/*--------------------------------------------------------------
8.0 - Special Classes
--------------------------------------------------------------*/
.baseColorText,
.colored,
.site-header .site-title-text a,
.site-header .main-navigation .header-primary-menu > ul > li > a:hover,
.site-header .main-navigation .header-primary-menu > ul > li.current-menu-item > a,
#colophon .footer-container .first-col .footer-logo-text a,
#colophon .second-col #quick-links-items li a:hover,
#colophon .third-col .footer-tags a:hover,
#colophon .site-info p a,
#footer-menu-social ul li a:hover,
.entry-header .entry-title a:hover,
.entry-header .entry-meta i,
.entry-header .entry-meta .span-user a:hover,
.entry-header .entry-meta .span-date a:hover,
.entry-header .entry-meta .span-cat a:hover,
.entry-header .entry-meta .span-comm a:hover,
.entry-header .entry-meta .span-sticky a:hover,
.entry-content a,
.entry-content blockquote:before,
.entry-content table a,
.numbers-pagination-wrapper .bordered-pagination .page-numbers.current,
.numbers-pagination-wrapper .bordered-pagination .page-numbers:hover,
.widget-area .widget.widget_categories ul li a:hover,
.widget-area .widget.widget_archive li a:hover,
.widget-area .widget.widget_meta li a:hover,
.widget-area .widget.widget_recent_comments li a:hover,
.widget-area .widget.widget_recent_entries li a:hover,
.widget-area .widget.widget_pages li a:hover,
.widget-area .widget.widget_nav_menu li a:hover,
.widget-area .widget.widget_calendar .calendar_wrap > table tbody tr td#today,
.widget-area .widget.widget_calendar .calendar_wrap > table tbody tr td a,
.widget-area .widget.widget_calendar .calendar_wrap > table tfoot tr td a,
.widget-area .widget.widget_rss ul li .rsswidget:hover,
.comments-area .comment-list li .comment-body .comment-meta .vcard .fn a:hover,
.comments-area .comment-list li .comment-body .comment-meta .comment-metadata a:hover,
.comments-area .comment-list li .comment-body .comment-content table a,
.comments-area .comment-list li.pingback a.url:hover,
.comments-area .comment-list li.pingback .edit-link a:hover,
.comments-area .comment-respond h3 #cancel-comment-reply-link,
.comments-area .comment-respond form p.logged-in-as a:hover,
.comments-area .comment-respond form p.comment-form-comment label .required,
.comments-area .comment-respond form p.comment-form-author label .required,
.comments-area .comment-respond form p.comment-form-email label .required,
.comments-area .comment-respond form p.comment-form-url label .required,
.humanitas-breadcrumbs .breadcrumbs-wrap a:hover,
.feature:hover .feature-icon,
.feature:hover h4,
#causes-filter.fullwidth-filters li a.selected,
#causes-filter.fullwidth-filters li a:hover,
#causes-list .cause .cause-content h4 a,
#causes-list-sidebar .cause .cause-content h4 a,
#causes-list .cause .cause-content p .cause-read-more:hover,
#causes-list-sidebar .cause .cause-content p .cause-read-more:hover,
#causes-list .cause.cause-list .cause-content h4 a:hover,
#causes-list-sidebar .cause.cause-list .cause-content h4 a:hover,
#causes-list .cause.cause-sidebar .cause-content h2 a:hover,
#causes-list-sidebar .cause.cause-sidebar .cause-content h2 a:hover,
#causes-list .cause.cause-sidebar .cause-content .entry-meta i,
#causes-list-sidebar .cause.cause-sidebar .cause-content .entry-meta i,
#causes-list .cause.cause-sidebar .cause-content .entry-meta .span-user a:hover,
#causes-list-sidebar .cause.cause-sidebar .cause-content .entry-meta .span-user a:hover,
#causes-list .cause.cause-sidebar .cause-content .entry-meta .span-date a:hover,
#causes-list-sidebar .cause.cause-sidebar .cause-content .entry-meta .span-date a:hover,
#causes-list .cause.cause-sidebar .cause-content .entry-meta .span-cat a:hover,
#causes-list-sidebar .cause.cause-sidebar .cause-content .entry-meta .span-cat a:hover,
#causes-list .cause.cause-sidebar .cause-content .entry-meta .span-comm a:hover,
#causes-list-sidebar .cause.cause-sidebar .cause-content .entry-meta .span-comm a:hover,
#causes-list .cause.cause-sidebar .cause-content .entry-meta .span-sticky a:hover,
#causes-list-sidebar .cause.cause-sidebar .cause-content .entry-meta .span-sticky a:hover,
.posts-row .humanitas-post .post-content h4 a:hover,
.posts-row .humanitas-post .post-content .post-footer-wrapper .span-comm:hover {
  color: #ec4050;
}
.baseColorBg,
.base-btn-icon.btn_colored,
.site-header #search-header-bar form input[type="submit"]:hover,
.site-header #search-button,
.site-header .menu-toggle,
#colophon .fourth-col #mc_embed_signup input[type="submit"],
.entry-tags a:hover,
.widget-area .widget-title:after,
.widget-area .widget.widget_tag_cloud .tagcloud a:before,
.comments-area .comments-title:after,
.comments-area .comment-list li .comment-body .reply a,
.comments-area .comment-respond form p.form-submit input[name=submit]:hover,
.humanitas-breadcrumbs .breadcrumbs-wrap .item-home:before,
.humanitas-breadcrumbs .breadcrumbs-wrap .item-current:after,
.section_header .section-subtitle.side_lines:before,
.section_header .section-subtitle.side_lines:after,
.underline_section_header h4:after,
.member-article .member-wrapper .img-wrapper .mask ul li .social-btn-icon,
.feature .feature-btn,
#causes-filter li a.selected,
#causes-filter li a:hover,
#causes-filter.fullwidth-filters,
.posts-row .humanitas-post .img-wrapper .absolute-date,
.countdown-bg-wrapper,
.contact-home .wpcf7 .button-field input {
  background: #ec4050;
}
.baseColorBg_i,
.my_rev_button,
.templates-single-cause .entry-header .s-cause-progress-button #s-cause-progress .progress .progress-bar,
.s-cause-fullwidth #s-cause-progress .progress .progress-bar,
#causes-list .cause .cause-content .cause-progress .progress .progress-bar,
#causes-list-sidebar .cause .cause-content .cause-progress .progress .progress-bar {
  background: #ec4050 !important;
}
.white-text {
  color: #ffffff;
}
.no-paddings {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.vc_section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.visible767 {
  display: block;
  position: fixed;
  width: 1px;
  height: 1px;
  left: -9999px;
  top: -9999px;
}
@media all and (min-width: 768px) {
  .visible767 {
    display: none;
  }
}
