.dual-buttons {
	position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 768px){
	.dual-buttons{
		flex-direction: column;
		align-items: center;
	}
}

.dual-buttons .btn {
    font-family: "SF UI Display", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.5s ease;
	display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px){
	.dual-buttons .btn{
		width: 208px;
    	justify-content: center;
	}
}


.dual-buttons .btn-pink{
	background-color: #E51467;
	border: 1px solid #E51467;
    color: #FFF;
}

.dual-buttons .btn-pink:hover{
	background-color: #FFF;
	border-color: #FFF;
	color: #E51467;
	opacity: 1;
}

.dual-buttons .btn-white{
	border: 1px solid #FFF;
	background-color: transparent;
    color: #FFF;
}

.dual-buttons .btn-white:hover{
	background-color: #FFF;
	color: #E51467;
	opacity: 1;
}