.container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 5vw;
}
.step{
    margin: 0.5vw;
    height: 35vw;
    width: 25.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1vw;
    flex-wrap: wrap;
    padding: 1vw 1vw;
    background: rgba(0, 0, 0, 0.7)
}
.step img{
    height: 50%;
    width: 75%;
    border-radius: 1vw;
    margin: 1vw 1vw;
    transition: 0.5s;
}
.step img:hover{
    scale: 2;
    transition: 0.5s;
}
.number{
    background: rgba(0, 0, 0, 0.7);
    color: #E121E1;
    height: 5vw;
    width: 5vw;
    text-align: center;
    padding: 1vw;
    border-radius: 1vw;
    font-size: 3vw;
    margin: 0.3vw 0.3vw;
}
.guide{
    height: 8vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 3vw;
    font-weight: bolder;
    background: -webkit-linear-gradient(35deg, #7821F5, #F11E7B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.border{
    background: linear-gradient(rgba(255, 1, 186, 0.5), rgba(178, 1, 255, 0.5));
    border-radius: 1vw;
    padding: 0.1vw
}
.mar{
  margin: 2vw;
  opacity: 0;
	animation: fadeIn 0.5s ease-in both;
}
.mar:nth-child(2) {
	animation-delay: 0.5s;
}
.mar:nth-child(3) {
	animation-delay: 1s;
}
.mar:nth-child(4) {
	animation-delay: 1.5s;
}
.mar:nth-child(5) {
	animation-delay: 2s;
}
.mar:nth-child(6) {
	animation-delay: 2.5s;
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translate3d(0, -20%, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}