/**
  Main Styling for Sugar Theme
  
  @see schema/{selected schema}/css folders for the 
  CSS color rules. This file will only has CSS Rules
  for positioning, font and layout.
  **/
body {
  padding: 0 !important;
  font-size: 14px;
  font-family: "Lato", serif;
  font-weight: 400;
}

h1, h2, h3 {
  margin-bottom: 5px;
}

h4 {
  margin-bottom: 0;
}

h5 {
  margin-bottom: 0;
}

img,
.btn,
i,
a {
  outline: 0 !important;
  transition: ease-out .3s;
  -webkit-transition: ease-out .3s;
  -moz-transition: ease-out .3s;
  -o-transition: ease-out .3s;
  -ms-transition: ease-out .3s;
}

a:hover {
	text-decoration: none;
}

.bold {
	font-family: "Open Sans";
	font-weight: 700;
}

.tight p {
	margin-bottom: 3px;
}

p {
	line-height: 160%;
	margin-bottom: 0;
}

p.empty {
    line-height: 20px;
}

.clearboth {
  clear: both;
}

img {
	height: auto;
  object-fit: cover; /** Experimental with objectfit js **/
  object-position: center; /** Experimental with objectfit js **/
}

.area {
  padding: 10px 20px;
}

/** TOP HEADER
    Only for multi language bar **/
#topheader {
	padding: 0 20px;
}

/** HEADER **/
#header {
  z-index: 100;
  padding: 0 20px;
  min-height: 90px;
}

#header .container {
  z-index: 100;
}

/** 
  Logo, Site Title and site description styling
  **/

.home-link {
  display: inline-block;
  margin-right: 15px;
}

.branding {
  display: inline-block;
  vertical-align: middle;
}

.site-title {
  font-size: 30px;
  line-height: 45px;
  margin: 0;
  text-transform: capitalize;
  font-family: 'Pacifico', cursive;
}

.site-description {
  font-size: 13px !important;
  line-height: 16px;
  margin: 0;
  font-family: "Open Sans";
  font-weight: 400;
  font-style: italic;
}

/**
  Style for header main navigation and 
  its dropdown.
  **/
#navigation ul.nav {
  margin-bottom: 0;
}

#navigation ul.nav > li {
  min-height: 90px;
  line-height: 90px;
  vertical-align: middle;
  margin: 0;
  padding: 0;
}

#navigation ul.nav > li > a {
  font-size: 14px;
  vertical-align: middle;
  padding: 0 20px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  font-weight: 400;
  font-family: montserrat;
  outline: 0;
}

#navigation .nav-pills > li:hover > a,
#navigation .nav-pills > li > a:focus,
#navigation .nav-pills > li.active > a {
  outline: 0;
}

#navigation ul.nav ul {
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  opacity: 0;
  margin-top: 20px;
  display: block !important;
  visibility: hidden;
  display: block;
}

#navigation ul.nav > li ul.dropdown-menu {
  -moz-border-radius:  0 0 3px 3px;
  -webkit-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
  padding: 8px 0;
}

#navigation ul.nav > li ul.dropdown-menu ul.dropdown-menu {
  border-top: none;
  margin-left: 100%;
  top: 0;
}

#navigation ul.nav > li > ul.dropdown-menu a {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  margin: 0 10px;
  padding: 8px 10px;
  font-size: 12px;
}

#navigation ul.nav > li ul.dropdown-menu > li:last-child a {
  border-bottom: none;
}

#navigation ul.nav > li > ul.dropdown-menu a:focus,
#navigation ul.nav > li > ul.dropdown-menu a:hover {
  border: none;
  padding-left: 14px;
/*  padding-right: 6px */
  padding-right: 24px;
}

#navigation ul.nav > li li.with-children > a {
  padding-right: 28px;
  position: relative;
}

#navigation ul.nav > li li.with-children > a:after {
  content: "\f0da";
  display: block;
  font-family: fontawesome;
  top: 8px;
  right: 6px;
  position: absolute;
}

/** Hover state **/
#navigation ul.nav li.menu-item-has-children:hover > ul,
#navigation ul.nav li.menu-item-has-children.clicked > ul {
  opacity: 1;
  margin-top: -1px;
  visibility: visible;
}

#navigation ul.nav > li.menu-item-has-children:hover > a {
  outline: 0;
}

#header {
	border-left: none;
	border-right: none;
}

/** HEADER IN STICKY MODE **/
#header.sticky {
  min-height: 75px;
}

#header.sticky #navigation ul.nav > li {
  min-height: 75px;
  line-height: 75px;
}

#header.sticky #navigation ul.nav > li a {
	font-size: 13px;
}

#header.sticky #logo {
	padding: 0 15px;
}

#header.sticky #logo img {
	max-height: 65px;
}

#header.sticky .site-description {
	display: none;
}

/** SLIDER **/
#slider .widget > * {
	overflow: hidden;
}

#slider .rev_slider_wrapper {
	width: 100% !important;
}

/** CONTENT TOP **/
#content-top .area {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  padding-top: 50px;
  padding-bottom: 50px;
}

#content-top .row {
	margin-top: 30px;
	margin-bottom: 30px;
}


#content-top .widgettitle {
  text-transform: uppercase;
  font-size: 28px;
  text-align: center;
  margin: 0 0 30px;
  line-height: 120%;
}

#content-top .widgettitle.post-title {
	margin-bottom: 10px;
}

#content-top .post-description {
  text-align: center;
  font-size: 18px;
  margin: 0 0 30px;
}



/** CONTENT BOTTOM **/
#content-bottom {
	font-size: 20px;
	padding: 40px 0;
	text-align: center;
}

#content-bottom .widget:last-child {
	margin-bottom: 0;
}

#content-bottom .widgettitle {
  font-size: 24px;
}


/** HEADLINE **/
#headline {
	overflow: hidden;
	height: 110px;
  font-family: montserrat;
  border-top-width: 1px;
  border-top-style: solid;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  position: relative;
}

#headline .area {
	padding-top: 0;
	padding-bottom: 0;
	z-index: 2;
	position: relative;
}

#headline .container {
	padding: 0 20px;
	height: 100%;
}

#headline > img {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

#headline .headline-title {
	font-size: 36px;
	margin: 0;
}

#headline .headline-subtitle {
  font-size: 18px;
  margin: 0;
}

#headline .inline {
	display: inline-block;
	margin-right: 30px;
	font-size: 30px;
	line-height: 110%;
}

#headline .inline:last-child {
	margin-right: 0;
}

#headline .headline-item-text {
	clear: both;
	display: block;
	font-size: 14px;
}

#headline .headline-mask {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

/** MAIN CONTENT **/
.main-content .widgettitle {
	font-size: 16px;
}

#content {
	padding-top: 20px;
	padding-bottom: 20px;
}

#content.with-sidebar-right {
	padding-right: 80px;
}

#content.with-sidebar-left {
  padding-left: 80px;
}


/** SIDEBAR **/
#sidebar {
	padding-top: 20px;
	padding-bottom: 20px;
	line-height: 150%;
}

#sidebar .widget {
  margin-bottom: 35px;
}

#sidebar .widgettitle {
  font-family: "Open Sans", serif;
  font-weight: 600;
  font-size: 18px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/** 
  Styling for Footer and Full Footer regions
  **/
#footer {
	padding: 45px 20px 0;
	line-height: 150%;
	font-size: 16px;
} 

#footer .widget {
  margin-bottom: 35px;
}

#footer .widgettitle {
  font-size: 19px;
  font-family: montserrat;
  margin-bottom: 20px;
}

#footer li {
line-height: 160%;
padding: 2px 0 4px;
}

#footer li:before {
	display: none;
}

#footer ul.inline > li {
	padding: 0 5px;
}


#fullfooter {
  padding: 10px 20px;
}

#fullfooter p {
  margin-bottom: 0;
}

html.js .equalheightRow {
  overflow: hidden;
}

html.js .galleries img {
	position: absolute;
	left: -99999px;
}

html.js .galleries.fotorama img {
  position: static;
}

.fotorama__thumb img {
	height: 64px !important;
}

.equalheightRow .items {
  height: 100%;
}

.wrapper-sticky {
  z-index: 120;
}

.admin-bar #header.sticky {
  top: 32px !important;
}

.sticky #header {
  height: 100%;
}

/**
  Normal Pagination
  **/
.pagination > a,
.pagination ul > li > a, .pagination ul > li > span {
  float: left;
  margin-left: 7px;
  font-size: 13px;
  text-transform: uppercase;  
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding: 8px 11px;
  text-align: center;
  vertical-align: middle;
  line-height: 15px;
}

.page-numbers {
  padding: 0;
}

/**
  Post pagination
  **/
.page-links {
	margin-bottom: 50px;
}
.page-links > a,
.page-links > span {
  display: inline-block;
  margin-left: 7px;
  font-size: 13px;
  text-transform: uppercase;  
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding: 8px 11px;
  line-height: 15px;
}

/**
  Mini Pager
  **/
.pager-mini {
  float: right;
  margin: 0;
  padding: 0;
}

.pager-mini li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
  display: inline-block;
}

.pager-mini li a {
  width: 32px;
  height: 34px;
  display: inline-block;
  vertical-align: center;
  line-height: 32px;
  font-size: 24px;
  text-align: center;
}

.pagination {
  display: inline-block !important;
  width: 100%;
  clear: both;
}


/**
  Comment Entries
  **/
.comment-wrapper {
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.comment ul.children {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}

.comment ul.children li.comment {
  margin-left: 100px;
}

.comment ul.children li.depth-4 li,
.comment ul.children li.depth-4 {
  margin-left: 0;
}

.commentlist > li:last-child li:last-child .comment-wrapper {
  border: none;
  margin: 0;
}

.comment-link {
  margin: 0;
}

.comment.pingback p {
  padding: 15px;
}

.post-comment li.comment {
	position: relative;
}

.post-comment ul.children li.comment:before {
  content: "";
  display: inline-block;
  height: 0;
  position: relative;
  top: 37px;
  z-index: -2;
  border-top-width: 1px;
  border-top-style: solid;  
}

.post-comment ul.children li.depth-3:before,
.post-comment ul.children li.depth-2:before {
	width: 100px;
	left: -68px;
}

.post-comment ul.commentlist li.depth-1:after,
.post-comment ul.children li.depth-2.with-child:after,
.post-comment ul.children li.depth-3.with-child:after {
  content: "";
  display: inline-block;
  width: 1px;
  bottom: 64px;
  position: absolute;
  top: 32px;
  left: 32px;
  border-left-width: 1px;
  border-left-style: solid;  
  z-index: -2;	
}


.post-comment ul.commentlist li.depth-1:after {
	bottom: 0;
}

.post-comment ul.commentlist > li.depth-1:last-child:after {
  bottom: 64px;
}
/** Closing Dots **/
.post-comment ul.children li.depth-3.comment.with-child > .comment-wrapper:before,
.post-comment ul.children li.depth-2.comment.with-child > .comment-wrapper:before,
.post-comment ul.commentlist > li.comment:last-child:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 24px;
  border-radius: 100%;
  bottom: 50px;
  z-index: -1;
  width: 16px;
  height: 16px;  
}


.comment-wrapper .post-wrapper {
  margin-left: 85px;
  border-width: 1px;
  border-style: solid;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  padding: 15px;
  min-height: 64px;
  position: relative;
}

.comment-wrapper .post-wrapper:after,
.comment-wrapper .post-wrapper:before {
  border-top-color: transparent;
  border-right-color: inherit;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-style: solid;
  border-width: 6px;
  content: "";
  display: block;
  margin-top: -5px;
  position: absolute;
  left: -13px;
  top: 28px;  
}

.comment-wrapper .post-wrapper:after {
  left: -12px; 
}

/**
  Pingbacks
  **/
.post-comment li.pingback .post-wrapper:after,
.post-comment li.pingback .post-wrapper:before,
.post-comment li.pingback:after,
.post-comment li.pingback:before {
	display: none !important;
}


.post-comment li.pingback:after,
.post-comment li.pingback:before {
  display: none !important;
}




/**
  Comment Form
  **/
.comment-respond {
	padding: 30px;
	border-width: 3px;
	border-style: solid;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background: #fff;	
}
.comment-author {
  font-size: 16px;
  margin-bottom: 15px;
}

.comment-author small {
  font-size: 12px;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
  display: inline-block;
  width: 31%;
  margin-right: 2.5%;
  position: relative;
}

.comment-form-url {
  margin-right: 0;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
  width: 100%;
}

.comment-form-comment {
  position: relative;
}

.form-allowed-tags code {
  font-size: 11px;
  line-height: 130%;
  margin-top: 10px;
  padding: 10px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-boz-sizing: border-box;
  display: block;
}


.commentlist .pingback .post-wrapper {
	margin-left: 0;
}


/**
  Search Form
  @see searchform.php
  **/
.search-form {
  position: relative;
}

.search-form .search-field {
  padding: 10px 18px 10px 47px;
  margin: 0;
}

.search-form .search-submit {
  height: 38px;
  width: 47px;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 18px;
}



/**
  CSS for styling the post element
  This will be applied to post type page,
  post type post, archived page, search page,
  category page, and tags page
  **/
  
/**
  Title
  **/
.post-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.post-title.with-tags {
	margin-bottom: 0;
}

.post-section-title {
	font-family: montserrat;
	font-weight: 400;
	margin-bottom: 20px;
	font-size: 16px;
}


/**
  Post Tags
  **/
.post-tags {
	margin-bottom: 20px;
	font-size: 12px;
}

/**
  Post Thumbnail Image
  **/
.post-thumbnail {
  margin-bottom: 30px;
  text-align: center;
}

.post-thumbnail img {
  margin: 0 auto;
  float: none;
}

.post-thumbnail .rev_slider_wrapper {
  text-align: left;
}

/**
  Post Round Image
  **/
.post-round-thumbnail {
  position: relative;
  margin: 30px auto 30px;
  width: 80%;
  padding-bottom: 80%;
  height: 0;
}

.post-round-thumbnail .post-pseudo-wrapper {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: center;
  vertical-align: middle;
  border-width: 1px;
  border-style: solid;
  padding: 8px;
}

.post-round-thumbnail img {
  min-height: 100%;
  min-width: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  margin: 0 auto;
}

.post-thumbnail-open img {
  width: 80%;
  margin: 0 10%;
}

/**
  Post Social
  **/
.post-gallery-wrapper .post-social {
	margin-top: 30px;
}
.post-social ul {
	margin: 0;
	text-align: center;
	padding: 10px 0;
}

.post-social i {
  width: 24px;
  height: 24px;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  text-align: center;
  line-height: 24px;
  display: block !important;
  font-size: 12px;
}

/** 
  Post section
  **/
.post-section {
	padding-bottom: 20px;
	margin-bottom: 40px;
}

/**
  Post Author
  **/
.post-author {
	margin-top: 60px;
}
.post-avatar {
  float: left;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  height: 70px;
  width: 70px;
}
.post-avatar img {
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  height: 64px;
  width: 64px;
  padding: 0 !important;
}

.post-author-bio {
  margin-left: 85px;
  margin-top: 5px;
  border-width: 1px;
  border-style: solid;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  padding: 10px;
  min-height: 64px;
  position: relative;
}
.post-author-bio:after,
.post-author-bio:before {
  border-top-color: transparent;
  border-right-color: inherit;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-style: solid;
  border-width: 6px;
	content: "";
	display: block;
	margin-top: -5px;
	position: absolute;
	left: -13px;
	top: 28px;	
}

.post-author-bio:after {
  left: -11px; 
}

/** Post teasers **/
.multiple {
	margin-bottom: 70px;
}

.post.multiple .post-thumbnail {
  /**min-height: 266px; **/
  position: relative;
}

.post.multiple .post-thumbnail .post-avatar {
	position: absolute;
	top: 30px;
	left: -6%;
}

/** 404 PAGE **/
#page-not-found {
  text-align: center;
  padding: 40px 0;
}

#page-not-found .title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 30px;
}

#page-not-found .not-found {
  font-size: 83px;
  font-weight: normal;
  padding: 150px 0;
  position: relative;
  background: transparent url(images/404-top.png) no-repeat top center;
}

#page-not-found .not-found:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background: transparent url(images/404-bottom.png) no-repeat bottom center;
  display: block;
  content: '';
}





/**
  About us related styling
**/
.single.about > section {
  margin-bottom: 60px;
}

#teammember {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
}

.post-teams .name {
  font-size: 24px;
  margin: 0;
}

.post-teams .position {
  font-size: 16px;
  margin: 0 0 10px;
}

.post-teams .bio {
	margin: 6px 0 10px;
}

.post-skills .skills-items {
  overflow: hidden;
  font-family: montserrat;
}


.post-skills .progress-bar-wrapper {
	width: 88%;
	display: inline-block;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	overflow: hidden;
	margin: 10px 0 10px;
}

.post-skills .progress-bar {
  height: 15px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
}

.post-skills .meter {
	width: 11%;
	text-align: right;
	display: inline-block;
	font-size: 24px;
	vertical-align: top;
}

.service-box-wrapper {
	margin-top: 45px;
	margin-bottom: 0;
}

.service-box .title {
  font-size: 14px;
  font-family: montserrat;
  margin: 0;
}

.service-box .text {
  font-size: 13px;
}

.post-clients .post-title,
.post-teams .post-title,
.post-services .post-title {
	text-transform: uppercase;
	font-size: 28px;
	margin: 0 0 10px;
}

.post-clients .post-grid,
.post-teams .post-grid,
.post-services .post-grid {
	margin-top: 50px;
}


.post-grid .service-icon {
  width: 90px;
  height: 90px;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  font-size: 48px;
  line-height: 90px;
  text-align: center;
  vertical-align: middle;
  display: block;
  margin: 0 auto 20px;
  border-width: 1px;
  border-style: solid;
}

.clients-carousel .wrapper {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-width: 1px;
  border-style: solid;
  border-color: inherit;
  height: 150px;
  padding: 0 30px;
  margin: 30px 20px;
  overflow: hidden;
}

.clients-carousel .wrapper .items {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: inherit;
  height: 110px;
  line-height: 107px;
  margin: 20px 0;
  vertical-align: middle;
}

.clients-carousel {
	position: relative;
}

/**
  Contact us page related styling
  **/
.single-contact .post-title {
	font-family: montserrat;
}

.single-contact #contact-form {
	padding-right: 60px;
}

.single-contact #contact-content {
  padding-left: 60px;
}
.single-contact .post-content {
  margin-bottom: 60px;
}

.single-contact input,
.single-contact textarea {
	padding: 7px 10px;
	font-size: 14px !important;
}

.single-contact textarea {
	min-height: 200px;
}

.single-contact .form-item {
	margin-bottom: 7px;
}

.single-contact .post-location .contact-details {
	margin-top: 30px;
	margin-left: 0;
	margin-right: 0;
}

.single-contact .post-location .contact-details li {
  margin-bottom: 10px;
  font-size: 14px;
}

.single-contact .post-location .contact-details span.labels i {
  font-size: 14px;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  display: inline-block;
  line-height: 32px;
  vertical-align: middle;
  text-align: center;
}

#maps-element img {
  max-width: none;
}


@media (max-width: 768px) {
  .single-contact .contact-main-wrapper .dl-horizontal dt {
    padding-left: 30px;
    width: 100%;
    min-height: auto;
    margin-bottom: 15px;
  }
  .single-contact .contact-main-wrapper .dl-horizontal dd {
    margin-left: 30px;
    width: 100%;
    margin-bottom: 15px;
  }
}

/**
  Portfolio teasers
  This style will apply to portfolio categories too
  **/
.portfolio-header {
	position: relative;
}

.portfolio-header .text {
	display: inline-block;
	float: none;
	margin: 0 auto;
	padding: 5px 15px;
	text-transform: uppercase;
	font-size: 24px;
}

.portfolio-content {
	color: #b4bec2;
	font-size: 18px;
}

.portfolio-header:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	width: 100%;
	height: 1px;
	z-index: -1;
}

ul.portfolio-source > li {
	padding-left: 5px;
  padding-right: 5px;
}

ul.portfolio {
  position: relative;
  padding: 0;
}

ul.portfolio > li {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  vertical-align: top;
  margin-bottom: 30px;
}

ul.portfolio > li > .portfolio {
	border-width: 1px;
  border-style: solid;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  overflow: hidden;
  height: 100%;
}

ul.portfolio .post-thumbnail {
	margin-bottom: 0;
}

ul.portfolio .portfolio-info {
	padding: 15px 20px;
}

ul.portfolio .post-title {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
}

ul.portfolio .post-date {
	font-family: montserrat;
	font-size: 13px;
}

@media (max-width: 768px) {
  ul.portfolio > li.col-xs-12 {
    margin-bottom: 10px !important;
  }
  
  ul.portfolio > li.col-xs-12:last-child {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  ul.portfolio > li.col-sm-12  {
    margin-bottom: 10px !important;
  }

  ul.portfolio > li.col-sm-12:last-child {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  ul.portfolio > li.col-md-12 {
    margin-bottom: 10px !important;
  }

  ul.portfolio > li.col-md-12:last-child {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 1200px) {
  ul.portfolio > li.col-lg-12 {
    margin-bottom: 10px !important;
  }
  
  ul.portfolio > li.col-lg-12:last-child {
    margin-bottom: 0 !important;
  }
}

/**
  Portfolio hover view animation
  **/
ul.portfolio .view-header {
	background: none;
	font-family: montserrat;
	border: none;
	overflow: hidden;
	text-overflow: ellipsis;
}

ul.portfolio .view-header i {
  width: 100px;
  display: block;
  margin: 0 0 20px 0;
  font-size: 48px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  height: 100px;
  line-height: 100px;
  text-align: center;
  margin: 0 auto 15px;
}

ul.portfolio .porfolio-titles {
	margin-bottom: 10px;
}


.widget ul.isotope-sources,
ul.isotope-sources {
  margin-top: 20px;
  margin-bottom: 40px;
}

ul.isotope-sources > li a {
  text-transform: uppercase;
  padding: 10px 20px;
  text-align: center;
  vertical-align: middle;
  line-height: 15px;
  text-transform: uppercase;  
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font-size: 11px;
}



/**** Isotope CSS3 transitions ****/

.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
      -ms-transition-duration: 0.8s;
       -o-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
     -moz-transition-property: height, width;
      -ms-transition-property: height, width;
       -o-transition-property: height, width;
          transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
     -moz-transition-property:    -moz-transform, opacity;
      -ms-transition-property:     -ms-transform, opacity;
       -o-transition-property:      -o-transform, opacity;
          transition-property:         transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
     -moz-transition-duration: 0s;
      -ms-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
}

.isotope-target {
  position: relative;
}

/**
  Full Page
  @see single-portfolio.php
  **/
.fotorama__wrap {
	margin: 0 auto;
}
.single-portfolio .post-gallery-wrapper.center {
	margin: 30px auto;
	float: none;
}


.single-portfolio .portfolio-meta i {
  display: inline-block;
  font-size: 18px;
  height: 38px;
  line-height: 38px;
  margin-right: 5px;
  text-align: center;
  vertical-align: middle;
  width: 38px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
}

/**
  Integrating WPML widget to theme
  **/
#post-multilanguage-box {
  padding-top: 5px;
  padding-bottom: 5px;
}

#header.sticky #post-multilanguage-box {
  display: none;
}

#post-multilanguage-box .lang_sel_list_horizontal {
  height: auto;
}

#post-multilanguage-box li span {
  line-height: 20px;
  vertical-align: middle;
}

#post-multilanguage-box .lang_sel_list_horizontal a, 
#post-multilanguage-box .lang_sel_list_horizontal a:visited {
  padding-left: 15px;
  background: transparent;
  border: none;
}

#post-multilanguage-box ul li a {
  padding: 5px 10px;
}


#lang_sel_click ul ul {
  top: 35px;
}

.alert-info .alert-link {
  color: #000033;
}

.alert-warning .alert-link {
  color: #764100;
}

.alert-danger .alert-link {
  color: #500000;
}


/* li - styles */

@media (max-width: 990px) and (min-width: 750px) {
  .slicknav_menu {
    display: block;
  }
}

@media (max-width: 990px) {
  #header {
    position: relative !important;
  }

  .home-link {
    margin-top: 10px;
  }
}

.dropdown-menu > .active > a, 
.dropdown-menu > .active > a:focus, 
.dropdown-menu > .active > a:hover {
  background-color: #fcfcfc;
  color: #000;
}

#fullfooter #footerlogo {
  margin-top: 0 !important;
}


/* AUGUSTINER.AT */

body {
  background: url('images/hg_grau.png') repeat 0 0 !important;
}

#toTopHover {
  background-color: #fff !important;
  color: #000 !important;
}

#logo a img {
  max-width: 80px;
}

#logo {
  margin-top: 3px !important;
}

#header.sticky #logo img {
    max-height: 65px;
    width: auto;
}

@media (max-width: 700px) {
  table tr td {
    float: left;
    width: 100% !important;    
  }
}

.widget_revslider ul li {
  position: absolute !important;
}

.ordensheiliger-item, .solist-item {
  margin-bottom: 20px;
  display: block;
}

.ordensheiliger-item-img, .solist-item-img {
  float: left;
  margin-right: 25px;
}

.post-thumbnail {
  position: relative;
  overflow: hidden;
}

.post-thumbnail-alttext {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  background-color: #fff;
  height: 20px;
  -ms-transition: bottom 300ms ease 0s;
  -moz-transition: bottom 300ms ease 0s;
  -webkit-transition: bottom 300ms ease 0s;
  transition: bottom 300ms ease 0s;
}

.post-thumbnail-alttext.show {
  bottom: 0;
}

.sort-container {
  margin-bottom: 20px;
}

#navigation .nav-pills .menu-augustiner:hover > a {
  background-color: #ba0623;
}

#navigation .nav-pills .menu-augustiner a:hover {
  background-color: #ba0623 !important;
}

#navigation .menu-augustiner ul.dropdown-menu {
  border-left: 3px solid #ba0623 !important;
}

#navigation .nav-pills .menu-augustinerkirche:hover > a {
  background-color: #3DAF2C;
}

#navigation .nav-pills .menu-augustinerkirche a:hover {
  background-color: #3DAF2C !important;
}

#navigation .menu-augustinerkirche ul.dropdown-menu {
  border-left: 3px solid #3DAF2C !important;
}

#navigation .nav-pills .menu-kirchenmusik:hover > a {
  background-color: #eecf22;
}

#navigation .nav-pills .menu-kirchenmusik a:hover {
  background-color: #eecf22 !important;
}

#navigation .menu-kirchenmusik ul.dropdown-menu {
  border-left: 3px solid #eecf22 !important;
}

#navigation .nav-pills .menu-gaestehaus:hover > a {
  background-color: #eb7300;
}

#navigation .nav-pills .menu-gaestehaus a:hover {
  background-color: #eb7300 !important;
}

#navigation .menu-gaestehaus ul.dropdown-menu {
  border-left: 3px solid #eb7300 !important;
}

#navigation .nav-pills .menu-aspersdorf:hover > a {
  background-color: #a21993;
}

#navigation .nav-pills .menu-aspersdorf a:hover {
  background-color: #a21993 !important;
}

#navigation .menu-aspersdorf ul.dropdown-menu {
  border-left: 3px solid #a21993 !important;
}

.slicknav_menu .slicknav_nav > .menu-augustiner:focus, .slicknav_menu .slicknav_nav > .menu-augustiner:hover {
  border-color: #ba0623;
}

.slicknav_menu .slicknav_nav > .menu-augustinerkirche:focus, .slicknav_menu .slicknav_nav > .menu-augustinerkirche:hover {
  border-color: #3DAF2C;
}

.slicknav_menu .slicknav_nav > .menu-kirchenmusik:focus, .slicknav_menu .slicknav_nav > .menu-kirchenmusik:hover {
  border-color: #eecf22;
}

.slicknav_menu .slicknav_nav > .menu-gaestehaus:focus, .slicknav_menu .slicknav_nav > .menu-gaestehaus:hover {
  border-color: #eb7300;
}

.slicknav_menu .slicknav_nav > .menu-aspersdorf:focus, .slicknav_menu .slicknav_nav > .menu-aspersdorf:hover {
  border-color: #a21993;
}

#socialmediabox_left {
  z-index: 130 !important;
}

#socialmediabox_left, #socialmediabox_left * {
  box-sizing: content-box;
}

#FB_Album_Frame, .FB_Album_Frame, .FB_Album_Frame *, #FB_Album_Frame * {
  box-sizing: content-box;
}
#fancybox-wrap, #fancybox-wrap * {
  box-sizing: content-box;
}
.wp-caption-text.gallery-caption {
  display: none;
}

@media(min-width: 1200px) {
  .FB_Album_Frame .albumWrapper {
    width: 30% !important;
  }
}
@media(max-width: 1199px) and (min-width: 900px) {
  .FB_Album_Frame .albumWrapper {
    width: 45% !important;
  }
}
@media(max-width: 899px) {
  .FB_Album_Frame .albumWrapper {
    width: 50% !important;
  }
}

.FB_Album_Frame .paginationSearchGo {
  width: auto !important;
}

.zimmer-item-img {
    text-align: center;
}

.zimmer-item-content {
  text-align: center;
} 
/*
.post-content table tr td {
  position: relative;
}

.post-content table tr td img {
  position: relative;
  top: 7px;
}*/

.wp-caption {
  position: relative;
  overflow: hidden;
}

.wp-caption-text {
  margin: 0;
  position: absolute;
  bottom: -1000px;
  padding: 10px;
  width: calc(100% - 10px);
  background-color: #fff;
}

@media(max-width: 600px) {
  .wp-caption .fancybox {
    pointer-events: none;
  }
}

.cd-nummer-input {
  width: 60px !important;
  line-height: 11px !important;
  padding: 5px 7px !important;
}

.rhc.fe-extrainfo-container {
  margin-bottom: 10px !important;
  margin-top: 25px;
}

.fe-extrainfo-label, .rhc-info-row div.rhc-info-cell .fe-extrainfo-label {
  margin-bottom: 0 !important;
}

.fe-extrainfo-value, .rhc-info-row div.rhc-info-cell .fe-extrainfo-value {
  margin-bottom: 10px;
  display: block;
}

.rhcalendar.for-widget.flat-ui-cal .fc-header {
  background-color: #ba0623 !important;
}

.rhcalendar.for-widget.flat-ui-cal .fc-header h2 {
  color: #fff !important;
}

.rhc-widget-upcoming-item {
  border-radius: 8px 8px 8px 8px;
  border: 1px solid #ededed;
  padding-top: 0 !important;
  margin-bottom: 20px;
}

.rhc-widget-a .rhc-featured-date {
  border: none !important;
  border-radius: 8px 0 0 8px;
  background-color: #ba0623;
  padding: 5px !important;
  color: #fff !important;
  width: 76px !important;
}

.rhc-widget-a.featured-0 .rhc-widget-upcoming {
  width: 84% !important;
  padding-top: 5px !important;
}

.rhc-widget-a .rhc-date-month-year {
  background-color: #ba0623 !important;
  border-radius: 8px 0 0 8px;
}

/* kalenderfarben */
.blog-2 .fc-event {
  border-color: #3DAF2C !important;
  background-color: #3DAF2C !important;
}

.blog-2 .fct-tooltip {
  border-color: #3DAF2C !important;
}

.blog-2 .rhcalendar.for-widget.flat-ui-cal .fc-header {
  background-color: #3DAF2C !important;
}

.blog-2 .rhcalendar.for-widget .rhc_calendar_widget_day_click .rhc-widget-event-list-head .rhc-widget-event-list-date {
  background-color: #3DAF2C !important;
}

.blog-2 .rhc-widget-a .rhc-featured-date {
  background-color: #3DAF2C !important;
}

.blog-2 .rhc-widget-a .rhc-date-month-year {
  background-color: #3DAF2C !important;
}

.blog-3 .fc-event {
  border-color: #eecf22 !important;
  background-color: #eecf22 !important;
}

.blog-3 .fct-tooltip {
  border-color: #eecf22 !important;
}

.blog-3 .rhcalendar.for-widget.flat-ui-cal .fc-header {
  background-color: #eecf22 !important;
}

.blog-3 .rhcalendar.for-widget .rhc_calendar_widget_day_click .rhc-widget-event-list-head .rhc-widget-event-list-date {
  background-color: #eecf22 !important;
}

.blog-3 .rhc-widget-a .rhc-featured-date {
  background-color: #eecf22 !important;
}

.blog-3 .rhc-widget-a .rhc-date-month-year {
  background-color: #eecf22 !important;
}

.blog-4 .fc-event {
  border-color: #eb7300 !important;
  background-color: #eb7300 !important;
}

.blog-4 .fct-tooltip {
  border-color: #eb7300 !important;
}

.blog-4 .rhcalendar.for-widget.flat-ui-cal .fc-header {
  background-color: #eb7300 !important;
}

.blog-4 .rhcalendar.for-widget .rhc_calendar_widget_day_click .rhc-widget-event-list-head .rhc-widget-event-list-date {
  background-color: #eb7300 !important;
}

.blog-4 .rhc-widget-a .rhc-featured-date {
  background-color: #eb7300 !important;
}

.blog-4 .rhc-widget-a .rhc-date-month-year {
  background-color: #eb7300 !important;
}

.blog-5 .fc-event {
  border-color: #a21993 !important;
  background-color: #a21993 !important;
}

.blog-5 .fct-tooltip {
  border-color: #a21993 !important;
}

.blog-5 .rhcalendar.for-widget.flat-ui-cal .fc-header {
  background-color: #a21993 !important;
}

.blog-5 .rhcalendar.for-widget .rhc_calendar_widget_day_click .rhc-widget-event-list-head .rhc-widget-event-list-date {
  background-color: #a21993 !important;
}

.blog-5 .rhc-widget-a .rhc-featured-date {
  background-color: #a21993 !important;
}

.blog-5 .rhc-widget-a .rhc-date-month-year {
  background-color: #a21993 !important;
}

@media(max-width: 480px) {
  .fc-header-center .fc-header-title {
    position: relative !important;
  }
}


/* FARBEN */

.blog-2 .portfolio-header .text {
  color: #3DAF2C !important;
}
.blog-3 .portfolio-header .text {
  color: #eecf22 !important;
}
.blog-4 .portfolio-header .text {
  color: #eb7300 !important;
}
.blog-5 .portfolio-header .text {
  color: #a21993 !important;
}

.blog-2 a {
  color: #3DAF2C;
}
.blog-3 a {
  color: #eecf22;
}
.blog-4 a {
  color: #eb7300;
}
.blog-5 a {
  color: #a21993;
}

.blog-2 .post-social i:hover {
  background: #3DAF2C !important;
}
.blog-3 .post-social i:hover {
  background: #eecf22 !important;
}
.blog-4 .post-social i:hover {
  background: #eb7300 !important;
}
.blog-5 .post-social i:hover {
  background: #a21993 !important;
}

.blog-2 .service-icon:hover {
  color: #3DAF2C !important;
}
.blog-3 .service-icon:hover {
  color: #eecf22 !important;
}
.blog-4 .service-icon:hover {
  color: #eb7300 !important;
}
.blog-5 .service-icon:hover {
  color: #a21993 !important;
}

.blog-2 #content-top h3 a {
  color: #3DAF2C !important;
}
.blog-3 #content-top h3 a {
  color: #eecf22 !important;
}
.blog-4 #content-top h3 a {
  color: #eb7300 !important;
}
.blog-5 #content-top h3 a {
  color: #a21993 !important;
}

.blog-2 #content-top h3 {
  color: #3DAF2C !important;
}
.blog-3 #content-top h3 {
  color: #eecf22 !important;
}
.blog-4 #content-top h3 {
  color: #eb7300 !important;
}
.blog-5 #content-top h3 {
  color: #a21993 !important;
}

.blog-2 #content-top h4 {
  color: #3DAF2C !important;
}
.blog-3 #content-top h4 {
  color: #eecf22 !important;
}
.blog-4 #content-top h4 {
  color: #eb7300 !important;
}
.blog-5 #content-top h4 {
  color: #a21993 !important;
}

.blog-2 #content-top input[type="submit"]:focus,
.blog-2 input[type="submit"]:hover,
.blog-2 .btn-white:focus, 
.blog-2 .btn-primary:focus, 
.blog-2 .btn-white:hover, 
.blog-2 .btn-primary:hover {
  background: #3DAF2C !important;
  border-color: #3DAF2C !important;
}
.blog-3 #content-top input[type="submit"]:focus,
.blog-3 input[type="submit"]:hover,
.blog-3 .btn-white:focus, 
.blog-3 .btn-primary:focus, 
.blog-3 .btn-white:hover, 
.blog-3 .btn-primary:hover {
  background: #eecf22 !important;
  border-color: #eecf22 !important;
}
.blog-4 #content-top input[type="submit"]:focus,
.blog-4 input[type="submit"]:hover,
.blog-4 .btn-white:focus, 
.blog-4 .btn-primary:focus, 
.blog-4 .btn-white:hover, 
.blog-4 .btn-primary:hover {
  background: #eb7300 !important;
  border-color: #eb7300 !important;
}
.blog-5 #content-top input[type="submit"]:focus,
.blog-5 input[type="submit"]:hover,
.blog-5 .btn-white:focus, 
.blog-5 .btn-primary:focus, 
.blog-5 .btn-white:hover, 
.blog-5 .btn-primary:hover {
  background: #a21993 !important;
  border-color: #a21993 !important;
}

.blog-2 #content-top h4 a {
	color: #3DAF2C !important;
}
.blog-3 #content-top h4 a {
  color: #eecf22 !important;
}
.blog-4 #content-top h4 a {
  color: #eb7300 !important;
}
.blog-5 #content-top h4 a {
  color: #a21993 !important;
}

.page #page .container .portfolio .isotope-item .post-thumbnail .content > a > h3.view-header {
	color: #fff !important;
}

.blog-1 .fc-button.fc-state-default {
	background-color: #ba0623;
	border: 1px solid #ba0623;
}
.blog-2 .fc-button.fc-state-default {
	background-color: #3DAF2C;
	border: 1px solid #3DAF2C;
}
.blog-3 .fc-button.fc-state-default {
  	background-color: #eecf22;
	border: 1px solid #eecf22;
}
.blog-4 .fc-button.fc-state-default {
 	background-color: #eb7300;
	border: 1px solid #eb7300;
}
.blog-5 .fc-button.fc-state-default {
  	background-color: #a21993;
	border: 1px solid #a21993;
}

.blog-1 .fc-button.fc-state-default:hover,
.blog-1 .fc-button.fc-state-active {
	background-color: #fff;
	color: #ba0623;
	border: 1px solid #ba0623;
}
.blog-2 .fc-button.fc-state-default:hover,
.blog-2 .fc-button.fc-state-active {
	background-color: #fff;
	color: #3DAF2C;
	border: 1px solid #3DAF2C;
}
.blog-3 .fc-button.fc-state-default:hover,
.blog-3 .fc-button.fc-state-active {
	background-color: #fff;
	color: #eecf22;
	border: 1px solid #eecf22;
}
.blog-4 .fc-button.fc-state-default:hover,
.blog-4 .fc-button.fc-state-active {
	background-color: #fff;
	color: #eb7300;
	border: 1px solid #eb7300;
}
.blog-5 .fc-button.fc-state-default:hover,
.blog-5 .fc-button.fc-state-active {
  	background-color: #fff;
	color: #a21993;
	border: 1px solid #a21993;
}

.blog-1 .rhcalendar.for-widget.flat-ui-cal .fc-day-header {
	color: #ba0623 !important;
}
.blog-2 .rhcalendar.for-widget.flat-ui-cal .fc-day-header {
	color: #3DAF2C !important;
}
.blog-3 .rhcalendar.for-widget.flat-ui-cal .fc-day-header {
  color: #eecf22 !important;
}
.blog-4 .rhcalendar.for-widget.flat-ui-cal .fc-day-header {
  color: #eb7300 !important;
}
.blog-5 .rhcalendar.for-widget.flat-ui-cal .fc-day-header {
  color: #a21993 !important;
}

.blog-2.single-contact .post-location .contact-details i {
	background: #3DAF2C !important;
}
.blog-3.single-contact .post-location .contact-details i {
  background: #eecf22 !important;
}
.blog-4.single-contact .post-location .contact-details i {
  background: #eb7300 !important;
}
.blog-5.single-contact .post-location .contact-details i {
  background: #a21993 !important;
}

.blog-1 .rhcalendar.for-widget.flat-ui-cal .fc-have-event .fc-day-number {
	background-color: #ba0623 !important;
}
.blog-2 .rhcalendar.for-widget.flat-ui-cal .fc-have-event .fc-day-number {
	background-color: #3DAF2C !important;
}
.blog-3 .rhcalendar.for-widget.flat-ui-cal .fc-have-event .fc-day-number {
  background-color: #eecf22 !important;
}
.blog-4 .rhcalendar.for-widget.flat-ui-cal .fc-have-event .fc-day-number {
  background-color: #eb7300 !important;
}
.blog-5 .rhcalendar.for-widget.flat-ui-cal .fc-have-event .fc-day-number {
  background-color: #a21993 !important;
}

.page .rhcalendar.for-widget.flat-ui-cal .fc-today .fc-day-number {
	background-color: #E74C3C !important;
}

.blog-1 #navigation .nav-pills > li.active:hover > a {
  background-color: #ba0623 !important;
}
.blog-2 #navigation .nav-pills > li.active:hover > a {
  background-color: #3DAF2C !important;
}
.blog-3 #navigation .nav-pills > li.active:hover > a {
  background-color: #eecf22 !important;
}
.blog-4 #navigation .nav-pills > li.active:hover > a {
  background-color: #eb7300 !important;
}
.blog-5 #navigation .nav-pills > li.active:hover > a {
  background-color: #a21993 !important;
}