* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

#myRoadMap {
    margin-right: 100px;
    height: 100vh;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 100px;
}

#myRoadMap .contentRoadMap {
    position: relative;
    height: 90vh;
    display: flex;
}


#myRoadMap .contentRoadMap .itemRoad {
    width: 25%;
}

#myRoadMap .contentRoadMap .itemRoad>div {
    height: 50%;
}

#myRoadMap .contentRoadMap .itemRoad .bottomRoad {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    padding-left: 30px;
    color: #fff;
    font-size: 16px;
    font-family: Arial Rounded MT Bold;
    font-weight: 400;
}


#myRoadMap .contentRoadMap .itemRoad .bottomRoad .iconText {
    display: flex;
}

#myRoadMap .contentRoadMap .itemRoad .bottomRoad .iconText .containerIcon img {
    margin-top: 5px;
    margin-right: 5px;
}

#myRoadMap .contentRoadMap .itemRoad .bottomRoad ul {
    padding-left: 20px;
}

#myRoadMap .contentRoadMap .itemRoad .bottomRoad>h1 {
    color: #f6b00f;
    text-decoration: underline;
    font-size: 24px;
    font-family: Arial Rounded MT Bold;
    font-weight: 400;
    line-height: normal;
}

#myRoadMap .contentRoadMap .itemRoad .topRoad {
    position: relative;
    z-index: 1;
}

#myRoadMap .contentRoadMap .itemRoad .topRoad .squareContainer {
    width: 100%;
    height: 100%;
    /* background-color: blue; */
    display: flex;
    justify-content: center;
    align-items: center;
}

#myRoadMap .contentRoadMap .itemRoad .topRoad .squareContainer .square {
    width: 150px;
    height: 150px;
    background-color: #f6b00f;
    transform: rotate(45deg);
    border-radius: 15px;
    box-shadow: 2px 2px 5px 5px #000;
}

#myRoadMap .contentRoadMap .itemRoad .topRoad .squareContainer .squareRoadMap {
    width: 200px;
    height: 200px;
}

#myRoadMap .contentRoadMap .itemRoad .topRoad .textContainer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 3;
    font-size: 24px;
    font-family: Arial Rounded MT Bold;
    font-weight: 400;
}

#myRoadMap .contentRoadMap .svgRoad {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}


@media screen and (max-width: 768px) {
    .hideMobile {
        display: none;
    }

    #myRoadMap {
        margin: 0;
        padding: 50px 10px;
        height: auto;
        margin-top: 150px;
    }

    #myRoadMap .svgRoad {
        display: none;
    }

    #myRoadMap .heading {
        font-weight: 600;
    }

    #myRoadMap .contentRoadMap {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    #myRoadMap .contentRoadMap .itemRoad {
        width: 100%;
    }

    #myRoadMap .contentRoadMap .itemRoad .topRoad {
        margin-bottom: 20px;
    }

    #myRoadMap .contentRoadMap .itemRoad .topRoad .squareContainer .squareRoadMap {
        width: 150px;
        height: 150px;
    }

    #myRoadMap .contentRoadMap .itemRoad .bottomRoad {
        padding: 10px 10px;
    }
}