.bg-ri {
	background-color: #232445;
	color: #fff;
}

.btn-ri {
	background-color: #232445;
	color: #fff;
}

.btn-ri:hover {
	color: #e7e7e7;
}

.embed-responsive-custom {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	/* 16:9 arány (9 / 16 * 100) */
	height: 0;
}

.embed-responsive-custom .embed-responsive-item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media (max-width: 768px) {
	.embed-responsive-custom {
		padding-bottom: 177.78%;
		
	}
}


.roadmap-step {
    position: relative;
   
    clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%, 0% 0%);
    text-align: center;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    transition: transform 0.3s ease;
}
/*
.roadmap-container div:first-child .roadmap-step {
    clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 0% 50%, 0% 0%);
}


.roadmap-container div:last-child .roadmap-step {
    clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 0% 100%, 10% 50%, 0% 0%);
}*/

.roadmap-step:hover {
    transform: scale(1.05);
    z-index: 10;
}

.step-number {
    font-size: 0.8rem;
    opacity: 0.7;
    border-bottom: 1px solid white;
    margin-bottom: 5px;
    display: inline-block;
}

@media (max-width: 991px) {
    .roadmap-step {
        clip-path: none !important;
        margin-bottom: 10px;
        border-radius: 8px;
    }
}