html, body {
	margin: 0;
	padding: 0;
}

.navbar {
	height: 50px;
	background-color: #2FB3AD;
}

.home {
	padding-top: 50px;
	height: 100vh;
	background-color: #2FB3AD;
}

.home .bg {
	width: 100%;
	max-width: 100%;
	
}

.home .bg img {
	width: 100%;
	height: auto;
}

.btn-brown {
	background-color: #fae5c1;
	border: 0.1px solid #fff;
	color: #674127;
}

.btn-brown:hover {
	background-color: #674127;
	color: #fae5c1;
}

.btn-brown-dark {
	background-color: #674127;
	color: #fae5c1;
}

.btn-brown-dark:hover {
	background-color: #fff;
	color: #674127;
}

.bg-green {
	background-color: #53a29d;
}

.bg-brown {
	background-color: #fae5c1;
}

.text-brown {
	color: #674127;
}


.ticket {
	width: 100%;
	height: 120px;
	background-color: #fae5c1;
	position: relative;
	overflow: hidden;
}

.holes-left {
	height: 20px;
  	width: 20px;
  	background-color: #fff;
  	border-radius: 50%;
  	position: absolute;
  	top: 50%;
  	margin-top: -10px;
  	left: -10px;
}

.holes-left:before, .holes-left:after {
  content: "";
  height: 20px;
  width: 20px;
  background-color: #fff;
  position: absolute;
  border-radius: 50%;
}
.holes-left:before {
  top: -60px;
}
.holes-left:after {
  top: 60px;
}

.ticket-description {
	padding-left: 35px;
	height: 120px;
}

.ticket-action {
	border-left: 1px #674127 dashed;
	position: relative;
	height: 120px;
	padding-right: 20px;
}

.ticket-button {
	width: 80%;
}

.holes-right {
	position: absolute;
	left: 0px;
	top: 0px;
}
.holes-right:before, .holes-right:after {
  content: "";
  height: 20px;
  width: 20px;
  background-color: #fff;
  position: absolute;
  border-radius: 50%;
}
.holes-right:before {
  top: -10px;
  left: -10px;
}
.holes-right:after {
  top: 110px;
  left: -10px;
}

