.tad-cont{
	background: #FCFCFC;
	width: 100%;
	padding-top: 4.2vw;
	padding-bottom: 8.1vw;
	margin-bottom: -8.1vw;
}
.tad-selections{
	display: flex;
	justify-content: space-between;
}
.tad-selections p{
	padding: 1.2vw .5vw;
	font-size: 1.5vw;
	margin: 0;
	color: #212121;
	cursor: pointer;
	position: relative;
}
.tad-selections p img{
	display: none;
}
.tad-selections p:before{
	width: 100%;
	position: absolute;
	height: 2px;
	background: #212121;
	bottom: 0;
	transition: .4s;
	transform: scale(0);
	content: '';
	left: 0;
}
.tad-selections p:hover:before{
	transform: scale(1);
}
.tad-selections p.active:before{
	background: #F0A30D;
	transform: scale(1);
}
.tab{
	display: none;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin: 4.2vw 0;
	position: relative;
	font-size: 18px;
}
.tab.active{
	display: flex;
}
.tab img{
	width: 38.4vw;
	margin: 1vw;
}
.tab  a{
	color: #F0A30D;
	font-size: 1.2vw;
	font-family: "roboto-r"; 
	margin-top: 2.8vw;
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: .3s;
	position: absolute;
	bottom: -5vw;
	right: 0;
}
.tab  a img{
	width: 3.3vw;
	margin-left: 1.7vw;
}
.tab  a:hover{
	right: -1.5vw;
}
@media(max-width: 500px){
	.tad-cont{
		padding-top: 20vw;
		z-index: 5;
		position: relative;
	}
	.tad-selections{
		flex-direction: column;
		height: 14vw;
		position: relative;
		z-index: 15;
	}
	.tad-selections p{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0;
		min-height: 14vw;
		max-height: 14vw;
		font-size: 5vw;
		border: 1px solid #E2E2E2;
		background: #fff;
		position: absolute;
		z-index: 10;
	}
	.tad-selections p img{
		width: 3vw;
		position: absolute;
		right: 4vw;
		display: block;
	}
	.tad-selections p.active{
		border: none;
		background: #F0A30D;
		color: #fff;
		position: relative;
		z-index: 15;
	}
	.tab img{
		width: 100%;
		margin: 4vw 0;
	}
	.tab a{
		font-size: 4vw;
		position: static;
		margin-top: 4vw;
	}
	.tab a img{
		width: 9vw;
	}
}