/* ========CARD======== */
.card {
  overflow: hidden;
	background: #fff;
	box-shadow: 0px 0px 0px rgba(0,0,0,0.2),
				4px 4px 15px rgba(0,0,0,0.2);
	border-radius: 8px;
}

.card-header {
  margin: 10px 15px;
}

.card-img {
  max-width: 100%;
  background-position: center;
  border-radius: 8px 8px 0 0;
  margin-bottom: -10px;
}

.card-body {
  margin: 10px 25px;
	color: #727272;
	font-weight: 400;
}

.card-body-p {
  margin: -6px 15px;
}

.card-body ul {
	list-style: none;
}

.card-body ul li {
	margin: 6px 0 12px 0;
}

.card-body ul li:last-child {
	margin: 6px 0 10px 0;
}

.card-body ul li a {
	text-decoration: none;
	color: #62a0ff;
	font-size: 16px;
	float: right;
}

/* ========Bottom Nav======== */
.tab {
  /* background: #4680dc; */
  background: #fff;
  width: 100vw;
  position: fixed;
  bottom: 0;
  border-radius: 20px 20px 0 0;
  box-shadow: 0px 2px 10px rgba(0,0,0,0.4);
}

.tab ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 10px 0;
}

.tab ul li {
  display: block;
  text-align: center;
}

.tab ul li a {
  display: block;
  text-decoration: none;
  font-size: 14px;
}

.tab ul li a i {
  font-size: 22px;
  margin: 0;
}

.carousel {
  width: 100%;
  height: 350px;
  /*background: #699EFF;*/
  z-index: -1;
  position: fixed;
  top: 0;
  transition: 1s;
}

.carousel img {
  height: 90%;
  width: 100%;
}

.carousel.sticky {
  background: transparent;
  display: none;
  transition: 1s;
}

.accor {
  overflow: hidden;
}

.accor-label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  background: #2c3e50;
  font-weight: bold;
  cursor: pointer;
  /* Icon */
}

.accor-label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}
.accor-content {
  max-height: 0;
  padding: 0 1em;
  color: #2c3e50;
  background: white;
  transition: all 0.35s;
}

.accor-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}
.accor-close:hover {
  background: #1a252f;
}

.accor-input:checked + .accor-label {
  background: #1a252f;
}
.accor-input:checked + .accor-label::after {
  transform: rotate(90deg);
}
.accor-input:checked ~ .accor-content {
  max-height: 100vh;
  padding: 1em;
}

.accor-input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.btn {
  list-style: none;
  text-align: center;
}