
/* BASIC SETUP */

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	outline: none;
}

body {
    background-color: #fff;
    color: #555;
    font-family: 'Lato', Arial, sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
	overflow-x: hidden;
}


/* REUSABLE COMPONENT */
.row {
    max-width: 1140px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-bold {
	font-weight: 400;
}

/* HEADINGS */
h1, h2, h3 {
    text-transform: uppercase;
}

h1 {
    font-weight: 300;
}

h2 {
    font-weight: 300;
    font-size: 180%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

h2:after {
    display: block;
    height: 2px;
    background-color: #e67e22;
    content: "";
    width: 100px;
    margin: 0 auto;
    margin-top: 30px;

}

h3 {
    font-weight: 400;
    font-size: 120%;
}

h4 {
    font-size: 100%;
    text-transform: uppercase;
}

/* LINKS */
a:link,
a:visited {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover,
a:active {
    color: #ddd;
}

/* BUTTON */
.btn:link,
.btn:visited {
    display: inline-block;
    padding: 10px 30px;
    margin-right: 15px;
    text-decoration: none;
    border-radius: 5px;
}

.btn-full:link,
.btn-full:visited {
    background-color: #e67e22;
    color: #fff;
    position: relative;
    box-shadow: 5px 5px 0 #d35400;
    transition: color 0.2s;
}

.btn-full:hover,
.btn-full:active {
    top: 1px;
    color: #ddd;
}

/* ------------------ 
    HEADER
   ------------------ */

header {
	position: fixed;
	top: 0;
	z-index: 99;
	width: 100%;
	box-shadow: 0 2px 8px #333;
}

nav {
	
    background-color: #2c3e50;
    text-transform: uppercase;
    color: #fff;
}


.logo {
    float: left;
    letter-spacing: 1px;
    word-spacing: 1px;
    font-size: 180%;
    height: 70px;
    padding-top: 10px;
}

.logo span {
    font-size: 30%;
    display: block;
}


/* ------------------ 
    PRIMARY NAV
   ------------------ */ 

.main-nav {
    float: right;
    list-style: none;
    margin-top: 30px;
}

.main-nav li {
    display: inline-block;
    margin-left: 40px;
    position: relative;
}

.main-nav li a:link,
.main-nav li a:visited {
    padding-bottom: 13px;
    color: #fff;
    font-size: 90%;
    border-bottom: 4px solid transparent;
    transition: border-bottom 0.2s;
}

.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 4px solid #fff;
}

.main-nav li ul {
    display: none;
    
    position: absolute;
    top: 40px;
    left: -50px;
    z-index: 99;
    font-size: 80%;
    transition: display 0.1s;
} 

.main-nav li ul li {
    width: 200px;
    background: #2c3e50;
    padding: 10px 20px;
    box-shadow: 0 0 2px #2c3e50;
    border-bottom: 1px solid #34495e;
}

.main-nav li ul li:last-child {
    border-bottom: 0;
}

.main-nav li:hover ul {
    display: block;
    width: 200px;
}

.main-nav li ul li a:link,
.main-nav li ul li a:visited{
    color: #fff;
    border-bottom: 0;
}

.main-nav li ul li a:hover,
.main-nav li ul li a:active{
    color: #ddd;
}


/* ------------------ 
    DATES
   ------------------ */
.dates {
    background-color: #2c3e50;
    color: #fff;
    font-size: 80%;
    padding: 10px 0;
    line-height: 140%;
}

.dates-title {
    border-bottom: 1px solid #2980b9;
    padding: 0 0 10px;
    margin-bottom: 10px;
    font-weight: 400;
}


/* ------------------ 
    SPEAKERS
   ------------------ */
.keynote-speaker {
    background: #f5f5f5;
}
.keynote-speaker .col{
    background: #fff;
    box-shadow: 0 2px 10px #ddd;
}

.keynote-speaker img{
    float: left;
    margin-right: 10px;
    border-right: 1px solid #ddd;
}

.keynote-speaker h3 {
    font-size: 90%;
    font-weight: 700;
    padding: 10px 0;
}

/* ------------------ 
    VENUE
   ------------------ */

.venue {
	background: #444;
	color: #fff;
}

.map {
	border: 0;
	width: 100%; 
	height: 400px;
	margin-top: 20px;
}

/* ------------------ 
    SPONSOR
   ------------------ */
.sponsor {
    background: #f5f5f5;
    text-align: center;
}

.round img, .square img {
     margin-right: 20px;
     vertical-align: middle;
}

.round img {
    width: 150px;
    margin-bottom: 20px;
}

.square img {
    width: 200px;
}

/* ------------------ 
    FOOTER
   ------------------ */

footer {
    background: #2c3e50;
    color: #fff;
    padding: 20px 0;
    font-size: 90%;
    line-height: 150%;
}

footer a {
    color: #ddd;
}

footer img {
    width: 100px;
    vertical-align: middle;
    margin-right: 10px;
}

footer h3 {
    border-bottom: 1px solid #2980b9;
    padding: 10px 0;
    margin-bottom: 10px;
}

.copyright {
    border-top: 1px solid #2980b9;
    padding: 10px;
}

.host {
    font-size: 200%;
    padding: 40px 0;
    text-align: center;
}

.host p {
    margin-bottom: 20px;
}

.host img {
    width: 200px;
}




/* ------------------ 
    POST
   ------------------ */

.post {
	margin: 40px auto;
}

.post-content {
    line-height: 150%;
}

.post ul, .post ol {
	margin-left: 40px;
	margin-top: 10px;
}

.topic-list span {
	display: block;
	width: 50%;
	margin: 0 auto;
	border: 1px solid #ddd;
	padding: 5px 0;
}

table, tr, td, th {
	border: 1px solid #ddd;
	padding: 5px 10px;
	
}

table {
	width: 100%;
	border-collapse: collapse;
	line-height: 150%;
}

th {
	font-weight: 400;
}

th[scope="row"]{
	text-align: left;
}



/* TOPICS */

.topic-list{
    margin: 10px 20px;
}

/* COMMITTEE */
.committe {
    margin-bottom: 10px;
}
.committe span{
    display: block;
}

.committe span:before{
    content: "// ";
}

.mail img{
    float: left;
    width: 50px;
    
}


/* ------------------ 
    SLIDER
   ------------------ */
.bg-0 {
	background: linear-gradient(to right, rgba(119, 161, 211, 0.6), rgba(121, 203, 202, 0.6), rgba(230, 132, 174, 0.6)), url('img/hero.jpg');
}


.bg-1 {
	background: linear-gradient(to right, rgba(119, 161, 211, 0.6), rgba(121, 203, 202, 0.6), rgba(230, 132, 174, 0.6)),  url('../img/slide-mesjid-raya-medan.jpg');
}

.bg-2 {
	background: linear-gradient(to right, rgba(119, 161, 211, 0.6), rgba(121, 203, 202, 0.6), rgba(230, 132, 174, 0.6)), url('../img/slide-istana-maimun.jpg');
}

.bg {
	
	height: 70vh;
	background-size: cover;
	background-position: center center;
}

.slider-content {
	color: #fff;
	padding: 20px;
	text-align: center;
	background: rgba(0,0,0,0.7);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 2px 5px #333;
}

.slider-content h4 {
	font-size: 200%;
	letter-spacing: 2px;
	word-spacing: 10px;
}

.slider-content p {
	margin: 10px 0 20px;
	font-size: 90%;
	line-height: 150%;
}

table.text-bold {
	font-size: 80%;
}






