
.fzt-heading-container {
    align-items: center;    
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
    position: relative;
    text-align: center;
    width: 100%;
}

.fzt-heading-container .fzt-heading-intro-title {
    align-items: inherit;
    color: var(--nexira-primary-color);
    display: inline-flex;
    font-family: var(--nexira-body-font-family);
    font-size: calc(var(--nexira-body-font-size) - 2px);
    font-weight: 600;
    justify-content: inherit;
    line-height: 1;
    padding: 0 10px;
    position: relative;
    text-align: inherit;
    text-transform: uppercase;
    text-wrap: balance;
    width: auto;
}

.fzt-heading-container .fzt-heading-intro-title:before,
.fzt-heading-container .fzt-heading-intro-title:after
{
    bottom: 0;
    content: "";
    position: absolute;
    top: 0;
}

.fzt-heading-container .fzt-heading-intro-title:before {
    border-color: currentColor;
    border-style: solid;
    border-width: 2px 0 2px 2px;
    left: 0;
    width: 5px;
}

.fzt-heading-container .fzt-heading-intro-title:after {
    border-color: currentColor;
    border-style: solid;
    border-width: 2px 2px 2px 0;
    right: 0;
    width: 5px;
}

.fzt-heading-container .fzt-heading-title {
    align-items: inherit;
    color: var(--nexira-heading-color);
    display: inline-flex;
    font-family: var(--nexira-h2-font-family);
    font-size: clamp(1.75rem, 1.5rem + 1.25vw, 3rem);
    font-weight: 700;
    justify-content: inherit;
    letter-spacing: -0.02em;
    line-height: 1.3;
    text-align: inherit;
    text-transform: uppercase;
    text-wrap: balance;
    width: 100%;
}

.fzt-heading-container .fzt-heading-intro-title:empty,
.fzt-heading-container .fzt-heading-title:empty {
    display: none;
}

/* Fzt With Gradient  - Heading */

.fzt-with-gradient .fzt-heading-container .fzt-heading-intro-title {
    -webkit-background-clip: text;
    background-image: linear-gradient(90deg, var(--nexira-gradient-color) 20%, var(--nexira-primary-color) 100%);
    font-weight: 700;
    -webkit-text-fill-color: transparent;
}

.fzt-with-gradient  .fzt-heading-container .fzt-heading-intro-title:before {
    border-color: var(--nexira-gradient-color);
}

.fzt-with-gradient  .fzt-heading-container .fzt-heading-intro-title:after {
    border-color: var(--nexira-primary-color);
}

/* Responsive */

/* Laptop, 1281px and up */
@media (min-width: 1281px) and (max-width: 1440px) {
    
}

/* Tablets - Landscape, 1025px and up */
@media (min-width: 1025px) and (max-width: 1280px) {
    
}

/* Tablets - Portrait, 768px and up */
@media (min-width: 768px) and (max-width: 1024px) {

}

/* Mobile - Landscape, less than 767px */
@media (min-width: 576px) and (max-width: 767px) {
    
}

/* Mobile - Portrait, less than 575px */
@media (max-width: 575px) {
    
}

/* Small Mobile - Portrait, less than 479px */
@media (max-width: 479px) {
    
}