.showcase-title {
    color: var(--primary-brown);
    font-size: 32px;
    text-transform: capitalize;
    border-bottom: 2px solid var(--primary-gold);
    margin: 100px 0 50px 0;
    padding-bottom: 14px;
}

.showcase-subtitle {
    color: var(--primary-brown);
    font-size: 26px;
    text-transform: capitalize;
}

.showcase-typography,
.showcase-colors,
.showcase-hyperlinks_styles {
    display: grid;
    row-gap: 45px;
}

.showcase-typography span:first-of-type,
.showcase-colors span:first-of-type,
.showcase-spacings span:first-of-type,
.showcase-hyperlinks span:first-of-type,
.showcase-hyperlinks_styles span:first-of-type {
    font-weight: bold;
}

.showcase-typography span,
.showcase-colors span,
.showcase-spacings span,
.showcase-hyperlinks span,
.showcase-hyperlinks_styles span {
    display: block;
}

.showcase-typography .col-12 {
    display: grid;
    align-items: center;
}

.showcase-spacings .col-12 {
    display: grid;
    align-items: end;
}

.showcase-color_box {
    width: 100%;
    height: 150px;
    border: 1px solid var(--secondary-dark-grey);
    margin-bottom: 10px;
}

.showcase-spacing_box {
    background-color: var(--primary-brown);
    margin-bottom: 16px;
}

.showcase-hyperlinks .container>.row {
    padding: 45px 0;
}

.showcase-title-global,
.showcase-title-reusable_components,
.showcase-title-templated_components {
    position: relative;
    display: flex;
    align-items: center;
    font-family: "Montserrat-ExtraBold";
    color: var(--black);
    font-size: 30px;
    text-transform: capitalize;
    margin: 100px 0 50px 0;
}

.showcase-title-global::before,
.showcase-title-reusable_components::before,
.showcase-title-templated_components::before {
    content: '';
    width: 74px;
    height: 12px;
    margin-right: 20px;
}

.showcase-title-global::before {
    background-color: #FF3F3F;
}

.showcase-title-reusable_components::before {
    background-color: #FF9F47;
}

.showcase-title-templated_components::before {
    background-color: #23C2E5;
}

.showcase-subtitle-components {
    display: inline-block;
    color: #666666;
    font-size: 26px;
    border: 1px dashed #666666;
    margin: 50px 0;
    padding: 10px 20px 10px 88px;
}


@media (max-width: 991.5px) {
    .showcase-subtitle-components {
        font-size: 18px;
        padding: 10px 20px;
    }
}