html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    margin: auto;
    font-family: "MyanmarMN", Helvetica, Arial, sans-serif;
    color: #333;
}

@font-face {
	font-family: "MyanmarMN";
	src: url('../font/MyanmarMN.ttc');
}

header {
    width: 100%;
    background-color: #FFF;
    height: 75px;
    position: fixed;
    opacity: 0.95;
    z-index: 10;
}

main {
    width: 100%;
    height: 100%;
    margin: 0;
}

/* LOGO */

figure {
    display: inline-block;
    width: 125px;
    height: 75px;
    margin-top: 10px;
    margin-left: 20px;
}

figure div#logo {
    background-size: contain;
    background-image: url(../img/logo@3.png);
    background-repeat: no-repeat;
    height: inherit;
    width: auto;
}

@media screen and (max-width: 1000px) {
    
    figure {
        display: inline-block;
        width: 100px;
        height: 50px;
        margin: 0;
        padding-left: 5px;
        padding-top: 5px;
        box-sizing: content-box;
}

    figure div#logo {
        background-size: contain;
        background-image: url(../img/logo@3.png);
        background-repeat: no-repeat;
        height:inherit;
        width: auto;
    }
}

/* NAVIGATION MENU */
    
.hamburger {
    display: none;
}

.cross {
    display: none;
}

.menu {
    float : right;
    padding: 10px;
    width: auto;
    margin-right: 5px;
    box-sizing: content-box;
    z-index: 10;
}

.menu ul {
    list-style-type: none;
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 10;
 }

.menu li.title {
    float: left;
    font-size: 1.4em;
    padding-right: 20px;
 }

.menu ul li a {
    color: #7b7878;
    text-decoration: none;
 }

.menu li ul {
    position: absolute;
    display: none;
    padding: 5px;
    padding-top: 10px;
    margin-left: -5px;
    font-size: 0.9em;
 }

.menu li a:hover {
    text-decoration: none;
    color: #f28e34;
    transition: all 0.3s;
 }

.menu ul li:hover ul {
    display: block;
 }

.menu li:hover ul li {
    float: none;
    transition: all 0.3s; 
 }

img.flag {
    width: 20px;
    height: 15px;
    border-radius: 3px;
    box-shadow: 0 0 1px;
}

img.arrow {
    width: 15px;
    height: auto;
    margin-bottom: 3px;
    margin-left: -3px
}

a.hidden {
    display: none;
}

@media screen and (max-width: 1000px) {
    
    header {
        height: 50px;
}
    
.hamburger{
    display: inline-block;
    background:none;
    position:absolute;
    top:0;
    right:0;
    line-height:45px;
    padding:5px 15px 0px 15px;
    color:#999;
    border:0;
    font-size:1.4em;
    cursor:pointer;
    outline:none;
    z-index:10;
}
.cross{
    display: none;
    background:none;
    position:absolute;
    top:0;
    right:0;
    padding:5px 15px 0px 15px;
    color:#999;
    border:0;
    font-size:3em;
    line-height:65px;
    cursor:pointer;
    outline:none;
    z-index:10;
}

.menu {
    z-index:10;
    font-weight:bold;
    width:100%; 
    background:#ebebeb;  
    margin: 0;
    margin-top: -10px;
    padding: 0;
    display: none;
}
    
.menu ul {
    padding: 0; 
    list-style-type: none; 
    list-style-image: none;
    background-color: #cbcaca;
    border-radius: 0; 
}

.menu li ul {
    position: relative;
    margin: 0;
    padding: 0;
}
    
.menu li.title {
    width: 100%;
    height: 40px;
    line-height: normal;
    text-align: center;
    padding: 0; 
    margin: 0;
 }
    
.menu li.subtitle {
    display: none;
 }

.menu a {
    text-decoration:none;
}

.menu ul li:hover, .menu ul li:active {
    text-decoration: none;
 }

.menu li:hover ul li, .menu li:active ul li {
    text-decoration: none;
 }
    
a.hidden {
    display: inline-block;
    padding-left: 10px;
}
    
img.arrow {
    display: none;
}
}

/* COLORS UNDER MENU */

div#colors {
    width: 100%;
    height: 3px;
    position: fixed;
    display: block;
    top: 60px;
    z-index: 9;
}

div#red {
    width: 33.33%;
    height: 100%;
    display: inline-block;
    background-color: #e6302c;
}

div#yellow {
    width: 33.33%;
    height: 100%;
    display: inline-block;
    background-color: #f3e425;
}

div#orange {
    width:33.33%;
    height: 100%;
    display: inline-block;
    background-color: #f28e34;
}

@media screen and (max-width: 1000px) {
    
    div#colors {
        top: 37px;
}
}

/* SCROLL ICON */

.icon-scroll, .icon-scroll:before {
    position: absolute;
    left: 50%;
}

@media screen and (max-width: 1000px) {
    
    .icon-scroll, .icon-scroll:before {
    left: 52%;
}
}

.icon-scroll {
    width: 30px;
    height: 45px;
    margin-left: -20px;
    margin-top: -35px;
    box-shadow: inset 0 0 0 1px #fff;
    border-radius: 25px;
}

.icon-scroll:before {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    margin-left: -4px;
    top: 8px;
    border-radius: 4px;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-name: scroll;
}

@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(36px);
  }
}

@media screen and (max-width: 1000px) {

.icon-scroll {
    width: 20px;
    height: 30px;
    margin-top: -15px;
}
}

/* INDEX NAVIGATION */


.indexnavigation {
    position: fixed;
    left:0%;
    top: 50%;
    width: 170px;
    height:auto;
    display: block;
    z-index: 10;
}

.navoption {
    color: #000;
    transition: all 0.3s;
    margin-left: 0;
    padding-left: 20px;
    opacity: 0.9;
    display: block;
    width: 100%;
}

.navoption:hover {
    background-color: #fff;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: all 0.3s;
    padding-left: 25px;
    cursor: pointer;
}

.indexnavigation label {
    opacity: 0;
    padding: 10px;
}

.indexnavigation label:hover, .indexnavigation label:active, .indexnavigation label:focus {
    opacity: 1;
    cursor: pointer;
}

@media screen and (max-width: 1000px) {
    
    .indexnavigation {
        display: none;
}
}

/* BUTTON RADIO */

input[type=checkbox]:not(old),
input[type=radio   ]:not(old){
    width     : 0em;
    margin    : 0;
    padding   : 0;
    opacity   : 0;
}

input[type=checkbox]:not(old) + label,
input[type=radio   ]:not(old) + label{
    display      : inline-block;
    margin-left  : -2em;
}

input[type=checkbox]:not(old) +  span,
input[type=radio   ]:not(old) +  span{
    display          : inline-block;
    width            : 0.875em;
    height           : 0.875em;
    margin           : 0.25em 0.5em 0.25em 0.25em;
    border           : 0.0625em solid rgb(192,192,192);
    border-radius    : 0.7em;
    background       : rgb(224,224,224);
    background-image : linear-gradient(rgb(240,240,240),rgb(224,224,224));
    vertical-align   : bottom;
}

input[type=checkbox]:not(old):checked + span,
input[type=radio   ]:not(old):checked + span{
    background-image : linear-gradient(rgb(224,224,224),rgb(240,240,240));
}

input[type=checkbox]:not(old):checked + span:before{
    content     : '✓';
    display     : block;
    width       : 1em;
}

input[type=radio]:not(old):checked + span > span{
    display          : block;
    width            : 0.5em;
    height           : 0.5em;
    margin           : 0.125em;
    border           : 0.0625em solid black;
    border-radius    : 0.35em;
    background       : black;
    background-image : linear-gradient(black),black;
}

/* GLOBAL */

input:focus, textarea:focus {
	border: 1px solid #999;
	color: #444;
}

h3, h4, h5, h6 {
    width: 100%;
    font-family: "helvetica";
    height: auto;
    position: relative;
    margin-left:auto;
    margin-right: auto;
    margin-top: 0;
    padding: 0;
    text-align: center;
    line-height: normal;
    font-size: 2.5em;
    font-weight: 100;
    z-index: 9;
}

@media screen and (max-width: 1000px) {

h3, h4, h5, h6 {
    margin-top: 35px;
}
}

div#indextitle1, div#indextitle2, div#indextitle3, div#indextitle4 {
    width: 100%;
    min-height: 25%;
    margin: 0;
    padding-top: 7%;
    background-color: antiquewhite;
    color: #fff;
    text-align: center;
    z-index: 9;
}

@media screen and (max-width: 1000px) {
    div#indextitle1, div#indextitle2, div#indextitle3, div#indextitle4 {
    padding-top: 15%;
    padding-bottom: 15px;
}
}

div#indextitle1 {
    background-image: url(../img/ban1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

div#indextitle2 {
    background-image: url(../img/ban3.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

div#indextitle3 {
    background-image: url(../img/ban2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

div#indextitle4 {
    background-image: url(../img/ban4.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

div#indextitle1 h1, div#indextitle2 h1, div#indextitle3 h1, div#indextitle4 h1, {
    font-family: "MyanmarMN";
    position: relative;
    margin-top: 5%;
    margin-left: auto;
    margin-right: -50%;
    width: 100%;
    height: auto;
    display: block;
    font-size:1.5em;
    z-index: 9;
}

@media screen and (max-width: 1000px) {
    div#indextitle1 h1, div#indextitle2 h1, div#indextitle3 h1, div#indextitle4 h1, {
    font-size: 1.2em;
}
}

div#indextitle1 h2, div#indextitle2 h2, div#indextitle3 h2, div#indextitle4 h2,{
    width: 100%;
    height: auto;
    position: absolute;
    z-index: 9;
    font-weight: 100;
}

/* BUTTON A LINK */

.moreinfo {
    width: 100%;
    height: 50px;
    text-align: center;
    overflow: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

.custom-btn {
    padding: 10px 25px;
    font-weight: 500;
    background: transparent;
    outline: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.btn-4 {
    width: 150px;   
    height: 40px;
    line-height: 42px;
    padding: 0;
    border: none;
    font-size: 1.1em;
    font-weight: 100;
}

.btn-4 span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.btn-4:before, .btn-4:after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    background: #000;
    transition: all 0.3s ease;
}

.btn-4:before {
    height: 50%;
    width: 1px;
}
.btn-4:after {
    width: 20%;
    height: 1px;
}

.btn-4:hover:before {
    height: 100%;
}

.btn-4:hover:after {
    width: 100%;
}

.btn-4 span:before, .btn-4 span:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    background: #000;
    transition: all 0.3s ease;
}

.btn-4 span:before {
    width: 1px;
    height: 50%;
}

.btn-4 span:after {
    width: 20%;
    height: 1px;
}

.btn-4 span:hover:before {
    height: 100%;
}

.btn-4 span:hover:after {
    width: 100%;
}

/* INDEX */

div#index1 {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    background-image: url(../img/indexback.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 9;
}

div#index2, div#index3, div#index4, div#index5, div#map {
    width: 100%;
    height: auto;
    margin: 0;
    padding-top: 7%;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 7%;
    box-sizing: border-box;
    font-family: "helvetica";
    z-index: 9;
    background: linear-gradient(#fff, #FDFDFD, #F7F7F7);
    text-align: center;
}

#moreinfos {
    width: 100%;
    margin-top: 50px;
}

.adr, .tel, .mail {
    width: 32%;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
}

.icon {
    width: 50px;
    display: block;
    margin: auto;
    padding: 20px;
}

@media screen and (max-width: 1000px) {
    
.adr, .tel, .mail {
    width: 100%;
}
}

/* INDEX PART 1 */

div#index1 h1 {
    font-family: "MyanmarMN";
    position: absolute;
    margin-left: auto;
    margin-right: -50%;
    width: 100%;
    height: auto;
    text-align: center ;
    line-height: normal;
    display: block;
    bottom: 7%;
    font-size: 1.5em;
    z-index: 9;
    color: #fff;
}

@media screen and (max-width: 1000px) {
    
    div#index1 h1 {
        font-size: 1.2em;
}
}

div#index1 h2 {
    width: 100%;
    height: auto;
    position: absolute;
    margin-left:auto;
    margin-right: -50%;
    text-align: center;
    line-height: normal;
    bottom: 1%;
    z-index: 9;
    color: #fff;
}

a.js-scrollTo {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 100;
    z-index: 9;
    transition: all 0.3s;
}

a.js-scrollTo:hover {
    font-size: 1.3em;
    transition: all 0.3s;
}


/* INDEX PART 2 */

p.title {
    text-align: left;
    font-size: 1.8em;
}

.conferences {
    position: relative;
    width: 100%;
}

.confdates {
    display: inline-block;
    position: relative;
    width: auto;
    max-width: 70%;
    margin: auto;
    float: left;
}

.dates {
    width: 45%;
    text-align: justify;
    display: inline-block;
    padding: 10px;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}

.date1, .date2, .date3, .date4 {
    display: block;
    width: 60px;
    padding: 20px;
    padding-left: 8px;
    box-sizing: border-box;
    border-radius: 50px;
    letter-spacing: 0.1em;
}

.date1 {
    background-color: #e6302c;
    color: white;
}

.date2 {
    background-color: #f3e425;
    color: #333;
}

.date3 {
    background-color: #f28e34;
    color: white;
}

.date4 {
    background-color: #333;
    color: white;
}

.sdate1, .sdate2, .sdate3, .sdate4 {
    display: block;
    margin-left: 27px;
    padding-left: 10px;
}

.sdate1 {
    border-left: 3px solid #e6302c;
}

.sdate2 {
    border-left: 3px solid #f3e425;
}

.sdate3 {
    border-left: 3px solid #f28e34;
}

.sdate4 {
    border-left: 3px solid #333;
}

.speakers {
    display: inline-block;
    position: relative;
    margin: auto;
    float: right;
}

.speaker {
    margin-top: 50px;
    width: 100%;
}

.speak1, .speak2, .speak3, .speak4, .speak5, .speak6 {
    width: 39%;
    height: 110px;
    display: inline-block;
    margin: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 3px;
}

.speak1 {
    background-image: url('../img/speakers/img1.jpg');
}

.speak2 {
    background-image: url('../img/speakers/img2.jpg');
}

.speak3 {
    background-image: url('../img/speakers/img3.jpg');
}

.speak4 {
    background-image: url('../img/speakers/img4.jpg');
}

.speak5 {
    background-image: url('../img/speakers/img5.jpg');
}

.speak6 {
    background-image: url('../img/speakers/img6.jpg');
}

.speak1:hover, .speak2:hover, .speak3:hover, .speak4:hover, .speak5:hover, .speak6:hover {
    opacity: 0.5;
    transition: all 0.1s;
}

@media screen and (max-width: 1000px) {
    
    .confdates {
        max-width: 100%;
}
    .dates {
        width: 100%;
}
    .speakers {
        width: 80%;
        float: none;
    }
    .speak1, .speak2, .speak3, .speak4, .speak5, .speak6 {
        height: 150px; 
}
}

/* INDEX PART 3 */

div#index3 h4 {
    width: 100%;
    font-family: "helvetica";
    height: auto;
    position: relative;
    margin-left:auto;
    margin-right: auto;
    margin-top: 0;
    padding: 0;
    text-align: center;
    line-height: normal;
    font-size: 2.5em;
    font-weight: 100;
    z-index: 9;
}

iframe {
    width: 100%;
    height: 500px;
    border: 0;
}

/* VENUE PAGE */

.descpart{
    text-align: center;
}

.logoaccomodation1, .logoaccomodation2 {
    position: relative;
    float: left;
    width: 400px;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.logoaccomodation1 {
    background-image: url('../img/mercure.jpg');
}

.logoaccomodation2 {
    background-image: url('../img/orchardz.jpg');
}

.accomodationaddress{
    position: relative;
    float: right;
    width: 49%;
    margin-top: 30px;
    padding: 3px;
    box-sizing: border-box;
}

.iconlocalisation{
    float: left;
    border-right: 1px solid black;
}

.address{
    width: 390px;
}

.accomodation1, .accomodation2{
    position: relative;
    overflow: auto;
    margin-top: 50px;
    box-shadow: 0 0 1px #333;
    border-radius: 15px;
    background: #fff;
}

.button{
    text-align: center;
}

.linkhotel{
    display: block;
    position: relative;
    text-align: center;
    height: auto;
    margin: auto;
    padding-bottom: 10px;
    padding-top: 9px;
    padding-left: 9px;
    padding-right: 9px;
    margin-top: 30px;
}

@media screen and (max-width: 1000px) {
    .logoaccomodation1, .logoaccomodation2{
    float: none;
    width: 100%;
    padding: 0;
}
    .accomodationaddress{
    float: none;
    width: 100%;
}
    .iconlocalisation{
    display: none;
}
    .address{
    width: 100%;
    padding: 0;
}
}

/* THEME TOPIC */

.block{
    display: inline-block;
    padding: 30px;
    width: 150px;
    text-align: right;
}

.block img{
    float: left;
    width: 50px;
    height: 50px;
}

.block p{
    float: right;
}

.topicareas{
    position: relative;
    margin: auto;
    height: auto;
    text-align: center;
    margin-top: 20px;
}

@media screen and (max-width: 1000px) {
    .block {
    display: inline-block;
    padding: 5px;
    width: 110px;
    text-align: center;
}
    .block img{
    float: none;
    width: 50px;
    height: 50px;
}
    .block p{
        float: none;
    }
}

/* SCHEDULE */

table {
    position: relative;
    text-align: center;
    width: 100%;
    height: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    border-collapse: collapse;
}

td {
    padding: 15px;
    text-align: center;
    border-collapse: collapse;
    border: 1px solid #333;
}

th{
    padding: 10px;
    font-weight:bold;
}

.tdalone {
    height: auto;
    border: 1px solid #333;
}

.titletable {
    border-bottom: 10px;
    background-color: #333;
    color: #fff;
    border: 1px solid #333;
    font-size:0.8em;
}

@media screen and (max-width: 1000px) {
    table {
    margin-left:-10%;
    margin-right: -10%;
    width: 120%;
}
}

/* FEES */

address {
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.tdfees{
    padding: 10px;
    text-align: center;
    border-collapse: collapse;
    border: 1px solid #f28e34;
}

.orangeth{
    text-align: center;
    border-collapse: collapse;
    border: 2px solid #f28e34;
    background-color: #f28e34;
    color: white;
    font-weight: bold;
    padding: 10px;
}

.tablefees{
    border-collapse: collapse;
    border: 1px solid #f28e34;
}

/* KEYNOTE SPEAKERS */

.accordion-panel {
	padding:10px; 
	border-bottom:1px solid #999898; 
	background: white rgba(0, 0, 0, 0.1);
}
.accordion-panel p {
	line-height: 21px;
    text-align: left;
    margin: 0;
}
.accordion-toggle { 
	border: 1px solid #999898; 
	border-bottom:0;
    width: 100%;
    margin: 0;
    margin-top: 50px;
}

@media screen and (max-width: 1000px) {
.accordion-toggle { 
    margin-left:-10%;
    margin-right: -10%;
    width: 120%;
}
}

.accordion-link {
    width: 100%;
    margin: 0;
	position:relative;
	color: black;
	font-size:14px;
	margin:0px;
	padding:10px 7px;
	cursor:pointer;
	background: #E2E2E2;
	border-bottom: 1px solid #999898;
	box-sizing: border-box;
    text-align: left;
}
.accordion-link span {
	position: absolute; 
	background: black ; 
	width: 1px; 
	height: 11px; 
	top: 13px; 
	right: 16px; 
	transition: all 0.3s; 
}
.accordion-link span:after {
	content: ''; 
	position: absolute; 
	background: black; 
	height: 1px; 
	width: 11px; 
	top: 5px; 
	left: -5px; 
	transition: all 0.3s; 
}
.accordion-on.accordion-link span:after {
	opacity:0;
}
.accordion-on.accordion-link span {
	transform: rotate(90deg);
}

.keynotespeakerimg1, .keynotespeakerimg2, .keynotespeakerimg3, .keynotespeakerimg4, .keynotespeakerimg5, .keynotespeakerimg6  {
    position: relative;
    margin: auto;
    width: 150px;
    height: 100px;
    float: left;
    margin-right: 10px;
    margin-bottom: 5px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.keynotespeakerimg1 {
    background-image: url('../img/speakers/img1.jpg');
}

.keynotespeakerimg2 {
    background-image: url('../img/speakers/img2.jpg');
}

.keynotespeakerimg3 {
    background-image: url('../img/speakers/img3.jpg');
}

.keynotespeakerimg4 {
    background-image: url('../img/speakers/img4.jpg');
}

.keynotespeakerimg5 {
    background-image: url('../img/speakers/img5.jpg');
}

.keynotespeakerimg6 {
    background-image: url('../img/speakers/img6.jpg');
}

.websitespeakers{
    text-align: center;
}

/* REGISTRATION FORM */

td.tdinput, td.tdsubmit {
    border: 0;
    width: 80%;
    height: 30px;
}

input, button#submit{
    width: 100%;
    font-size: 1.5em;
    padding: 10px;
    margin: 0;
    background: #fff;
    color: #333;
    border: 0;
    box-shadow: 0 0 1px #333;
    box-sizing: border-box;
}


/* PROCEEDING */

.download {
    width: 100%;
    height: 200px;
    padding-top: 75px;
    box-sizing: border-box;
    display: block;
    background: #f3f3f3;
    font-size: 1.3em;
    margin-bottom: 50px;
}

.detail {
    text-align: left;
}
/* VIDEO */

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
    margin: auto;
}

.video-container iframe,  
.video-container object,  
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-wrapper {
	width: 600px;
	max-width: 100%;
    margin: auto;
}

/* FOOTER */

footer {
    overflow: auto;
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    padding: 5px;
    box-sizing: border-box;
    font-size: 0.9em;
    text-align: center;
    background-color: #ebebeb;
    color: #1c1c1c;
}