.seareas {
    position: relative;
    padding: 65px 0;
}

.seareas h2 {
    margin-bottom: 0;
    padding-top: 5px;
}

.seareas .setitle {
    gap: 36px;
    margin-bottom: 50px;
    justify-content: space-between;
}

.seareas .seimg {
    text-align: center;
}

.arealist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    box-shadow: 0 1px 4px 0 rgba(118, 118, 118, 0.40);
    background: rgba(255, 255, 255, 0.87);
    border-radius: 32px;
    padding: 40px;
    gap: 29px;
}

.singlearea {
    display: flex;
    align-items: center;
    gap: 12px;
}

.singlearea a {
    font-size: 24px;
    line-height: 52px;
    letter-spacing: 0.48px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: 1px;
    text-underline-position: from-font;
    font-family: "Pipe-Bold", sans-serif;
    transition: all .3s ease-in-out;
}

.singlearea:hover a {
    color: var(--Red);
}

.seareas::before {
    background: var(--Grey);
    opacity: 0.38;
}

.seareas::after {
    background: var(--Blue);
    top: 66px;
    width: 63%;
    height: 51px;
}

.seareas .btn-red.hide-desktop {
    display: none;
}

@media(max-width:1400px) {
    .seareas::after {
        width: 73%;
    }
}

@media(max-width:1200px) {
    .seareas::after {
        width: 69%;
    }

    .seareas h2 {
        font-size: 37px;
    }

    .arealist {
        padding: 30px;
        gap: 13px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:1100px) {
    .seareas::after {
        width: 70%;
    }
}

@media(max-width:992px) {
    .seareas {
        padding: 84px 0;
        background: url('../../../library/images/mobo-map-img.png') center / cover no-repeat !important;
    }

    .seareas::after,
    .seareas .btn-red {
        display: none;
    }

    .seareas .row {
        flex-direction: column-reverse;
    }

    .seareas .btn-red.hide-desktop {
        display: flex;
        width: fit-content;
        margin: 0 auto 43px auto;
    }

    .seareas .setitle {
        flex-direction: column;
        margin-bottom: 42px;
    }

    .seareas h2 {
        font-size: 40px;
        background: var(--Blue);
        text-align: center;
        padding: 13px 40px;
    }

    .seareas .col-md-4,
    .seareas .col-md-8 {
        width: 100%;
        text-align: center;
    }

    .seareas .seimg img {
        width: 200px;
    }

    .arealist {
        padding: 30px;
        row-gap: 20px;
        column-gap: 30px;
        grid-template-columns: repeat(3, 1fr);
        margin-bottom: 43px;
    }

    .col-md-8.arealist-wrap {
        display: flex;
        justify-content: center;
    }
}

@media(max-width:767px) {
    .arealist {
        column-gap: 30px;
        grid-template-columns: repeat(2, 1fr);
        padding: 40px;
    }
}

@media(max-width:576px) {
    .singlearea {
        text-align: left;
        gap: 10px;
    }

    .arealist {
        padding: 40px;
        gap: 22px;
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 43px;
    }

    .singlearea a {
        font-size: 18px;
        line-height: 22px;
        letter-spacing: 0.36px;
    }

    .singlearea img {
        width: 25px;
    }
}

@media(max-width:370px) {
    .arealist {
        padding: 20px;
    }
}