



@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis/Metropolis-Regular.woff2') format('woff2'),
        url('../fonts/Metropolis/Metropolis-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis/Metropolis-Light.woff2') format('woff2'),
        url('../fonts/Metropolis/Metropolis-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis/Metropolis-SemiBold.woff2') format('woff2'),
        url('../fonts/Metropolis/Metropolis-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis/Metropolis-Bold.woff2') format('woff2'),
        url('../fonts/Metropolis/Metropolis-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/*
Color Schemes:
Gran/Tan: #D7CEC7
Blackboard: #565656
Burgandy: #76323F
Dark Tan: #C09F80

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #76323F;
  --secondary-color:              #565656;
  --section-bg-color:             #D7CEC7;
  --site-footer-bg-color:         #c09f80;
  --custom-btn-bg-color:          #597081;
  --custom-btn-bg-hover-color:    #76323F;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #e9eaeb;

  --body-font-family:             'Metropolis', sans-serif;

  --h1-font-size:                 52px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  16px;
  --btn-font-size:                18px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -2px;
}

h2 {
  color: var(--secondary-color);
  font-size: var(--h2-font-size);
  letter-spacing: -2px;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  color: var(--primary-color);
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.section-overlay + .container {
  position: relative;
}


/*---------------------------------------
  CUSTOM BLOCK               
-----------------------------------------*/
.custom-block-wrap {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.custom-block-wrap:hover {
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.custom-block-body {
  padding: 30px;
}

.custom-block-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-block .custom-btn {
  border-radius: 0;
  display: block;
}


/*---------------------------------------
  PROGRESS BAR               
-----------------------------------------*/
.progress {
  background: var(--border-color);
  height: 5px;
}

.progress-bar {
  background: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM LIST               
-----------------------------------------*/
.custom-list {
  margin-bottom: 0;
  padding-left: 0;
}

.custom-list-item {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 10px;
}

.centeredimage {
	display: block; 
	margin:0 auto;
	max-width: 100%;
}

.leftimage {
	text-align: left;
}

.centeredimagedropshadow {
	display: block; 
	margin:0 auto;
	filter: drop-shadow(5px 5px 5px #222);
}


/*---------------------------------------
  CUSTOM TEXT BOX               
-----------------------------------------*/
.custom-text-box {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  margin-bottom: 24px;
  padding: 40px;
}

.custom-text-box-image {
  border-radius: var(--border-radius-medium);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-text-box-image-no-stretch {
  border-radius: var(--border-radius-medium);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.custom-text-box-icon {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--secondary-color);
  font-size: var(--h6-font-size);
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  line-height: 30px;
}


/*---------------------------------------
  ICON IMAGE - TESTIMONIAL, AUTHOR               
-----------------------------------------*/
.icon-image {
  border-radius: var(--border-radius-large);
  width: 65px;
  height: 65px;
  object-fit: cover;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--secondary-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding: 15px 25px;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
  color: var(--custom-btn-bg-color);
  margin-top: 8px;
  padding: 12px 25px;
}

.custom-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--primary-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  background: var(--white-color);
  z-index: 9;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-brand {
  color: var(--primary-color);
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand span {
  display: inline-block;
  vertical-align: middle;
}

.navbar-brand small {
  color: var(--secondary-color);
  display: block;
  font-size: 10px;
  line-height: normal;
  text-transform: uppercase;
}

.logo {
  width: 300px;
  height: auto;
}

.logofooter {
  width: 200px;
  height: auto;
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin-right: 0;
  margin-left: 0;
  padding: 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  background: transparent;
  color: var(--primary-color);
}

.dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  max-width: 50px;
  padding: 0;
  margin-top: 20px;
}

.dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-menu li:last-child .dropdown-item {
  padding-top: 0;
}

.dropdown-item.active, 
.dropdown-item:active,
.dropdown-item:focus, 
.dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
}

.dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

.pagelinksection {
    background-color: #D7CEC7;
    width: 100%;
    height: auto;
	padding: 25px 0 20px 0;
	box-shadow: -1px 12px 14px -7px rgba(0,0,0,0.75);
	-webkit-box-shadow: -1px 12px 14px -7px rgba(0,0,0,0.75);
	-moz-box-shadow: -1px 12px 14px -7px rgba(0,0,0,0.75);
}



/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background: var(--primary-color);
  padding-top: 15px;
  padding-bottom: 10px;
}

.site-header p,
.site-header p a,
.site-header .social-icon-link {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
}

.site-header .social-icon {
  text-align: right;
}

.site-header .social-icon-link {
  background: transparent;
  width: inherit;
  height: inherit;
  line-height: inherit;
  margin-right: 15px;
}


/*---------------------------------------
  HOME - PAGE SLIDER        
-----------------------------------------*/

.slider {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  height: 680px;
}

.slider .slides {
  display: flex;
  position: relative;
  width: 300%;
  height: 100%;
  transition: transform 0.5s ease;
  left: 0;
}

.slider .slide {
  position: relative;
  flex: 0 0 33.333333%;
  height: 100%;
}

.slider .slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider .slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 45px;
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;	
}

.slider .slide-caption2 h1 {
	font-size: 52px;
}

/*Experimenting with caption */

.slider .slide-caption2 {
  /*background: #FFF;*/
  background: rgb(255,255,255);
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(106,106,106,1) 100%);  
  clip-path: polygon(100% 100%, 100% 150px, 0 100%);
  color: #5a6f80;
  top: 1px;
  bottom: -1px;
  right: 0;
  left: auto;
  text-align: right;
  min-width: 680px;
  min-height: 680px;
  padding: 100px 100px 50px 100px;
  position: absolute;
}

.d-flex {
	display: flex!important;
}

.flex-column {
	flex-direction: column!important;
}
	
.justify-content-end {
	justify-content: flex-end!important;
}	
	


@media screen and (max-width: 768px) {

.slider .slide-caption2 {
	min-width: inherit;
	min-height: inherit;
	padding-bottom: 50px;
	clip-path: polygon(100% 100%, 190% 100px, 0 100%);
	padding-right: 10px;
	font-size: 13px;
	}
	
.slider .slide-caption2 h1 {
	font-size: 22px;
	padding-left: 110px;
}
	
}


	
/* */


.slider .slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.slider .slide:hover .slide-caption {
  opacity: 1;
}

.slider.paused .slide {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.slider:hover .slide {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.slider:hover .paused {
  animation-play-state: paused;
}

.slider .paused {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation-play-state: running;
  animation-name: pausedAnimation;
  animation-duration: 9999999s; /* Set to a very large value to effectively disable animation */
  animation-timing-function: linear;
}

@keyframes pausedAnimation {
  from {
    transform: none;
  }
  to {
    transform: none;
  }
}

.slider-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 10px;
}

.slider-nav ul {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.slider-nav li {
  margin: 0 5px;
  list-style: none;
}

.slider-nav .slider-btn {
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.5;
  transition: opacity 0.2s ease-in-out;
  margin-bottom: 10px;
}

.slider-nav .slider-btn.active {
  opacity: 1;
}

.slider-nav .slider-btn:hover {
  opacity: 1;
}

.slider .slide video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}





@media screen and (max-width: 768px) {
  .slider {
	height: 575px;
	}
	
  .slider .slides {
    display: flex;
    left: 0;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease;
  }
	
  .slider .slide {
    position: relative;
    flex: 0 0 33.333333%;
    height: 100%;
  }
}






/*---------------------------------------
  HOME - MISSION STATEMENT              
-----------------------------------------*/


.mission-section {
  position: relative;
  overflow: hidden;
  background-color: #f0f8ff;
  background-image:url("../images/diamond-upholstery.png")
}



/*---------------------------------------
  HOME - HIGHLIGHT BLOCK SECTION             
-----------------------------------------*/

.newblock{
	width:100%;
	height: auto;
	text-align: center;

}

.newblockimg {
	max-width:100%;
	height: auto;
	display: inline-block;
	-webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -ms-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
	text-align: center;
	border-radius: 20px;
	margin-bottom: 25px;
	
}

.newblockimg:hover {
	opacity: 0.5;
}




/*---------------------------------------
  HOME - SCRIPTURE SECTION              
-----------------------------------------*/
.scripture-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.scripture-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 350px;
  height: 400px;
  object-fit: cover;
}

.custom-text-block {
  padding: 60px 40px;
}

#DIYBox {
  background-color: #FFF;
  padding: 10px ;
  border: 8px solid #565656;
  border-radius: 20px;
  box-shadow:inset 0 -3em 3em rgba(0,0,0,0.1),
             0 0  0 2px rgb(255,255,255),
             0.3em 0.3em 1em rgba(0,0,0,0.3);    
}



/*---------------------------------------
  HOME - HAPPENING THIS MONTH              
-----------------------------------------*/

.thismonthsection {
  background: var(--white-color);
}

.thismonthsection-right {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 40px;
}

.info-wrap {
  padding-top: 0px;
}

.image-wrap {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  width: 100%;
}






/*---------------------------------------
  VOLUNTEER (NOT USED....)             
-----------------------------------------*/
.volunteer-section {
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.volunteer-section::after {
  content: "";
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  bottom: -110px;
  right: -80px;
  width: 350px;
  height: 350px;
}

.volunteer-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.volunteer-image {
  border-radius: 100%;
  display: block;
  margin: auto;
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.volunteer-section .custom-block-body {
  max-width: 440px;
  margin: 0 auto;
}

.volunteer-section .custom-block-body p {
  line-height: 1.7;
}


/*---------------------------------------
  I'M NEW        
-----------------------------------------*/
.imnew-detail-header-section {
  background-image: url('../images/ImNew-Header.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.imnew-block-top {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.imnew-block-two-col-image-wrap {
  border-radius: var(--border-radius-small);
  position: relative;
  overflow: hidden;
  width: 150px;
  margin-right: 20px;
}

.imnew-category-block {
  background: var(--secondary-color);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 10px 20px;
}

.imnew-category-block .category-block-link {
  color: var(--white-color);
  margin-right: 10px;
}

.imnew-block-info {
  padding-top: 10px;
  padding-bottom: 10px;
}

.imnew-block-title-link {
  color: var(--dark-color);
}

.imnew-detail-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

blockquote {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-semibold);
  color: var(--site-footer-bg-color);
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 90px 50px 50px 50px;
  text-align: center;
}

blockquote::before {
  content: "“";
  color: var(--custom-btn-bg-color);
  font-size: 100px;
  line-height: 1rem;
  display: block;
}

.author-comment-link {
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-semibold);
}

.search-form {
  margin-top: 20px;
}

.category-block,
.subscribe-form {
  margin-top: 40px;
  margin-bottom: 40px;
}

.category-block-link {
  font-size: var(--copyright-font-size);
  margin-top: 5px;
  margin-bottom: 5px;
}

.category-block-link:hover {
  color: var(--primary-color);
}

.badge {
  background: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding-bottom: 2px;
}

.tags-block-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  display: inline-block;
  font-size: var(--copyright-font-size);
  line-height: normal;
  margin-right: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 8px 15px;
}

.tags-block-link:hover {
  border-color: var(--dark-color);
  color: var(--dark-color);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--border-radius-medium);	
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

details {
  background-color: #76323F;
  color: #fff;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  border-radius: 10px;
  width: 60%;
  margin-bottom: 15px;
}

summary {
  padding: 1em 1.3rem;
  list-style: none;
  display: flex;
  justify-content: space-between;  
  transition: height 1s ease;
}

summary::-webkit-details-marker {
  display: none;
}

summary:after{
  content: "\002B";
}

details[open] summary {
  border-bottom: 1px solid #aaa;
}

details[open] summary:after{
  content: "\00D7";
}

details[open] div{
  padding: .5em 1em ;
  background-color: #9C9C9C;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  text-align: left;
}

@media screen and (max-width: 768px) {
details {
  width: 100%;
}

	
}


/*---------------------------------------
  ABOUT US        
-----------------------------------------*/
.aboutus-detail-header-section {
  background-image: url('../images/AboutUs-Header.jpg');
  background-repeat: no-repeat;
  background-position: 25% 75%;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}


.aboutus-mission-section {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  background-image:url("../images/dimension.png")
}


.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  margin: 20px;
  padding: 20px;
  width: 600px;
  background-color: #f2f2f2;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.card img {
  border-radius: 50%;
  margin-bottom: 20px;
  text-align: center;
  width: 50%;
  margin-left: 25%;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.card p {
  font-size: 18px;
  color: #888;
}



/*---------------------------------------
  FACILITIES        
-----------------------------------------*/
.facilities-detail-header-section {
  background-image: url('../images/Facilities-Header.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

/* General button style */
.btn-facilities {
	border: none;
	font-size: inherit;
	color: inherit;
	background: none;
	cursor: pointer;
	padding: 25px 80px;
	display: inline-block;
	margin: 15px 30px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	outline: none;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.btn-facilities:after {
	content: '';
	position: absolute;
	z-index: -1;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

/* Pseudo elements for icons */
.btn-facilities:before {
	font-family: 'FontAwesome';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	position: relative;
	-webkit-font-smoothing: antialiased;
}


/* Icon separator */
.btn-facilities-sep {
	padding: 25px 60px 25px 120px;
}

.btn-facilities-sep:before {
	background: rgba(0,0,0,0.15);
}


/* Button 1 */
.btn-facilities-1 {
	background: #76323F;
	color: #fff;
}

.btn-facilities-1:hover {
	background: #a25d6b;
}

.btn-facilities-1:active {
	background: #a25d6b;
	top: 2px;
}

.btn-facilities-1:before {
	position: absolute;
	height: 100%;
	left: 0;
	top: 0;
	line-height: 3;
	font-size: 140%;
	width: 60px;
}

/* Button 2 */
.btn-facilities-2 {
	background: #34495e;
	color: #fff;
}

.btn-facilities-2:hover {
	background: #2c3e50;
}

.btn-facilities-2:active {
	background: #2c3e50;
	top: 2px;
}

.btn-facilities-2:before {
	position: absolute;
	height: 100%;
	left: 0;
	top: 0;
	line-height: 3;
	font-size: 140%;
	width: 60px;
}


/*---------------------------------------
  SERVICES        
-----------------------------------------*/
.services-detail-header-section {
  background-image: url('../images/Services-Header.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.video-container-services {
  display: flex;
  flex-wrap: wrap;
}

.video-services {
  width: 50%;
  padding: 0 0.5rem;
  margin-bottom: 1rem;
}

.video-wrapper-services {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.youtube-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.caption {
  font-size: 1rem;
  font-weight: bold;
  text-align: left;
  margin-top: 2rem;
  padding-left: 10px;
  padding-bottom: 10px;
}

.servicesdivider {
	/*background-color: #B8B8B8;*/
	background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(184,184,184,1) 20%, rgba(184,184,184,1) 50%, rgba(184,184,184,1) 80%, rgba(184,184,184,0) 100%);
    width: 100%;
    height: 75px;
	box-shadow: -1px 12px 14px -7px rgba(0,0,0,0.75);
	-webkit-box-shadow: -1px 12px 14px -7px rgba(0,0,0,0.75);
	-moz-box-shadow: -1px 12px 14px -7px rgba(0,0,0,0.75);

}

@media screen and (max-width: 768px) {
	
.video-services {
  width: 100%;
}
	
}

/*---------------------------------------
  EVENTS        
-----------------------------------------*/
.events-detail-header-section {
  background-image: url('../images/Events-Header.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.event-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.event-card {
  width: 350px;
  height: auto;
  background-color: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
  margin: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;}

.event-image {
  height: 250px;
  overflow: hidden;
  flex: 0 0 auto;	
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.event-info {
  padding: 20px;
  text-align: center;
  background-color: #FFF;
  background-image: url("../images/events/checkered-pattern.png");
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;	
}


.event-info h3 {
  margin-top: 0;
}

.event-info h7 {
  font-size: 18px;
}

.event-info p {
  margin: 10px 0;
  text-align: left;
}

.event-info a {
  display: block;
  margin-top: auto;
  background-color: #4CAF50;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.event-card:hover {
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

.event-card:hover .event-image img {
  transform: scale(1.2);
}

.event-info a:hover {
  background-color: #fff;
  color: #4CAF50;
}

.gallery {
	margin-left: 11%;
}

@media screen and (max-width: 1200px) {

  .gallery {
		margin-left: 0%;
	}	
	
}

@media screen and (max-width: 768px) {
  .event-container {
    display: block;
    justify-content: center;
    align-items: center;
  }
  
  .event-card {
    width: 100%;
    height: auto;
    margin: 20px 0;
  }
  
  .event-info {
    padding: 10px;
  }
	
.gallery {
	margin-left: 0%;
}	
}

/*---------------------------------------
  GET CONNECTED        
-----------------------------------------*/
.getconnected-detail-header-section {
  background-image: url('../images/GetConnected-Header.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.container-overlay {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.image-overlay1 {
  display: block;
  width: 80%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 20px;
}

.image-overlay2 {
  display: block;
  width: 50%;
  max-width: 400px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  transform: translate(25%, 25%);
  border-radius: 20px;
  border: thin solid #000;
}

.image-overlay3 {
  display: block;
  width: 60%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 20px;
}

.image-overlay4 {
  display: block;
  width: 25%;
  max-width: 400px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  transform: translate(-90%, 10%);
  border-radius: 20px;
  border: thin solid #000;
}

.accordionconnected {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.accordionconnected-item {
  width: 33.33%;
  padding: 0 10px;
  margin-bottom: 80px;
}

.accordionconnected-header {
  background: rgb(92,153,154);
  background: linear-gradient(142deg, rgba(92,153,154,1) 0%, rgba(30,88,90,1) 100%);  
  margin: 0;
  cursor: pointer;
  position: relative;
  text-align: center;
  font-size: 35px;
  padding: 0px;
}

.accordionconnected-header-text {
  padding: 20px 0px!important;
  color: #FFF;
}

.accordionconnected-header img {
  width: 100%;
  height: auto;
  display: block;
}


.accordionconnected-content {
  display: none;
  padding: 10px;
  border: thin solid #CCCCCC;
}

.accordionconnected-item.active .accordionconnected-content {
  display: block;
}

.section-padding-youth-background {
  padding-top: 100px;
  padding-bottom: 40px;
  background-color: #ebebeb;
  background-image: url("../images/skulls.png");
}

.section-padding-children-background {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #ffffff;
  background-image: url("../images/inspiration-geometry.png");
}



@media only screen and (max-width: 768px) {
.accordionconnected {
  margin: 0;
}

.accordionconnected-item {
  width: 100%;
  padding: 0;
}
	
.container-overlay {
  max-width: 80%;
  margin: 0 auto;
}	
}

/*---------------------------------------
  AMERICAN HERITAGE GIRLS        
-----------------------------------------*/
.AHG-detail-header-section {
  background-image: url('../images/AHG-Header.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.AHG-section {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  background-image:url("../images/AHG-BK.png");
  margin-top: 12px;
}


/*---------------------------------------
  PICKIN' & GRINNIN'       
-----------------------------------------*/
.pickin-detail-header-section {
  /*background-image: url('../images/Pickin-Header.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;*/
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
  overflow: hidden; 
}

#background-video {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.Pickin-section {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  background-image:url("../images/Pickin-BK.png");
  margin-top: 12px;
}


/*---------------------------------------
  A LIVING HOPE       
-----------------------------------------*/
.alivinghope-detail-header-section {
  background-image: url('../images/ALivingHope-Header.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.livinghopeimage {
  text-align: left;
  max-width: 360px;
  height: auto;
  box-shadow: 0px 3px 15px 5px rgba(166,166,166,1);
  border:thin solid #000;
}


/*---------------------------------------
  MISSIONS       
-----------------------------------------*/
.missions-detail-header-section {
  background-image: url('../images/Missions-Header.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.mission-container {
  max-width: 85%;
  margin: 0 auto;
  text-align: center;
}

.mission-tabs {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.tablinks {
  background-color: #ddd;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 20px;
  font-size: 18px;
  margin-right: 5px;
  border-radius: 5px 5px 0 0;
}

.tablinks.active {
  background-color: #555;
  color: #fff;
}

.mission-content {
  display: flex;
  flex-wrap: wrap;
}

.mission-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0;
}


.mission-column {
  width: 50%;
}

.mission-text {
  padding: 0 20px;
  text-align: left;
}

.mission-image {
  text-align: right;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.tabcontent {
  display: none;
  padding: 20px;
  border: 1px solid #ddd;
}

.tabcontent.active {
  display: block;
}

.missiontripslider {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}
        
.missiontripslider img {
  width: 100%;
  height: auto;
  display: none;
}
        
.missiontripslider img.active {
  display: block;
}
        
.missiontripslider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  padding: 10px 15px;
  background: #fff;
  border: none;
  cursor: pointer;
}
        
.missiontripslider button.prev {
  left: 10px;
}
        
.missiontripslider button.next {
  right: 10px;
}



@media only screen and (max-width: 767px) {
  .tablinks {
    margin-right: 0;
    margin-bottom: 5px;
    width: 100%;
    border-radius: 5px;
  }

  .mission-tabs {
    flex-direction: column;
  }

  .mission-row {
    flex-direction: column;
  }

  .mission-column {
    width: 100%;
  }

  .mission-text,
  .mission-image {
    text-align: center;
  }
}


/*---------------------------------------
  NEWSLETTERS        
-----------------------------------------*/
.newsletters-detail-header-section {
  background-image: url('../images/Newsletters-Header.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.pdfviewer-mobile {
	display: none;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-detail-header-section {
  background-image: url('../images/Contact-Header.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}

.contact-section {
  background: var(--white-color);
}

.contact-form {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 40px;
}

.contact-info-wrap {
  padding-top: 40px;
}

.contact-image-wrap {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  width: 100%;
}

/*---------------------------------------
  GIVING               
-----------------------------------------*/
.giving-detail-header-section {
  background-image: url('../images/Giving-Header.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}


/*---------------------------------------
  PRIVACY POLICY               
-----------------------------------------*/
.privacy-detail-header-section {
  background-image: url('../images/Privacy-Header.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}




/*---------------------------------------
  TESTIMONIAL CAROUSEL              
-----------------------------------------*/
.testimonial-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}


#testimonial-carousel .carousel-caption {
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
}

#testimonial-carousel .carousel-title {
  background: var(--section-bg-color);
  line-height: normal;
  margin-bottom: 30px;
}

#testimonial-carousel .carousel-title::before {
  content: open-quote;
  color: var(--p-color);
  font-size: var(--h1-font-size);
  position: relative;
  top: 10px;
  right: 10px;
}

#testimonial-carousel .carousel-title::after {
  content: close-quote;
  color: var(--p-color);
  font-size: var(--h1-font-size);
  position: relative;
  top: 10px;
  left: 10px;
}

#testimonial-carousel .carousel-title {
  quotes: "“" "”" "‘" "’";
}

#testimonial-carousel .carousel-name {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 10px 20px;
}

#testimonial-carousel .carousel-name::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--primary-color);
}

.carousel-name-title {
  font-weight: var(--font-weight-semibold);
}

#testimonial-carousel .carousel-indicators {
  position: relative;
  top: 150px;
  bottom: auto;
  margin-top: 50px;
  margin-bottom: 150px;
}

#testimonial-carousel .carousel-indicators li {
  text-indent: inherit;
  background: transparent;
  margin: 0 10px; 
}

#testimonial-carousel .carousel-indicators li,
#testimonial-carousel .carousel-indicators li::before {
  width: 45px;
  height: 45px; 
}

#testimonial-carousel .carousel-indicators .icon-image {
  width: 45px;
  height: 45px; 
}

#testimonial-carousel .carousel-indicators .active,
#testimonial-carousel .carousel-indicators .active .icon-image {
  background: transparent;
  width: 50px; 
  height: 50px;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control,
.input-group-file {
  background-color: var(--section-bg-color);
  box-shadow: none;
  border: 0;
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  border-color: var(--secondary-color);
}

.custom-form label {
  margin-bottom: 10px;
}

.custom-form .form-check-group {
  margin-bottom: 20px;
}

.donate-form .form-check-group-donation-frequency {
  padding-right: 0;
}

.form-check-group-donation-frequency + .form-check-group-donation-frequency {
  padding-right: 12px;
  padding-left: 0;
}

.form-check-group-donation-frequency .form-check-label {
  font-weight: var(--font-weight-semibold);
}

#DonationFrequencyOne {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#DonationFrequencyMonthly {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-form .form-check-radio {
  position: relative;
  height: 100%;
  padding-left: 0;
}

.custom-form .input-group-text {
  background: var(--secondary-color);
  border: 0;
  color: var(--white-color);
}

.custom-form .form-check-radio .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.form-check-radio .form-check-input[type=radio] {
  background-color: var(--section-bg-color);
  border-radius: .25rem;
  border: 0;
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 25px 50px;
  transition: all 0.5s;
}

.form-check-radio .form-check-input:checked[type=radio] {
  background-image: none;
}

.form-check-radio .form-check-input:checked[type=radio] + .form-check-label,
.form-check-radio .form-check-input:hover + .form-check-label,
.form-check-radio .form-check-input:checked + .form-check-label {
  color: var(--white-color);
}

.form-check-radio .form-check-input:hover,
.form-check-radio .form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--white-color);
}

.input-group-file {
  border-radius: .25rem;
  padding: 13px .75rem;
}

.input-group-file input[type=file] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  padding: 0;
}

.input-group-file .input-group-text {
  background: transparent;
  color: inherit;
  margin-bottom: 0;
  padding: 0;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  CONTACT SEARCH & DONATE & SUBCRIBE FORM              
-----------------------------------------*/
.contact-form .form-control {
  background: var(--white-color);
}

.search-form {
  position: relative;
}

.search-form .form-control {
  padding-right: 50px;
}

.search-form button[type="submit"] {
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  color: var(--p-color);
  width: 50px;
  padding: 12px;
}

.search-form button[type="submit"]:hover {
  background: transparent;
  color: var(--dark-color);
}

.subscribe-form {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 30px;
}

.subscribe-form .form-control {
  background: var(--white-color);
}

.donate-form .form-control {
  margin-bottom: 0;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--site-footer-bg-color);
  padding-top: 70px;
}

.site-footer-bottom {
  background-color: var(--secondary-color);
  position: relative;
  z-index: 2;
  margin-top: 70px;
  padding-top: 25px;
  padding-bottom: 25px;
}

.site-footer-bottom a {
	color: var(--white-color);
}

.site-footer-bottom a:hover {
	color: #FFF;
}

.site-footer-link {
  color: var(--white-color);
}

.copyright-text {
  color: var(--section-bg-color);
  font-size: var(--copyright-font-size);
  margin-right: 30px;
}

.site-footer .custom-btn {
  font-size: var(--copyright-font-size);
}

.site-footer .custom-btn:hover {
  background: var(--primary-color);
}


/*---------------------------------------
  FOOTER MENU               
-----------------------------------------*/
.footer-menu {
  column-count: 2;
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: block;
}

.footer-menu-link {
  font-size: var(--p-font-size);
  color: var(--white-color);
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 5px;
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--site-footer-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 38px;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}



/*---------------------------------------
  FEATURE BLOCK              
-----------------------------------------*/
.featured-block {
  text-align: center;
  transition: all 0.5s ease;
  min-height: 256px;
  padding: 15px;
}

.featured-block:hover {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.featured-block:hover .featured-block-image {
  transform: scale(0.75);
}

.featured-block-image {
  display: block;
  margin: auto;
  transition: all 0.5s;
}

.featured-block:hover .featured-block-text {
  margin-top: 0;
}

.featured-block-text {
  color: var(--primary-color);
  font-size: var(--h5-font-size);
  margin-top: 20px;
  transition: all 0.5s;
}


/*---------------------------------------
  LEADERSHIP TEAM SECTION              
-----------------------------------------*/
.leadership-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.leadership-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 350px;
  height: 400px;
  object-fit: cover;
}

.leadership-custom-text-block {
  padding: 60px 40px;
}























/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .featured-block {
    min-height: inherit;
  }

  .volunteer-section::after {
    width: 450px;
    height: 450px;
  }
  
  .volunteer-image {
    width: 350px;
    height: 350px;
  }
}



@media screen and (max-width: 991px) {
	

  .imnew-detail-header-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
	
  .aboutus-detail-header-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
	
  .facilities-detail-header-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
	
  .pdfviewer-desktop {
	display: none;
}
	
  .pdfviewer-mobile {
	display: contents;
}	
	
	
	
	
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
    
  .section-padding-youth-background {
    padding-top: 50px;
    padding-bottom: 0px;
  }
    
  .section-padding-children-background {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-form {
    padding-bottom: 40px;
  }

  .donate-form {
    padding: 35px;
  }

  .navbar {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 8px 20px;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
    position: relative;
    margin-top: 5px;
    margin-bottom: 20px;
    left: 20px;
  }

  .site-header .social-icon {
    text-align: left;
    margin-top: 5px;
  }

  .hero-section-full-height {
    height: inherit;
  }

  .cta-section::before {
    width: 150px;
    height: 150px;
  }

  .cta-section::after {
    bottom: -60px;
    width: 100px;
    height: 100px;
  }

  .cta-section .row {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .volunteer-section::after {
    width: 300px;
    height: 300px;
  }

  .testimonial-section::before {
    width: 150px;
    height: 150px;
  }

  .testimonial-section::after {
    width: 200px;
    height: 200px;
  }

  #testimonial-carousel .carousel-caption {
    padding-top: 0;
  }

  blockquote {
    padding: 70px 30px 30px 30px;
  }

  .scripture-image {
    width: inherit;
    height: 450px;
  }
	
  .leadeership-image {
    width: inherit;
    height: 450px;
  }

  .volunteer-image {
    width: 250px;
    height: 250px;
    margin: 0;
  }

  .custom-text-block {
    padding: 20px 0 0 0;
  }

  .custom-text-box,
  .volunteer-form {
    padding: 30px;
  }

  .counter-number, 
  .counter-number-text {
    font-size: var(--h2-font-size);
  }

  .contact-info-wrap {
    padding-top: 0;
  }

  .site-footer {
    padding-top: 50px;
  }

  .copyright-text-wrap {
    justify-content: center;
  }

  .site-footer-bottom {
    text-align: center;
    margin-top: 50px;
  }

  .site-footer-bottom .footer-menu {
    margin-top: 10px;
    margin-bottom: 10px;
  }
	
.newblockimg{
	width:85%;
	height:auto;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 25px;
			
}
	
.newblock{
	width:100%;
	}
	
	
	
	
}

@media screen and (max-width: 768px) {

.site-header {
	display: none;
	}

.slider-nav .slider-btn {
  border: medium solid #000;
}
	
}



@media screen and (max-width: 480px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

	
  .volunteer-image {
    width: 150px;
    height: 150px;
  }

  .volunteer-section::after {
    width: 200px;
    height: 200px;
  }

  .testimonial-section::before {
    top: -50px;
    width: 100px;
    height: 100px;
  }

  .testimonial-section::after {
    bottom: -150px;
    width: 200px;
    height: 200px;
  }

  .social-share .tags-block {
    margin-bottom: 10px;
  }

  .donate-form {
    padding: 25px;
  }
	
  .site-header p {
	font-size: 13px;
  }
	
}

