/* HEADER */
.region-secondary-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.region-secondary-header > *{
    margin-bottom: 20px;
}


@media screen and (min-width: 768px) {
    .region-secondary-header {
	flex-direction: row;
    }
    .region-secondary-header > *{
	margin-bottom: 20px;
    }
}

.body--dxpr-theme-nav-mobile img#logo {
    max-height: unset;
}

/* ENDS HEADER */

/* FOOTER */

.region-footer {
    display: flex;
    flex-direction:column;
    align-items:center
    jusitify-content: start;
    text-align: center;
}

.bcac-social-link.facebook {    
    background-color: white;
    padding: 0px 10px 20px 10px;
    max-width: 75%;    
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.bcac-social-link.facebook  ~ .facebook{  
  margin-bottom: 10px;
  padding-top: 0px;
}
section#block-bcac-aboutus {
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 20px;
}

@media screen and (min-width: 425px) {
    .region-footer{
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }

    .region-footer .block{
        max-width: 40%;
    }
}

/* ENDS FOOTER*/

/* BEGINS HIGHLIGHTED */
@media screen and (min-width: 768px) {
    .region-highlighted > .block{
	height: 380px;    
	display: flex;
	flex-direction: column;
	justify-content: end;
    }
    
    .region-highlighted {
	animation-name: highlighted-background;
	animation-duration: 12s;
	animation-iteration-count: infinite;
	background-position: center;
	background-size: cover;
    }
}

@keyframes highlighted-background {
    0% {
      background-image: url('/themes/custom/bcac/images/slide-image-1.jpg');
      background-position: center center;
    }
    30%{
      background-image: url('/themes/custom/bcac/images/slide-image-1.jpg');
      background-position: center center;
    }
    33.3333% {
      background-image: url('/themes/custom/bcac/images/slide-image-2.jpg');
      background-position: center center;
    }
    60%{
      background-image: url('/themes/custom/bcac/images/slide-image-2.jpg');
      background-position: center center;
    }
    66.6667% {
      background-image: url('/themes/custom/bcac/images/slide-image-3.jpg');
      background-position: center center;
    }
    97.6667%{
      background-image: url('/themes/custom/bcac/images/slide-image-3.jpg');
      background-position: center center;
    }
}

.region-highlighted .block_wrapper{
    padding:10px;
    margin:10px;
    border-radius: 10px;
    border: 2px solid #79c5c5;
    background-color: #4ca0a0;
    color: #FFFFFF;
    text-align: center;    
    animation-duration: 12s;
    animation-name: highlighted;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
}
.region-highlighted .block_wrapper h2 {
    color: #FFFFFF;
}
.region-highlighted .block h2.block-title {
	margin-top: 10px;
}
.region-highlighted .block:nth-child(3n-2) .block_wrapper{     
    animation-delay: 0s;
}
.region-highlighted .block:nth-child(3n-1) .block_wrapper{ 
    animation-delay: 4s;
}
.region-highlighted .block:nth-child(3n) .block_wrapper{     
    animation-delay: 8s;
}

@keyframes highlighted {
  0% {
    background-color: rgba(191, 7, 118, 0.75);
    border: 3px solid #bf0776;
  }
  25% {
    background-color: rgba(191, 7, 118, 0.75);
    border: 3px solid #bf0776;
  }
  33.3333% {
    background-color: rgba(47, 134, 134, 0.75);
    border: 3px solid #79c5c5;  
  }
  75% {
    background-color: rgba(47, 134, 134, 0.75);
    border: 3px solid #79c5c5;  
  }
}
/* ENDS HIGHLIGHTED */
