/* @override 
	https://www.christianfrommuslim.com/wp-content/themes/b4st/theme/css/b4st.css */

/*
 * b4st CSS
 */
 
/* Global */

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Merriweather|Open+Sans&display=swap');

.black {
	background: #010101;
}

.orange {
	background: #ff911e;
}

.text-white {
	color: #fff;
}

.text-orange {
	color: #ff911e;
}

.text-serif {
	font-family: 'Merriweather', serif !important;
}

.caps {
	text-transform: uppercase;
}

.semi-bold {
	font-weight: 600;
}

.bold {
	font-weight: 700;
}

strong {
	font-weight: 700;
}

h1,h2,h3,h4,h5,h6{font-family: 'Merriweather', serif !important;}

.blockquote {
	margin-bottom: 1rem;
	font-size: 1.25rem;
	padding: 1rem;
	border: 1px solid #fff;
	border-radius: 8px;
	background-color: #e1dcd1 !important;
}

.blockquote-footer {
	display: block;
	font-size: 80%;
	color: #6c757d
}

.btn-secondary {
	background: #333 !important;
	border: 1px solid #333 !important;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a.nav-donate {
	text-transform: uppercase !important;
}



/* Sticky Footer */

html {
      scroll-behavior: smooth;
    }

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
		font-family: 'Open Sans', sans-serif;
		background-color: #010101;
}
main {
    flex: 1 0 auto;
}

.site-header-image {
	display: block;
	margin: auto;
}

.wp-caption {}
.wp-caption-text {}
.sticky {}
.screen-reader-text {}
.gallery-caption {}

.bypostauthor {}

.alignleft {
	float: left;
	margin: 8px 20px 20px 0;
}

.alignright {
	float: right;
}

.aligncenter {
	clear: both;
	display: block;
}

.btn-primary {
	color: #fff;
	background-color: #ff911e !important;
	border-color: #ff911e !important
}

.bg-dark{background-color:#303030!important}

.taxonomy-description {
	font-size:1.25rem;font-weight:300
}

/* Max img widths */

img,
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
	max-width: 100%;
	height: auto;
}

/* Author bio */

.author-bio .avatar {
	border: 1px solid #dee2e6;
	border-radius: 50%;
}

/* Main content */

.hero-header {
	width: 100%;
	position: relative;
}

.hero-home {
  background: #f5f5f5 url('../images/hero-home-mobile.jpg') no-repeat center top;
  background-size: cover;              /* make it full-bleed */
  min-height: 60vh;                    /* breathe a bit on small screens */
  height: auto;                        /* let content define height on mobile */
  position: relative;
}

.absolute-wrapper {
	display: none;
}

.segments {
	background: rgba(0,0,0,0.6);
	padding: 25px 0 15px 0;
	color: #fd8c01;
}

.segments-text {
	float: left;
	padding-right: 1rem;
}

.segments-list a {
	color: #fff;
}

.sv-desktop {
	display: none;
}

.sv-mobile {
	display: inline-block;
}

@media (min-width: 768px) {
  .hero-home {
    background: #f5f5f5 url('../images/hero-bg.jpg') no-repeat center bottom;
    background-size: cover;            /* ensure cover here too */
    min-height: 703px;                 /* keep your visual height */
    height: 703px;                     /* if you prefer a fixed height desktop */
  }
	
	.absolute-wrapper{
			display: inline-block;
	    position: absolute;
	    width:100%;
	    bottom: 0;
	}
	
	.filmstrip {
		background: transparent url('../images/hero-about-bg.png') repeat-x center top;
		height: 150px;
	}
}
@media (min-width: 992px) {
  .sv-desktop {
  	display: inline-block;
  }
	
	.sv-mobile {
		display: none;
	}
}

.hero-logo {
	width: 360px;
	height: auto;
}

.hero-hr {
	width: 240px;
	height: auto;
}

.hero-about {
	background: url('../images/hero-about-us-mobile.png') no-repeat center top;
	height: 148px;
	background-size: cover;
	position: relative;
	overflow-y: hidden;
}

@media (min-width: 768px) {
  .hero-about {
		background: url('../images/hero-about-bg.png') no-repeat center top;
		background-size: auto 100%;
		
	}
}

.intro-video {
	background: #202020;
}

.embed-container { 
		position: relative; 
		padding-bottom: 56.25%;
		overflow: hidden;
		max-width: 100%;
		height: auto;
	} 

	.embed-container iframe,
	.embed-container object,
	.embed-container embed { 
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border: 1px solid #202020;
	}


.main-points {
}

.main-points a {
	color: #4899c3;
}

.main-points-icon {
	height: 75px;
	width: auto;
}

.main-points-item {
	padding-top: 60px;
	padding-bottom: 60px;
	border-bottom: 1px solid #393939;
}

.palm-content {
	padding: 90px 0;
	background: #d7d3c8;
}

/* Single Page, Post */

.study-guide {
	background: #f5f5f5;
	padding: 20px;
	margin: 5rem 0 5rem 0;
	border: 1px solid #cdcdcd;
}

.resource a img {
	background: #202020;
	padding: .5rem;
	border: 1px solid #020202;
  opacity: 1;
  filter: alpha(opacity=100);
  transition: opacity .25s ease-in-out;
  -moz-transition: opacity .25s ease-in-out;
  -webkit-transition: opacity .25s ease-in-out;
}
 
.resource a:hover img {
	border: 1px solid #efefef;
  opacity: .75;
  filter: alpha(opacity=65);
  transition: opacity .25s ease-in-out;
  -moz-transition: opacity .25s ease-in-out;
  -webkit-transition: opacity .25s ease-in-out;
}

/* Active (expanded) accordion button */
.accordion-button:not(.collapsed) {
  background-color: #626262; /* your custom background color */
  color: #fff;               /* your custom text color */
}

/* Optional: change focus/hover styles too */
.accordion-button:focus {
  box-shadow: none;
}

.accordion .accordion-body a {
  color: #4899c3; /* your normal link color */
  text-decoration: none;
	font-weight: 600;
}

.accordion .accordion-body a:hover {
  color: #003366; /* your hover color */
}

.wp-caption {
    /* Force the box to be 100% */
    width: 100% !important;
		font-size: .75rem;
		padding: 10px 0;
  }
  #content .wp-caption a img {
    /* Scale down if too big */
    max-width: 99.03225806%; /* 614/620 */
    height: auto;
  }

@media (min-width: 992px){
  .wp-caption {
    /* Force the box to be 100% */
    width: 100% !important;
		font-size: .75rem;
		padding: 10px 0;
  }
  #content .wp-caption a img {
    /* Scale down if too big */
    max-width: 99.03225806%; /* 614/620 */
    height: auto;
  }
}

@media (min-width: 768px){
  .wp-caption {
    /* Force the box to be 100% */
    width: 100% !important;
		font-size: .75rem;
		padding: 10px 0;
  }
  #content .wp-caption a img {
    /* Scale down if too big */
    max-width: 99.03225806%; /* 614/620 */
    height: auto;
  }
}


/* Sidebar */

/* Hide form placeholders on focus */

input:focus::-webkit-input-placeholder { color: transparent; }
input:focus:-moz-placeholder { color: transparent; } /* FF 4-18 */
input:focus::-moz-placeholder { color: transparent; } /* FF 19+ */
textarea:focus::-webkit-input-placeholder { color: transparent; }
textarea:focus:-moz-placeholder { color: transparent; } /* FF 4-18 */
textarea:focus::-moz-placeholder { color: transparent; } /* FF 19+ */

/* Comments */

#comments,
#reply-title {
	margin-top: 1.5rem;
	margin-bottom: 1rem;
}

.commentlist,
.commentlist ul {
	padding-left: 0;
}

.commentlist li {
	padding: 1rem;
}

.comment-meta {
	margin-bottom: 1rem;
}

.comment > .children {
	margin-top: 1rem;
	margin-right: -0.625rem;
	margin-bottom: -1.625rem;
}
/* Site footer */

.footernav {
	background: #202020;
	padding: 90px 0;
	color: #eaeae7;
}

.footernav .utilities a {
	color: #eaeae7;
}

.footernav ul.utilities li {
	padding-bottom: 5px;
}

.footernav ul.utilities li.half:after {
	content: "";
	display: block;
	width: 80%;
	padding-top: 5px; /* This creates some space between the element and the border. */
	border-bottom: 1px solid #393939; /* This creates the border. Replace black with whatever color you want. */
}

#bottom-line {
	color:rgba(255,255,255,.5);
}

#bottom-line a	 {
	color:rgba(255,255,255,.5);
}

#bottom-line a:hover	 {
	color:rgba(255,255,255,.75)
}

.footer-icon {
	height: 1rem;
	width: auto;
}

/***** Modal *****/

 .navbar-collapse.show { z-index: 1051; }

.modal-content iframe{
        margin: 0 auto;
        display: block;
    }

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
     -moz-transition: -moz-transform 0.3s ease-out;
       -o-transition: -o-transform 0.3s ease-out;
          transition: transform 0.3s ease-out;
}

.modal-content {
	background: #222;
	margin-top: 100px;
	border: 1px solid #777;
}

.modal-header  {
	color: #fff;
}

.modal-header button.header {
	color: #fff;
}

.video-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.video-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}
