/**
 * Generic Styling
*/
body {
  background: #f1f1f1;
  min-height: 100vh;
	box-sizing: border-box;
	padding-top: 10vh;
  font-family: "Myriad Pro",Arial,Helvetica,sans-serif;
  color: #666666;
  font-weight: 300;
  line-height: 0;
  max-width: 60rem;
  margin: 0 auto;
  font-size: 90%;
}


@media (max-width: 1024px) {
  .tabs .tab,
  .tabs label {
    order: initial;
  }
  .tabs label{
    width: 100%;
    font-size: 10px;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}

@media (max-width: 768px) {
  .tabs .tab,
  .tabs label {
    order: initial;
  }
  .tabs label{
    width: 100%;
    font-size: 10px;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}

@media (max-width: 667px) {
  .tabs .tab,
  .tabs label {
    order: initial;
  }
  .tabs label {
    width: 100%;
    font-size: 10px;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}

@media (max-width: 375px) {
  .column {
    width: 375px;
  }
  .tabs {
    width: 375px;
  }
  .tabs .tab,
  .tabs label {
    order: initial;
  }
  .tabs label {
    width: 100%;
    font-size: 16px;
    margin-right: 0;
    margin-top: 0.2rem;
  }
  .dropdown-contact {
    transform: scale(0.8);
  }
}

.tabs {
	display: flex;
	flex-wrap: wrap; // make sure it wraps
}
.tabs label {
	order: 1; // Put the labels first
	display: block;
	padding: 1rem 2rem;
	margin-right: 0.2rem;
	cursor: pointer;
  background: #f8f9f9;
  font-weight: bold;
  transition: background ease 0.2s;
}
.tabs .tab {
  order: 99; // Put the tabs last
  border-radius: 5px;
  flex-grow: 1;
	width: 100%;
	display: none;
  padding: 1rem;
  background: #fff;
}
.tabs input[type="radio"] {
	display: none;
}
.tabs input[type="radio"]:checked + label {
	background: #fff;
}
.tabs input[type="radio"]:checked + label + .tab {
	display: block;
}

.dropbtn {
  background-color: #f8f9f9;
  color: white;
  padding: 12px;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  text-align: center;
  background-color: #ffffff;
  text-align: left;
  width: 110px;
  height: 65px;
  z-index: 1;
}

.dropdown-content a {
  color: #666666;
  padding: 8px 8px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #f8f9f9}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-contact {
  display: none;
  position: absolute;
  padding: 10px 25px;
  border-radius: 15px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  text-align: left;
  background-color: #fff;
  width: 200px;
  z-index: 1;
}

.dropdown-contact a {
  color: black;
  text-decoration: none;
  display: block;
}

.dropdown-contact a:hover {background-color: #fff}

.dropdown:hover .dropdown-contact {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #f8f9f9;
}

.bizcard{
  
	padding:10px;
  height:80px;
  line-height:1.3;
  text-align: justify;
}