﻿/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section {
    padding: 5rem 0;
    min-height: 5rem;
    overflow: hidden;
}

    .section h1 {
        font-size: 2.2rem;
        font-weight: 800;
    }

    .section h2 {
        font-size: 1.8rem;
        font-weight: 400;
    }

    .section h3 {
        font-size: 1.3rem;
        font-weight: 100;
    }

    .section h4 {
        font-size: 1.1rem;
        font-weight: 100;
    }

    .section p {
        font-size: .9rem;
        font-weight: 100;
    }

.view-all {
    display: flex;
    justify-content: center;
}

    .view-all a {
        font-weight: 200;
        font-size: 1rem;
        display: inline-block;
        padding: .5rem 2.2rem;
        border-radius: 3rem;
        transition: 0.5s;
        margin-top: 2rem;
        border: 1px solid var(--nx-cta-backcolor);
        background-color: var(--nx-cta-bordercolor);
        color: var(--nx-cta-text-color);
        min-width: 18rem;
        text-align: center;
        letter-spacing: -.03rem;
    }

        .view-all a:hover {
            background-color: var(--nx-cta-backcolor-hover);
            border: 1px solid var(--nx-cta-bordercolor-hover);
            color: var(--nx-cta-text-color-hover);
            letter-spacing: .02rem;
        }

@media (max-width: 767px) {
    .section {
        padding: 2rem 1rem;
    }

    .view-all a {
        background-color: var(--nx-cta-backcolor-hover);
        border: 1px solid var(--nx-cta-bordercolor-hover);
        color: var(--nx-cta-text-color-hover);
        width: 100%;
        max-width: 20rem;
        text-align: center;
        padding: .4rem 2.2rem;
    }

    .section h1 {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 1.3rem;
    }

    .section h3 {
        font-size: 1.1rem;
    }

    .section h4 {
        font-size: 1rem;
    }

    .section p {
        font-size: .9rem;
    }
}


/*--------------------------------------------------------------
# Sections Features
--------------------------------------------------------------*/

#SectionFeatures {
}

    #SectionFeatures .item-box {
        text-align: center;
        margin: .5rem;
        color: var(--nx-color-primary);
        transition: .3s ease all;
    }


        #SectionFeatures .item-box:hover {
            color: var(--nx-color-primary-hover);
        }

            #SectionFeatures .item-box:hover .item-icon {
                transition: 1s ease-in-out all;
                transform: scale(1.20);
            }


        #SectionFeatures .item-box .item-icon {
            display: block;
            width: 5rem;
            height: 5rem;
            margin: 0 auto .5rem;
            transition: .5s ease all;
        }

        #SectionFeatures .item-box h3 {
            font-weight: 400;
            margin-top: 1.5rem;
        }

        #SectionFeatures .item-box p {
        }


@media (max-width: 767px) {
    #SectionFeatures .item-box {
        display: flex;
        margin: 0 0 1.5rem;
    }

    #SectionFeatures .item-box-content {
        text-align: right;
        width: calc(100% - 7rem);
    }

    #SectionFeatures .item-box .item-icon {
        margin: 0 0 .5rem 1rem;
    }

    #SectionFeatures .item-box h3 {
        margin-top: 0;
    }

    #SectionFeatures p {
        margin: 0;
    }
}



/*--------------------------------------------------------------
# Sections Services
--------------------------------------------------------------*/
#SectionServices .item-header {
    margin: 0 0 2rem;
}

    #SectionServices .item-header h1 {
        color: #8686a8;
        text-align: center;
    }

#SectionServices .row {
    --bs-gutter-x: .5rem;
}

#SectionServices .item-box {
    text-align: center;
    padding: 1rem 0;
}

    #SectionServices .item-box:hover .item-icon {
        transform: scale(1.1);
    }

#SectionServices .item-icon-holder {
}

#SectionServices .item-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto .5rem;
    display: flex;
    transition: all ease 0.5s;
}

#SectionServices .item-heading {
    color: navy;
    font-size: .9rem;
    font-weight: 100;
    line-height: 1.3rem;
}

#SectionServices .item-heading-subset {
    font-size: .85rem;
    color: #766699;
    margin: 0;
}

@media (max-width: 1199px) {
    #SectionServices .item-box {
        text-align: right;
        padding: 1rem 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: start;
    }

    #SectionServices .item-icon {
        width: 3rem;
        height: 3rem;
        margin: 0 0 0 .5rem;
    }


    #SectionServices .item-heading {
        font-size: .9rem;
        margin: 0;
    }
}

@media (max-width: 991px) {
    #SectionServices {
    }
}

@media (max-width: 767px) {
    #SectionServices {
    }
}

@media (max-width: 575px) {
    #SectionServices {
    }
}

/*--------------------------------------------------------------
# Sections Top Content
--------------------------------------------------------------*/

#SectionTopContents {
    color: var(--nx-color-secondary);
    background-color: var(--nx-navmenu-backcolor, #222251e6);
}

    #SectionTopContents h3 {
        margin-bottom: 1rem;
    }

    #SectionTopContents .topcontent-directbox {
        display: flex;
        min-height: 10rem;
        background-color: #ffffff17;
        width: 100%;
        border-radius: 0.7rem;
        padding: 1rem;
        align-items: center;
        justify-content: center;
        transition: .4s ease all;
    }

    #SectionTopContents .topcontent-directbox:hover{
        background-color: #454064;
    }

    #SectionTopContents .topcontent-directbox:hover .topcontent-directbox-icon{
        color: var(--nx-color-secondary);
        transform:scale(1.1);
    }

    #SectionTopContents .topcontent-directbox:hover .topcontent-directbox-text {
        color: var(--nx-color-secondary);
        letter-spacing:unset;
    }

    #SectionTopContents .topcontent-directbox-icon {
        transition:.3s ease all;
        display: flex;
        justify-content: center;
        font-size: 2.3rem;
        color: white;
        margin-bottom:1rem;
    }

    #SectionTopContents .topcontent-directbox-text {
         transition:.3s ease all;
       color: white;
        text-align:center;
        font-size:.9rem;
        letter-spacing:-.03rem;
    }


@media screen and (max-width:767px) {
    #SectionTopContents h1, #SectionTopContents h3 {
        text-align: center;
    }
}


/*--------------------------------------------------------------
# Sections CTA
--------------------------------------------------------------*/

#SectionCallToAction {
    background-size: cover;
    padding: 10rem 0;
    overflow: hidden;
}

    #SectionCallToAction h1 {
        color: var(--nx-color-secondary);
        font-size: 2.2rem;
        font-weight: 800;
        margin-bottom: .5rem;
        text-shadow: 3px 3px 4px #321759b3;
        letter-spacing: -.05rem;
    }

    #SectionCallToAction p {
        color: #fff;
        font-size: .9rem;
        font-weight: 200;
    }

    #SectionCallToAction .cta-btn {
        font-weight: 200;
        font-size: 1rem;
        letter-spacing: 1px;
        display: inline-block;
        padding: .5rem 2.2rem;
        border-radius: 3rem;
        transition: 0.5s;
        margin: 10px;
        border: 0;
        color: #fff;
        min-width: 14rem;
        letter-spacing: -.03rem;
        width: 100%;
        max-width: 25rem;
        background-color: rgba(255,255,255,.2);
    }

        #SectionCallToAction .cta-btn:hover {
            color: white;
            border: 0;
            letter-spacing: .02rem;
            background-color: rgba(255,255,255,.3);
        }

    #SectionCallToAction .features {
        display: flex;
        flex-wrap: wrap;
        padding: 2rem 0;
        list-style: none;
        justify-content: start;
        margin-bottom: 0;
    }

    #SectionCallToAction .features-item h3 {
        color: #fff;
        font-size: 1rem;
        font-weight: 100;
        background-color: #ffffff26;
        padding: .2rem 1.5rem;
        border-radius: .7rem;
        margin: .1rem;
        text-align: center;
    }

    #SectionCallToAction .features-space {
        color: #e4bcee;
        margin-left: .5rem;
        font-size: .9rem;
    }

@media (max-width: 991px) {
    #SectionCallToAction {
        padding: 6rem 0;
    }

        #SectionCallToAction h1 {
            text-align: center;
        }

        #SectionCallToAction p {
            text-align: center;
        }

        #SectionCallToAction .features {
            justify-content: center;
        }

        #SectionCallToAction .cta-btn {
            margin-top: 5rem;
            max-width: 18rem;
        }
}

@media (max-width: 767px) {
    #SectionCallToAction {
        padding: 5rem 1rem;
    }

        #SectionCallToAction .cta-content {
            text-align: center;
        }

        #SectionCallToAction .features {
            justify-content: center;
        }

        #SectionCallToAction .features-item {
            width: 100%;
            max-width: 17rem;
        }

        #SectionCallToAction .cta-btn {
            background: #f0ab07;
            color: #3c1e68;
            border: 1px solid #f0ab07;
            width: 100%;
            max-width: 20rem;
            padding: .4rem 2.2rem;
        }
}

@media (max-width: 575px) {
    #SectionCallToAction .call-to-action h1 {
        font-size: 2rem;
        margin: 0 0 3rem;
    }
}
/*---------------------------------------------------
    Section SmartBiz
    -------------------------------------------------*/
#SmartBiz .section {
}

#SmartBiz h1 {
    color: #a14aaa;
    text-align: right;
    font-size: 2rem;
    letter-spacing: -.05rem;
    font-weight: 800;
}

#SmartBiz h3 {
    color: #a14aaa;
    font-size: 1.3rem;
    letter-spacing: -.05rem;
    font-weight: 100;
}

#SmartBiz p {
    color: #7a5b84;
    text-align: right;
    font-weight: 200;
    text-align: justify;
    text-justify: inter-character;
}

.SmartBiz-image {
    text-align: center;
}

    .SmartBiz-image img {
        width: 100%;
        min-width: 30rem;
        max-width: 40rem;
    }

#SmartBiz .accordion-item {
    border-color: #ececec;
}

#SmartBiz .accordion-button {
    font-size: .9rem;
    color: #7a5b84;
    border-radius: .5rem;
    font-weight: 100;
}

    #SmartBiz .accordion-button:hover {
        color: #57106f;
    }

    #SmartBiz .accordion-button:not(.collapsed) {
        color: navy;
        background-color: white;
        box-shadow: inset 0 -1px 0 whitesmoke;
    }

    #SmartBiz .accordion-button:focus {
        box-shadow: 0 0 0 0.25rem rgba(218, 204, 227, 0.25);
        font-weight: 400;
    }

    #SmartBiz .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='purple'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

#SmartBiz .accordion-body {
    color: #7a5b84;
    font-size: .9rem;
    font-weight: 100;
    background-color: rgba(218, 204, 227, 0.25);
}

@media screen and (max-width:991px) {
    #SmartBiz h1 {
        text-align: center;
        margin: 3rem 0 .5rem;
        font-size: 2rem;
    }

    #SmartBiz h3 {
        text-align: center;
        font-size: 1.1rem;
        margin: 0 0 1rem;
    }

    #SmartBiz .view-all {
        position: static;
        margin: 2rem 0;
    }
}

@media screen and (max-width:767px) {
    .SmartBiz-image img {
        min-width: unset;
    }

    #SmartBiz h1 {
        margin-top: 2rem;
    }
}

/*---------------------------------------------------
    Section SectionIntegrateManagment
    -------------------------------------------------*/
#SectionIntegrateManagment {
    padding: 0;
}

.integrate-managment {
    position: relative;
}

#SectionIntegrateManagment .integrate-managment::after {
    position: absolute;
    content: "";
    background: rgba(44, 4, 60, 0.5);
    opacity: .7;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.integrate-managment-content {
    position: absolute;
    top: 50%;
    text-align: center;
    right: 0;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
}

#SectionIntegrateManagment h1 {
    color: #ffb300;
    text-shadow: 3px 3px 5px #000000b3;
    font-size: 2.2rem;
    text-align: center;
    line-height: 1.5rem;
}

#SectionIntegrateManagment .integration-managment-subtitle {
    margin: 4rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#SectionIntegrateManagment h3 {
    font-weight: 200;
    color: #fff;
    text-shadow: 3px 3px 4px #0000007a;
    font-size: 1.4rem;
}


#SectionIntegrateManagment .bi {
    padding: 1rem;
    color: #ffb300;
    font-size: 1.4rem;
}

#SectionIntegrateManagment .view-all {
    display: flex;
    justify-content: center;
}

    #SectionIntegrateManagment .view-all a {
        font-weight: 100;
        font-size: 1rem;
        display: inline-block;
        padding: .5rem 2.2rem;
        border-radius: 3rem;
        transition: 0.5s;
        border: 1px solid #f0ab07;
        color: #f0ab07;
        min-width: 18rem;
        text-align: center;
        margin-top: 0;
    }

        #SectionIntegrateManagment .view-all a:hover {
            background: #ffb300;
            border: 1px solid #ffb300;
            color: #424242;
        }

@media screen and (max-width: 767px) {

    .integrate-managment-description h1 {
        font-size: 2rem;
    }


    #SectionIntegrateManagment .view-all a {
        background: #f0ab07;
        border: 1px solid #f0ab07;
        color: #424242;
        width: 100%;
        text-align: center;
        font-weight: 400;
        max-width: 20rem;
        padding: .4rem 2.2rem;
        margin-top: 0;
    }
}

/*---------------------------------------------------
    Section PoweredPlatform
    -------------------------------------------------*/
#SectionPoweredPlatform {
    padding: 6rem 0;
    overflow: hidden;
    background-color: white;
    border-top: 1px var(--nx-box-soft-bordercolor) solid;
    border-bottom: 1px var(--nx-box-soft-bordercolor) solid;
    position: static;
}

    #SectionPoweredPlatform .section-title {
        text-align: right;
        font-weight: 800;
    }

    #SectionPoweredPlatform .section-subtitle {
        text-align: right;
        font-weight: 400;
    }

    #SectionPoweredPlatform .section-desc {
        text-align: right;
        display: block;
        margin: 4rem auto;
        line-height: 2.2rem;
    }

    #SectionPoweredPlatform .side-image {
        max-width: 20rem;
        display: block;
        margin: 0 auto;
        width: 100%;
        min-width: 9rem;
    }

    #SectionPoweredPlatform .section-platform-items {
        margin: 2rem 0 4rem;
    }

        #SectionPoweredPlatform .section-platform-items span {
            background-color: var(--nx-box-soft-backcolor);
            margin: .25rem .125rem;
            display: inline-block;
            border-radius: 1rem;
            padding: .25rem 1rem;
            font-weight: 400;
            min-width: 10rem;
            text-align: center;
        }

    #SectionPoweredPlatform .section-platform-image-holder {
        display: flex;
        justify-content: center;
    }

    #SectionPoweredPlatform .section-platform-content-holder {
        position: relative;
    }

    #SectionPoweredPlatform .section-platform-powered-holder {
        margin: 3rem 0 1rem;
    }

    #SectionPoweredPlatform .section-platform-powered-logo {
        max-width: 11rem;
        margin: .5rem 0;
    }

    #SectionPoweredPlatform .section-platform-powered-text {
        font-size: .85rem;
        font-weight: 100;
    }

    #SectionPoweredPlatform .section-platform-desc {
        margin: 2rem 0 1rem;
    }

    #SectionPoweredPlatform .view-all {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }

@media screen and (max-width:991px) {
    #SectionPoweredPlatform {
        position: relative;
    }

        #SectionPoweredPlatform .view-all {
            position: static;
            margin: 3rem 0 0;
        }
}

@media screen and (max-width:767px) {
    #SectionPoweredPlatform {
        position: static;
    }

        #SectionPoweredPlatform .section-desc {
            width: 100%;
            max-width: 26rem;
        }

        #SectionPoweredPlatform .section-platform-image-holder {
            justify-content: center;
            margin-bottom: 2rem;
        }

        #SectionPoweredPlatform .section-title {
            text-align: center;
        }

        #SectionPoweredPlatform .section-subtitle {
            text-align: center;
        }

        #SectionPoweredPlatform .section-desc {
            text-align: center;
        }

        #SectionPoweredPlatform .section-platform-desc {
            text-align: center;
        }

        #SectionPoweredPlatform .section-platform-items {
            text-align: center;
        }

        #SectionPoweredPlatform .section-platform-powered-holder {
            text-align: center;
        }
}

@media screen and (max-width:575px) {
    #SectionPoweredPlatform {
        padding: 4rem 0;
    }

        #SectionPoweredPlatform .section-desc {
            max-width: 20rem;
        }
}
/*---------------------------------------------------
    Section LMSRahgosha
    -------------------------------------------------*/
#SectionLMSRahgosha {
    border-bottom: 1px var(--nx-box-soft-bordercolor) solid;
}

    #SectionLMSRahgosha h2, #SectionLMSRahgosha h3 {
        text-align: center;
    }
/*---------------------------------------------------
    Section SocialBiz
    -------------------------------------------------*/
#SectionSocialBiz {
    border-bottom: 1px rgba(0,0,0,.1) solid;
    background-color: white;
}

    #SectionSocialBiz .content-header {
        color: #eb3887;
    }

    #SectionSocialBiz p {
        text-align: justify;
    }

    #SectionSocialBiz .pane-image {
        max-width: 25rem;
        width: 100%;
        margin: 0 auto;
        display: block;
    }

    #SectionSocialBiz .content-ques {
        margin: 1rem;
    }

        #SectionSocialBiz .content-ques span {
            margin: .1rem;
            background-color: #f7f5f9;
            padding: .2rem .7rem;
            border-radius: .5rem;
            display: inline-block;
            font-weight: 100;
        }

    #SectionSocialBiz .content-solution-items li {
        margin: 2px 0;
        background-color: #f7f5f9;
        padding: .2rem .7rem;
        border-radius: .5rem;
        font-weight: 100;
        font-size: .9rem;
        display: block;
        width: fit-content;
        color: #070764;
    }

    #SectionSocialBiz #SocialBizContentMoreBtn {
        border: 0;
        background-color: whitesmoke;
        padding: .3rem 3.5rem;
        border-radius: 1rem;
        font-size: .9rem;
        color: navy;
        margin: 2rem auto 0;
        font-weight: 200;
        min-width: 18rem;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        transition: .3s ease all;
    }

        #SectionSocialBiz #SocialBizContentMoreBtn:hover {
            background-color: #e0e0f2;
            color: navy;
        }


@media screen and (max-width: 767px) {
    #SectionSocialBiz .pane-image {
        max-width: 15rem;
        margin: 0 auto;
        display: block;
    }

    #SectionSocialBiz .content-header {
        text-align: center;
        margin-top: 2rem;
    }
}

@media screen and (max-width: 575px) {

    #SectionSocialBiz .content-solution-items li {
        width: 100%;
    }
}

/*---------------------------------------------------
    Section Simplecity
    -------------------------------------------------*/
#Simplecity {
    padding: 0;
}

.simplecity {
    position: relative;
}

.simplecity-description {
    position: absolute;
    top: 15%;
    text-align: left;
    bottom: 15%;
    left: 22%;
    transform: translateX(-30%);
    color: #fff;
    width: 50%;
}

    .simplecity-description h1 {
        text-shadow: 0 0 4px #44235070;
        font-weight: 800;
    }

    .simplecity-description h2 {
        color: #fff;
        text-align: left;
        font-weight: 200;
        text-shadow: 0 0 4px #44235070;
        font-size: 1.5rem;
    }

    .simplecity-description h3 {
        bottom: 0;
        text-shadow: 0 0 4px #44235070;
        font-weight: 300;
        text-align: left;
        position: absolute;
        left: 0;
        font-size: 1.3rem;
        right: 0;
    }

@media screen and (max-width:991px) {
    .simplecity-description {
        left: 27%;
        width: 65%;
    }

        .simplecity-description h1 {
            font-size: 2rem;
        }

        .simplecity-description h2 {
            font-size: 1.3rem;
        }

        .simplecity-description h3 {
            font-size: 1rem;
        }
}

@media screen and (max-width:767px) {

    .simplecity-description {
        left: 27%;
        top: 48%;
        bottom: 2rem;
        left: 0;
        transform: unset;
        color: #fff;
        right: 0;
        width: 100%;
        text-align: center;
    }

        .simplecity-description h1 {
        }

        .simplecity-description h2 {
            text-align: center;
        }

        .simplecity-description h3 {
            text-align: center;
        }
}

@media screen and (max-width:575px) {
    .simplecity-description h1 {
        font-size: 2rem;
    }
}


/*---------------------------------------------------
    Section ForooshgahNet
    -------------------------------------------------*/
#SectionForooshgahNet {
    background-color: #202021;
}

    #SectionForooshgahNet .content-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        margin: 0;
    }

    #SectionForooshgahNet .main-logo-container {
        width: 100%;
        max-width: 26rem;
    }

    #SectionForooshgahNet .content-title {
        font-weight: 100;
        font-size: 1.2rem;
        text-align: right;
        color: #ffbf00;
        margin: 0;
        line-height: 1.4;
    }


    #SectionForooshgahNet .content-domaintitle {
        font-weight: 100;
        font-size: 1.4rem;
        text-align: center;
        color: #ffbf00;
        margin: 0;
        width: 100%;
        margin: 4rem auto;
    }

    #SectionForooshgahNet .content-domainhighlight {
        color: #f55;
        font-weight: 700;
    }

    #SectionForooshgahNet .content-image-pane {
        text-align: left;
    }

@media screen and (max-width: 767px) {
    #SectionForooshgahNet {
    }

        #SectionForooshgahNet .main-logo-container {
            max-width: unset;
            margin-top: 2rem;
        }

        #SectionForooshgahNet .content-container {
            min-height: 25rem;
        }

        #SectionForooshgahNet .content-title {
            text-align: center;
        }


        #SectionForooshgahNet .content-image-pane {
            text-align: center;
            max-width: 15rem;
            margin: 0 auto;
        }
}

@media screen and (max-width:676px) {
}

/*---------------------------------------------------
    Section Pricing
    -------------------------------------------------*/
#SectionPricing {
    background-color: #f6f2f7;
}

    #SectionPricing .price-box {
        padding: 1.75rem 1rem;
        box-shadow: 0 0 .7rem rgba(53,55,57,0.15);
        background: #fff;
        height: 100%;
        border-top: 4px solid #fff;
        border-top-color: rgb(255, 255, 255);
        border-radius: 5px;
        margin: .5rem;
        min-height: 34rem;
        position: relative;
    }

        #SectionPricing .price-box.active {
            border-top-color: #a2259a;
        }

        #SectionPricing .price-box h3 {
            color: #583b82;
            margin: 0 0 .5rem;
            font-weight: 400;
        }

        #SectionPricing .price-box h4 {
            color: #583b82;
        }

    #SectionPricing .price-free {
        text-decoration: solid red line-through 2px;
        color: #b4abbf;
    }

    #SectionPricing .price-box p {
        color: #91809f;
    }

    #SectionPricing .price-box .buy-btn {
        display: inline-block;
        padding: .2rem 2rem;
        border-radius: 50px;
        color: #583b82;
        font-size: .9rem;
        font-weight: 500;
        transition: 0.3s;
        border: 1px solid #583b82;
        width: calc(100% - 2rem);
        position: absolute;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }

        #SectionPricing .price-box .buy-btn:hover {
            background: #583b82;
            color: #fff;
            border: 1px #583b82 solid;
        }

    #SectionPricing .price-box .buy-btn-2 {
        display: inline-block;
        padding: .2rem 2rem;
        border-radius: 50px;
        color: #583b82;
        font-size: .9rem;
        font-weight: 500;
        background: #ffbf00;
        transition: 0.3s;
        border: 1px solid #ffbf00;
        width: 100%;
        width: calc(100% - 2rem);
        position: absolute;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }

        #SectionPricing .price-box .buy-btn-2:hover {
            background-color: #583b82;
            border: 1px solid #583b82;
            color: #ffbf00;
        }

    #SectionPricing .price-box ul {
        padding: .2rem 0;
        list-style: none;
        color: #4b4688;
    }

        #SectionPricing .price-box ul li {
            padding: .2rem 1.5rem .2rem 0;
            position: relative;
            display: flex;
            justify-content: start;
            align-items: center;
        }

            #SectionPricing .price-box ul li span {
                color: #ccc;
                font-size: .9rem;
                position: absolute;
                right: 0;
                display: flex;
            }


    #SectionPricing .price-box .price-label-container {
        position: absolute;
        left: 1rem;
        right: 1rem;
        bottom: 4rem;
        text-align: center;
        color: #583b82;
    }

    #SectionPricing .price-box .price-label {
        display: flex;
        justify-content: center;
    }

    #SectionPricing .price-box .price-label-amnount {
        font-size: 2rem;
        font-weight: bold;
    }

    #SectionPricing .price-box .price-label-period {
        display: inline-flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        font-weight: 200;
        margin: 0 .5rem 0 0;
        font-size: .9rem;
    }

    #SectionPricing .price-box .price-label-discount {
        font-weight: 400;
        font-size: .9rem;
        color: red;
    }

    #SectionPricing .price-box .price-label-free {
        font-weight: 600;
        font-size: 1.2rem;
        color: red;
    }

#SectionPricingContainer {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

@media screen and (max-width: 991px) {
    #SectionPricing {
        padding: 5rem 0;
    }

    #SectionPricingContainer {
        padding: 0;
    }
}

@media screen and (max-width: 575px) {
    #SectionPricing {
        padding: 2rem 1rem;
    }

        #SectionPricing .price-box {
            padding: 1rem;
        }


            #SectionPricing .price-box p {
                color: #91809f;
                margin: .5rem;
            }
}

@media screen and (max-width: 400px) {
    #SectionPricing {
        padding: 1rem 0;
    }

        #SectionPricing .price-box ul {
            max-height: calc(100vh - 27.5rem);
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }
}

/*--------------------------------------------------------------
# Second Page Pricing
--------------------------------------------------------------*/
#SectionPricing .price-table .buy-btn {
    display: inline-block;
    padding: 0.2rem 2rem;
    border-radius: 25px;
    color: #fff;
    font-size: .9rem;
    font-weight: 500;
    background: #fdc82a;
    transition: 0.3s;
    border: 1px solid #fdc82a;
    margin: 1rem 0;
    width: 100%;
}

    #SectionPricing .price-table .buy-btn:hover {
        background: #c16cbc;
        border: 1px solid #c16cbc;
    }

#SectionPricing .price-table h1 {
    font-weight: 800;
    margin-bottom: 0;
    font-size: 1.1rem;
    color: #583b82;
}

#SectionPricing .price-table .price-num {
    font-size: 2rem;
    font-weight: 800;
    color: #8b1e8e;
    padding: .5rem;
}

#SectionPricing .price-table .price-txt {
    font-size: .8rem;
    font-weight: 400;
    color: #583b82;
    align-self: center;
    text-align: right;
}

#SectionPricing .price-table h3 {
    font-size: .8rem;
    font-weight: 200;
}

#SectionPricing .price-table thead tr th:first-child {
    background: none;
    width: 280px;
}

#SectionPricing .price-table tbody tr td {
    text-align: center;
}

#SectionPricing .price-table tbody tr th {
    font-weight: 400;
}

#SectionPricing .price-table .check {
    color: #df0cd7;
}

#SectionPricing .price-table .notcheck {
    color: #f7ee0a;
}

#SectionPricing .mobile-table .nav-item {
    width: 25%;
}

#SectionPricing .mobile-table .nav-pills {
    display: flex;
    justify-content: space-between;
    background-color: #f9f2fb;
    border-radius: 1.5rem;
    padding: .25rem;
    margin-top: 3rem;
}

    #SectionPricing .mobile-table .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        color: #fff;
        background-color: #a662a8;
    }

#SectionPricing .mobile-table .nav-link {
    color: #833790;
    width: 100%;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 1.5rem;
}

    #SectionPricing .mobile-table .nav-link:hover, .nav-link:focus {
        color: #942b92;
        font-weight: 600;
    }
/*--------------------------------------------------------------
# Second Page Editions
--------------------------------------------------------------*/
.about-us {
}

    .about-us .about-text h1 {
        font-size: 2rem;
        color: #3c1e68;
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .about-us .about-text p {
    }

#EditionsDescription {
    background-color: #f6f2f7;
}

    #EditionsDescription .edition-title {
    }

        #EditionsDescription .edition-title h2 {
            font-size: 1.3rem;
            color: #3c1e68;
            font-weight: 800;
            margin-bottom: 2rem;
        }

.edition-description {
    padding: 1rem;
    background-color: #fff;
    margin: 1rem 0;
    border-radius: .25rem;
}

    .edition-description h1 {
        font-weight: 500;
        margin-bottom: 1rem;
        font-size: 1.2rem;
        color: #583b82;
    }

    .edition-description ul {
        padding: .2rem 0;
        list-style: none;
        color: #877e8a;
        font-size: .8rem;
        font-weight: 400;
    }

        .edition-description ul li {
            padding: .6rem 1.5rem .6rem 0;
            position: relative;
        }

            .edition-description ul li span {
                color: #fcb316;
                font-size: 1.2rem;
                position: absolute;
                right: 0;
                top: .2rem;
            }

            /*--------------------------------------------------------------
# Sections Switching
--------------------------------------------------------------*/
#SectionSwitching {
    border-top:1px solid var(--nx-box-soft-bordercolor);
}

@media screen and (max-width:767px) {
    #SectionSwitching h1, #SectionSwitching h3 {
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Sections FAQ
--------------------------------------------------------------*/
#SectionFAQ {
}

    #SectionFAQ h2 {
        color: #3c1e68;
        font-size: 1.5rem;
        font-weight: 700;
    }

    #SectionFAQ .ques-box {
        background: var(--nx-box-soft-backcolor);
        padding: 1.5rem;
        margin-bottom: .5rem;
        border-radius: .5rem;
    }

    #SectionFAQ .ques-text {
        color: var(--nx-text-title-color);
        font-weight: 600;
        font-size: 1rem;
    }

    #SectionFAQ .answer-text {
        font-size: .9rem;
        font-weight: 100;
    }

/*--------------------------------------------------------------
# Second Page FQ
--------------------------------------------------------------*/

#SectionQuestion {
    background-color: #f6f2f7;
    padding: 2rem 0;
}

.questions h2 {
    color: #3c1e68;
    font-size: 1.5rem;
    font-weight: 700;
}

#SectionQuestion .accordion-item {
    margin: .3rem 0;
    border: none;
    border-radius: .5rem;
    box-shadow: 0 0.3125rem 1.875rem rgba(121, 77, 134, 0.07);
}

    #SectionQuestion .accordion-item span {
        padding-left: 1rem;
        font-size: 1rem;
        font-weight: 500;
        color: #a2259a;
    }

#SectionQuestion .accordion-button {
    background-color: #fff;
    padding: 1rem 1.25rem;
    color: #3c1e68;
    border-bottom: 0;
    line-height: 1.4rem;
    border-radius: .5rem;
}

    #SectionQuestion .accordion-button:hover {
        color: #a2259a;
    }

    #SectionQuestion .accordion-button:focus {
        z-index: 3;
        border: 0;
        outline: 0;
        box-shadow: 0 0 0 0.25rem rgba(174, 164, 202, 0.25);
    }

    #SectionQuestion .accordion-button:not(.collapsed) {
        color: #3c1e68;
    }

@media (max-width: 767px) {
    #SectionQuestion {
    }
}


/*--------------------------------------------------------*/

.learn-more-btn {
    font-weight: 400;
    font-size: .9rem;
    display: inline-block;
    padding: .3rem 2rem;
    border-radius: 3rem;
    transition: 0.5s;
    margin: 1rem auto;
    border: 2px solid #583b82;
    color: #583b82;
    position: absolute;
    bottom: -1rem;
}

    .learn-more-btn:hover {
        background: #a2259a;
        border: 2px solid #a2259a;
        color: #3c1e68;
    }

@media (max-width: 767px) {


    .learn-more-btn {
        position: relative;
        bottom: 0;
        background: #a2259a;
        border: 2px solid #a2259a;
        color: #3c1e68;
        margin: 0 0 1rem;
    }
}




/*--------------------------------------------------------------
# Section Templates
--------------------------------------------------------------*/

#SectionTemplates {
    padding: 10rem 0;
    background: whitesmoke;
}

    #SectionTemplates .section-title {
        text-align: right;
        max-width: 40rem;
        margin: 0 auto;
    }

    #SectionTemplates h1 {
        color: #6d6bb0;
    }

    #SectionTemplates p {
        font-size: 1rem;
        font-weight: 200;
        color: #bf0496;
        text-align: justify;
        text-justify: inter-character;
    }

    #SectionTemplates .content-container {
        justify-content: space-between;
        display: flex;
        flex-direction: column;
    }

    #SectionTemplates .item-box p {
        padding: 1rem 0 0;
        color: dimgray;
        font-size: .9rem;
        font-weight: normal;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #SectionTemplates .item-box {
        transition: ease all .3s;
        display: block;
        padding: 1rem;
    }

        #SectionTemplates .item-box:hover {
            transform: scale(1.1);
        }

@media screen and (max-width:767px) {
    #SectionTemplates {
        padding: 2rem 1rem;
    }

        #SectionTemplates h1 {
            text-align: center;
            margin-top: 2rem;
        }
}
/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
.pagebar {
    background-image: url('/images/PageBar-01.jpg');
    height: 20rem;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: fixed;
}

    .pagebar::after {
        position: absolute;
        content: "";
        background: linear-gradient(rgba(0, 0, 0, 0.94), rgba(38, 35, 43, 0.68));
        z-index: 1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .pagebar .container {
        z-index: 2;
        position: relative;
        top: 50%;
        color: #fff;
        transform: translateY(-50%);
    }

        .pagebar .container h1 {
            font-size: 1.8rem;
            font-weight: 800;
        }

        .pagebar .container p {
            font-weight: 300;
            font-size: .9rem;
        }

@media (max-width: 767px) {


    /*.pagebar h1, p {
            text-align: center;
        }*/
}

@media (max-width: 575px) {
    .pagebar .container {
        position: absolute;
        bottom: 1rem;
        top: unset;
        transform: unset;
    }

        .pagebar .container h1 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        .pagebar .container h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        .pagebar .container p {
            max-height: 4.5rem;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            margin: 0;
            text-align: center;
        }
}

.main-container {
    margin-top: 1rem;
}

.content-container img {
    width: 100%;
    margin-bottom: 1rem;
}

.content-container h3 {
    font-size: 1.5rem;
    margin: 1rem 0 1rem;
    color: #3c1e68;
}

.content-container .top-info {
    margin-bottom: .5rem;
    padding: 0 1rem;
    align-items: baseline;
}

    .content-container .top-info i {
        font-size: 1.1rem;
        color: #0f6097;
    }

    .content-container .top-info a {
        font-size: 1.1rem;
        margin-right: 1rem;
        color: #0f6097;
    }

.content-container .descriotion-content p {
    text-align: justify;
    font-size: 1rem;
    line-height: 1.2rem;
    color: #5b5959;
}

.content-container .tags-holder {
    margin: 2rem 0 1rem;
}

    .content-container .tags-holder .tag-item {
        color: #4f6ca2;
        border-radius: 1.5rem;
        padding: .3rem 1rem;
        min-width: 4rem;
        background: aliceblue;
        margin: .5rem .1rem;
        transition: .3s ease all;
        border: 1px solid transparent;
    }

        .content-container .tags-holder .tag-item:hover {
            font-weight: 500;
            border: 1px solid #cbdff0;
        }

.content-container .text-info-box .text-info-item {
    margin: 1rem;
}

    .content-container .text-info-box .text-info-item span {
        font-size: .9rem;
        color: #42577e;
        font-weight: 400;
    }

    .content-container .text-info-box .text-info-item i {
        margin-left: 0.5rem;
        font-size: 1rem;
        position: relative;
        top: .3rem;
        opacity: .5;
        color: #2b72a2;
    }






/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

.header {
    border-bottom: 1px silver solid;
    margin-bottom: 1rem;
}

    .header h5 {
        display: inline-block;
        border-bottom: 3px #a2259a solid;
        color: #3c1e68;
        margin-bottom: 0;
        font-size: 1rem;
        padding: .5rem;
    }

/*--------------------------------------------------------------
# Sections Comments
--------------------------------------------------------------*/
.comments-container {
    margin: 2rem 0;
}

    .comments-container .header span {
        font-size: 1rem;
        margin: 2rem;
        font-weight: 500;
        color: #0f6097;
    }

.commenet-expander {
    color: #0f6097;
    font-weight: 500;
    background: aliceblue;
    padding: .7rem 3rem;
    border-radius: 1.5rem;
}


    .commenet-expander::after {
        font-family: bootstrap-icons;
        width: 1.25em;
        line-height: 0;
        content: "\f282";
        transform-origin: .5em 50%;
        top: .3rem;
        position: relative;
        right: .2rem;
        display: inline-block;
        transition: .5s ease all;
        font-size: 1rem;
    }

    .commenet-expander[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }


.comments-container .comment-box {
    margin: 1rem 0;
}

.comments-container .person-info .personal-img {
    width: 3rem;
    background-color: aliceblue;
    border-radius: 50%;
}

.comments-container .person-info span {
    align-self: center;
    margin-right: 1rem;
    font-size: .9rem;
    font-weight: 400;
    color: #56698c;
}

.comments-container .person-info .date {
    font-weight: 200;
    color: #7d7a7a;
    font-size: .9rem;
}

.comments-container .comment-box p {
    margin-top: .5rem;
    color: #444343;
}

.input-comment-box .form-group {
    margin-bottom: 1.2rem;
    padding: 0 2rem;
}

.input-comment-box label {
    padding-bottom: .5rem;
    color: #666666;
    font-weight: 500;
}

.input-comment-box input {
    height: 2.7rem;
}

.send-message-btn {
    font-weight: 800;
    font-size: .9rem;
    display: inline-block;
    padding: .4rem 2rem;
    border-radius: .5rem;
    margin: 0 0 1rem;
    border: 2px solid #0f6097;
    color: #3c1e68;
    background: #fff;
    width: 100%;
    max-width: 15rem;
    transition: .3s;
}

    .send-message-btn:hover {
        background: #ffc71e;
        border-color: #ffc71e;
    }

.enter-alert-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}

    .enter-alert-box .btn-group {
        border: 2px solid whitesmoke;
        border-radius: 1.5rem;
        background: aliceblue;
        max-width: 15rem;
        width: 100%;
        overflow: hidden;
    }

        .enter-alert-box .btn-group .btn {
            color: #0f6097;
            font-weight: 500;
            font-size: .9rem;
            padding: .2rem 0 .2rem .5rem;
            font-size: .9rem;
        }

            .enter-alert-box .btn-group .btn:hover {
                box-shadow: none;
                font-weight: 800;
                color: #3c1e68;
            }

        .enter-alert-box .btn-group i {
            padding: .5rem;
            font-size: 1.1rem;
            position: relative;
            top: 2px;
        }

        .enter-alert-box .btn-group span {
            position: relative;
            bottom: 2px;
        }

.input-comment-box a {
    color: #41577e;
}

    .input-comment-box a:hover {
        color: #a2259a;
    }

/*--------------------------------------------------------------
# Sections SideBar
--------------------------------------------------------------*/

.widgets-container {
    top: 5rem;
    margin-bottom: 3rem;
}

#WidgetLink ul {
    list-style: none;
    padding: 0;
}

    #WidgetLink ul li {
        margin-bottom: .5rem;
    }

    #WidgetLink ul a {
        color: #4f6ca2;
        font-size: .9rem;
        font-weight: 500;
    }



#WidgetLast .contentlist-item-container {
    display: block;
    transition: .5s;
    padding: .5rem;
}

    #WidgetLast .contentlist-item-container:hover {
        background-color: aliceblue;
    }

    #WidgetLast .contentlist-item-container .contentlist-descriotion-holder {
        display: flex;
        flex-direction: column;
        height: 5rem;
        justify-content: space-between;
    }

    #WidgetLast .contentlist-item-container .contentlist-image-holder {
        background-color: aliceblue;
        background-image: url('/Images/xpost-img1.jpg.pagespeed.ic.UeMlV6U-bS.jpg');
        background-size: cover;
        background-position: center center;
        border-radius: .25rem;
    }

    #WidgetLast .contentlist-item-container h3 {
        font-size: .8rem;
        font-weight: 400;
        margin-bottom: 0;
        color: #3c1e68;
    }

    #WidgetLast .contentlist-item-container span {
        color: dimgray;
        font-size: .8rem;
    }

    #WidgetLast .contentlist-item-container .go-on {
        float: left;
        color: #0f6097;
        font-weight: 500;
    }

        #WidgetLast .contentlist-item-container .go-on:hover {
            font-weight: 800;
        }

@media (max-width:767px) {
    #WidgetLast .contentlist-item-container .go-on {
        font-weight: 800;
    }
}

/*--------------------------------------------------------------
# MagItems Page
--------------------------------------------------------------*/

.filter-subjects-holder {
    padding: 1rem;
}

    .filter-subjects-holder .search-box-holder {
        padding: .5rem;
        background-color: white;
        border: 1px #a4b6d2 solid;
        border-radius: 1.5rem;
        display: inline-block;
        transition: all 0.5s ease;
        width: 100%;
        position: relative;
    }

        .filter-subjects-holder .search-box-holder:hover {
            box-shadow: 0 0 0.3em rgba(86, 121, 204, 0.7);
        }

        .filter-subjects-holder .search-box-holder .search-box {
            border: 0;
            line-height: 1;
            color: #626a7d;
            transition: all 0.5s ease;
            outline: none;
            width: 100%;
            padding-left: 2rem;
        }

    .filter-subjects-holder .btn-search {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
    }

        .filter-subjects-holder .btn-search i {
            color: #4f6388;
            font-size: 1rem;
            position: relative;
            top: .05rem;
        }

    .filter-subjects-holder .toolbar-holder {
        background: aliceblue;
        border-radius: 1.5rem;
        padding: 0.2rem;
        width: 100%;
        max-width: 33rem;
        justify-content: center;
    }

    .filter-subjects-holder .btn-subject {
        color: #233c6a;
        border-radius: 1.5rem;
        padding: .3rem 1rem;
        min-width: 4rem;
    }

        .filter-subjects-holder .btn-subject:hover {
            background: #dcdcdc;
        }

        .filter-subjects-holder .btn-subject:focus {
            box-shadow: none;
            background-color: #fff;
            font-weight: 500;
        }

@media (max-width:767px) {
    .filter-subjects-holder .toolbar-holder {
        margin-top: .5rem;
    }
}

.mag-items-container .mag-item {
    padding: 1rem;
    display: block;
    transition: .5s;
}

    .mag-items-container .mag-item:hover {
        background-color: whitesmoke;
    }

    .mag-items-container .mag-item .image-holder {
        background-color: whitesmoke;
        background-image: url('/Images/xpost-img1.jpg.pagespeed.ic.UeMlV6U-bS.jpg');
        background-size: cover;
        background-position: center center;
        border-radius: .25rem;
    }

    .mag-items-container .mag-item h3 {
        font-size: 1rem;
        font-weight: 500;
        color: #3c1e68;
        margin: 1rem 0 .5rem;
    }

    .mag-items-container .mag-item p {
        color: #333335;
        margin-bottom: 1rem;
        display: block;
        text-overflow: ellipsis;
        word-wrap: break-word;
        overflow: hidden;
        max-height: 3.2em;
        line-height: 1.6em;
        text-align: justify;
    }

    .mag-items-container .mag-item span {
        color: #55698c;
    }

    .mag-items-container .mag-item .go-on {
        float: left;
    }

        .mag-items-container .mag-item .go-on:hover {
            font-weight: 800;
        }

.mag-items-container .pagination-bar {
    margin-top: 1rem;
}

    .mag-items-container .pagination-bar a {
        color: #3c1e68;
    }


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.bx {
    font-family: 'icofont' !important;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    display: inline-block;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bx-chevron-right::before {
    content: "\eaca";
}

.bx-chevron-left::before {
    content: "\eac9";
}
