.section-heading-container {
    width: 100%;
    text-align: center;
	padding-bottom: 10px;
}

.section-heading-container .section-sub-heading {
    font-size: 16px;
    font-family: var(--sub-heading-font);
    margin-bottom: 5px;
    color: var(--theme-color-2);
    text-transform: capitalize;
}

.section-heading-container .section-main-heading {
    font-size: 30px;
    font-weight: 600;
    font-family: var(--main-heading-font);
    margin-bottom: 10px;
    text-transform: capitalize;
}

.section-heading-container .line {
    width: 300px;
    height: 1px;
    background-color: #000;
    margin: auto;
}

.left-section-heading .section-heading-container {
    text-align: left;
}

.left-section-heading .section-heading-container .line {
    margin: unset;
    margin-right: auto;
    margin-bottom: 10px;
}

.right-section-heading .section-heading-container {
    text-align: right;
}

.right-section-heading .section-heading-container .line {
    margin: unset;
    margin-left: auto;
}

/********** Media Queries ************/

/* Large laptop */
@media screen and (max-width:1400px) {}

/* Small laptop */
@media screen and (max-width:1200px) {}

/* Tablet */
@media screen and (max-width:992px) {
    .section-heading-container .section-sub-heading {
        font-size: 15px;
    }

    .section-heading-container .section-main-heading {
        font-size: 28px;
    }
}

@media screen and (max-width:768px) {
    .section-heading-container .section-sub-heading {
        font-size: 14px;
    }

    .section-heading-container .section-main-heading {
        font-size: 25px;
    }
}

/* Large mobile */
@media screen and (max-width:576px) {
    .section-heading-container .section-sub-heading {
        font-size: 13px;
    }

    .section-heading-container .section-main-heading {
        font-size: 22px;
    }

    .section-heading-container .line{
        width: 200px;
    }
}

/* Small mobile */
@media screen and (max-width:375px) {}

@media screen and (max-width:320px) {}

/********** Media Queries END **********