@charset "UTF-8";

* {
  box-sizing: border-box;
}

main {
  background: linear-gradient(112deg,#830214,#FFF0A1 57%,#D7AB44);
  background-image: linear-gradient(112deg, rgb(131,2,20), rgb(255,240,161) 57%, rgb(215,171,68)); 
  background-repeat: no-repeat; 
}
 
/* Float four columns side by side */
.column {
  float: left;
  width: 25%;
  padding: 0 10px;
  margin-bottom: 20px;
}

/* Remove extra left and right margins, due to padding in columns */
.row {margin: 0 -5px;}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Style the counter cards 
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 16px;
  text-align: center;
  background-color: #f1f1f1;
} */

/* Responsive columns - one column layout (vertical) on small screens */
@media screen and (max-width: 600px) {
  .column {
    width: 50%;
    display: block; 
  }
  .card img {
	/* height: 175px; */
	}
  .btn-menu {
    top: 50%;
  }
}
.header-content {
    position: fixed;
    width: 100%; 
    padding: 10px;
    background-color: rgb(124,0,0,0.9);
}
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 300px;
  margin: auto;
  background-color: white;
  text-align: center;
  font-family: arial;
  border-radius: 8px;
} 

.card button {
  border: none;
  outline: 0;
  padding: 6px;
  color: white;
  margin: 10px 0;
  background-color: #d05278;
  text-align: center;
  cursor: pointer;
  width: 75%;
  border-radius: 4px;
  font-size: 18px;
}

.card img {
	border-radius: 8px;
	max-height: 300px;
}

.card button:hover {
  opacity: 0.7;
}


/* Slideshow container */
.slideshow-container { 
  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;
}

.paginate {
    text-align: center;
    margin-top: -50px;
    margin-bottom: 40px;
    z-index: 9;
    position: relative;
}

/* 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);
}
  

/* 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;
}

.actives, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}        
     