squash / components / styles / Roadmap.module.css
Roadmap.module.css
Raw
.heading{
    margin-bottom: 16px;
}
.grid{
    max-width: 876px;
}
.grid .gridItem{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.grid .gridItem:nth-child(2){
    align-items: center;
}
.grid .gridItem:nth-child(2) .point{
    margin-bottom: 200px;
}
.gridItem div p{
    margin-top: 16px;
    font-style: normal;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
}
.gridItem div{
    margin-bottom: 42px;
}
.image{
    object-fit: cover;
    border-radius: 6px;
}
.point{
    background-color: var(--black-1);
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    padding: 11px;
    border-radius: 8px;
    font-family: 'Manrope';
    position: relative;
}
.point:nth-child(1):after{
    content: "";
    width: 1px;
    height: 200px;
    background-color: var(--black-1);
    position: absolute;
    bottom: -200px;
    left: 50%;
}
.point:nth-child(2):after{
    content: "";
    width: 1px;
    height: 200px;
    background-color: var(--black-1);
    position: absolute;
    bottom: -200px;
    left: 50%;
}
.imageStyles{
    object-fit: 'cover';
    border-radius: '6px';
    max-width: 95%;
}