/* start the conversion */



.start-conversion {
    width: 100%;
    background-color: black;

}

.start-conversion:hover {
    background-color: #C8F542;
    transition: all .5s ease-in-out;
}


.start-conversion-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.start-conversion-content-header {
    font-size: 8.6rem !important;
    color: #363636;
    text-align: center;
	line-height: 1.1;
	margin: 20px 0;
}

.start-conversion-content-body{
	font-size: 14px;
	color: #363636;
	text-align: center;
}

.start-conversion-content-ready{
	color: #363636;
}

.start-conversion-content a {
    width: 30rem;
    height: 7rem;
    margin-top: 5rem;
	align-items: center;
    align-content: center;
}

.start-conversion-button-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap; 
}

.start-conversion:hover .start-conversion-content a.button:not(.start-conversion-button-outline) {
    background-color: black !important;
    color: white !important;
    transition: all 0.3s ease-in-out;
    border: 0.1rem solid black;
}

.start-conversion-button-outline {
	background-color: none;
    color: #000;
    border: 0.1rem solid #fff;
    transition: all 0.3s ease-in-out;
}

.start-conversion:hover .start-conversion-button-outline {
    background-color: #C8F542 !important;
    color: #000;
    border: 0.1rem solid #000;
}

@media (max-width: 768px) {

    .start-conversion-content {
        max-width: 100%;
        overflow: hidden;
        height: 100vh;
    }

    .start-conversion-content-header {
        font-size: 3.8rem !important;
        color: #363636;
        text-align: center;
    }

    .start-conversion-content a {
        width: 18rem;
        height: 6rem;
        margin-top: 5rem;
        align-self: center;
		font-size: 9px !important;

    }
    .hip-button:after{
        width: 5rem;
        height: 5rem;
        right: -33%;
        top: -1px;
    }
	
	.start-conversion {
        background-color: #C8F542;
        transition: all .5s ease-in-out;
    }
	
	.start-conversion .start-conversion-content a.button:not(.start-conversion-button-outline) {
        background-color: black !important;
        color: white !important;
        border: 0.1rem solid black;
    }

    .start-conversion .start-conversion-button-outline {
        background-color: #C8F542 !important;
        color: #000;
        border: 0.1rem solid #000;
    }
}