/* Todo unify styles,  colours and buttons across the site */

* {
  box-sizing: border-box;
}
body {
  font-family: Verdana, sans-serif;
}

/*=================== headers ===================================== */

header {
  height: 100%;
  width: 100%;
  background-color: #4592e7;
}

/*=================== navigation bar =============================== */

/* general properties for all buttons */
nav > a[class*="button"] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  color: rgb(255, 239, 131);
  text-align: center;
  width: 170px;
  height: 47px;
  border-radius: 50px;
  padding: 15px 32px;
  font-size: 16px;
}

/* background color */
nav > .button1 {
  background-color: #695b01;
}
nav > .button2 {
  background-color: #174b30;
}
nav > .button3 {
  background-color: #1a66b3;
}

/* no underline of text in the button */
nav > a:link {
  text-decoration: none;
}

/* button when mouse over it */
nav > a:hover {
  font-style: italic;
}

/*=================== couresel (index page) =========================== */

.mySlides {
  display: none;
}

section.slideshow-container > div > img {
  max-width: 100%;
  max-height: 500px;
}

/* Slideshow container */
.slideshow-container {
  max-width: 80%;
  height: 500px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/*===================== footer ======================================= */

footer {
  height: 100%;
  width: 100%;
  background-color: #4592e7;
  text-align: center;
}

/* =================== collaposible contents =========================== */

.collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active,
.collapsible:hover {
  background-color: #555;
}

.collapsible:after {
  content: "\002B";
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
}

/*=================== custom button 1 =============================== */

.button4 {
  background-color: #f44336;
  color: white;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
.button4:hover,
.button4:active {
  background-color: white;
  color: #f44336;
}

/*=================== custom button 2 =============================== */

.button5 {
  background-color: #539b23;
  color: white;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}
.button5:hover,
.button5:active {
  background-color: #40771b;
  color: white;
}

/*=================== basic table style =============================== */

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  text-align: left;
  padding: 8px;
}



th {
  
  background-color: #04aa6d;
  color: white;
}


/* Table with borderless */

table.tbl_borderless {
  padding-top: 50px;
  border-collapse: collapse;
  background: none;
}

table.tbl_borderless th {
  border: none;
  padding: 0 0.5em;
  text-align: center;
}

table.tbl_borderless tr {
  border: none;
  border-collapse: collapse;
  padding: 0 0.5em;
  text-align: center;
}

table.tbl_borderless td {
  border: none;
  padding: 0 0.5em;
  text-align: center;
}

tr.spaceUnder>td {
  padding-bottom: 20px;
}