/** PAGE TABS **/
.tab {
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.tab button {
  float: left;
  border: none;
  outline: none;
  padding: 10px 0;
  transition: 0.3s;
  margin: auto 10px;
  width: auto;
  background: none;
  border-bottom: 2px solid #00000000;
}

.tab button:hover {
  background-color: none;
}

.tab button.active {
  border-color: #000;
  color: #000;
}

.tabcontent {
  display: none;
  padding: 6px 12px;
  margin: 10px 0;
  border-top: none;
  min-height: 450px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-size: cover;
  background-position: center;
}


.tabBox {
    max-width: 500px;
    color: #fff;
    margin-left: 7%;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
}

.tabBox h3 {
    color: #fff;
}

@media (max-width: 767px) {
	.tabBox {
		max-width: none;
		margin: 2% 5%;
		width: auto;
	}
}