:root {
  --computer: #dbdfe2;
  --computer-shadow: #aaabaf;
  --space: #010837;
  --text: #65ffff;
  --white: #ffffff;
  --offwhite: #f1f1f1;
  --grey: #ccc;
  --black: #000000;
  --offblack: #1B1B1B;
  --orange: #Ffac48;
  --purple: #9589FF;
  --teal: #65d1d1;
  --btcOrange: #f2a900;
}

body {
  background-color: rgb(14, 14, 14);
  font-family:Courier New;
}

.nav-bar {
  background-color: rgb(14, 14, 14);
}

h1,
h2,
h3,
h4,
h5,
h6 {  
  font-family: sans-serif;
  font-weight: 400;
  margin: 0%;
  padding: 0%;
}

#header-border {
  border-bottom: 2px solid var(--grey);
  width: 200px;
}

.w3-sidebar {
  width: 120px;
  background-color: #f2a900;
}

#main {
  margin-left: 120px;
}

#main h1 {
  font-family: 'Kanit', sans-serif;
  color: #f2a900;
  font-size: 70px;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}

#main h3 {
  margin: 0px;
}

.underline--emoji {
  background-image: url(/assets/high-voltage_26a1.png);
  background-position: 0 1.2em;
  background-size: 15px 9px;
  color: #e8665f;
}
.underline {
  background-repeat: repeat-x;
}


/* Cards */
.card-buttons {
  border-radius: 10px;
  background-color: var(--btcOrange);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}

/* Font Awesome Colors */

header .fa {
  color: #f2a900;
}

/*********** CSS For Service Slideshow********* */


* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* 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 {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

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

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Accordion CSS */
.accordion {
  background-color: var(--btcOrange);
  color: #1B1B1B;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  font-weight: bold;
}

.active, .accordion:hover {
  background-color: #ccc;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

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

.panel {
  padding: 0 18px;
  background-color: rgb(71, 71, 71);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel p {
  color: white;
}

/* Accordion Buttons */
.myButton {
	box-shadow: 0px 1px 0px 0px #f0f7fa;
	background:linear-gradient(to bottom, #33bdef 5%, #019ad2 100%);
	background-color:#33bdef;
	border-radius:6px;
	border:1px solid #057fd0;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Courier New;
	font-size:15px;
	font-weight:bold;
	padding:9px 23px;
	text-decoration:none;
	text-shadow:0px -1px 0px #5b6178;
  margin-bottom: 10px;
}
.myButton:hover {
	background:linear-gradient(to bottom, #019ad2 5%, #33bdef 100%);
	background-color:#019ad2;
}
.myButton:active {
	position:relative;
	top:1px;
}

/* Footer */
footer {
  
  color: white;
  padding: 15px;
  text-align: center;
}


/* Media */
@media only screen and (max-width: 600px) {
  #main {
    margin-left: 0;
  }
  .slideshow-container > img {
    max-width: 50%;
  }
  .slideshow-container {
    max-width: 90%;
  }
}