@import url(../global/global.css);



.page-title {
    color: #FDB913;
    font-weight: 600;
    position: relative;
    margin-bottom: 60px;
}

    .page-title::before {
        content: " ";
        width: 300px;
        display: inline-block;
        position: absolute;
        bottom: -17px;
        height: 4px;
        background-color: #FDB913;
        right: 0;
    }

.group {
    background-color: #EDEDED;
    border-radius: 35px;
    padding: 38px;
    transition: all 0.3s;
    height: 210px;
}

.group-title {
    font-weight: 500;
    color: #222;
    font-size: 30px;
    white-space: nowrap;
}

.group-img img {
    border-radius: 20px;
}

.group-btn {
    background-color: #fff;
    border-radius: 20px;
    padding: 8px 16px;
    transition: all 0.3s;
}

    .group-btn:hover {
        background-color: #FDB913;
        color: #fff;
    }

.group div {
    width: 50%;
    padding: 0 5px;
}

.group:hover {
    box-shadow: 0px 15px 30px #D9D9D9;
}

@media only screen and (max-width:992px) {
    .group-title {
        font-size: 30px;
    }
}

@media only screen and (max-width:768px) {
    .group {
        padding: 10px;
    }

    .group-btn {
        font-size: var(--font-size-1);
    }

    .page-title {
        font-size: var(--font-size-3);
    }

        .page-title::before {
            width: 200px;
        }
}

@media only screen and (max-width:576px) {
    .group-title {
        font-size: 25px;
    }

    .group-btn {
        font-size: var(--font-size-small);
    }

    .group-img {
        width: 35% !important;
    }

        .group-img img {
            border-radius: 20px;
        }

    .group-title {
        white-space: normal;
    }

    .group {
        height: 150px;
    }
}
