.breadcrumbs a {
    color: #8093A7;
    font-family: "Roboto", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
    text-decoration: none
}

.breadcrumbs {
    max-width: 800px;
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid: 1fr / repeat(4, 1fr);
    gap: 1%;
}

.pointer {
    height: 80px;
    position: relative;
    background: #F3F5FA;
    margin: 3.09375rem 0;
    display: grid;
    place-items: center;
}

.pointer:before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 30px solid white;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
}

#first:before {
    border-left: none;
}

#first {
    border-bottom-left-radius: 16px;
    border-top-left-radius: 16px;
}

.pointer:after {
    content: "";
    position: absolute;
    right: -29px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 30px solid #F3F5FA;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    z-index: 1
}

#last:after {
    border-left: none;
}

#last {
    border-bottom-right-radius: 16px;
    border-top-right-radius: 16px;
}

.current,
.pointer:hover {
    background: #F9C4D2;
    color: #fff !important;
}

.current:after,
.pointer:hover:after {
    border-left: 30px solid #F9C4D2;
}

/* MEDIA QUERIES TABLET */
@media screen and (max-width: 768px) {
    .breadcrumbs a {
        padding-left: 20%;
    }

    .breadcrumbs {
        max-width: 700px;
        width: 100%;
    }
}

/* MEDIA QUERIES MOBILE */
@media screen and (max-width: 360px) {
    .breadcrumbs a {
        padding-left: 2%;
    }

    .breadcrumbs {
        max-width: 300px;
        width: 70%;
        grid: repeat(4, 1fr) / 1fr;
        gap: 0;
    }

    .pointer {
        height: 50px;
        margin: 1% 0;
    }

    #first:before,
    .pointer:before {
        content: "";
        position: absolute;
        left: 0px;
        bottom: 0;
        width: 0;
        height: 0;
        border-left: 30px solid white;
        border-top: 25px solid transparent;
        border-bottom: 25px solid transparent;
    }

    #last:after,
    .pointer:after {
        content: "";
        position: absolute;
        right: -29px;
        bottom: 0;
        width: 0;
        height: 0;
        border-left: 30px solid #F3F5FA;
        border-top: 25px solid transparent;
        border-bottom: 25px solid transparent;
        z-index: 1
    }

    #first {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
    }
    #last {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
    }
        

    .current {
        background: #F9C4D2;
        color: #fff;
    }

    .current:after {
        border-left: 30px solid #F9C4D2 !important;
    }
}