
/* Start main Heading */
.main-heading {
    text-align: center;
    margin-bottom: 20px;
}

.main-heading h2 {
    font-weight: normal;
    font-size: 40px;
    position: relative;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.main-heading h2::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    bottom: -30px;
    width: 120px;
}

.main-heading.light h2::before {
    background-color: var(--color3);
}

.main-heading.dark h2::before {
    background-color: var(--color4);
}

.main-heading h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    bottom: -38px;
}

.main-heading.light h2::after {
    border: 2px solid var(--color3);
    background-color: var(--color2);
}

.main-heading.dark h2::after {
    border: 2px solid var(--color4);
    background-color: white;
}

.main-heading p {
    width: 550px;
    margin: 0 auto 50px;
    max-width: 100%;
    line-height: 2;
}

.main-heading.light p {
    color: rgb(236, 236, 236);
}

.main-heading.dark p {
    color: rgb(87, 86, 86);
}

@media (max-width: 570px) {

    .main-heading h2 {
        font-size: 34px;
    }

    .main-heading p {
        max-width: 450px;
    }
}


@media (max-width: 450px) {

    .main-heading h2 {
        font-size: 30px;
    }

    .main-heading p {
        max-width: 400px;
    }
}

@media (max-width: 400px) {

    .main-heading h2 {
        font-size: 27px;
    }

    .main-heading p {
        max-width: 320px;
    }
}
/* End main Heading */

/* Start Title Box */
.title_container {
    text-align: center;
    margin-bottom: 20px;
}
.title-box{
    text-align: center;
    margin-bottom: 30px;
}

.title-box h2 {
    font-weight: normal;
    font-size: 40px;
    position: relative;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: var(--color2);
}

.title_container p {
    width: 550px;
    margin: 0 auto 25px;
    max-width: 100%;
    line-height: 2;
}


.bb-top-left {
    position: absolute;
    width: 15px;
    height: 15px;
    top: 0;
    left: 0;
    border-top: 1px solid var(--color2);
    border-left: 1px solid var(--color2);
}
.bb-bottom-left {
    position: absolute;
    width: 15px;
    height: 15px;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid var(--color2);
    border-left: 1px solid var(--color2);
}
.bb-top-right {
    position: absolute;
    width: 15px;
    height: 15px;
    top: 0;
    right: 0;
    border-top: 1px solid var(--color2);
    border-right: 1px solid var(--color2);
}
.bb-bottom-right {
    position: absolute;
    width: 15px;
    height: 15px;
    bottom: 0;
    right: 0;
    border-bottom: 1px solid var(--color2);
    border-right: 1px solid var(--color2);
}
@media (max-width: 570px) {

    .title-box h2 {
        font-size: 34px;
    }

    .title_container p {
        max-width: 450px;
    }
}


@media (max-width: 450px) {

    .title-box h2 {
        font-size: 30px;
    }

    .title_container p {
        max-width: 400px;
    }
}

@media (max-width: 400px) {

    .title-box h2 {
        font-size: 27px;
    }

    .title_container p {
        max-width: 320px;
    }
}
/* End Title Box */


