﻿@import 'fonts.css';
@import 'font-awesome.css';

/*******************************/
/********** CSS Reset **********/
/*******************************/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, button {
    margin: 0;
    padding: 0;
    border: 0;
    /*font-size: 100%;
    font: inherit;*/
}
body {
    font-family: "Segoe UI", robotoregular, sans-serif;
    font-size: 16px;
    background-color: #fff;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'robotolight';
}
a:hover {
    text-decoration: none;
}

/****************************/
/******** SP Override *******/
/****************************/
body{
	overflow: auto;
	min-width: 320px;
}
#s4-workspace{
	overflow:visible;
	height: auto !important;
	min-width: 320px;
}
#s4-bodyContainer{
	padding-bottom: 0 !important;
}


.main-btn {
    border:1px solid #950c15;
    background-color:#f3f3f3;
    color:#c4111d;
    font-family:'robotobold';
    text-transform:uppercase;
    text-align:center;
}
.main-btn:hover,
.main-btn:focus {
    color:#c4111d;
}

.ms-signInLink {
    display: none !important; /*added on 07/03/19*/
}

/****************************/
/********** header **********/
/****************************/
header {
    position:fixed;
    top:0;
    width:100%;
    /*background:url("../images/header-bg.png") repeat-x;
    background-size:cover;*/
    background:linear-gradient(rgba(250,240,184,0.9), rgba(172,153,111,0.9));
    /*z-index:99999;*/
    z-index:1000 !important; /* Prevent Ribbon Overlap */

}
#ms-designer-ribbon, #ms-designer-ribbon *{
	z-index: 99999;
}
header .logo {
    position:absolute;
    /*top:20px;*/
    top: 30px;
    left:30px;
    width:100%;
    max-width:350px;
    transition:all linear 300ms;
    pointer-events:none;
}
header nav {
    margin:auto;
    width:1000px;
    transition:all linear 200ms;
}
header nav ul {
    display: flex;
    justify-content: center;
    padding:15px 0;
    transition:all linear 300ms;
}
header nav ul li {
    padding:5px 10px;
    list-style-type: none;
    float:left;
}
header nav ul li a.home-menu:before {
    content:url("../images/home-menu.png");
}
header nav ul li a,
header nav ul li a:active,
header nav ul li a:visited {
    display:block;
    text-transform:uppercase;
    color:#52452d;
}
header nav ul li a:hover,
header nav ul li a:focus {
    color:#52452d;
    text-decoration:underline;
}
header.combine .logo {
    /*top:4px;*/
    /*top: 10px; */
    top: 40px;
    left:20px;
    max-width:150px;
}
header.combine nav {
    margin-right: 0;
}
header.combine nav ul {
    padding:30px 0;
}

.nav-burger {
    display:none;
    padding:20px;
    cursor:pointer;
    float:right;
}
.nav-burger i {
    font-size:20px;
}
/* Dropdown */
header nav .dropdown .dropdown-menu{
	border: none;
	border-radius: 0;
    background: linear-gradient(rgba(250,240,184,1), rgba(172,153,111,1));
    padding: 0;
    left: 0 !important;
    top: 100% !important;
    width: auto !important;
}
header nav .dropdown .dropdown-menu li{
	width: 100%;
	padding: 0;
}
header nav .dropdown .dropdown-menu li a{
	padding: 10px 25px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
header nav .dropdown .dropdown-menu li a:hover,
header nav .dropdown .dropdown-menu li a:focus,
header nav .dropdown .dropdown-menu li a:active:focus{
	background-color: #52452d;
	color: white;
}


@media screen and (min-width:1260px){
	header .logo {
	    max-width:250px;
    }

}

@media screen and (max-width:1259px){
	header .logo {
	    max-width:200px;
    }

}
@media (max-width: 1179px){
	header .logo {
	    top: 40px;
	    left: 20px;
	    max-width: 150px;
	}
	header nav {
	    margin-right: 0;
	}
	header nav ul {
	    padding: 30px 0;
	}
}
@media screen and (max-width:1024px) {
    header nav {
        width:850px;
    }
    header nav ul li a {
        font-size:14px;
    }
}
/* Collapsed Nav */
@media screen and (max-width:950px) {
    header .logo,
    header.combine .logo {
        /* top:4px; */
        top: 38px;
        left:20px;
        max-width:95px !important;
    }
    header nav {
        position:fixed;
        /* top:61px; */
        top: 90px;
        right:-100%;
        width:100%;
        background: linear-gradient(rgba(172,153,111,0.9), rgba(250,240,184,0.9));
    }
    header nav.open {
        right:0%;
    }
    header nav ul {
        display:block;
    }
    header nav ul li {
        padding:10px 0;
        text-align:center;
        float:none;
    }
    header nav ul li a {
        font-size:16px;
    }
    .nav-burger {
        display:block;
    }
    #s4-bodyContainer.inner header{
		height: 90px;
	}
}
/****************************/
/********** Main BG *********/
/****************************/
.main-bg-container {
    background-color:#ccc;
    transition:background-color linear 500ms;
}
.main-bg-container.newsSection {
    background-color:#fbf2b9;
}
.main-bg-container.statisticsSection {
    background-color:#b8a57b;
}
.main-bg-container.contactSection {
    background-color:#9c8d6b;
}



/****************************/
/********** slider **********/
/****************************/
.fullscreen-bg {
    position: relative;
    height:100vh;
    overflow: hidden;
    z-index:800;
    transition:all linear 300ms;
}
/*.fullscreen-bg__video {
    position:absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}*/


/* video bg */
/*.swiper-container {
    position:fixed !important;
    top:0;
    bottom:0;
    left:0;
    right:0;
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position:relative;
    font-size: 18px;
}

.swiper-slide video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto !important;
    height: auto;
    z-index: -100;
}*/
.swiper-container {
    position:fixed !important;
    top:0;
    bottom:0;
    left:0;
    right:0;
    width: 100%;
    height: 100%;
}
.swiper-container .slick-track {
    /* display: flex; */
    width: 100% !important;
}
.swiper-container .swiper-wrapper-cont, 
.swiper-container .swiper-wrapper-cont> div, 
.swiper-container .swiper-wrapper-cont > div > div, 
.swiper-container .swiper-wrapper-cont > div > div > div,
.swiper-container .slick-list, 
.swiper-container .slick-track{
    height: 100% !important;
}
.swiper-slide, .swiper-slide-cont {
    position:relative;
    font-size: 18px;
    /* display: none !important;
    transition: all 500ms cubic-bezier(0.7, 0, 0.3, 1);
    -webkit-transition: all 500ms cubic-bezier(0.7, 0, 0.3, 1);
    -moz-transition: all 500ms cubic-bezier(0.7, 0, 0.3, 1);
    opacity: 0 !important; */
}
.swiper-slide, .swiper-slide-cont.slick-active{
    /* display: block !important; */
    left: 0px !important;
    /* opacity: 1 !important;  */
    position: absolute !important;
}
.swiper-slide video, .swiper-slide-cont video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto !important;
    height: auto;
    z-index: -100;
}

.swiper-wrapper-cont .slick-dots{
    bottom: 8%;
}
.swiper-wrapper-cont .slick-dots li{
    width: 12px;
    height: 9px;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active, .swiper-wrapper-cont .slick-dots li button {
    width:9px;
    height:9px;
    margin: auto;
    background: #5d523b !important;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}
.swiper-wrapper-cont .slick-dots li.slick-active button{
    background:#ab986e !important;
}/* Text Overlay */

.slider-text h1 {
    width:100%;
    font-size:80px;
    font-weight:bold;
    text-shadow: 0px 0px 10px #000000; /* ADDED TO MAKE TEXT MORE VISIBLE */
}
.slider-text h2 {
    width:75%;
    font-size:36px;
    text-shadow: 0px 0px 10px #000000; /* ADDED TO MAKE TEXT MORE VISIBLE */
}
.slider-text {
    position: absolute;
    right: 0;
    bottom:16%;
    left: 0;
    margin: 0 auto;
    padding-left:30px;
    color:#fff;
    z-index:999;
}
/* Slider Header */
@media (max-width: 1366px){
	.slider-text h2 {
	    width: 80%;
	    font-size: 32px;
	}
}

@media screen and (max-width:991px) {
    .slider-text h1 {
        font-size:50px;
        line-height: 1.0;
    }
    .slider-text h2 {
        width:100%;
    }
}

@media screen and (max-width:767px) {
	.slider-text{
		padding-left: 15px;
		padding-right: 15px;
		text-align: center;
	}
    .slider-text h1 {
        font-size:35px;
        line-height: 1.0;
    }
    .slider-text h2 {
        font-size:20px;
    }
}

@media screen and (max-width:370px) {
    .slider-text h1 {
        font-size:40px;
    }
    .slider-text h2 {
        font-size:20px;
    }
}
/****************************/
/*********** news ***********/
/****************************/
#news {
    position:relative;
    padding-top:150px;
    height:auto;
    z-index: 800;
}
.section-top {
    display:flex;
    align-items:center;
}
.section-top h1 {
    width:100%;
    font-size:40px;
    color:#52452d;
    text-align:center;
    text-transform:uppercase;
}

.section-mid {
    display:flex;
    padding:30px 0;
    height: auto;
}
.section-mid-half {
    display:flex;
    height:50%;
}
.section-mid .section-item-container {
    opacity: 0;
    transition: opacity ease-in 500ms;
    width:50%;
    float:left;
    height:400px;
}
.section-mid .section-item-container.section-full > div,
.section-mid .section-item-container.section-full > div > div, 
.section-mid .section-item-container.section-full > div > div > div{
	height:100%;
}

.section-mid.fadeIn .section-item-container {
    opacity: 1;
}
.section-mid-half {
    height: 200px;
}
.section-mid-half > div,
.section-mid-half > div > div,
.section-mid-half > div > div > div,
.section-mid-half .section-item-container{
	height: 100%;
}

.section-item {
    position:relative;
    width:100%;
    height:100%;
    background:url("../images/news-1.png");
    background-position:center;
    background-size:cover;
    overflow:hidden;
}

@media screen and (max-width:767px) {
    .section-mid-half .section-item-container {
        /*width: 100%;*/
    }
}


/* Section Details */
.section-item .section-details {
    position:absolute;
    bottom:-35%;
    padding:10px 30px;
    width:100%;
    height:35%;
    background:rgba(94,63,45,0.5);
    transition:all linear 200ms;
}
.section-item:hover .section-details {
    bottom:0%;
}
.section-item .section-details h3 {
    font-size:24px;
    font-weight:bold;
    color:#fff;
}
.section-item .section-details p,
.section-item .section-details .article-details {
	display: block;
    margin-bottom:30px;
    font-size:14px;
    color:#fff;
}
.section-item .section-details a {
    display:block;
    padding:10px 0;
    width:150px;
    border:1px solid #fff;
    font-size:14px;
    text-align:center;
    text-transform:uppercase;
    color:#fff;
}
/* Section Details Full */
.section-item .section-details.full {
    padding:10px 30px;
    bottom:-100%;
    height:100%;
    transition:all linear 300ms;
}
.section-item:hover .section-details.full {
    bottom:0%;
}
/* Section Bot */
.section-bot {
    display:flex;
    align-items:center;
    opacity:0;
    transition: opacity ease-in 500ms;
}
.section-bot a {
    display:block;
    margin:auto;
    padding:10px 0;
    width:300px;
    border:1px solid #8d7951;
    font-size:20px;
    text-align:center;
    text-transform:uppercase;
    color:#52452d;

}
.section-bot.fadeIn {
    opacity:1;
}

/*  parallax section headers  */
.section-top h1{
    opacity: 0;
    transition: opacity linear 700ms;
}
#news .section-top.fadeIn h1, 
#contact.bgIn .section-top h1,
#statistics.bgIn .section-top h1{
    opacity: 1;
}


@media screen and (max-width:1024px) {
    .section-mid {
        padding:30px 15px;
    }
    #news {
        height:auto;
    }
    #news .section-mid {
        display:block;
        height:auto;
    }
    #news .section-mid > .section-item-container {
        width:100%;
        height:480px;
        float:none;
    }
    #news .section-mid .section-item-container .section-mid-half {
        height:240px;
    }
    .section-item .section-details.full {
        padding: 10% 30px;
    }
}
@media screen and (max-width:767px) {
    .section-top h1 {
        font-size:32px;
    }
}
@media screen and (max-width:370px) {
    .section-top h1 {
        font-size:26px;
    }
    #news .section-mid > .section-item-container {
        height:280px;
    }
    #news .section-mid .section-item-container .section-mid-half {
        height:140px;
    }
    .section-item .section-details {
        bottom:-50%;
        height:50%;
        top: 0;
        left: 0;
    }
    .section-item .section-details.full {
        padding:5% 15px;
        top: 0;
        left: 0;
    }
    .section-item .section-details h3 {
        font-size:12px;
    }
    .section-item .section-details p {
        font-size:8px;
    }
    .section-item .section-details a {
        padding:5px 0;
        width:100%;
        font-size:8px;
    }
}
/****************************/
/********** contact *********/
/****************************/
#contact, #statistics {
    position:relative;
    padding-top: 80px;
}
#contact .contact-bg{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    background-image:url("../images/contact-bg.png");
    background-position:center;
    background-size:cover;
    height:100%;
    z-index:800;
    opacity:0;
    transition:opacity linear 700ms;
}
#contact.bgIn .contact-bg {
    opacity:1;
}
#contact .section-top h1,
#statistics .section-top h1 {
    /*color:#fff;*/
    color: #52452d;
    z-index:800;
}
#contact .section-form,
#statistics .section-form {
    display:block;
    margin:auto;
    /*width:1000px;*/
    width: 100% !important;
    z-index:800;
    opacity:0;
    transition:opacity linear 700ms;
    position: relative;
}
#contact.bgIn .section-form,
#statistics.bgIn .section-form {
    opacity:1;
}
.section-form input,
.section-form textarea {
    display:block;
    margin:30px auto;
    padding:10px 20px;
    width:80%;
    border:1px solid #756648;
    border-radius:10px;
    background-color:#f3e9b1;
    outline:none;
}
.section-form input::placeholder,
.section-form textarea::placeholder {
    text-transform:uppercase;
    font-style:italic;
    color:#52452d;
}
.section-form textarea {
    height:20vh;
    resize:none;
}
.section-form input[type="submit"], .section-form input[type="button"] {
    padding:15px 0;
    width:40%;
    border:1px solid #e1d9a6;
    border-radius:0;
    background-color:#8d7951;
    text-transform:uppercase;
    color:#e1d9a6;
}
.section-form .form-modal{
	position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
    background-color: rgba(141, 121, 81, .6);
    color:#ffffff;
}
@media screen and (max-width:1024px) {
    #contact .section-form,
    #statistics .section-form {
        width:850px;
    }
    .section-form input, .section-form textarea {
        width:100%;
    }
}
@media screen and (max-width:370px) {
    .section-form input[type="submit"] {
        width:100%;
    }
}

/****************************/
/********** footer **********/
/****************************/
footer {
    position: relative;
    background-color: #272013;
    z-index: 999;
}
.slideToTop {
    position:relative;
    margin-bottom:90px;
    border-top:5px solid #dbd3a0;
}
.slideToTopButton {
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:50px;
    height:43px;
    background:url("../images/slide-top.png");
    cursor:pointer;
}
.footer-links-container {
    display:flex;
    flex-wrap:wrap;
    margin-bottom: 25px;
}
.footer-links-column .content-block + .content-block{
	margin-top: 20px; 
}
.footer-links-container .external-links-col{
	border-top: 1px solid #dbd3a0;
    padding-top: 25px;
    margin-top: 25px;
}
.footer-links-column img {
    max-width:200px;
}
.footer-links-column h3 {
    margin-bottom:5px;
    font-size:20px;
    color:#fff;
}
.footer-links-column ul li {
    list-style-type:none;
	margin-top:10px;
}
.footer-links-column ul li a {
    font-size:12px;
    color:#fbe895;
}
.footer-links-column p {
    font-size:12px;
    color:#fbe895;
}
.footer-links-column .social-links ul,
.footer-links-column.external-links-col ul {
    display:flex;
}
.footer-links-column.external-links-col ul{
	flex-wrap: wrap;
	margin-left: -15px;
    margin-right: -15px;
}
.footer-links-column .social-links ul{
	margin-top: 15px;
}
.footer-links-column .social-links ul li {
    margin-right:5px;
    margin-top: 0;
    margin-bottom:0;
    float:left;
}
.footer-links-column.external-links-col ul li{
	width: 33.3333%;
	padding-left: 15px;
	padding-right: 15px;
}
.footer-copyright .content-block {
	padding:15px 0;
	border-top:1px solid #dbd3a0;
    text-align:center;
    font-size:12px;
    color:#fbe895;
}
.footer-copyright .content-block.copy{
	padding: 24px 0;
}
@media screen and (max-width:1024px) {
    .footer-links-column {
        margin-bottom:20px; /* Equal to .footer-links-column .content-block + .content-block margin-top */
        /*width:50%;*/ 
    }
    /*.footer-links-column.logo-column {
        width:100%;
    }
    .footer-copyright {
        width:100%;
    }*/
}
@media screen and (max-width:991px) {
	.footer-links-column.external-links-col ul li{
		width: 50%;
	}
}
@media screen and (max-width:767px) {
	.footer-links-column {
        width:100%;
    }

    .footer-copyright {
        width:100%;
    }
    .footer-links-column.external-links-col{
		border: none;
	    margin-top: 0;
	    padding-top: 0px;
	}
    .footer-links-column.external-links-col ul li{
		width: 100%;
	}
}
@media screen and (max-width:370px) {
    .footer-links-column {
        width:100%;
    }
}
@media screen and (min-width: 768px){
	.footer-copyright .content-block.copy{
		text-align: left;
	}
	.footer-copyright .content-block.hit-counter{
		text-align: right; 
	}
}




/****************************/
/******* Article Page *******/
/****************************/

.article-photo-BG {
  height: 40vh;
  background: url("../images/news-1.png") no-repeat;
  margin-top: 90px;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.innerPage p {
  margin: 10px 0;
}

.innerPage h1, .innerPage h2, .innerPage h3, .innerPage h4, .innerPage h5 {
  margin: 0 0 20px 0;
}

h4.panel-title {
	margin-bottom: 0px;
	font-weight: bold;
	text-transform: uppercase;
}

.panel-body p {
	font-size: 75%;
}

.panel-body h3 {	
	font-size: 95$;
	font-weight: bold;
}

/* Preloader */
#preloader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #faf1b8;
    z-index: 99999;
    padding-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* #preloader h1{
    text-align: center;
    font-size: 40px;
}
#preloader #progressbar{
	width: 500px;
	height:10px;

}		
#preloader #progressbar span{
    display: block;
	background-color: red;
	height:10px;
    width: 0%;
    transition: all 2s linear;
} */


#preloader #progressbar{
    font-size: 200px;
    height: 1em;
    width: 1em;
    margin: auto;
    position: relative;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    transition: all .5s ease-out;
    -webkit-transition: all 1.5s ease-out;
    -moz-transition: all 1.5s ease-out;
    -o-transition: all 1.5s ease-out;
    background-color: #bdac7f;
}
#preloader #progressbar:after{
    /*ackground-color: #faf1b8;*/
    background-color: #766b54;
}
#preloader #progressbar #progress-circle .bar, #preloader #progressbar #progress-circle .fill{
    border: .08em solid #52452d;
}
#preloader #progressbar #progress-circle .bar {
    transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
}
#preloader #progressbar #wawasan-logo{
    position: absolute;
    width: 100%;
    z-index: 1;
    left: 0;
    top: 0;
    width: 5em;
    height: 5em;
    line-height: 5em;
    font-size: 0.2em;
    color: #cccccc;
    display: block;
    text-align: center;
    white-space: nowrap;
    transition: all 1.5s ease-out;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
} 
#preloader #progressbar #wawasan-logo img{
    width: 100px;
    /*
    margin-left: -15px;
    margin-top: -15px;
    */
    height: 100px;
    position: absolute;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
} 
/* #preloader #progressbar #progress-circle{
    clip: rect(auto, auto, auto, auto);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
} */
/* #preloader #progressbar #progress-circle span{
    display:block;
    border: 5px solid #7b6f51;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transition: all 1.5s linear;
    -webkit-transition: all 1.5s linear;
    -moz-transition: all 1.5s linear;
} */

/* SP custom inner */
.sp-custom-inner{
	min-height:400px;
	padding-top: 200px;
	/*padding-bottom: 50px;*/
	background-color: #ffffff;
}
.sp-custom-inner.inner-article{
	padding-top: 0px;
	
}
.sp-custom-inner-banner-image{
	/*max-width: 1260px;*/
    width: 100%;
    margin: auto;
    background-color: #ffffff;
}
.sp-custom-inner-banner-image div{
	margin-bottom: 0;
}
.sp-custom-inner-banner-image img{
	width: 100%;
}
.sp-custom-inner-article{
	max-width: 1260px;
	width: 90%;
	padding: 30px 15px 20px;
	margin: auto;
	font-family: 'robotolight';
	/*-webkit-box-shadow: 0px 12px 15px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 12px 15px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 12px 15px 0px rgba(0,0,0,0.75);*/
    background: #fff;
}
.sp-custom-inner-article.no-banner{
	padding-top: 150px;
}
.sp-custom-inner-article em{
	font-style: italic;
}
.sp-custom-inner-article p em strong,
.sp-custom-inner-article em strong{
	font-size: 30px;
	font-weight: 700;
}
.sp-custom-inner-article p strong{
	font-weight:700;
}
.sp-custom-inner-article img{
	/*margin: auto !important;*/
	display: block;
	max-width: 100%;
}

.sp-custom-inner-article.news-events-announcements .row{
	border-bottom: 1px dashed #c9c9c9;
	margin-bottom: 25px;
}
.sp-custom-inner-article.news-events-announcements .article-image{
	height: 250px;
	background-color: #cecece;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-bottom: 15px;
}
.sp-custom-inner-article.news-events-announcements .article-description{
	margin-bottom: 15px;
}
.sp-custom-inner-article.news-events-announcements .article-description h2{
	color: #52452d;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 15px;
}
.sp-custom-inner-article.news-events-announcements .article-description span.summary{
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 15px;
	display: block;
}
.sp-custom-inner-article.news-events-announcements .article-description a{
	color: #52452d;
	text-decoration: underline;
}
.sp-custom-inner-article.news-events-announcements-article{
	padding-bottom: 45px;
}
.sp-custom-inner-article.news-events-announcements-article .article-image{
	overflow: hidden;
    height: 500px;
    margin-bottom: 25px;
    position: relative;
}
.sp-custom-inner-article.news-events-announcements-article .article-image img{
	width: 120%;
	max-width: 120%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.sp-custom-inner-article.news-events-announcements-article .article-content h1{
	font-size: 35px;
	font-weight: 700;
	color:#52452d;
	margin-bottom: 15px;
}
.sp-custom-inner-article.news-events-announcements-article .article-content span{
	display: block;
	font-size: 20px;
}

.wb35-framework{
	width: 1260px;
	margin: auto;
	overflow-x: auto;
	padding-top: 90px;
}
.wb35-framework h1{
    font-size: 48px;
    text-align: center;
    color: #3f3112;
}
.wb35-framework .row{
    margin: 0;
}

.kkwb35{
    margin-bottom: 100px !important;
}
.kkwb35 .row{
    font-family: 'robotoregular', sans-serif;
    background: #f5eddc;
    background: linear-gradient(to bottom, #f5eddc 0%, #ffffff 100%);
    background: -webkit-linear-gradient(to bottom, #f5eddc 0%, #ffffff 100%);
    background: -moz-linear-gradient(to bottom, #f5eddc 0%, #ffffff 100%);
    background: -o-linear-gradient(to bottom, #f5eddc 0%, #ffffff 100%);
    position: relative;
    margin-bottom: 12px;
    box-shadow: 0px 0px 5px 1px #e0e0e0;
    -webkit-box-shadow: 0px 0px 5px 1px #e0e0e0;
    -moz-box-shadow: 0px 0px 5px 1px #e0e0e0;
}
.kkwb35 .row .arrow{
    content: "";
    display: block;
    position: absolute;
    width: 55px;
    height: 42px;
    background-image: url("../images/kpi/arrow.png");
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

.kkwb35{
    width: 1260px;
}
.kkwb35 .title{
    padding: 15px;
    border-bottom: 1px solid #ece5d8;
}
.kkwb35 .title h2{
    font-weight: 500;
    font-family: 'robotoregular', sans-serif;
    color: #3f3112;
    font-size: 36px;
    text-align: center;
    margin: 0;
}
.kkwb35 .items{
    border-top: 1px solid #ffffff;
    padding: 15px;
}
.kkwb35 .top .items .items-container{
    padding: 0px 81px;
}
.kkwb35 .top .items .items-container span{
    float: left;
}
.kkwb35 .top .items .items-container span.description{
    padding-left: 15px;
    padding-top: 32px;
}
.kkwb35 .top .items .items-container span h3{
    font-size: 30px;
    color: #393939;
}

.kkwb35 .items .items-container span.image{
    margin: 10px;
    display: block;
    height: 85px;
}
.kkwb35 .items .items-container span.image img{
	display:block;
	margin: auto;
	max-width: 100%;
}
.kkwb35 .achievements .items-container .description h3{
    text-align: center;
    font-size: 24px;
}
.kkwb35 .main-area .items-container ul{
    padding: 0px 15px;
}
.kkwb35 .main-area .items-container li{
    font-family: 'robotolight', sans-serif;
    font-size: 14px;
}
.kkwb35 .kpi h4{
    font-weight: 500;
    color: #3f3112;
    font-size: 60px;
    text-align: center;
}
.kpi2 .top .items .items-container{
    padding: 0px 318px !important;
}
.kpi2 .achievements .col-md-2, .kpi2 .main-area .col-md-2{
    width: 20%;
    float: left;
}
.kpi3 .top .items .items-container{
    padding: 0px 204px !important;
}

/* Article Banner */
.article-banner{
  width: 100%;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Supreme Council */
.sc-banner{
  background-color: #6e6043;
  padding-top: 15px;
  padding-bottom: 15px;

  color: white;
}
.sc-title,
.sc-title-caption{  
  padding-top: 10px;
  padding-bottom: 10px;

}
.sc-title h1{
  font-size: 55px;
  font-weight: bold;
  line-height: 1.05;
}
.sc-title-caption p{
  font-size: 14px;
}
.sc-content{
  background-color: #fbf2b9;
  min-height: 600px;
  margin-bottom: -50px; /* negate sp-inner-circle padding */
  padding: 15px;
  text-align: center;
}
.sc-section{
  margin-top: 25px;
}
.sc-section + .sc-section{
  margin-top: 85px;
}
.sc-section:last-child{
  margin-bottom: 45px;
}
.sc-section-title{
  border-bottom: 3px solid #6e6043;
  max-width: 450px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
}
.sc-section-title h2{
  text-transform: uppercase;
  font-weight: bold;
  font-size: 28px;
  line-height: 110%;
  color: #6e6043;
}
.sc-section-content{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.sc-member-block{
  margin-top: 45px;
  width: 280px;
  padding-left: 15px;
  padding-right: 15px;

}
@media screen and max-width(767px){
  .sc-section-content{
    display: block;
  }
  .sc-member-block{
    margin: 0 auto;
  }
}

.sc-member-image{
  height: 250px;
  width: 250px;
  border: 10px solid #dace7f;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.sc-member-name{
  margin-top: 10px;
  font-weight: bold;
  line-height: 100%;
}


/* KPI Framework */
.kpi-background{
  /*padding-top: 90px;*/
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
}
.kpi-container,
.kpi-container2{
  max-width: 1260px;
  width: 100%;
  margin: auto;
  overflow-x: auto;
  padding: 50px 0;
  border-top: 1px solid #eadcc1;
}
.kpi-container{
  border-bottom: 1px solid #b9aa8b;
}

.kpi-container:first-child{
  border-top: 0px;
}
.kpi-container:last-child {
  border-bottom: 0px;
}
.kpi{
  min-width: 1140px;
}
.kpi + .kpi{
  margin-top: 35px;
}
.kpi-section-title{
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 25px;
}
.kpi-headers{
  float: left;
  width: 100%;
  background-color: #272013;
}
.kpi-header{
  text-align: center;
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 24px;
  color: white
}

/* KPI Content */
.kpi-content{
  display: flex;
  width: 100%;
}

.kpi-content-section{
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fbf2b9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.kpi-content-section h1.kpi-title{
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
}
.kpi-content-block,
.kpi-content-block2{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 150px;
  border-bottom: 1px solid #bab178;
}

.kpi-content-block2{
  justify-content: flex-start;
}

.kpi-content-block:last-child, .kpi-content-block2:last-child {
	border-bottom: 0px;
}

.kpi-content-block2 ul {
	margin-top: 15px;
	padding-left: 20px;
}

.kpi-content-block2 ul li {
	font-size: 14px !important;
}

.kpi-goal1 .kpi-content-block, .kpi-goal1 .kpi-content-block2 {
	min-height: 200px !important;
}

.kpi-goal2 .kpi-content-block, .kpi-goal2 .kpi-content-block2 {
	min-height: 210px !important;
}

.kpi-goal3 .kpi-content-block, .kpi-goal3 .kpi-content-block2 {
	min-height: 260px !important;
}

.kpi-content-block img{
  width: 25%;
  height: 25%;
}
.kpi-content-block h3.kpi-title{
  width: calc(75% - 15px);
  margin-left: 15px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2
}
.kpi-title,
.kpi-title-lg,
.kpi-content-block{
  color: #272013;
}
.kpi-content-block ul{
  -webkit-padding-start: 40px;
}
.kpi-title-lg{
  font-size: 80px;
  line-height: 0.9;
}

.flex-v-center{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.no-margin{ margin: 0; }
.no-padding{ padding: 0; }




#s4-bodyContainer.inner{
  overflow-x: hidden;
}
#s4-bodyContainer.inner header{
  position:relative;
}
@media (max-width: 767px){
	#s4-bodyContainer.inner header{
	  height: 91px;
	}
	
}

#ms-designer-ribbon *{
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
#ms-designer-ribbon *:after,
#ms-designer-ribbon *:before{
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.top-nav{
    width: 100%;
    height: 30px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #272013;
    text-align: right;
    line-height: 25px;
    color: white;
}
.top-nav a{
	color: #fbe895;
	font-size: 9px;
}
.top-nav span.glyphicon-globe{
	font-size: 14px;
    top: 3px;
}
.top-nav span.divider{
	margin-left: 2px;
	margin-right:2px;
}
.top-nav .lang-switch{
	display: inline-block;
}
.lang-switch .active{
	font-weight: bold;
	text-decoration: underline;
}
.top-nav .dropdown{
	display:inline-block;
	margin-right: 20px;
}
.top-nav .dropdown-menu{
	border: none;
    border-radius: 0;
    background-color: #3d3119;
    padding-top: 0px;
    padding-bottom: 0px;
}
.top-nav .dropdown-menu>li>a{
	color: #fbe895 !important;
    padding-top: 8px;
    padding-bottom: 8px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.top-nav .dropdown-menu>li>a:hover,
.top-nav .dropdown-menu>li>a:focus{
	background-color: #52452d;
}

@media (max-width: 767px){
	.top-nav{
	  padding-left: 8px;
	  padding-right: 8px;
	}
	
}

.statistics-section{
	display: flex;
	flex-wrap: wrap;
}
.statistics-block{
	margin-bottom: 50px;
	text-align: center;
}
.statistics-block .statistics-name{
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	color: white;
	min-height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}
.statistics-block .statistics-content{
	position: relative;
	margin: 10px auto 0;
	width: 100%;
	max-width: 250px;
    height: 250px;
    overflow: hidden;
    border-radius: 100%;
}
.statistics-content img{
	width: 100%; 
}
.statistics-content .statistics-inner-content{
	position: absolute;
	width: 100%;
	height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    /*background-color: #443a26;*/
    background-color: rgba(68,58,38,0.95);
    -webkit-transition: transform 0.5s ease-in;
    transition: transform 0.5s ease-in;
    transform: translateY(100%);
}
.statistics-content:hover .statistics-inner-content,
.statistics-content:focus .statistics-inner-content{
	transform: translateY(0);
}
.statistics-inner-content{
	color: #dbb56d;
}
.statistics-inner-content h1.statistics-value{
	font-size: 50px;
	font-weight: bolder;
	text-transform: uppercase;
}
.statistics-value sup{
	font-size: 0.6em;
}

.fancy-hr{
	margin-bottom: 70px;
	border-top-color: #52452d;
	border-bottom: 1px solid #dbd3a0;
}
.icon-link-blocks{
	display: flex;
	flex-wrap: wrap;
	width: 100% !important;
	padding-bottom: 40px;
}
.icon-link-block{
	text-align: center;
	text-decoration: none;
	font-size: 32px;
	color: white !important;
	cursor: pointer;
}
.icon-link-block img{
	display: inline-block;
	max-width: 125px;
}
.icon-link-block h1{
	font-size: 20px;
	font-weight: bolder;
}
@media (max-width: 767px){
	.icon-link-block + .icon-link-block{
		margin-top: 25px;	
	}
}

/* Article Gallery */
.article-gallery{
  position: relative;
  width: 100%;
  padding: 0;
}
.article-block{
  position: relative;
  overflow: hidden;
  background-color: #fff;
  padding: 0;
}
.article-block .article-image{
  position: relative;
  margin-bottom: 0;
  width: 50%;
  height: auto;
  float: left;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #333;
  background-size: cover;
  padding-bottom: 66.6666%;
}
.article-block .article-inner{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  color: #111;
}
.article-inner .article-inner-content{
  position: absolute;
  bottom: 50%;
  max-height: 80%;
  padding: 0 14%;
  overflow: hidden;
  transform: translateY(50%);
}
.article-inner-content .article-title{
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
  font-size: 24px;	
  font-weight: 700;
}
.article-inner-content p{
  margin-bottom: 0;
  font-size: 14px;
}
.article-block .article-link-cover{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  border: 1px solid transparent;
  -webkit-transition: border-color .3s ease, border-width .3s ease;
  transition: border-color .3s ease, border-width .3s ease;
  z-index: 10;
}
.article-block .article-link-cover:hover,
.article-block .article-link-cover:focus{
  border-color: rgba(0,0,0,0.2);
  border-width: 15px;
}


/* Large */
@media (min-width: 1200px){
  .article-block:nth-of-type(6n+4) .article-image,
  .article-block:nth-of-type(6n+5) .article-image,
  .article-block:nth-of-type(6n+6) .article-image{
    float: right;
  }
  .article-block:nth-of-type(6n+4) .article-inner,
  .article-block:nth-of-type(6n+5) .article-inner,
  .article-block:nth-of-type(6n+6) .article-inner{
    left: 0;
    right: auto;
  }
}
/* Medium */
@media (max-width: 1199px){
  .article-block:nth-of-type(4n+3) .article-image,
  .article-block:nth-of-type(4n+4) .article-image{
    float: right;
  }
  .article-block:nth-of-type(4n+3) .article-inner,
  .article-block:nth-of-type(4n+4) .article-inner{
    left: 0;
    right: auto;
  }
}
/* Small */
@media (max-width: 991px){
  .article-block:nth-child(even) .article-image{
    float: right;
  }
  .article-block:nth-child(even) .article-inner{
    left: 0;
    right: auto;
  }
  .article-block:nth-child(odd) .article-image{
    float: left;
  }
  .article-block:nth-child(odd) .article-inner{
    left: auto;
    right: 0;
  }
}
/* Extra Small */
@media (max-width: 767px){
  .article-block .article-image{
    width: 100%;
    float: none !important;
  }
  .article-block .article-inner{
    position: relative;
    width: 100%;
    background-color: #fff;
  }
  .article-block .article-inner .article-inner-content{
    position: relative;
    transform: none;
    padding: 8%;
  }
}

/* Article Page */
.article-page .article-block .article-image{
  width: 100%;
  float: none !important;
  padding-bottom: 36.6666%
}
.article-page .article-block .article-inner{
  position: relative;
  width: 100%;
  background-color: #fff;
}
.article-page .article-block .article-inner .article-inner-content{
  position: relative;
  transform: none;
  padding: 5% 10%;
}

@media screen and (max-width:767px) {
	.article-page .article-block .article-image {
        padding-bottom: 66.6666%
    }
}



/* Image Gallery */
.article-gallery-section{
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-gallery .article-block .article-image{
  width: 100%;
}
.image-gallery .article-block .article-inner{
  top: initial;
  width: 100%;
  height: 20%;
  background-image: linear-gradient(to bottom, transparent, #000 100%);
  padding-top: 15px;
  /*opacity: 0; Display Inner on page load */ 
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
}
.image-gallery .article-block:hover .article-inner,
.image-gallery .article-block:focus .article-inner{
  opacity: 1;
}
.image-gallery .article-inner .article-inner-content{
  position: relative;
  max-height: unset;
  bottom: auto;
  padding: 8px 30px;
  transform: none;
}
.image-gallery .article-inner .article-inner-content:before{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 0;
  border-top: 1px solid #fff;
  /*opacity: 0; Display Inner on page load */ 
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1),-webkit-transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1),transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1),transform 1s cubic-bezier(0.23, 1, 0.32, 1),-webkit-transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform-origin: left;
  transform-origin: left;
}
.image-gallery .article-block:hover .article-inner .article-inner-content:before{
  opacity: 1;
  -webkit-transform: translate(25px, 0) scale(5, 1);
  transform: translate(25px, 0) scale(5, 1);
}

.image-gallery .article-block .article-title{
  margin-bottom: 0;
  text-align: left;
  font-size: 18px;
  color: white;
}
.image-gallery .article-block .article-link-cover{
  border: none !important;
}
.image-gallery .article-block .article-image-cover{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
  opacity: 0; /* Display Inner on page load */
}
.image-gallery .article-block:hover .article-image-cover,
.image-gallery .article-block:focus .article-image-cover{
  opacity: 0;
}

/* Image Gallery Album */
.image-gallery-album{
	text-align: center;
}
.image-gallery-album .article-block{
	display: inline-block;
}
.image-gallery-album .article-block .article-image{
  width: 100% !important;
  float: none !important;
  padding-bottom: 0 !important;
}

/* Countdown */
.clock{
  margin-top: 15px;
  background-color: #272013;
}
.countdown{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 0 auto;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cdtitle{
  color: white;
}
.cdvalue,
.cdlabel{
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
  color: white;
  text-shadow: 1px 1px 1px rgba(10,10,10, 0.7);
}
.cdvalue{
  font-size: 22px;
  font-weight: bold;
  color: #fbf2b9;
}
.cdlabel{
  font-size: 12px;
}
@media (max-width: 991px){
	.countdown{
		max-width: 320px;
	}
}

@media (max-width: 767px){
	.countdown{
		max-width: 260px;
	}
}




/* PANELS */

.panel-group .panel-heading {
	border-bottom: 1px solid #ddd;
}
.panel-title a {
	display: block;
}

/* CONTACT FORM */
.contactButtons input[type="button"]{
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contactForm input[type="text"], .contactForm textarea {
	width: 100%;
}

/* NEW FRAMEWORK TABLE */

.wb35-top-table {
	
}

.wb35-col {

}

.wbf-head {
	padding: 20px 10px 20px 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.wbf-content-num {
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;	
}

.wbf-content-p {
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
}

.wb35-col h1 {
	font-size: 72px;
	color: #2b251a;
	font-weight: bold;
}

.wb35-col h3 {
	color: #fff;
	font-size: 20px;
	font-weight: bold;
}

#wb35-col-1 .wbf-head, .wb35-col:nth-child(2) .wbf-head {
	background: #2b251a url("../images/move-right-1.png") right center no-repeat;
}

#wb35-col-2 .wbf-head, .wb35-col:nth-child(3) .wbf-head {
	background: #3f3523 url("../images/move-right-2.png") right center no-repeat;
}

#wb35-col-3 .wbf-head, .wb35-col:nth-child(4) .wbf-head {
	background: #53452b url("../images/move-right-3.png") right center no-repeat;
}

#wb35-col-4 .wbf-head, .wb35-col:nth-child(5) .wbf-head {
	background: #63502c;
}

.kpi-item-block {
	position: relative;
}

.kpi-item-block .kpi-item-number {
	position: absolute;
	top: 0px;
	left: 10px;
	font-size: 40px;
	font-weight: bold;	
	letter-spacing: -2px;
}

.kpi-item-block .kpi-item-icon {
	text-align: center;
}

.kpi-item-block .kpi-item-title {
	margin-top: 10px;
	font-size: 18px;
	font-weight: normal;
	line-height: 24px;
	text-align: center;
}

.kpi-individual {
	padding: 20px 0;
	border-bottom: 1px solid #b9aa8b;

}

.kpi-individual + .kpi-individual {
	border-top: 1px solid #eadcc1;
}

.kpi-individual:last-child {
	border-bottom: 0px;
}

.kpi-individual-icon {

}

.kpi-individual-details {

}

.kpi-individual-details h1 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
}

.kpi-individual-details p {
	margin-bottom: 10px;
}

.kpi-individual-details ul {
	padding-left: 20px;
}

.kpi-individual-details li {
	margin-bottom: 7px;
}

/* FAQ */
.faq-filter{
	margin-top: 10px;
}
.faq-filter label{
	margin-right: 8px;
	cursor: pointer;
}
.faq-filter #faq-category{
	padding: 5px;
	width: 100%;
}

.faq-item {
	margin-top: 40px;
}

.faq-question {
	font-size: 18px; 
	font-weight: bold; 
	margin-bottom: 0px; 
	padding-bottom: 0px;
}

.faq-cat {
	margin-top: 0px; 
	padding-top: 0px; 
	margin-bottom: 15px; 
	padding-bottom: 0px; 
	font-size: 11px; 
	text-transform: uppercase; 
	pointer-events: none; 
	cursor: default; 
	text-decoration: none;  
	color: #523f17 !important;
}

.faq-answer {
	font-size: 12px;
}

h1.faq-question::before {
	content: "Q : ";
	font-size: bold;
}

.faq-item p:nth-child(3)::before {
	content: "A : ";
	font-weight: bold;
}

/* Maklumat Awam */
.ma-panel-group .panel-heading img{
	width: 25px !important;
}

.ma-panel-group .panel-heading .panel-title{
	font-size: 20px;
}

.ms-dlgContent{
	z-index: 99999 !important;
}

/* Folder File Gallery */
.folder-file-gallery{
	margin-top: 40px;
	margin-bottom: 40px;
	font-size: 16px;
}

.folder-file-gallery hr{
	border-color: #b7ab96;
}

.folder-file-gallery h2, .folder-file-gallery .row-title{
	font-size: 30px;
	margin-bottom: 15px;
}