/*
Theme Name: The Core Child
Description: The Core is created by <a href="http://themefuse.com">ThemeFuse</a>. The Core comes with 17 different themes inside it with more to come soon. The long list of features makes The Core the only stop when searching for a cutting edge WordPress theme. Child theme for the The Core. Child themes are the recommended way of making modifications to a theme. <a href="http://codex.wordpress.org/Child_Themes">Reade More</a>
Author: ThemeFuse
Author URI: http://themefuse.com/
Template: the-core-parent
Version: 1.0
Text Domain: the-core
Tags: left-sidebar, custom-background, custom-colors, custom-header, custom-menu, featured-images, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready
*/
/* Changes made by Ariel */
.fw-logo-retina .fw-site-logo {
    width: 985px;
}

@media (max-width: 1199px)
{
.fw-logo-retina .fw-site-logo {
    width: 585px;
}
}

/* added 6-27-17 - to center accordion titles */
.panel-title {
    text-align: center;
}

/* added 6-27-17 - to change the hover color for the accordion titles */
.panel-title a:hover {
    color: #86b724 !important;
}

/* added 8-17-17 - to remove headers and footers from the subscribe page */

.page-id-3299 .fw-header,
.page-id-3299 .fw-footer {
display: none;
}

/* added 8-18-17 - to remove headers and footers from the journey and future pages */

.page-id-3328 .fw-header,
.page-id-3328 .fw-footer {
display: none;
}

.page-id-3331 .fw-header,
.page-id-3331 .fw-footer {
display: none;
}

/* added 9-8-17 - to make the iframe for vimeo embed responsive */
.video-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
	z-index:0;
}
.video-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}
/* added 9-8-17 - to float text over the video */

.video-overlay {
    position:absolute;
    top:0;
    left:0;
    z-index:1;
}
/* added 9-10-17 - to float on hover over iframe */
.container-azb {
    position: relative;
    width: 100%;
}
.middle-azb {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%)
}
.container-azb:hover .video-responsive {
  opacity: 0.3;
}
.container-azb:hover .middle-azb {
  opacity: 1;
}
.text-azb {
  background-color: #86b724; /* was #4CAF50 */
  color: white;
  font-size: 16px;
  padding: 16px 32px;
}