@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;700&display=swap');
:root {
--yellow: rgb(255 255 0);
var-yellow: rgb(255 255 0);
	--bggrey:#A1A1A1;
	var-bggrey: #A1A1A1;
	--bggrey:#A1A1A1;
	var-dkgrey:#262626;
	--dkgrey:#262626;
}
html {
	scroll-behaviour:smooth;
}
body {
	font-family: 'Source Sans Pro', sans-serif;
}
#outWrapper {
	position:relative;
	width:100%;
	height:100%;
	margin:0px;
	padding:0px;
}
header {
	min-height: 150px;
	z-index: 500;
   /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.41+0,0+100 */
background: -moz-linear-gradient(top,  rgba(0,0,0,0.41) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(0,0,0,0.41) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(0,0,0,0.41) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#69000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */

    position: absolute;
    width: 100%;
    opacity: 1;
}
.banner .mod-custom {
    background-image: url(/images/banners/banner-homepage.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 50vh;
	position:relative;
}
.bTitle {
	color: #fff;
    position: absolute;
    bottom: 20px;
    left: 40px;
}
.footer {
	background-color: #a09f9f !important;
	display:flex;
    justify-content: center;
    flex-direction: column;
}
.bw-social-share {
	text-align:center;
	color:#fff;
}
.rrssb-buttons {
    box-sizing: border-box;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 12px;
    height: 36px;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}
figure {
	position:relative;
}
#sulawesi figure.item-image {
	background-position-y:-120px;
}
figcaption {
	    color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
}
.com-content-article {
	padding:60px 0px;
}
#homepage .com-content-article {
	padding:0px 0px;
	margin-bottom:-23px;
}
#homepage .com-content-article .full-width .row {
	padding:0px 0px;
}
#homepage .com-content-article .full-width span {
	padding: 0px;
    margin: 0px;
    width: 100%;
}
.socialButtons {
	display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
}
.socialButtons a {
	margin: 10px;
}

/*******************************************************************NAVIGATION***********************************************************************/
button.nav-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: rgba(0,0,0,.0);
    border: none;
    text-align: center;
    text-decoration: none;
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translate(0%,-50%);
}
button.nav-button:before {
    content: "\f0c9";
    display: inline-block;
    font-size: 68px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
	color: rgb(255 255 0);
}
button.nav-button:hover:before, button.nav-button:focus:before {
    content: "\f0c9";
    display: inline-block;
    font-size: 68px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
	color: rgb(255 255 255);
}
.nav-dropdown {
	position: absolute;
    width: 250px;
    min-height: 200px;
    z-index: 1000;
    background-color: rgba(0,0,0,.2);
    top: 150px;
    left: -250px;
	padding:20px;
	-webkit-transition: all 500ms ease-in-out;
-moz-transition: all 500ms ease-in-out;
-ms-transition: all 500ms ease-in-out;
-o-transition: all 500ms ease-in-out;
transition: all 500ms ease-in-out;
}
.nav-dropdown.down {
	left: 0px;
	-webkit-transition: all 500ms ease-in-out;
-moz-transition: all 500ms ease-in-out;
-ms-transition: all 500ms ease-in-out;
-o-transition: all 500ms ease-in-out;
transition: all 500ms ease-in-out;
}
ul.navbar-nav li a, ul.navbar-nav li span {
	color: rgba(255,255,255,1);
    font-size: 18px;
    text-decoration: none;
    text-transform: uppercase;
	cursor:pointer;
	position:relative;
	padding:8px 12px;
	-webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}
ul.navbar-nav li a:hover, ul.nav-link li a:focus, ul.navbar-nav li span:hover, ul.nav-link li span:focus {
	color: rgb(255 255 0);
	-webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}
ul.navbar-nav li a:before, ul.navbar-nav li span:before {
	content: "";
    width: 4px;
    height: 20px;
    background-color: #fff;
    opacity: 0;
    position: absolute;
    left: 100%;
    top: 9px;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    -webkit-box-shadow: 0 0 5px 2px rgb(255 255 255, 0);
    box-shadow: 0 0 5px 2px rgb(255 255 255,0);
}
ul.navbar-nav li a:hover:before, ul.navbar-nav li a:focus:before, ul.navbar-nav li span:hover:before, ul.navbar-nav li span:focus:before {
	content:"";
	width:3px;
	height:20px;
	background-color:#fff;
	opacity:1;
	position:absolute;
	left:0%;
	-webkit-transition: all 500ms ease-in-out;
-moz-transition: all 500ms ease-in-out;
-ms-transition: all 500ms ease-in-out;
-o-transition: all 500ms ease-in-out;
transition: all 500ms ease-in-out;
	-webkit-box-shadow: 0 0 5px 2px rgba(255,255,255,1);
box-shadow: 0 0 5px 2px rgba(255,255,255,0);
}
.tags.inline {
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    /* background-color: var(--bggrey); */
    padding: 4px 9px;
    margin-right: 5px;
}
.tags.inline li a {
	background-color:var(--bggrey);
	padding:4px 8px;
	margin-right:8px;
}
/********************************************************************PANELS**********************************************************************/
.photoP, .copySide {
	background-size:cover;
	position:bottom center;
	position:relative;
}
.photoP .caption {
	position:absolute;
	bottom:10px;
	color:#fff;
	text-shadow: 0 0 4px #000000;
}
.photoP .caption.left {
	right:10px;
}
.photoP .caption.right {
	left:10px;
}
.photoPhoto {
	background-image:url("/images/sidePhotoPhoto.jpg")
}
.photoOld {
	background-image:url("/images/sidePhotoOld.jpg")
}
.photoBlog {
	background-image:url("/images/sidePhotBlog.jpg")
}
.copySide {
	position:relative;
	min-height:500px;
}
.copyBox {
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	width:60%;
}
.full-width {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
@media(max-width:991px) {
	.copyBox {
		background-color: #fff;
    position: absolute;
    width: 90%;
    padding: 40px;
    opacity: .9;
	}
	.photoP {
		display:none;
	}
	.photoPhotoText {
		background-image:url("/images/sidePhotoPhoto.jpg")
	}
	.photoOldText {
		background-image:url("/images/sidePhotoOld.jpg")
	}
	.photoBlogText {
		background-image:url("/images/sidePhotBlog.jpg")
	}

}
@media(max-width:767px) {
	.ba-gallery {
    padding: 0 0px !important;
}
}
/********************************************************BUTTONS***********************************************************************/

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px none transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0rem;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
}
.btn:hover, .btn-focus {
	background-color:var(bggrey);
	background-color:var(--bggrey);
}
.btn-primary {
    color: #000;
    background-color: var(--yellow);
	background-color: var(yellow);
	border:none;
}
.btn-lg, .btn-group-lg>.btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 0rem;
}
a:focus {
	outline:none;
}
.btn-check:focus+.btn-primary, .btn-primary:focus {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
    box-shadow: 0 0 0 0rem rgb(49 132 253 / 0%);
}
.btn-check:checked+.btn-primary:focus, .btn-check:active+.btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0rem rgb(49 132 253 / 0%);
}
/********************************************************TYPOGRAPHY***********************************************************************/
.copyBox h2 {
	position:relative;
	margin-bottom: 30px;
}
.copyBox h2:after {
	content:"";
	position:absolute;
	height:4px;
	width:10%;
	left:0px;
	bottom:-10px;
	background-color: var(--yellow);
	background-color: var(yellow);
	-webkit-transition: all 60s ease;
-moz-transition: all 60s ease;
-ms-transition: all 60s ease;
-o-transition: all 60s ease;
transition: all 60s ease;
	
}
.loaded .copyBox h2:after {
	width:90%;
	-webkit-transition: all 60s ease;
-moz-transition: all 60s ease;
-ms-transition: all 60s ease;
-o-transition: all 60s ease;
transition: all 60s ease;
}
a {
	color:var(yellow);
	color:var(--yellow) ;
	text-decoration:none;
}
a:hover, a:focus {
	color:var(dkgrey);
	color:var(--dkgrey);
	text-decoration:none;
}
.bContent {
	position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0px 0px 10px rgb(255 255 255 / 90%);
    color: #000;
}
.bContent .logo {
	text-align:center;
}
.bContent img {
	max-width:60px;
}
.mTitle h1 {
    font-size: 56px;
    font-weight: 300;
    text-align: center;
}
.mTitle h3 {
    font-size: 18px;
    text-align: center;
}
h1, .h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 40px;
}
	