
/* color pallet:
orange: #BC4123
blue: #0B172A
greish purple: #463940
*/

body {
  background-color: #0B172A;
  font-family:"Courier New";
  color: #EDF5E1;
}


.intro, .specs{
  color:#BC4123;
}

.source:hover {
  color: #BC4123;
  text-decoration: none;
}


.card{
  background-color: #BC4123;
  /* overrides 1px border of bootstrap */
  border:0;
  transition: .3s;
}
.card p,h4{
  color: #EDF5E1;
}
.card .btn{
  background-color: #463940;
  border: none;

}


.card:hover{
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}

.card:hover .btn {
  background-color: #0B172A;
}



/* slider styling */


/* Slide container */
.slide-container {
  max-width: 95%;
  position: relative;
  margin: auto;
}

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


/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  background-color: black;
  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: black;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: black;
  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 {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

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

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



/* footer */
footer ul{
  margin-bottom: 0;
}
footer .list-inline-item:not(:last-child){
  margin-right: 0;
}

.fa {
  padding: 20px;
  font-size: 20px;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
  cursor: pointer;
}
.instruction-steps li::before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: -32px;
  top: 3px;
  width: 24px;
  height: 24px;
  background: var(--wp--preset--color--primary);
  border-radius: var(--wp--custom--border-radius--large);
  color: var(--wp--preset--color--background);
  font-size: var(--wp--preset--font-size--tiny);
  display: flex;
  align-items: center;
  justify-content: center;
}