html {
    font-size: 10px;
    direction: rtl;
    font-family: 'PeydaWebFaNum';
    font-weight: normal;
    scroll-behavior: smooth;
}

:root {
    --1rem: 1rem;
    --4rem: 3.4rem;
    --black: #35363B;
    --darkerblack: #2e2f33;
    --coal: rgb(46, 45, 46);
    --coale: #343434;
    --grey: #77787F;
    --darkgrey: #545559;
    --green: #1DB954;
    --alphabet-red-light: #ed3b3b;
    --alphabet-red: #ED1C24;
    --alphabet-dark-red: #cc181e;
    --lightgrey: #c2c4cc;
    --lightestgrey: #f2f3fa;
    --white-marble: #E7E9EA;
    --blue: #6050DC;
    --pantome: #0072B5;
    --pantomeDark: #005e96;
    --progressBarLight: #D8D8D8;
    --someNewBlue: #454AD9;
}

/*::-moz-selection {*/
/*    background-color: #d69936;*/
/*}*/

/*::selection {*/
/*    background-color: #ff9e02;*/
/*}*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PeydaWebFaNum';
}

ul {
    list-style: none;
}

p,
a,
h,
pre,
strong {
    color: var(--black);
    font-size: 1.6rem;
}

a {
    text-decoration: none;
}

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.6rem;
}

h4 {
    font-size: 2.4rem;
}

.icon {
    font-size: 1.5rem;
}

.container {
    margin-right: auto;
    margin-left: auto;
}

.highlight {
    color: #5fc057;
}

/* Font Sizes */
.large-font {
    font-size: 2.2rem;
}

.medium-font {
    font-size: 1.8rem;
}

/* SECTION : Search Begin */
#search > .head {
    width: 100%;
    height: 15rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#search > #results {
    width: 100%;
    height: fit-content;
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3rem;
    background-color: var(--lightestgrey);
    padding: 2rem;
    border-radius: 2rem;
}

#search > #results .result-item {
    height: 25rem;
    background-color: white;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#search > #results .result-item:hover {
    cursor: pointer;
}

#search > #results .result-item:hover h2 {
    color: var(--alphabet-red);
}

#search > #results .result-item .img-wrap {
    width: 20rem;
    height: 20rem;
    display: flex;
    flex: 1 0 auto;
    align-items: center;
    justify-content: center;
    background-color: var(--lightgrey);
    border-radius: 2rem;
    overflow: hidden;
    margin-right: 2.5rem;
}

#search > #results .result-item .img-wrap img {
    width: 20rem;
    height: 20rem;
    border: none;
    outline: none;
    object-fit: cover;
    display: none;
}

#search > #results .result-item .txt-wrap {
    width: 100%;
    height: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#search > #results .result-item .txt-wrap h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

#search > #results .result-item .txt-wrap p {
    color: var(--grey);
    font-size: 1.4rem;
}

/* SECTION : Search End */

/* SECTION : RozShomar > Graffito Begin */
#rozshomar > #result-section #graffito {
    height: fit-content;
    margin: 5rem auto;
    object-fit: cover;
    border: .2rem solid var(--lightgrey);
    border-radius: 3rem;
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(18, auto);
    grid-template-rows: 5rem;
    overflow: hidden;
    gap: 1rem;
}

#rozshomar > #result-section #graffito > .tally {
    font-size: 3rem;
    color: var(--black);
    display: inline-block;
}

#rozshomar > #result-section #graffito > .green {
    color: var(--green) !important;
}

#rozshomar > #result-section #graffito > .red {
    color: var(--alphabet-red) !important;
}

/* SECTION : RozShomar > Graffito End */

/* SECTION : Header Begin */
.header-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-wrap .h-button,
.header-wrap .logo {
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-wrap .menu .menu-link {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5rem;
    float: right;
    position: relative;
}

.header-wrap .menu .menu-link:hover {
    cursor: pointer;
}

.header-wrap .menu .menu-link > a {
    color: var(--black);
}

.header-wrap .menu .menu-link > a:hover,
footer .links > a:hover,
#article .head > #breadcrumbs .breadcrumb-item > a:hover {
    color: var(--grey) !important;
}

.header-wrap .menu .menu-link > .sub-menu {
    position: absolute;
    display: none;
    flex-direction: column;
    border-radius: .8rem;
}

.header-wrap .menu .menu-link:hover .sub-menu {
    display: flex;
}

/* SECTION : Header End */

.header-wrap .h-button > div > .icon,
.header-wrap .h-button > a .icon {
    font-size: 3rem;
}

.header-wrap .h-button > .no-border {
    border: none !important;
}

@keyframes sweep {
    0% {
        background-position: 150% 0;
    }

    100% {
        background-position: -115% -100%;
    }
}


/* SECTION : Category Begin */
#blog > #categoryList {
    display: grid;
    grid-template-columns: repeat(4, minmax(5rem, 32rem));
    grid-template-rows: auto;
    grid-gap: 8rem 5rem;

}

#blog > #categoryList > .article-item {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 3.5rem;
    transition: all 300ms ease-in;
    border: .2rem solid transparent;
    padding-bottom: 2rem;
}

#blog > #categoryList > .article-item:hover {
    transition: all 300ms ease-in;
    border: .2rem solid var(--lightestgrey);
}

#blog > #categoryList > .article-item > .img {
    width: 23rem;
    height: 23rem;
    border-radius: 3rem;
    margin-bottom: 2rem;
    margin-top: 1.5rem;
    overflow: hidden;
    transition: all ease-in 300ms;
}

#blog > #categoryList > .article-item > .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-in 150ms;
}

#blog > #categoryList > .article-item:hover .img > img {
    transform: scale(1.05);
    transition: all ease-in 150ms;
    transition-delay: 150ms;
}

#blog > #categoryList > .article-item > h3 {
    width: 23rem;
    text-align: right;
    font-weight: 500;
    font-size: 2.1rem;
}

#blog > #categoryList > .article-item:hover > h3 {
    color: var(--alphabet-dark-red);
}

#blog > #categoryList > .article-item > p {
    width: 23rem;
    text-align: justify;
    font-size: 1.4rem;
    margin: 1rem 0;
    color: #747474;
}

#blog > #contentBox {
    width: 80%;
    margin: 10rem auto;
}

#blog > #contentBox p {
    line-height: 210%;
    text-align: justify;
}

#blog > #contentBox a {
    color: var(--alphabet-dark-red);
    font-weight: 600;
}

#blog > #contentBox a:hover {
    color: var(--alphabet-red-light);
}

/* SECTION : Category End */

/* SECTION : Home > RozShomar Section Begin */
#rozshomar-section {
    margin: 10rem 0rem 20rem !important;
}

#rozshomar-section .text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#rozshomar-section .text-col .buttons {
    margin-top: 2rem;
}

#rozshomar-section .section-col .button {
    padding: .8rem 2rem;
    color: white;
    font-size: 1.8rem;
    font-weight: 300;
    border-radius: 6rem;
    margin-top: 10rem;
}

#rozshomar-section .section-col .filled {
    background-color: var(--coal);
    color: var(--white-marble);
    font-weight: 500;
}

/* SECTION : Home > RozShomar Section End */

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media screen and (min-width: 1200px) {

    #full-body {
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        background-color: #F8F8F8;
    }

    .container {
        width: 120rem;
    }

    /* SECTION : Header Begin */
    header {
        width: 100%;
        height: 14rem;
    }

    .header-wrap {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-wrap .h-button,
    .header-wrap .logo {
        width: fit-content;
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-wrap .logo .icon {
        font-size: 5rem;
    }

    .header-wrap .h-button > a {
        padding: 1rem 1.5rem;
        border-radius: 3rem;
        border: .2rem solid var(--grey);

    }

    .header-wrap .menu {
        margin: 0 8rem;
    }

    .header-wrap .menu .menu-link {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 5rem;
        float: right;
        position: relative;
    }

    .header-wrap .menu .menu-link:hover {
        cursor: pointer;
    }

    .header-wrap .menu .menu-link > a {
        color: var(--black);
    }

    .header-wrap .menu .menu-link > a:hover,
    footer .links > a:hover,
    #article .head > #breadcrumbs .breadcrumb-item > a:hover {
        color: var(--grey) !important;
    }

    .header-wrap .menu .menu-link > .sub-menu {
        width: 16rem;
        position: absolute;
        top: 6rem;
        display: none;
        flex-direction: column;
        padding: 0 1rem;
        border-radius: .8rem;
        border: .2rem solid lightgray;
    }

    .header-wrap .menu .menu-link:hover .sub-menu {
        display: flex;
    }

    .header-wrap .menu .menu-link .sub-menu li {
        padding: .6rem 0;
    }

    .header-wrap .h-button > #menu-btn {
        display: none;
    }

    /* SECTION : Header End */
    /* SECTION : Mobile Navigation Begin */
    #mobile-nav {
        display: none;
    }

    /* SECTION : Mobile Navigation End */
    /* SECTION : Home Begin */
    #home-landing {
        height: fit-content;
    }

    .hero {
        height: 45rem;
        margin-bottom: 10rem;
        display: flex;
        align-items: center;
        flex-direction: column;
        margin-top: 10rem;
    }

    .hero .intro-sides {
        flex-grow: 1;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .hero .intro-sides > p {
        width: 60%;
        text-align: center;
        font-size: 1.7rem;
        font-weight: 300;
        margin-top: 1rem;
        color: var(--grey);
    }

    .hero .intro-sides > img {
        width: 100%;
        margin-top: 10rem;
    }

    .hero .intro-sides .buttons {
        width: fit-content;
        height: fit-content;
        display: flex;
        margin-top: 6rem;
    }

    .hero .intro-sides .buttons .button {
        padding: .8rem 2rem;
    }

    .hero .intro-sides .buttons .button:first-child {
        margin-left: 2rem;
    }

    .hero .intro-sides .buttons .filled {
        background-color: var(--black);
        border-radius: 3rem;
        font-size: 1.8rem;
        color: white;
    }

    .hero .intro-sides .buttons .filled:hover {
        background-color: var(--darkerblack);
    }

    .hero .intro-sides .buttons .outline {
        border: .2rem solid var(--black);
        border-radius: 5rem;
    }

    .hero .intro-sides .buttons .outline:hover {
        background-color: var(--lightestgrey);
    }

    .hero .intro-sides h2 {
        margin-bottom: 1rem;
        font-size: 5rem;
    }

    /* SECTION : OPTIONS BEGIN */
    .hero .intro-sides .heroSwiper {
        width: 100%;
    }

    .features {
        width: 80%;
        margin-top: 5rem;
    }

    .hero .intro-sides .heroSwiper .swiper-wrapper {
    }

    .hero .intro-sides .heroSwiper .swiper-slide {
        width: 25rem;
        height: 26rem;
        border-radius: 3rem;
        overflow: hidden;
        background-position: center;
        background-size: cover;
        background-color: transparent;
    }

    .hero .intro-sides .heroSwiper .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* SECTION : OPTIONS END */
    #home-landing > .landing-section {
        width: 100%;
        height: 35rem;
        margin-bottom: 3rem;
    }

    #home-landing > .landing-section > h3 {
        width: 100%;
    }

    /* SECTION : Home > Why Section Begin */
    #home-landing > #why-section {
        width: 100%;
        height: 45rem;
        margin-bottom: 25rem;
    }

    #home-landing > .two-col {
        display: flex;
        flex-direction: row;
    }

    #home-landing > .two-col .section-col {
        width: 100%;
        flex-grow: 1;
    }

    #home-landing > #why-section > .text-col {
        width: 80rem;
        height: 100%;
        display: flex;
        flex-grow: unset;
        flex-direction: column;
        align-items: start;
        justify-content: space-between;
        margin-left: 15rem;

    }

    #home-landing > #why-section > .text-col > .title {
        display: flex;
        align-items: center;
        justify-content: start;
    }

    #home-landing > #why-section > .text-col > h2 {
        font-size: 4rem;
    }

    #home-landing > #why-section > .text-col > p {
        text-align: justify;
        margin: 2rem 0;
        line-height: 200%;
        color: grey;
    }

    #home-landing > #why-section > .text-col > .buttons {
        width: 100%;
        height: fit-content;
    }

    #home-landing > #why-section > .text-col > .buttons .button {
        padding: 1rem 2rem;
        background-color: var(--black);
        border-radius: 5rem;
        color: white;
    }

    #home-landing > #why-section > .text-col > .buttons .button:hover {
        background-color: var(--darkerblack);
    }

    #home-landing > #why-section > .section-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-gap: 2rem;
    }

    #home-landing > #why-section > .section-grid > .item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: var(--lightestgrey);
        border-radius: 2rem;
    }

    #home-landing > #why-section > .section-grid > .item:hover {
        cursor: pointer;
    }

    #home-landing > #why-section > .section-grid > .active {
        background-color: var(--darkerblack);
        box-shadow: 0 1rem 4rem rgba(46, 47, 51, 0.15);
        transition: all 220ms ease-in;
        transform: translateY(-1rem);
    }

    #home-landing > #why-section > .section-grid > .item > .icon {
        font-size: 6rem;
        margin: 1.5rem 0;
        color: var(--lightgrey);
        transition: all 200ms ease-in;
    }

    #home-landing > #why-section > .section-grid > .item > p {
        width: 60%;
        font-weight: 200;
        text-align: center;
    }

    #home-landing > #why-section > .section-grid > .item > p:first-child {
        font-weight: 400;
        font-size: 1.8rem;
    }

    #home-landing > #why-section > .section-grid > .active > .icon,
    #home-landing > #why-section > .section-grid > .active > p {
        color: whitesmoke;
        transition: all 200ms ease-in;
    }

    #home-landing > #why-section > .section-grid > .active > .icon {
        background: linear-gradient(40deg, #757F9A, #D7DDE8);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* SECTION : Home > Why Section End */
    /* SECTION : Home > Tools Section Begin */
    #tools-section {
        margin-bottom: 10rem !important;
    }

    #tools-section .centered-col {
        align-items: center;
        justify-content: center;
    }

    #tools-section .centered-col h2,
    #tools-section .centered-col p {
        margin: auto;
        text-align: center;
    }

    #tools-section .centered-col h2 {
        width: 60%;
    }

    #tools-section .centered-col p {
        width: 45%;
        margin-top: 2rem;
    }

    #tools-section .centered-col #tools {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-top: 6rem;
    }

    #tools-section .centered-col #tools .tool {
        width: 20rem;
        height: 20rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border: .2rem solid var(--lightestgrey);
        filter: drop-shadow(0 .5rem 0 var(--lightestgrey));
        background-color: #FFFFFF;
        border-radius: 2rem !important;
        transition: all 300ms ease-in;
        position: relative;
        padding-bottom: 2rem;
    }

    #tools-section .centered-col #tools .tool:hover {
        filter: drop-shadow(0 0rem 0 var(--lightestgrey));
        transition: all 300ms ease-in;
        transform: translateY(.5rem);
    }

    #tools-section .centered-col #tools .tool:hover .soon {
        opacity: 100%;
        transition: all 500ms;
    }

    #tools-section .centered-col #tools .disable i,
    #tools-section .centered-col #tools .disable span {
        color: var(--lightgrey);
    }

    #tools-section .centered-col #tools .disable .soon {
        background-color: var(--coal);
        border: .16rem solid var(--coal);
        color: whitesmoke;
        padding: .2rem .6rem;
        margin-top: 1rem;
        font-size: 1.4rem;
        border-radius: 2rem;
        font-weight: 600;
        position: absolute;
        bottom: 2rem;
        opacity: 0;
        transition: all 500ms;
    }

    #tools-section .centered-col #tools .disable:hover {
        filter: drop-shadow(0 .5rem 0 var(--lightestgrey)) !important;
        transform: translateY(0rem) !important;
    }

    #tools-section .centered-col #tools .tool .icon {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    #tools-section .centered-col #tools .tool span {
        font-size: 1.6rem;
    }

    /* SECTION : Home > Tools Section End */
    /* SECTION : Home > RozShomar Section Begin */
    #rozshomar-section {
        margin: 10rem 0rem 20rem !important;
    }

    #rozshomar-section .section-col #rs-image {
        width: 40rem;
    }

    #rozshomar-section .text-col {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #rozshomar-section .text-col .buttons {
        margin-top: 2rem;
    }

    #rozshomar-section .section-col .button {
        padding: .8rem 2rem;
        color: white;
        font-size: 1.8rem;
        font-weight: 300;
        border-radius: 6rem;
        margin-top: 10rem;
    }

    #rozshomar-section .section-col .filled {
        background-color: var(--coal);
        color: var(--white-marble);
        font-weight: 500;
    }

    /* SECTION : Home > RozShomar Section End */
    /* SECTION : Home > Pricing Section Begin */
    #home-landing > #pricing-section {
        width: 100%;
        height: fit-content;
        margin-bottom: 15rem;
        border-radius: 2rem;
        padding: 2rem;
    }

    #home-landing > #pricing-section .section-content {
        display: flex;
    }

    #home-landing > #pricing-section .section-content > .subscription-content {
        width: 30%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        flex: 1 0 auto;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap {
        width: 100%;
        display: flex;
        background-color: var(--lightestgrey);
        border-radius: 2rem;
        justify-content: space-between;
        padding: 3rem;
        margin-right: 8rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table {
        width: 50%;
        border-radius: 1.5rem;
        box-shadow: 0 0 8rem rgba(0, 0, 0, 0.04);
        background-color: white;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table:nth-child(2) {
        margin-right: 3rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table:last-child {
        box-shadow: 3.3rem 0 8rem rgba(0, 0, 0, 0.05);
    }

    #home-landing > #pricing-section .section-content > .subscription-content {
        margin-left: 0;
    }

    #home-landing > #pricing-section .section-content > .subscription-content .head,
    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head {
        width: 100%;
        height: 20rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 3rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content > .head {
        align-items: start;
    }

    #home-landing > #pricing-section .section-content > .subscription-content > .head h4,
    #home-landing > #pricing-section .section-content > .subscription-content > .head span {
        width: 100%;
        font-weight: 800;
        font-size: 4rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content > .head h4 > span {
        display: block;
        color: var(--alphabet-red);
        font-size: 4rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content > .head > span {
        font-size: 1.6rem;
        font-weight: 400;
        color: var(--grey);
        margin-top: 3rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head > .avatar {
        width: 10rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .vazifeh-pro .head > .avatar {
        filter: grayscale(100%);
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head > .plan-name {
        margin: 1rem 0rem;
        font-size: 2rem;
        font-weight: 500;
        color: var(--grey);
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table:nth-child(2) .head > .plan-name span {
        color: var(--black);
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head > .plan-name span {
        color: var(--alphabet-red);
        font-weight: 600;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head > .timespan {
        color: var(--grey);
        font-size: 1.6rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body {
        height: fit-content;
        padding: 3rem 0;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li,
    #home-landing > #pricing-section .section-content > .subscription-content .body ul li {
        width: 100%;
        height: 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 3rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body ul li p {
        font-size: 1.7rem;
        font-weight: 400;
        color: var(--darkgrey);
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body ul li p > .strong {
        font-weight: 600;
        color: var(--black);
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body ul li {
        justify-content: start;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul .button {
        margin-top: 7rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul .button a {
        background-color: var(--black);
        padding: 1rem 2rem;
        border-radius: 5rem;
        color: white;
        font-weight: 500;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul .outline a {
        border: .2rem solid var(--black);
        background-color: transparent;
        color: var(--black);
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li p {
        font-size: 1.8rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .icon {
        font-size: 2.5rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .not-accessed {
        color: var(--grey);
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .accessed,
    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .icon-tick-square-bold {
        color: var(--green);
        font-weight: 600;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .icon-cross-mark-sqaure {
        color: var(--grey);
    }

    /* SECTION : Home > Pricing Section End */
    /* SECTION : Home > Reviews Section Begin */
    #reviews {
        margin: 0 0 12rem !important;
    }

    #reviews .section-content {
        display: flex;
        flex-direction: row !important;
    }

    #reviews .section-content > .right {
        flex: 1;
    }

    #reviews .section-content > .right h2 {
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 3rem;
    }

    #reviews .section-content > .right p {
        font-size: 1.6rem;
        color: var(--grey);
        line-height: 200%;
        text-align: justify;
    }

    #reviews .section-content > .left {
        flex: 2;
        display: flex;
    }

    #reviews .section-content > .left > .mySwiper {
        width: 50rem;
        height: fit-content;
    }

    #reviews .section-content > .left > .mySwiper .swiper-slide {
        height: 32rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--lightestgrey);
        border-radius: 3rem;
    }

    #reviews .section-content > .left > .mySwiper .swiper-slide > img {
        width: 100%;
        height: auto;
        object-position: center;
    }


    /* SECTION : Home > Reviews Section End */
    /* SECTION : Home > Consultant Begin */
    #home-landing > #consultant-section {
        width: 100%;
        height: fit-content !important;
        background-color: var(--coal);
        border-radius: var(--4rem);
        padding: 8rem 3rem;
        display: flex;
    }

    #home-landing > #consultant-section .section-content {
        display: flex;
        flex: 1 0 auto;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    #home-landing > #consultant-section .section-content .img-wrap {
        height: 30rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    #home-landing > #consultant-section .section-content .buttons {
        margin: 2rem 0 3rem;
    }

    #home-landing > #consultant-section .section-content .buttons > a {
        padding: .8rem 2rem;
        color: white;
        font-size: 1.8rem;
        font-weight: 300;
        border: .2rem solid whitesmoke;
        border-radius: 6rem;
    }

    #home-landing > #consultant-section .section-content .buttons > .filled {
        background-color: white;
        color: var(--coal);
        font-weight: 500;
    }

    #home-landing > #consultant-section .section-content .buttons > a:hover {
        filter: brightness(85%);
    }

    #home-landing > #consultant-section .section-content .buttons > a:first-child {
        margin-left: 2rem;
    }

    #home-landing > #consultant-section .section-content .text p {
        font-size: 4rem;
        font-weight: 600;
        color: white;
    }

    #home-landing > #consultant-section .section-content img {
        filter: saturate(120%);
    }

    /* SECTION : Home > Consultant End */
    /* SECTION : Home > Blog Section Begin */
    #home-landing > #blog {
        margin-bottom: 20rem;
    }

    #home-landing > #blog .section-content {
        width: 100%;
        height: fit-content;
        margin-top: 2rem;
        display: flex;
        justify-content: space-between;
    }

    #home-landing > #blog .section-content .post {
        width: 27rem;
        height: fit-content;
        display: flex;
        padding: 1.5rem 1.5rem 4rem;
        flex-direction: column;
        border: .2rem solid transparent;
        border-radius: 2rem;
        transition: all 250ms ease-in;

    }

    #home-landing > #blog .section-content .post:hover {
        cursor: pointer;
        border-color: var(--lightestgrey);
        transition: all 250ms ease-in;

    }

    #home-landing > #blog .section-content .post:hover img {
        filter: grayscale(20%);
        transition: all 250ms ease-in;
    }

    #home-landing > #blog .section-content .post > img {
        width: 100%;
        height: 15rem;
        transition: all 100ms ease-in;
        filter: grayscale(80%);
        object-fit: cover;
        border-radius: 2rem;
        margin-bottom: 2rem;
    }

    #home-landing > #blog .section-content .post > .details .cat {
        font-size: 1.4rem;
        margin: 1.4rem 0 .4rem;
        display: block;
        color: var(--grey);
    }

    #home-landing > #blog .section-content .post:hover > .details > .title {
        color: var(--alphabet-red);
    }

    #home-landing > #blog .section-content .post > .details > .title {
        font-size: 1.8rem;
        font-weight: 500;
    }

    #home-landing > #blog .section-content .post > .details > p {
        font-size: 1.4rem;
        margin-top: 1.4rem;
        color: var(--grey);
        text-align: justify;

    }

    /* SECTION : Home > Blog Section End */
    /* SECTION : Home End */
    /* SECTION : Article Begin */
    #article {
        margin-bottom: 10rem;
    }

    /* SECTION : Article > Breadcrumb Begin */
    #article .head > #breadcrumbs {
        width: 100%;
        display: flex;
        margin-bottom: 2rem;
    }

    #article .head > #breadcrumbs .breadcrumb-item {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #article .head > #breadcrumbs .breadcrumb-item .icon {
        margin: 0 1rem;
    }

    /* SECTION : Article > Breadcrumb End */
    #article .head > .title-wrap {

    }

    #article .head > .title-wrap > h1 {
        text-align: center;
    }

    #article .head > .title-wrap #thumbnail {
        width: 100%;
        height: 50rem;
        border-radius: 2rem;
        object-fit: cover;
        margin: 4rem 0rem 2rem;
    }

    #article .head > .title-wrap .details,
    #article .head > .title-wrap .details .detail {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #article .head > .title-wrap .details .detail {
        margin-left: 2rem;
    }

    #article .head > .title-wrap .details .detail .icon {
        margin: 0 1rem;
    }

    /* SECTION : Article > Title End */
    /* SECTION : Article > Content Begin */
    #article > #content-wrapper {
        height: fit-content;
        margin: 6rem auto;
        display: flex;
        justify-content: space-between;
    }

    #article > #content-wrapper #content {
        width: 100%;
        height: 100%;
    }

    #article > #content-wrapper #content p {
        text-align: justify;
        margin-bottom: 4rem;
    }

    /* SECTION : Article > Content > Author Begin */
    #article > #content-wrapper #author {
        width: 100%;
        height: fit-content;
        padding: 1.5rem;
        border-radius: 2rem;
        margin: 2rem 0;
    }

    #article > #content-wrapper #author .head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1rem;
    }

    #article > #content-wrapper #author .head .user-profile {
        height: 6rem;
        display: flex;
        align-items: center;
    }

    #article > #content-wrapper #author .head .user-profile img {
        width: 5rem;
        height: 5rem;
        padding: .6rem;
        background-color: var(--lightgrey);
        border-radius: 5rem;
    }

    #article > #content-wrapper #author .head .user-profile p {
        margin-right: 1rem;
        font-size: 1.6rem;
        font-weight: 500;
    }

    #article > #content-wrapper #author > p {
        color: var(--grey);
        text-align: justify;
    }

    #article > #content-wrapper #author .head .authors-articles {
        text-decoration: underline;
        color: var(--pantome);
    }

    #article > #content-wrapper #author .head .authors-articles:hover {
        color: var(--pantomeDark);
    }

    /* SECTION : Article > Content > Author End */
    /* SECTION : Article > Content > Side-bar Begin */
    #article > #content-wrapper > aside {
        width: 40rem;
        height: fit-content;
    }

    #article > #content-wrapper > aside .widget {
        border-radius: 1.5rem;
        overflow: hidden;
        margin-bottom: 3rem;
    }

    #article > #content-wrapper > aside .ad-widget {
        width: 100%;
        height: 20rem;
        background-color: var(--grey);
    }

    #article > #content-wrapper > aside .sidebar-widget {
        display: flex;
        flex-direction: column;
    }

    #article > #content-wrapper > aside .sidebar-widget > .head {
        width: 100%;
        padding: 2rem 0 1rem;
    }

    #article > #content-wrapper > aside .sidebar-widget > .body {
        width: 100%;
        height: fit-content;
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul {
        width: 100%;
        height: 100%;
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link {
        width: 100%;
        height: 10rem;
        margin-bottom: 1rem;
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link:hover {
        cursor: pointer;
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link:hover .text > span {
        color: var(--alphabet-red);
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link a {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link a .img {
        width: 11rem;
        height: 9rem;
        margin-left: 1.5rem;
        border-radius: 1.2rem;
        overflow: hidden;
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link a .img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link a .text {
        display: flex;
        flex-direction: column;
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link a .text span {
        line-height: 180%;
        font-weight: 500;
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link a .text > .post-det {
        width: 100%;
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link a .text > .post-det .item {
        width: 100%;
        display: flex;
        align-items: center;
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link a .text > .post-det .item > span,
    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link a .text > .post-det .item > .icon {
        font-size: 1.4rem;
        font-weight: 400;
        color: var(--grey);
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link a .text > .post-det .item > .icon {
        margin-left: .6rem;
        font-size: 1.6rem;
    }


    /* SECTION : Article > Content > Main Begin */
    #article > #content-wrapper main {
        width: 72rem;
        height: fit-content;
    }

    #article > #content-wrapper main p {
        line-height: 230%;
    }

    #article > #content-wrapper main h2,
    #article > #content-wrapper main h3 {
        margin: 1.6rem 0;
    }


    /* SECTION : Article > Content > Side-bar End */
    /* SECTION : Article > Content > Main End */
    /* SECTION : Article > Content End */
    /* SECTION : Article End */
    /* SECTION : More-Articles Begin */
    #more-articles {
        display: flex;
        flex-direction: column;
    }

    #more-articles .head {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 5rem;
    }

    #more-articles .head p {
        width: fit-content;
        color: var(--black);
        height: fit-content;
        font-weight: 600;
        display: inline-flex;
        margin-left: 3rem;
        font-size: 2rem;
    }

    #more-articles .head .hr {
        flex-grow: 1;
        height: .1rem;
        background-color: var(--lightgrey);
    }

    #more-articles .body {
        height: fit-content;
        display: flex;
        justify-content: space-between;
    }

    #more-articles .body .blog-item {
        width: 28rem;
        height: 40rem;
        overflow: hidden;
    }

    #more-articles .body .blog-item:hover {
        cursor: pointer;
    }

    #more-articles .body .blog-item .top-wrap {
        display: flex;
        flex-direction: column;
    }

    #more-articles .body .blog-item img {
        width: 100%;
        height: 20rem;
        object-fit: cover;
        margin-bottom: 1rem;
        border-radius: 1.4rem;
    }

    #more-articles .body .texts > h3,
    #more-articles .body .texts > span {
        padding: 0 1rem;
    }

    #more-articles .body .texts > h3 {
        margin-bottom: 1rem;
        font-size: 2rem;
        font-weight: 600;
    }

    #more-articles .body .blog-item:hover h3 {
        color: var(--pantome);
        transition: all 350ms;
    }

    #more-articles .body .texts > span {
        display: block;
        margin: auto;
        text-align: justify;
        font-size: 1.4rem;
        color: var(--grey);
    }

    #more-articles .body .blog-item > .details {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #more-articles .body .blog-item > .details .hr {
        height: .1rem;
        flex-grow: 1;
        background-color: var(--lightgrey);
        margin: 0 2rem;
        opacity: .5;
    }

    #more-articles .body .blog-item > .details .detail-item strong,
    #more-articles .body .blog-item > .details .detail-item span {
        font-size: 1.3rem;
        font-weight: 400;
        color: var(--coal);
    }

    /* SECTION : More-Articles End */
    /* SECTION : RozShomar Begin */
    #rozshomar .version-num {
        width: 100%;
        text-align: center;
        color: var(--lightgrey);
        font-size: 1.5rem;
        display: block;
        margin-top: 6rem;
    }

    /* SECTION : RozShomar > Content Begin */
    #rozshomar > #content {
        width: 75%;
        height: fit-content;
        margin: auto;
    }

    #rozshomar > #content > * {
        line-height: 200%;
    }

    #rozshomar > #content > p {
        text-align: justify;
    }

    #rozshomar > #content strong {
        font-weight: 600;
    }

    #rozshomar > #content a {
        color: var(--alphabet-red);
    }

    #rozshomar > #content a:hover {
        color: var(--alphabet-dark-red);
    }

    /* SECTION : RozShomar > Content End */
    #rozshomar > #progress-steps {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 6rem;
    }

    #rozshomar > #progress-steps .step {
        width: fit-content;
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 20rem;
    }

    #rozshomar > #progress-steps .step:last-child {
        margin-left: 0;
    }

    #rozshomar > #progress-steps .step > .step-dot {
        width: 3rem;
        height: 3rem;
        border-radius: 3rem;
        display: flex;
        border: .2rem solid var(--lightgrey);
        align-items: center;
        justify-content: center;
    }

    #rozshomar > #progress-steps .step > .active {
        background-color: var(--blue);
        border-color: var(--blue);
    }

    #rozshomar > #progress-steps .step > .semi-active {
        border-color: var(--blue);
    }

    #rozshomar > #progress-steps .step > .step-dot .inner-dot {
        width: 1rem;
        height: 1rem;
        background-color: var(--lightgrey);
        border-radius: 1rem;
    }

    #rozshomar > #progress-steps .step > .active .inner-dot {
        background-color: white;
    }

    #rozshomar > #progress-steps .step > .semi-active .inner-dot {
        background-color: var(--blue);
    }

    #rozshomar > #progress-steps .step > .step-level {
        font-weight: 600;
        margin: .6rem 0rem;
    }

    #rozshomar > #result-section {
        margin-top: 6rem;
        display: none;
    }

    #rozshomar > .show-result {
        display: block !important;
    }

    @keyframes fade-down {
        0% {
            visibility: hidden;
            transform: translateY(-2rem);
            opacity: 0;
        }
        to {
            transform: translateY(0rem);
            opacity: 1;
            visibility: visible;
        }
    }
    @keyframes fade-up {
        0% {
            visibility: hidden;
            transform: translateY(2rem);
            opacity: 0;
        }
        to {
            transform: translateY(0rem);
            opacity: 1;
            visibility: visible;
        }
    }

    #rozshomar > #result-section .user-preview {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #rozshomar > #result-section .user-preview .avatar {
        width: 15rem;
        padding: 2rem;
        background-color: var(--lightgrey);
        transform: translateY(-2rem);
        border-radius: 5rem;
        visibility: hidden;
        opacity: 0;
    }

    #rozshomar > #result-section .user-preview > .show {
        animation: fade-down;
        animation-duration: 500ms;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
    }

    #rozshomar > #result-section .user-preview strong {
        font-size: 1.8rem;
        margin-top: 2rem;
    }

    #rozshomar > #result-section .ms-preview {
        display: flex;
        justify-content: center;
        margin: 3rem 0rem;
    }

    #rozshomar > #result-section .ms-preview > .item {
        min-width: 20rem;
        visibility: hidden;
    }

    #rozshomar > #result-section .ms-preview > .show {
        animation: fade-up;
        animation-duration: 500ms;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
    }

    #rozshomar > #result-section .ms-preview .cd-item .item {
        min-width: 13rem;
    }

    #rozshomar > #result-section .ms-preview > .item,
    #rozshomar > #result-section .ms-preview .cd-item .item {
        background-color: var(--lightestgrey);
        margin-left: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 3rem;
        padding: 2.5rem 2rem;
    }


    #rozshomar > #result-section .ms-preview > .item > p {
        padding: 0 1rem;
    }

    #rozshomar > #result-section .ms-preview > .item:last-child {
        margin-left: 0;
    }

    #rozshomar > #result-section .ms-preview > .item .progress-bar {
        width: 100%;
        height: .4rem;
        margin-top: 1rem;
        display: flex;
    }

    #rozshomar > #result-section .ms-preview > .item .progress-bar > .progress,
    #rozshomar > #result-section .ms-preview > .item .progress-bar > .remaining {
        height: 100%;
        border-radius: 1rem;
    }

    #rozshomar > #result-section .ms-preview > .item .progress-bar > .progress {
        width: 80%;
        background-color: var(--green);
    }

    #rozshomar > #result-section .ms-preview > .item .progress-bar > .remaining {
        width: 20%;
        margin-left: .4rem;
        background-color: var(--lightgrey);
    }

    /* SECTION : RozShomar > Setup Progress Begin */
    #rozshomar > #setup-progress {
        width: 100%;
        margin: 11rem auto;
        /*background-color: red;*/
    }

    #rozshomar > #setup-progress > .setup-item {
        width: 60%;
        margin: auto;
        height: fit-content;
        display: flex;
        flex-direction: column;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row {
        width: 100%;
        height: fit-content;
        display: flex;
        margin-bottom: 4rem;
    }


    #rozshomar > #setup-progress > .setup-two,
    #rozshomar > #setup-progress > .setup-three {
        display: none;
    }

    #rozshomar > #setup-progress > .setup-buttons {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    #rozshomar > #setup-progress > .setup-item .setup-button {
        width: fit-content;
        padding: .6rem 1rem;
        border-radius: .7rem;
        border-color: transparent;
        background-color: var(--pantome);
        color: white;
        display: block;
    }

    #rozshomar > #setup-progress > .setup-item #prev-item {
        display: none;
    }

    #rozshomar > #setup-progress > .setup-item .setup-button:hover {
        cursor: pointer;
        background-color: var(--pantomeDark);
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap {
        height: fit-content;
        flex-grow: 1;
        margin-left: 8rem;
        display: flex;
        flex-direction: column;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap:last-child {
        margin-left: 0;
    }

    #rozshomar > #setup-progress > .setup-item > .input-wrap:last-child,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap:last-child {
        margin-left: 0;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker {
        width: 100%;
        height: fit-content;
        display: flex;
        align-items: center;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item {
        flex-grow: 1;
        margin-left: 1rem;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item:last-child {
        margin-left: 0;
    }

    #rozshomar > #setup-progress > .setup-item > .input-wrap span,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap span,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item span {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item span {
        font-size: 1.5rem;
        font-weight: 400;
        display: block;
        margin-bottom: 1rem;
    }


    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap input,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap select,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item input {
        width: 100%;
        height: fit-content;
        padding: 1.3rem 2rem;
        border-radius: 1rem;
        outline: none;
        border: .2rem solid var(--lightestgrey);
        font-size: 1.6rem;
        font-family: 'PeydaWebFaNum';
        background-color: var(--lightestgrey);
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .error {
        border-color: var(--alphabet-red);
    }

    #rozshomar > #setup-progress > .setup-item > .input-wrap input:focus,
    #rozshomar > #setup-progress > .setup-item > .input-wrap select:focus,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item input:focus {
        background-color: white;
        border-color: var(--pantome);
    }

    /* HTML: <div class="loader"></div> */
    #rozshomar > #setup-progress > .setup-three {
        display: none;
        align-items: center;
        justify-content: center;
    }

    #rozshomar > #setup-progress > .setup-item #loader-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    @keyframes ffOut {
        from {
            display: flex;
            opacity: 1;
        }
        to {
            opacity: 0;
            display: none;
        }
    }
    #rozshomar > #setup-progress > .setup-item .fadeOut {
        animation: ffOut;
        animation-fill-mode: forwards;
        animation-duration: 250ms;
    }

    #rozshomar > #setup-progress > .setup-item #loader-wrap span {
        font-size: 1.7rem;
    }

    .loader {
        width: 3.2rem;
        aspect-ratio: 1;
        --_g: no-repeat radial-gradient(farthest-side, #3a3a3a 90%, #0000);
        background: var(--_g), var(--_g), var(--_g), var(--_g);
        background-size: 40% 40%;
        margin-bottom: 3rem;
        animation: l46 1s infinite;
    }

    @keyframes l46 {
        0% {
            background-position: 0 0, 100% 0, 100% 100%, 0 100%
        }
        40%,
        50% {
            background-position: 100% 100%, 100% 0, 0 0, 0 100%
        }
        90%,
        100% {
            background-position: 100% 100%, 0 100%, 0 0, 100% 0
        }
    }

    #rozshomar > #setup-progress > .setup-item #recalculate {
        width: fit-content;
        padding: .7rem 2rem;
        background-color: var(--pantome);
        border: none;
        margin-bottom: 6rem;
        font-size: 2rem;
        color: white;
        border-radius: 1rem;
        visibility: hidden;
        opacity: 0;
        transform: translateY(2rem);
    }

    #rozshomar > #setup-progress > .setup-item .animated {
        animation: fade-up;
        animation-duration: 500ms;
        animation-fill-mode: forwards;
    }

    #rozshomar > #setup-progress > .setup-item #recalculate:hover {
        background-color: var(--pantomeDark);
        cursor: pointer;
    }

    /* SECTION : RozShomar > Setup Progress End */
    /* SECTION : RozShomar > CountDown Begin */
    #rozshomar > #result-section .ms-preview .cd-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #rozshomar > #result-section .ms-preview .colon {
        height: 10.1rem;
        margin: 4rem 2rem 0;
        font-size: 1.6rem;
        display: flex;
        align-items: center;
        font-weight: 600;
        justify-content: center;
    }

    #rozshomar > #result-section .ms-preview .cd-item > span {
        font-size: 1.6rem;
        color: var(--lightgrey);
        margin-bottom: 1.2rem;
    }

    #rozshomar > #result-section .ms-preview .cd-item .item {
        padding: 2rem;
        border-radius: 2rem;
        margin: 0
    }

    #rozshomar > #result-section .ms-preview .cd-item .item > p {
        font-weight: 600;
        font-size: 3rem;
    }

    /* SECTION : RozShomar > CountDown End */
    /* SECTION : RozShomar > Graffito Begin */
    #rozshomar > #result-section #graffito {
        width: 90rem;
        /*height: 45rem;*/
        margin: 5rem auto;
        object-fit: cover;
        border: .2rem solid var(--lightgrey);
        border-radius: 3rem;
        padding: 3rem;
    }


    /* SECTION : RozShomar > Graffito End */
    /* SECTION : RozShomar End */
    /* SECTION : Blog Begin */
    #blog #page-title {
        width: 100%;
        margin-bottom: 5rem;
    }

    #blog #page-title > h1 {
        font-size: 5.2rem;
    }

    #blog #page-title > h1 .dot {
        color: var(--alphabet-red);
    }

    /* SECTION : Blog > Pinned Article Begin */
    #blog > #pinned-article {
        width: 100%;
        height: 40rem;
        background-color: #5fc057;
        border-radius: 3rem;
        overflow: hidden;
        position: relative;
        display: block;
    }

    #blog > #pinned-article:hover {
        cursor: pointer;
    }

    #blog > #pinned-article:hover > img {
        transform: scale(1.02);
        transition: all 200ms;
    }

    #blog > #pinned-article > img {
        width: 100%;
        height: 40rem;
        object-fit: cover;
        margin: 0;
        z-index: 1;
        transition: all 200ms;
    }

    #blog > #pinned-article > .hidden {
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 500;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
    }

    #blog > #pinned-article > .article-detail {
        width: 100%;
        height: fit-content;
        position: absolute;
        bottom: 0rem;
        right: 0rem;
        padding: 4rem;
        z-index: 100 !important;
    }

    #blog > #pinned-article > .article-detail:before {
        content: '';
        width: 100%;
        height: 40rem;
        position: absolute;
        bottom: 0rem;
        right: 0rem;
        left: 0;
        background: linear-gradient(0deg, black, rgba(0, 0, 0, 0.81), rgba(0, 0, 0, 0));
        opacity: .6;
        z-index: -1;
    }

    #blog > #pinned-article > .article-detail * {
        color: white;
    }

    #blog > #pinned-article > .article-detail .category {
        padding: .4rem 1rem;
        border: .1rem solid var(--white-marble);
        border-radius: 3rem;
        background-color: rgba(0, 0, 0, 0.2);
        transition: all 250ms;
    }

    #blog > #pinned-article > .article-detail .category:hover {
        transition: all 250ms;
        background-color: rgba(0, 0, 0, 0.4);
    }

    #blog > #pinned-article > .article-detail h2 {
        margin: 1rem 0;
    }

    #blog > #pinned-article > .article-detail p {
        font-weight: 300;
    }

    #blog > .title-wrap {
        width: 100%;
        height: fit-content;
        margin: 6rem 0 2rem;
        display: flex;
    }

    #blog > .title-wrap > h2 {
        font-size: 2rem;
    }

    #blog > #articles {
        width: 100%;
        display: grid;
        margin-top: 3rem;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto;
        gap: 7rem 4rem;
    }

    #blog > #articles .article-item {
        overflow: hidden;
        float: right;
    }

    #blog > #articles .article-item > img {
        width: 100%;
        height: 16rem;
        border-radius: 2rem;
        object-fit: cover;
        margin-bottom: 1rem;
    }

    #blog > #articles .article-item > p {
        margin-top: 1rem;
        font-size: 1.4rem;
        color: var(--grey);
    }

    #blog > #articles .article-item a {
        line-height: 175%;
    }

    #blog > #articles .article-item:hover {
        cursor: pointer;
    }

    #blog > #articles .article-item:hover > a {
        color: var(--blue);
    }

    #blog > #articles .article-item > a * {
        font-size: 1.8rem;
        text-align: justify;
        font-weight: 600;
    }

    #blog > #more-loader {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        margin-top: 6rem;
    }

    @keyframes fadeInsLoad {
        from {
            opacity: 0;
        }
        to {
            opacity: 100% !important;
        }
    }
    #blog > #more-loader #loading {
        margin-bottom: 3rem;
        background: #3a3a3a -webkit-linear-gradient(right, #3a3a3a, #fff) no-repeat 0 0 / 30px;
        background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, .3);
        opacity: 0;
        animation-delay: 200ms;
        animation: sweep 2.5s ease-in infinite;
    }

    #blog > #more-loader .showLoading {
        transition: opacity 1s ease-in;
        opacity: 1 !important;
    }

    #blog > #more-loader .hideLoading {
        transition: opacity 1s ease-in;
        opacity: 0 !important;
    }

    #blog > #more-loader #loading p {
        font-weight: 600;
        font-size: 1.5rem;
    }

    #blog > #more-loader #load-more {
        padding: 1rem 1.9rem;
        border-radius: 1.2rem;
        background-color: var(--black);
        color: white;
        font-size: 1.6rem;
        border: none;
    }

    #blog > #more-loader #load-more:hover {
        cursor: pointer;
        background-color: var(--darkerblack);
    }

    /* SECTION : Blog > Pinned Article End */
    /* SECTION : Category Begin */
    #blog > #categoryList {
        display: grid;
        grid-template-columns: repeat(4, minmax(5rem, 32rem));
        grid-template-rows: auto;
        grid-gap: 8rem 5rem;

    }

    #blog > #categoryList > .article-item {
        border-radius: 3.5rem;
        transition: all 300ms ease-in;
        border: .2rem solid transparent;
        padding-bottom: 2rem;
    }

    #blog > #categoryList > .article-item:hover {
        border: .2rem solid var(--lightestgrey);
    }

    #blog > #categoryList > .article-item > .img {
        width: 23rem;
        height: 23rem;
        border-radius: 3rem;
        margin-bottom: 2rem;
        margin-top: 1.5rem;
    }

    #blog > #categoryList > .article-item:hover .img > img {
        transform: scale(1.05);
        transition: all ease-in 150ms;
        transition-delay: 150ms;
    }

    #blog > #categoryList > .article-item > h3 {
        width: 23rem;
        font-size: 1.9rem;
        font-weight: 600;
        line-height: 180%;
    }

    #blog > #categoryList > .article-item:hover > h3 {
        color: var(--alphabet-dark-red);
    }

    #blog > #categoryList > .article-item > p {
        width: 23rem;
        text-align: justify;
        font-size: 1.4rem;
        margin: 1rem 0;
        color: #747474;
    }

    #blog > #contentBox {
        width: 80%;
        margin: 10rem auto;
    }

    /* SECTION : Category End */
    /* SECTION : Blog End */
    /* SECTION : About Begin */
    #about-us {
    }

    #about-us h1 {
        visibility: hidden;
    }

    #about-us h2,
    #about-us h2 * {
        font-size: 4.8rem;
        line-height: 200%;
        color: var(--grey);
        text-align: justify;
        font-weight: 700;
    }

    #about-us .highlight,
    #about-us .highlight * {
        /*color: var(--alphabet-red);*/
        color: var(--black);
    }

    #about-us > .page-section img {
        width: 100%;
        height: 40rem;
        background-color: var(--darkgrey);
        margin: 4rem 0;
        border-radius: 3rem;
    }

    #about-us > .page-section {
        display: flex;
        margin: 3rem auto 6rem;
        align-items: center;
        flex-direction: column;
    }

    #about-us > .page-section > .section-item {
        flex-grow: 1;
        margin-right: 4rem;
        display: flex;
        justify-content: start;
    }

    #about-us > .two-col {
        flex-direction: row;
    }

    #about-us > .two-col .text {
        display: block;
    }

    #about-us > .two-col .text p {
        font-size: 1.9rem;
        line-height: 200%;
        text-align: justify;
    }

    #about-us > .two-col .text h3 {
        margin-bottom: 2rem;
    }

    #about-us > .page-section > .stats {
        width: 25rem;
        height: fit-content;
        border-left: .1rem solid var(--lightgrey);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    #about-us > .page-section > .stats .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 3rem;
    }

    #about-us > .page-section > .stats .stat-item > p {
        font-size: 3rem;
    }

    #about-us > .page-section > .stats .stat-item > span {
        font-size: 1.6rem;
        font-weight: 300;
        color: var(--grey);
    }

    #about-us #do-dont-section {
        flex-direction: column;
        align-items: start;
    }

    #about-us > #reasons {
        width: 100%;
        height: 40rem;
        margin: 8rem 0rem;
    }

    #about-us > #reasons > .row {
        border-top: .1rem solid var(--lightgrey);
        border-bottom: .1rem solid var(--lightgrey);
        z-index: -1;
    }

    #about-us > #reasons > .row:last-child {
        border-top: none;
    }

    #about-us > #reasons > .row .container {
        display: flex;
    }

    #about-us > #reasons > .row .container .item {
        display: flex;
        flex-grow: 1;
        flex-direction: column;
        padding: 4rem;
        border-right: .1rem solid var(--lightgrey);
        transition: 400ms all;
    }

    #about-us > #reasons > .row .container .item:hover {
        cursor: pointer;
        box-shadow: 0rem 0rem 3rem #dadce6;
        transition: 400ms all;
        border: none;
        z-index: 5000;
    }

    #about-us > #reasons > .row .container .item:last-child {
        border-left: .1rem solid var(--lightgrey);
    }

    #about-us > #reasons > .row .container .item > strong {
        font-size: 3rem;
        font-weight: 400;
        margin-bottom: 1rem;
    }

    #about-us > #reasons > .row .container .item > span,
    #about-us > #reasons > .row .container .item > p {
        color: var(--grey);
    }

    #about-us > #cta {
        width: 80rem;
        background-color: #3259E8;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 6rem 3rem;
        border-radius: 4rem;
        margin: 2rem auto;
    }

    #about-us > #cta .avatar > img {
        width: 8rem;
        height: 8rem;
    }

    #about-us > #cta .avatar {
        background-color: rgba(194, 196, 204, 0.4);
        border-radius: 6rem;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
    }

    #about-us > #cta p {
        color: white;
        font-size: 3rem;
        text-align: center;
        font-weight: 500;
    }

    #about-us > #cta p > span {
        font-size: 1.8rem;
        text-align: center;
        font-weight: 300;
    }

    #about-us > #cta a {
        margin-top: 2rem;
        padding: 1rem 2rem;
        background-color: white;
        border-radius: 5rem;
        font-weight: 600;
    }

    /* SECTION : About End */
    /* SECTION : ContactUs Begin */
    #contact-us {
        height: fit-content;
        text-align: center;
        margin-top: 6rem;
        display: block;
    }

    #contact-us > #contactMethods {
        width: 100rem;
        margin-top: 8rem;
        display: flex;
        justify-content: space-between;
    }

    #contact-us > #contactMethods > .method {
        width: 100%;
        border: .1rem solid var(--lightgrey);
        padding: 8rem 4rem 3rem;
        border-radius: 1rem;
        display: flex;
        align-items: start;
        justify-content: end;
        flex-direction: column;
        margin-left: 4rem;
        flex-grow: 1;
    }

    #contact-us > #contactMethods > .method:last-child {
        margin-left: 0;
    }

    #contact-us > #contactMethods > .method span {
        margin: .6rem 0rem;
        font-size: 1.5rem;
        text-align: right;
    }

    #contact-us > #contactMethods > .method a {
        direction: ltr;
    }

    /* SECTION : ContactUs End */
    /* SECTION : Footer Begin */
    footer {
        width: 100%;
        height: fit-content;
        display: flex;
        justify-content: space-between;
        margin-top: 5rem;
    }

    footer .footer-layout {
        width: 100%;
        flex-grow: 1;
        padding: 2rem 4rem;
    }

    footer .links {
        display: flex;
        align-items: center;
    }

    footer .links a {
        margin-left: 4rem;
        flex: 1 0 auto;
    }

    footer .links a:last-child {
        margin-left: 0;
    }

    .avatar-layout {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-layout > .avatar-wrap {
        width: 4rem;
        height: 4rem;
        overflow: hidden;
        padding: .4rem;
        background-color: var(--white-marble);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5rem;
    }

    .footer-layout > .avatar-wrap > img {
        width: auto;
        height: 100%;
    }

    /* SECTION : Footer End */
    /* SECTION : Search Begin */
    #search > .head {
        width: 100%;
        height: 15rem;
    }

    #search > #results {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 3rem;
        padding: 2rem;
        border-radius: 2rem;
    }

    #search > #results .result-item {
        height: 25rem;
        border-radius: 2rem;
    }

    #search > #results .result-item .img-wrap {
        width: 20rem;
        height: 20rem;
        border-radius: 2rem;
        margin-right: 2.5rem;
    }

    #search > #results .result-item .img-wrap img {
        width: 20rem;
        height: 20rem;
        border: none;
        outline: none;
        object-fit: cover;
        display: none;
    }

    #search > #results .result-item .txt-wrap {
        padding: 2.5rem 0 0 2rem;
        margin-right: 2rem;
    }

    #search > #results .result-item .txt-wrap h2 {
        font-size: 2.2rem;
    }

    /* SECTION : Search End */
    /* SECTION : Consultant Begin */
    #consultant {
        width: 100%;
        flex-grow: 1;
    }

    #consultant .container {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #consultant #cons-box {
        width: 50rem;
        height: 90%;
        border-radius: 6rem;
        position: relative !important;
    }

    #consultant #cons-behindbox,
    #consultant #cons-frontbox {
        border-radius: 6rem;
    }

    #consultant #cons-behindbox {
        width: 90%;
        height: 100%;
        background-color: #EBEBEB;
        position: absolute;
        bottom: 0;
        top: 1.5rem;
        right: 5%;
        left: 0;
        z-index: -1;
    }

    /* SECTION : Consultant > Front Box Begin */
    #consultant #cons-frontbox {
        width: 100%;
        height: 100%;
        background-color: white;
        padding: 3rem 5rem 3rem 5rem;
        display: flex;
        flex-direction: column;

    }

    #consultant #cons-frontbox > #progress {
        width: 20rem;
        height: .6rem;
        background-color: var(--progressBarLight);
        border-radius: 3rem;
        overflow: hidden;
        margin: auto;
    }

    #consultant #cons-frontbox > #progress .progress-bar {
        width: 40%;
        height: 100%;
        float: left;
        background-color: var(--someNewBlue);
    }

    #consultant #cons-frontbox > #progress,
    #consultant #cons-frontbox > #progress .progress-bar {
        border-radius: 3rem;
    }

    /* SECTION : Consultant > cons-step Begin */
    #consultant #cons-frontbox .cons-step input::-webkit-outer-spin-button,
    #consultant #cons-frontbox .cons-step input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    /* Firefox */
    #consultant #cons-frontbox .cons-step input[type=number] {
        -moz-appearance: textfield;
    }

    #consultant #cons-frontbox .cons-step {
        width: fit-content;
        display: flex;
        flex-grow: 1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: auto;
    }

    #consultant #cons-frontbox .cons-step .cons-title {
        height: fit-content;
        font-family: 'MorabbaWebFaNum';
        font-weight: 500;
        font-size: 3rem;
        margin-top: 1rem;
        text-align: center;
    }

    #consultant #cons-frontbox .cons-step .cons-container {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-grow: 1;
    }

    /* SECTION : Consultant > .birthdate Begin */
    #consultant #cons-frontbox .birthdate,
    #consultant #cons-frontbox .militaryStatus {
        display: none;
    }

    #consultant #cons-frontbox .birthdate .cons-container .date {
        width: fit-content;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    #consultant #cons-frontbox .birthdate .cons-container .date span {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    #consultant #cons-frontbox .birthdate .cons-container .date input {
        width: 10rem;
        height: 6rem;
        border-radius: 2rem;
        background-color: var(--progressBarLight);
        outline: none;
        border: none;
        padding: 2rem;
        text-align: center;
        font-size: 2rem;
    }

    /* SECTION : Consultant > .birthdate End */
    /* SECTION : Consultant > .militaryStatus Begin */
    #consultant #cons-frontbox .quiz-step {
        display: none;
    }

    #consultant #cons-frontbox .quiz-step .quiz {
        height: 100%;
        margin: 2.4rem 0;
        background-color: #EBECF2;
        border-radius: 4rem;
        flex-grow: unset;
        padding: 1.5rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 1fr;
        grid-gap: 1.5rem;
    }

    #consultant #cons-frontbox .quiz-step .quiz-button {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: white;
        border-radius: 3rem;
        text-align: center;
        font-size: 2rem;
    }

    #consultant #cons-frontbox .quiz-step .active {
        background-color: #3338BB;
        color: white;
    }

    #consultant #cons-frontbox .quiz-step .quiz-button:hover {
        cursor: pointer;
        background-color: #f5f5f5;
    }

    #consultant #cons-frontbox .quiz-step .active:hover {
        background-color: #2d31a6;
        color: white;
    }

    /* SECTION : Consultant > .militaryStatus End */
    /* SECTION : Consultant > .faq Begin */
    #consultant #cons-frontbox > .faq,
    #consultant #cons-frontbox > .faq-show {
        width: 100%;
        display: none;
    }

    #consultant #cons-frontbox > .faq {
        /*display: flex;*/
        flex-direction: column;
    }

    #consultant #cons-frontbox .questions {
        width: 100%;
        height: 100%;
        background-color: #EBECF2;
        margin: 4rem 0;
        border-radius: 3rem;
        flex-direction: column;
        display: flex;
        padding: 1.5rem;
    }

    #consultant #cons-frontbox .faq .question {
        width: 100%;
        flex-grow: 1;
        background-color: #FFFFFF;
        border: .2rem solid #1D1D1D;
        border-radius: 1.5rem;
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
        padding-right: 2.2rem;
    }

    #consultant #cons-frontbox .faq .question:last-child {
        margin-bottom: 0;
    }

    #consultant #cons-frontbox .faq .question:hover {
        background-color: #f8f8f8;
        cursor: pointer;
    }

    #consultant #cons-frontbox .faq .question > img {
        width: 3rem;
        margin-left: 1.5rem;
    }

    /* SECTION : Consultant > .faq End */
    /* SECTION : Consultant > .faq Begin */
    #consultant #cons-frontbox > .faq-show {
        display: none;
    }

    #consultant #cons-frontbox > .faq-show > .question-box {
        width: 100%;
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        margin-top: 2rem;
    }

    #consultant #cons-frontbox > .faq-show > .question-box > img {
        width: 3rem;
        margin-left: 1rem;
    }

    #consultant #cons-frontbox > .faq-show > .answer {
        width: 100%;
        flex-grow: 1;
        border-radius: 4rem;
        background-color: #EBECF2;
        margin: 3rem 0;
        padding: 2rem;
    }

    #consultant #cons-frontbox > .faq-show > .answer p {
        font-size: 2rem;
        line-height: 220%;
        font-weight: 600;
        text-align: justify;
    }

    /* SECTION : Consultant > .faq End */
    /* SECTION : Consultant > .lastForm Begin */
    #consultant #cons-frontbox > .lastForm {
        width: 100%;
        display: flex;
    }

    #consultant #cons-frontbox > .lastForm > .cons-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin: 3rem 0;
        background-color: #EBECF2;
        border-radius: 3rem;
        padding: 1.5rem;
    }

    #consultant #cons-frontbox > .lastForm input {
        width: 100%;
        flex-grow: 1;
        margin-bottom: 1rem;
        background-color: #FFFFFF;
        border: .2rem solid #1D1D1D;
        border-radius: 1.5rem;
        font-size: 1.5rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        padding: 0 1.5rem;
    }

    #consultant #cons-frontbox > .lastForm input:last-child {
        margin-bottom: 0;
    }

    /* SECTION : Consultant > .lastForm End */
    /* SECTION : Consultant > cons-step End */
    /* SECTION : Consultant > Action Buttons Begin */
    #consultant #cons-frontbox #action-buttons,
    #consultant #cons-frontbox #ques-button {
        width: fit-content;
        height: fit-content;
        display: flex;
        margin: auto;
        justify-content: space-between;
    }

    #consultant #cons-frontbox #ques-button {
        width: 85% !important;
        margin-bottom: 1rem;
    }

    #consultant #cons-frontbox #action-buttons .btn,
    #consultant #cons-frontbox #ques-button .btn {
        height: fit-content;
        padding: 1.2rem 6rem;
        border-radius: 1.5rem;
        outline: none;
        border: none;
        font-size: 1.6rem;
        color: white;
        background-color: var(--coale);
    }

    #consultant #cons-frontbox #ques-button .question-btn:hover {
        background-color: #f8f8f8;
        cursor: pointer;
    }

    #consultant #cons-frontbox #ques-button > .question-btn {
        width: 85%;
        background-color: #FFFFFF;
        border: .2rem solid #1D1D1D;
        border-radius: 1.5rem;
        display: none;
        align-items: center;
        justify-content: center;
        margin: auto;
    }

    #consultant #cons-frontbox #ques-button > .question-btn img {
        width: 3rem;
        height: 3rem;
        margin-left: 1rem;
    }

    #consultant #cons-frontbox #ques-button > .question-btn p {

    }

    #consultant #cons-frontbox #action-buttons .btn:last-child {
        margin-right: 3rem;
    }

    #consultant #cons-frontbox #action-buttons .btn:hover {
        cursor: pointer;
    }

    #consultant #cons-frontbox #action-buttons .btn:hover {
        background-color: #1D1D1D;
    }

    #consultant #cons-frontbox #ques-button > #payment-btn {
        width: 100%;
        background-color: #3bb63b;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 !important;
    }

    #consultant #cons-frontbox #ques-button > #payment-btn p {
        color: whitesmoke;
    }

    /* SECTION : Consultant > Action Buttons End */
    /* SECTION : Consultant > Step Begin */
    #consultant #cons-frontbox #steps {
        margin: 2rem auto 0rem;
        border: .1rem solid rgba(168, 168, 168, 0.6);
        padding: .5rem 2rem;
        border-radius: 2rem;
    }

    /* SECTION : Consultant > Step End */
    #consultant #cons-frontbox > #progress {
        /* SECTION : Consultant > Front Box End */
        /* SECTION : Consultant End */


    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media screen and (min-width: 992px) and (max-width: 1200px) {
    .container {
        width: 98rem;
        /*background-color: pink;*/
    }

    /* SECTION : Header Begin */
    header {
        width: 100%;
        height: 14rem;
    }

    .header-wrap {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-wrap .h-button,
    .header-wrap .logo {
        width: fit-content;
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-wrap .logo .icon {
        font-size: 5rem;
    }

    .header-wrap .h-button > a {
        padding: 1rem 1.5rem;
        border-radius: 3rem;
        border: .2rem solid var(--grey);

    }

    .header-wrap .menu {
        margin: 0 8rem;
    }

    .header-wrap .menu .menu-link {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 5rem;
        float: right;
        position: relative;
    }

    .header-wrap .menu .menu-link:hover {
        cursor: pointer;
    }

    .header-wrap .menu .menu-link > a {
        color: var(--black);
    }

    .header-wrap .menu .menu-link > a:hover,
    footer .links > a:hover,
    #article .head > #breadcrumbs .breadcrumb-item > a:hover {
        color: var(--grey) !important;
    }

    .header-wrap .menu .menu-link > .sub-menu {
        width: 16rem;
        position: absolute;
        top: 6rem;
        display: none;
        flex-direction: column;
        padding: 0 1rem;
        border-radius: .8rem;
        border: .2rem solid lightgray;
    }

    .header-wrap .menu .menu-link:hover .sub-menu {
        display: flex;
    }

    .header-wrap .menu .menu-link .sub-menu li {
        padding: .6rem 0;
    }

    .header-wrap .h-button > #menu-btn {
        display: none;
    }

    /* SECTION : Header End */
    /* SECTION : Mobile Navigation Begin */
    #mobile-nav {
        display: none;
    }

    /* SECTION : Mobile Navigation End */
    /* SECTION : Home Begin */
    #home-landing {
        height: fit-content;
    }

    .hero {
        height: 45rem;
        margin-bottom: 40rem;
        display: flex;
        align-items: center;
        flex-direction: column;
        margin-top: 10rem;
    }

    .hero .intro-sides {
        flex-grow: 1;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .hero .intro-sides > p {
        width: 60%;
        text-align: center;
        font-size: 1.7rem;
        font-weight: 300;
        margin-top: 1rem;
        color: var(--grey);
    }

    .hero .intro-sides > img {
        width: 100%;
        margin-top: 10rem;
    }

    .hero .intro-sides .buttons {
        width: fit-content;
        height: fit-content;
        display: flex;
        margin-top: 6rem;
    }

    .hero .intro-sides .buttons .button {
        padding: .8rem 2rem;
    }

    .hero .intro-sides .buttons .button:first-child {
        margin-left: 2rem;
    }

    .hero .intro-sides .buttons .filled {
        background-color: var(--black);
        border-radius: 3rem;
        font-size: 1.8rem;
        color: white;
    }

    .hero .intro-sides .buttons .filled:hover {
        background-color: var(--darkerblack);
    }

    .hero .intro-sides .buttons .outline {
        border: .2rem solid var(--black);
        border-radius: 5rem;
    }

    .hero .intro-sides .buttons .outline:hover {
        background-color: var(--lightestgrey);
    }

    .hero .intro-sides h2 {
        margin-bottom: 1rem;
        font-size: 4.5rem;
    }

    /* SECTION : OPTIONS BEGIN */
    .hero .intro-sides .heroSwiper {
        width: 100%;
    }

    .features {
        width: 100%;
        margin-top: 5rem;
    }

    .hero .intro-sides .heroSwiper .swiper-wrapper {
    }

    .hero .intro-sides .heroSwiper .swiper-slide {
        width: 25rem;
        height: 26rem;
        border-radius: 3rem;
        overflow: hidden;
        background-position: center;
        background-size: cover;
        background-color: transparent;
    }

    .hero .intro-sides .heroSwiper .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* SECTION : OPTIONS END */
    #home-landing > .landing-section {
        width: 100%;
        height: 35rem;
        margin-bottom: 3rem;
    }

    #home-landing > .landing-section > h3 {
        width: 100%;
    }


    /* SECTION : Home > Why Section Begin */
    #home-landing > #why-section {
        width: 100%;
        height: 45rem;
        margin-bottom: 25rem;
    }

    #home-landing > .two-col {
        display: flex;
        flex-direction: row;
    }

    #home-landing > .two-col .section-col {
        width: 100%;
        flex-grow: 1;
    }

    #home-landing > #why-section > .text-col {
        width: 80rem;
        height: 100%;
        display: flex;
        flex-grow: unset;
        flex-direction: column;
        align-items: start;
        justify-content: space-between;
        margin-left: 10rem;

    }

    #home-landing > #why-section > .text-col > .title {
        display: flex;
        align-items: center;
        justify-content: start;
    }

    #home-landing > #why-section > .text-col > h2 {
        font-size: 3.4rem;
    }

    #home-landing > #why-section > .text-col > p {
        text-align: justify;
        margin: 2rem 0;
        line-height: 200%;
        color: grey;
    }

    #home-landing > #why-section > .text-col > .buttons {
        width: 100%;
        height: fit-content;
    }

    #home-landing > #why-section > .text-col > .buttons .button {
        padding: 1rem 2rem;
        background-color: var(--black);
        border-radius: 5rem;
        color: white;
    }

    #home-landing > #why-section > .text-col > .buttons .button:hover {
        background-color: var(--darkerblack);
    }

    #home-landing > #why-section > .section-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-gap: 2rem;
    }

    #home-landing > #why-section > .section-grid > .item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: var(--lightestgrey);
        border-radius: 2rem;
    }

    #home-landing > #why-section > .section-grid > .item:hover {
        cursor: pointer;
    }

    #home-landing > #why-section > .section-grid > .active {
        background-color: var(--darkerblack);
        box-shadow: 0 1rem 4rem rgba(46, 47, 51, 0.15);
        transition: all 220ms ease-in;
        transform: translateY(-1rem);
    }

    #home-landing > #why-section > .section-grid > .item > .icon {
        font-size: 5rem;
        margin: 1.5rem 0;
        color: var(--lightgrey);
        transition: all 200ms ease-in;
    }

    #home-landing > #why-section > .section-grid > .item > p {
        width: 60%;
        font-weight: 200;
        text-align: center;
    }

    #home-landing > #why-section > .section-grid > .item > p:first-child {
        font-weight: 400;
        font-size: 1.8rem;
    }

    #home-landing > #why-section > .section-grid > .active > .icon,
    #home-landing > #why-section > .section-grid > .active > p {
        color: whitesmoke;
        transition: all 200ms ease-in;
    }

    #home-landing > #why-section > .section-grid > .active > .icon {
        background: linear-gradient(40deg, #757F9A, #D7DDE8);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* SECTION : Home > Why Section End */
    /* SECTION : Home > Tools Section Begin */
    #tools-section {
        margin-bottom: 10rem !important;
    }

    #tools-section .centered-col {
        align-items: center;
        justify-content: center;
    }

    #tools-section .centered-col h2,
    #tools-section .centered-col p {
        margin: auto;
        text-align: center;
    }

    #tools-section .centered-col h2 {
        width: 60%;
    }

    #tools-section .centered-col p {
        width: 45%;
        margin-top: 2rem;
    }

    #tools-section .centered-col #tools {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-top: 6rem;
    }

    #tools-section .centered-col #tools .tool {
        width: 17%;
        height: 18rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border: .2rem solid var(--lightestgrey);
        filter: drop-shadow(0 .5rem 0 var(--lightestgrey));
        background-color: #FFFFFF;
        border-radius: 2rem !important;
        transition: all 300ms ease-in;
        position: relative;
        padding-bottom: 2rem;
    }

    #tools-section .centered-col #tools .tool:hover {
        filter: drop-shadow(0 0rem 0 var(--lightestgrey));
        transition: all 300ms ease-in;
        transform: translateY(.5rem);
    }

    #tools-section .centered-col #tools .tool:hover .soon {
        opacity: 100%;
        transition: all 500ms;
    }

    #tools-section .centered-col #tools .disable i,
    #tools-section .centered-col #tools .disable span {
        color: var(--lightgrey);
    }

    #tools-section .centered-col #tools .disable .soon {
        background-color: var(--coal);
        border: .16rem solid var(--coal);
        color: whitesmoke;
        padding: .2rem .6rem;
        margin-top: 1rem;
        font-size: 1.4rem;
        border-radius: 2rem;
        font-weight: 600;
        position: absolute;
        bottom: 2rem;
        opacity: 0;
        transition: all 500ms;
    }

    #tools-section .centered-col #tools .disable:hover {
        filter: drop-shadow(0 .5rem 0 var(--lightestgrey)) !important;
        transform: translateY(0rem) !important;
    }

    #tools-section .centered-col #tools .tool .icon {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    #tools-section .centered-col #tools .tool span {
        font-size: 1.6rem;
    }

    /* SECTION : Home > Tools Section End */
    /* SECTION : Home > RozShomar Section Begin */
    #rozshomar-section {
        margin: 10rem 0rem 20rem !important;
    }

    #rozshomar-section .section-col #rs-image {
        width: 35rem;
    }

    #rozshomar-section .section-col .button {
        padding: .8rem 2rem;
        color: white;
        font-size: 1.8rem;
        font-weight: 300;
        border-radius: 6rem;
        margin-top: 10rem;
    }

    /* SECTION : Home > RozShomar Section End */
    /* SECTION : Home > Pricing Section Begin */
    #home-landing > #pricing-section {
        width: 100%;
        height: fit-content;
        margin-bottom: 15rem;
        border-radius: 2rem;
        padding: 2rem;
    }

    #home-landing > #pricing-section .section-content {
        display: flex;
    }

    #home-landing > #pricing-section .section-content > .subscription-content {
        width: 30%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        flex: 1 0 auto;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap {
        width: 100%;
        display: flex;
        background-color: var(--lightestgrey);
        border-radius: 2rem;
        justify-content: space-between;
        padding: 3rem;
        margin-right: 8rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table {
        width: 50%;
        border-radius: 1.5rem;
        box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.04);
        background-color: white;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table:nth-child(2) {
        margin-right: 3rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table:last-child {
        box-shadow: 33px 0px 80px rgba(0, 0, 0, 0.05);
    }

    #home-landing > #pricing-section .section-content > .subscription-content {
        margin-left: 0;
    }

    #home-landing > #pricing-section .section-content > .subscription-content .head,
    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head {
        width: 100%;
        height: 20rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 3rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content > .head {
        align-items: start;
    }

    #home-landing > #pricing-section .section-content > .subscription-content > .head h4,
    #home-landing > #pricing-section .section-content > .subscription-content > .head span {
        width: 100%;
        font-weight: 800;
        font-size: 3rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content > .head h4 > span {
        display: block;
        color: var(--alphabet-red);
        font-size: 3.5rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content > .head > span {
        font-size: 1.6rem;
        font-weight: 400;
        color: var(--grey);
        margin-top: 3rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head > .avatar {
        width: 10rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .vazifeh-pro .head > .avatar {
        filter: grayscale(100%);
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head > .plan-name {
        margin: 1rem 0rem;
        font-size: 2rem;
        font-weight: 500;
        color: var(--grey);
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table:nth-child(2) .head > .plan-name span {
        color: var(--black);
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head > .plan-name span {
        color: var(--alphabet-red);
        font-weight: 600;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head > .timespan {
        color: var(--grey);
        font-size: 1.6rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body {
        height: fit-content;
        padding: 3rem 0;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li,
    #home-landing > #pricing-section .section-content > .subscription-content .body ul li {
        width: 100%;
        height: 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 3rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body ul li p {
        font-size: 1.7rem;
        font-weight: 400;
        color: var(--darkgrey);
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body ul li p > .strong {
        font-weight: 600;
        color: var(--black);
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body ul li {
        justify-content: start;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul .button {
        margin-top: 7rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul .button a {
        background-color: var(--black);
        padding: 1rem 2rem;
        border-radius: 5rem;
        color: white;
        font-weight: 500;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul .outline a {
        border: .2rem solid var(--black);
        background-color: transparent;
        color: var(--black);
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li p {
        font-size: 1.8rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .icon {
        font-size: 2.5rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .not-accessed {
        color: var(--grey);
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .accessed,
    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .icon-tick-square-bold {
        color: var(--green);
        font-weight: 600;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .icon-cross-mark-sqaure {
        color: var(--grey);
    }

    /* SECTION : Home > Pricing Section End */
    /* SECTION : Home > Reviews Section Begin */
    #reviews {
        margin: 0 0 12rem !important;
    }

    #reviews .section-content {
        display: flex;
        flex-direction: row !important;
    }

    #reviews .section-content > .right {
        flex: 1;
    }

    #reviews .section-content > .right h2 {
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 3rem;
    }

    #reviews .section-content > .right p {
        font-size: 1.6rem;
        color: var(--grey);
        line-height: 200%;
        text-align: justify;
    }

    #reviews .section-content > .left {
        flex: 2;
        display: flex;
    }

    #reviews .section-content > .left > .mySwiper {
        width: 40rem;
        height: fit-content;
    }

    #reviews .section-content > .left > .mySwiper .swiper-slide {
        height: 28rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--lightestgrey);
        border-radius: 3rem;
    }

    #reviews .section-content > .left > .mySwiper .swiper-slide > img {
        width: 100%;
        height: auto;
        object-position: center;
    }


    /* SECTION : Home > Reviews Section End */
    /* SECTION : Home > Consultant Begin */
    #home-landing > #consultant-section {
        width: 100%;
        height: fit-content !important;
        background-color: var(--coal);
        border-radius: var(--4rem);
        padding: 5rem 3rem;
        display: flex;
    }

    #home-landing > #consultant-section .section-content {
        display: flex;
        flex: 1 0 auto;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    #home-landing > #consultant-section .section-content .img-wrap {
        height: 30rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #home-landing > #consultant-section .section-content .img-wrap > img {
        height: 100%;
    }

    #home-landing > #consultant-section .section-content .buttons {
        margin: 2rem 0 1rem;
    }

    #home-landing > #consultant-section .section-content .buttons > a {
        padding: .8rem 2rem;
        color: white;
        font-size: 1.8rem;
        font-weight: 300;
        border: .2rem solid whitesmoke;
        border-radius: 6rem;
    }

    #home-landing > #consultant-section .section-content .buttons > .filled {
        background-color: white;
        color: var(--coal);
        font-weight: 500;
    }

    #home-landing > #consultant-section .section-content .buttons > a:hover {
        filter: brightness(85%);
    }

    #home-landing > #consultant-section .section-content .buttons > a:first-child {
        margin-left: 2rem;
    }

    #home-landing > #consultant-section .section-content .text p {
        font-size: 3.5rem;
        font-weight: 600;
        color: white;
    }

    #home-landing > #consultant-section .section-content img {
        filter: saturate(120%);
    }

    /* SECTION : Home > Consultant End */
    /* SECTION : Home > Blog Section Begin */
    #home-landing > #blog {
        margin-bottom: 20rem;
    }

    #home-landing > #blog .section-content {
        width: 100%;
        height: fit-content;
        margin-top: 2rem;
        display: flex;
        justify-content: space-between;
    }

    #home-landing > #blog .section-content .post {
        width: 27rem;
        height: fit-content;
        display: flex;
        padding: 1.5rem 1.5rem 4rem;
        flex-direction: column;
        border: .2rem solid transparent;
        border-radius: 2rem;
        transition: all 250ms ease-in;

    }

    #home-landing > #blog .section-content .post:hover {
        cursor: pointer;
        border-color: var(--lightestgrey);
        transition: all 250ms ease-in;

    }

    #home-landing > #blog .section-content .post:hover img {
        filter: grayscale(20%);
        transition: all 250ms ease-in;
    }

    #home-landing > #blog .section-content .post > img {
        width: 100%;
        height: 15rem;
        transition: all 100ms ease-in;
        filter: grayscale(80%);
        object-fit: cover;
        border-radius: 2rem;
        margin-bottom: 2rem;
    }

    #home-landing > #blog .section-content .post > .details .cat {
        font-size: 1.4rem;
        margin: 1.4rem 0 .4rem;
        display: block;
        color: var(--grey);
    }

    #home-landing > #blog .section-content .post:hover > .details > .title {
        color: var(--alphabet-red);
    }

    #home-landing > #blog .section-content .post > .details > .title {
        font-size: 1.8rem;
        font-weight: 500;
    }

    #home-landing > #blog .section-content .post > .details > p {
        font-size: 1.4rem;
        margin-top: 1.4rem;
        color: var(--grey);
        text-align: justify;

    }

    /* SECTION : Home > Blog Section End */
    /* SECTION : Home End */
    /* SECTION : Article Begin */
    #article {
        margin-bottom: 10rem;

    }

    /* SECTION : Article > Breadcrumb Begin */
    #article .head > #breadcrumbs {
        width: 100%;
        display: flex;
        margin-bottom: 2rem;
    }

    #article .head > #breadcrumbs .breadcrumb-item {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #article .head > #breadcrumbs .breadcrumb-item .icon {
        margin: 0 1rem;
    }

    /* SECTION : Article > Breadcrumb End */
    #article .head > .title-wrap > h1 {
        text-align: center;
        font-size: 3rem;
    }

    #article .head > .title-wrap #thumbnail {
        width: 100%;
        height: 40rem;
        border-radius: 2rem;
        object-fit: cover;
        margin: 4rem 0rem 2rem;
    }

    #article .head > .title-wrap .details,
    #article .head > .title-wrap .details .detail {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #article .head > .title-wrap .details .detail {
        margin-left: 2rem;
    }

    #article .head > .title-wrap .details .detail .icon {
        margin: 0 1rem;
    }

    /* SECTION : Article > Title End */
    /* SECTION : Article > Content Begin */
    #article > #content-wrapper {
        height: fit-content;
        margin: 6rem auto;
        display: flex;
        justify-content: space-between;
    }

    #article > #content-wrapper #content {
        width: 100%;
        height: 100%;
    }

    #article > #content-wrapper #content p {
        text-align: justify;
        margin-bottom: 4rem;
    }

    /* SECTION : Article > Content > Author Begin */
    #article > #content-wrapper #author {
        width: 100%;
        height: fit-content;
        padding: 1.5rem;
        border-radius: 2rem;
        margin: 2rem 0;
    }

    #article > #content-wrapper #author .head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1rem;
    }

    #article > #content-wrapper #author .head .user-profile {
        height: 6rem;
        display: flex;
        align-items: center;
    }

    #article > #content-wrapper #author .head .user-profile img {
        width: 5rem;
        height: 5rem;
        padding: .6rem;
        background-color: var(--lightgrey);
        border-radius: 5rem;
    }

    #article > #content-wrapper #author .head .user-profile p {
        margin-right: 1rem;
        font-size: 1.6rem;
        font-weight: 500;
    }

    #article > #content-wrapper #author > p {
        color: var(--grey);
        text-align: justify;
    }

    #article > #content-wrapper #author .head .authors-articles {
        text-decoration: underline;
        color: var(--pantome);
    }

    #article > #content-wrapper #author .head .authors-articles:hover {
        color: var(--pantomeDark);
    }

    /* SECTION : Article > Content > Author End */
    /* SECTION : Article > Content > Side-bar Begin */
    #article > #content-wrapper > aside {
        width: 35rem;
        height: fit-content;
        margin-right: 8rem;
    }

    #article > #content-wrapper > aside .widget {
        border-radius: 1.5rem;
        overflow: hidden;
        margin-bottom: 3rem;
    }

    #article > #content-wrapper > aside .ad-widget {
        width: 100%;
        height: 20rem;
        background-color: var(--grey);
    }

    #article > #content-wrapper > aside .sidebar-widget {
        display: flex;
        flex-direction: column;
    }

    #article > #content-wrapper > aside .sidebar-widget > .head {
        width: 100%;
        padding: 2rem 0 1rem;
    }

    #article > #content-wrapper > aside .sidebar-widget > .body {
        width: 100%;
        height: fit-content;
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul {
        width: 100%;
        height: 100%;
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link {
        width: 100%;
        height: 8rem;
        margin-bottom: 1rem;
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link:hover {
        cursor: pointer;
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link:hover .text > span {
        color: var(--alphabet-red);
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link a {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link a .img {
        display: none;
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link a .text {
        display: flex;
        flex-direction: column;
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link a .text span {
        line-height: 180%;
        font-weight: 500;
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link a .text > .post-det {
        width: 100%;
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link a .text > .post-det .item {
        width: 100%;
        display: flex;
        align-items: center;
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link a .text > .post-det .item > span,
    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link a .text > .post-det .item > .icon {
        font-size: 1.4rem;
        font-weight: 400;
        color: var(--grey);
    }

    #article > #content-wrapper > aside .sidebar-widget > .body ul .list-link a .text > .post-det .item > .icon {
        margin-left: .6rem;
        font-size: 1.6rem;
    }

    /* SECTION : Article > Content > Main Begin */
    #article > #content-wrapper main {
        width: 72rem;
        height: fit-content;
    }

    #article > #content-wrapper main p {
        line-height: 230%;
    }

    #article > #content-wrapper main h2,
    #article > #content-wrapper main h3 {
        margin: 1.6rem 0;
    }


    /* SECTION : Article > Content > Side-bar End */
    /* SECTION : Article > Content > Main End */
    /* SECTION : Article > Content End */
    /* SECTION : Article End */
    /* SECTION : More-Articles Begin */
    #more-articles {
        display: flex;
        flex-direction: column;
    }

    #more-articles .head {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 5rem;
    }

    #more-articles .head p {
        width: fit-content;
        color: var(--black);
        height: fit-content;
        font-weight: 600;
        display: inline-flex;
        margin-left: 3rem;
        font-size: 2rem;
    }

    #more-articles .head .hr {
        flex-grow: 1;
        height: .1rem;
        background-color: var(--lightgrey);
    }

    #more-articles .body {
        height: fit-content;
        display: flex;
        justify-content: space-between;
    }

    #more-articles .body .blog-item {
        width: 22rem;
        height: fit-content;
        overflow: hidden
    }

    #more-articles .body .blog-item:hover {
        cursor: pointer;
    }

    #more-articles .body .blog-item .top-wrap {
        display: flex;
        flex-direction: column;
    }

    #more-articles .body .blog-item img {
        width: 100%;
        height: 14rem;
        object-fit: cover;
        margin-bottom: 1rem;
        border-radius: 1.4rem;
    }

    #more-articles .body .texts > h3,
    #more-articles .body .texts > span {
        padding: 0 1rem;
    }

    #more-articles .body .texts > h3 {
        margin-bottom: 1rem;
        font-size: 1.8rem;
        font-weight: 600;
    }

    #more-articles .body .blog-item:hover h3 {
        color: var(--pantome);
        transition: all 350ms;
    }


    #more-articles .body .texts > span {
        display: block;
        margin: auto;
        text-align: justify;
        font-size: 1.4rem;
        color: var(--grey);
    }

    #more-articles .body .blog-item > .details {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #more-articles .body .blog-item > .details .hr {
        height: .1rem;
        flex-grow: 1;
        background-color: var(--lightgrey);
        margin: 0 2rem;
        opacity: .5;
    }

    #more-articles .body .blog-item > .details .detail-item strong,
    #more-articles .body .blog-item > .details .detail-item span {
        font-size: 1.3rem;
        font-weight: 400;
        color: var(--coal);
    }

    /* SECTION : More-Articles End */
    /* SECTION : RozShomar Begin */
    #rozshomar .version-num {
        width: 100%;
        text-align: center;
        color: var(--lightgrey);
        font-size: 1.5rem;
        display: block;
        margin-top: 6rem;
    }

    /* SECTION : RozShomar > Content Begin */
    #rozshomar > #content {
        width: 75%;
        height: fit-content;
        margin: auto;
    }

    #rozshomar > #content > * {
        line-height: 200%;
    }

    #rozshomar > #content > p {
        text-align: justify;
    }

    #rozshomar > #content strong {
        font-weight: 600;
    }

    #rozshomar > #content a {
        color: var(--alphabet-red);
    }

    #rozshomar > #content a:hover {
        color: var(--alphabet-dark-red);
    }

    /* SECTION : RozShomar > Content End */
    #rozshomar > #progress-steps {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 6rem;
    }

    #rozshomar > #progress-steps .step {
        width: fit-content;
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 20rem;
    }

    #rozshomar > #progress-steps .step:last-child {
        margin-left: 0;
    }

    #rozshomar > #progress-steps .step > .step-dot {
        width: 3rem;
        height: 3rem;
        border-radius: 3rem;
        display: flex;
        border: .2rem solid var(--lightgrey);
        align-items: center;
        justify-content: center;
    }

    #rozshomar > #progress-steps .step > .active {
        background-color: var(--blue);
        border-color: var(--blue);
    }

    #rozshomar > #progress-steps .step > .semi-active {
        border-color: var(--blue);
    }

    #rozshomar > #progress-steps .step > .step-dot .inner-dot {
        width: 1rem;
        height: 1rem;
        background-color: var(--lightgrey);
        border-radius: 1rem;
    }

    #rozshomar > #progress-steps .step > .active .inner-dot {
        background-color: white;
    }

    #rozshomar > #progress-steps .step > .semi-active .inner-dot {
        background-color: var(--blue);
    }

    #rozshomar > #progress-steps .step > .step-level {
        font-weight: 600;
        margin: .6rem 0rem;
    }

    #rozshomar > #result-section {
        margin-top: 6rem;
        display: none;
    }

    #rozshomar > .show-result {
        display: block !important;
    }

    @keyframes fade-down {
        0% {
            visibility: hidden;
            transform: translateY(-2rem);
            opacity: 0;
        }
        to {
            transform: translateY(0rem);
            opacity: 1;
            visibility: visible;
        }
    }
    @keyframes fade-up {
        0% {
            visibility: hidden;
            transform: translateY(2rem);
            opacity: 0;
        }
        to {
            transform: translateY(0rem);
            opacity: 1;
            visibility: visible;
        }
    }

    #rozshomar > #result-section .user-preview {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #rozshomar > #result-section .user-preview .avatar {
        width: 13rem;
        padding: 2rem;
        background-color: var(--lightgrey);
        border-radius: 4rem;
        visibility: hidden;
    }

    #rozshomar > #result-section .user-preview > .show {
        animation: fade-down;
        animation-duration: 500ms;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
    }

    #rozshomar > #result-section .user-preview strong {
        font-size: 1.8rem;
        margin-top: 2rem;
    }

    #rozshomar > #result-section .ms-preview {
        display: flex;
        justify-content: center;
        margin: 3rem 0rem;
    }

    #rozshomar > #result-section .ms-preview > .item {
        min-width: 20rem;
        visibility: hidden;
    }

    #rozshomar > #result-section .ms-preview > .show {
        animation: fade-up;
        animation-duration: 500ms;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
    }

    #rozshomar > #result-section .ms-preview .cd-item .item {
        min-width: 13rem;
    }

    #rozshomar > #result-section .ms-preview > .item,
    #rozshomar > #result-section .ms-preview .cd-item .item {
        background-color: var(--lightestgrey);
        margin-left: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 3rem;
        padding: 2.5rem 2rem;
    }


    #rozshomar > #result-section .ms-preview > .item > p {
        padding: 0 1rem;
    }

    #rozshomar > #result-section .ms-preview > .item:last-child {
        margin-left: 0;
    }

    #rozshomar > #result-section .ms-preview > .item .progress-bar {
        width: 100%;
        height: .4rem;
        margin-top: 1rem;
        display: flex;
    }

    #rozshomar > #result-section .ms-preview > .item .progress-bar > .progress,
    #rozshomar > #result-section .ms-preview > .item .progress-bar > .remaining {
        height: 100%;
        border-radius: 1rem;
    }

    #rozshomar > #result-section .ms-preview > .item .progress-bar > .progress {
        width: 80%;
        background-color: var(--green);
    }

    #rozshomar > #result-section .ms-preview > .item .progress-bar > .remaining {
        width: 20%;
        margin-left: .4rem;
        background-color: var(--lightgrey);
    }

    /* SECTION : RozShomar > Setup Progress Begin */
    #rozshomar > #setup-progress {
        margin: 11rem 0;
    }

    #rozshomar > #setup-progress > .setup-item {
        width: 70%;
        margin: auto;
        height: fit-content;
        display: flex;
        flex-direction: column;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row {
        width: 100%;
        height: fit-content;
        display: flex;
        margin-bottom: 4rem;
    }


    #rozshomar > #setup-progress > .setup-two,
    #rozshomar > #setup-progress > .setup-three {
        display: none;
    }

    #rozshomar > #setup-progress > .setup-buttons {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    #rozshomar > #setup-progress > .setup-item .setup-button {
        width: fit-content;
        padding: .6rem 1rem;
        border-radius: .7rem;
        border-color: transparent;
        background-color: var(--pantome);
        color: white;
        display: block;
    }

    #rozshomar > #setup-progress > .setup-item #prev-item {
        display: none;
    }

    #rozshomar > #setup-progress > .setup-item .setup-button:hover {
        cursor: pointer;
        background-color: var(--pantomeDark);
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap {
        height: fit-content;
        flex-grow: 1;
        margin-left: 8rem;
        display: flex;
        flex-direction: column;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap:last-child {
        margin-left: 0;
    }

    #rozshomar > #setup-progress > .setup-item > .input-wrap:last-child,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap:last-child {
        margin-left: 0;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker {
        width: 100%;
        height: fit-content;
        display: flex;
        align-items: center;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item {
        flex-grow: 1;
        margin-left: 1rem;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item:last-child {
        margin-left: 0;
    }

    #rozshomar > #setup-progress > .setup-item > .input-wrap span,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap span,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item span {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item span {
        font-size: 1.5rem;
        font-weight: 400;
        display: block;
        margin-bottom: 1rem;
    }


    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap input,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap select,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item input {
        width: 100%;
        height: fit-content;
        padding: 1.3rem 2rem;
        border-radius: 1rem;
        outline: none;
        border: .2rem solid var(--lightestgrey);
        font-size: 1.6rem;
        font-family: 'PeydaWebFaNum';
        background-color: var(--lightestgrey);
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .error {
        border-color: var(--alphabet-red);
    }

    #rozshomar > #setup-progress > .setup-item > .input-wrap input:focus,
    #rozshomar > #setup-progress > .setup-item > .input-wrap select:focus,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item input:focus {
        background-color: white;
        border-color: var(--pantome);
    }

    /* HTML: <div class="loader"></div> */
    #rozshomar > #setup-progress > .setup-item #loader-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #rozshomar > #setup-progress > .setup-item #loader-wrap span {
        font-size: 1.7rem;
    }

    .loader {
        width: 3.2rem;
        aspect-ratio: 1;
        --_g: no-repeat radial-gradient(farthest-side, #3a3a3a 90%, #0000);
        background: var(--_g), var(--_g), var(--_g), var(--_g);
        background-size: 40% 40%;
        margin-bottom: 3rem;
        animation: l46 1s infinite;
    }

    @keyframes l46 {
        0% {
            background-position: 0 0, 100% 0, 100% 100%, 0 100%
        }
        40%,
        50% {
            background-position: 100% 100%, 100% 0, 0 0, 0 100%
        }
        90%,
        100% {
            background-position: 100% 100%, 0 100%, 0 0, 100% 0
        }
    }

    /* SECTION : RozShomar > Setup Progress End */
    /* SECTION : RozShomar > CountDown Begin */
    #rozshomar > #result-section .ms-preview .cd-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #rozshomar > #result-section .ms-preview .colon {
        height: 10.1rem;
        margin: 4rem 2rem 0;
        font-size: 1.6rem;
        display: flex;
        align-items: center;
        font-weight: 600;
        justify-content: center;
    }

    #rozshomar > #result-section .ms-preview .cd-item > span {
        font-size: 1.6rem;
        color: var(--lightgrey);
        margin-bottom: 1.2rem;
    }

    #rozshomar > #result-section .ms-preview .cd-item .item {
        padding: 2rem;
        border-radius: 2rem;
        margin: 0
    }

    #rozshomar > #result-section .ms-preview .cd-item .item > p {
        font-weight: 600;
        font-size: 3rem;
    }

    /* SECTION : RozShomar > CountDown End */
    /* SECTION : RozShomar > Graffito Begin */
    #rozshomar > #result-section #graffito {
        width: 70rem;
        /*height: 45rem;*/
        margin: 5rem auto;
        object-fit: cover;
        border: .2rem solid var(--lightgrey);
        border-radius: 3rem;
        padding: 3rem;
    }

    /* SECTION : RozShomar > Graffito End */
    /* SECTION : RozShomar End */
    /* SECTION : Blog Begin */
    #blog #page-title {
        width: 100%;
        margin-bottom: 5rem;
    }

    #blog #page-title > h1 {
        font-size: 5rem;
    }

    #blog #page-title > h1 .dot {
        color: var(--alphabet-red);
    }

    /* SECTION : Blog > Pinned Article Begin */
    #blog > #pinned-article {
        width: 100%;
        height: 36rem;
        background-color: #5fc057;
        border-radius: 3rem;
        overflow: hidden;
        position: relative;
        display: block;
    }

    #blog > #pinned-article:hover {
        cursor: pointer;
    }

    #blog > #pinned-article:hover > img {
        transform: scale(1.02);
        transition: all 200ms;
    }

    #blog > #pinned-article > img {
        width: 100%;
        height: 40rem;
        object-fit: cover;
        margin: 0;
        z-index: 1;
        transition: all 200ms;
    }

    #blog > #pinned-article > .hidden {
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 500;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
    }

    #blog > #pinned-article > .article-detail {
        width: 100%;
        height: fit-content;
        position: absolute;
        bottom: 0rem;
        right: 0rem;
        padding: 4rem;
        z-index: 100 !important;
    }

    #blog > #pinned-article > .article-detail:before {
        content: '';
        width: 100%;
        height: 40rem;
        position: absolute;
        bottom: 0rem;
        right: 0rem;
        left: 0;
        background: linear-gradient(0deg, black, rgba(0, 0, 0, 0.81), rgba(0, 0, 0, 0));
        opacity: .6;
        z-index: -1;
    }

    #blog > #pinned-article > .article-detail * {
        color: white;
    }

    #blog > #pinned-article > .article-detail .category {
        padding: .4rem 1rem;
        border: .1rem solid var(--white-marble);
        border-radius: 3rem;
        background-color: rgba(0, 0, 0, 0.2);
        transition: all 250ms;
    }

    #blog > #pinned-article > .article-detail .category:hover {
        transition: all 250ms;
        background-color: rgba(0, 0, 0, 0.4);
    }

    #blog > #pinned-article > .article-detail h2 {
        margin: 1rem 0;
    }

    #blog > #pinned-article > .article-detail p {
        font-weight: 300;
    }

    #blog > .title-wrap {
        width: 100%;
        height: fit-content;
        margin: 6rem 0 2rem;
        display: flex;
    }

    #blog > .title-wrap > h2 {
        font-size: 2rem;
    }

    #blog > #articles {
        width: 100%;
        display: grid;
        margin-top: 3rem;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        gap: 7rem 6rem;
    }

    #blog > #articles .article-item {
        overflow: hidden;
        float: right;
    }

    #blog > #articles .article-item > img {
        width: 100%;
        height: 16rem;
        border-radius: 2rem;
        object-fit: cover;
        margin-bottom: 1rem;
    }

    #blog > #articles .article-item > p {
        margin-top: 1rem;
        font-size: 1.4rem;
        color: var(--grey);
    }

    #blog > #articles .article-item a {
        line-height: 175%;
    }

    #blog > #articles .article-item:hover {
        cursor: pointer;
    }

    #blog > #articles .article-item:hover > a {
        color: var(--blue);
    }

    #blog > #articles .article-item > a * {
        font-size: 1.8rem;
        text-align: justify;
        font-weight: 600;
    }

    #blog > #more-loader {
        width: 100%;
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 6rem;
    }

    #blog > #more-loader #load-more {
        padding: 1rem 1.9rem;
        border-radius: 1.2rem;
        background-color: var(--black);
        color: white;
        font-size: 1.6rem;
        border: none;
    }

    #blog > #more-loader #load-more:hover {
        cursor: pointer;
        background-color: var(--darkerblack);
    }

    /* SECTION : Blog > Pinned Article End */
    /* SECTION : Category Begin */
    #blog > #categoryList {
        display: grid;
        grid-template-columns: repeat(4, minmax(5rem, 32rem));
        grid-template-rows: auto;
        grid-gap: 8rem 2rem;

    }

    #blog > #categoryList > .article-item {
        border-radius: 3.5rem;
        transition: all 300ms ease-in;
        border: .2rem solid transparent;
        padding: 1.5rem;
    }

    #blog > #categoryList > .article-item:hover {
        border: .2rem solid var(--lightestgrey);
    }

    #blog > #categoryList > .article-item > .img {
        width: 18rem;
        height: 18rem;
        border-radius: 3rem;
        margin: 0rem !important;
    }

    #blog > #categoryList > .article-item:hover .img > img {
        transform: scale(1.05);
        transition: all ease-in 150ms;
        transition-delay: 150ms;
    }

    #blog > #categoryList > .article-item > h3 {
        width: 100%;
        font-size: 1.8rem;
        margin-top: 2rem;
    }

    #blog > #categoryList > .article-item:hover > h3 {
        color: var(--alphabet-dark-red);
    }

    #blog > #categoryList > .article-item > p {
        width: 100%;
        text-align: justify;
        font-size: 1.4rem;
        margin: 1rem 0;
        color: #747474;
    }

    #blog > #contentBox {
        width: 80%;
        margin: 10rem auto;
    }

    /* SECTION : Category End */
    /* SECTION : Blog End */
    /* SECTION : About Begin */
    #about-us h1 {
        visibility: hidden;
    }

    #about-us h2,
    #about-us h2 * {
        font-size: 4.4rem;
        line-height: 200%;
        color: var(--grey);
        text-align: justify;
        font-weight: 700;
    }

    #about-us .highlight,
    #about-us .highlight * {
        /*color: var(--alphabet-red);*/
        color: var(--black);
    }

    #about-us > .page-section img {
        width: 100%;
        height: 34rem;
        background-color: var(--darkgrey);
        margin: 4rem 0;
        border-radius: 3rem;
    }

    #about-us > .page-section {
        display: flex;
        margin: 3rem auto 6rem;
        align-items: center;
        flex-direction: column;
    }

    #about-us > .page-section > .section-item {
        flex-grow: 1;
        margin-right: 4rem;
        display: flex;
        justify-content: start;
    }

    #about-us > .two-col {
        flex-direction: row;
    }

    #about-us > .two-col .text {
        display: block;
    }

    #about-us > .two-col .text p {
        font-size: 1.8rem;
        line-height: 200%;
        text-align: justify;
    }

    #about-us > .two-col .text h3 {
        margin-bottom: 2rem;
    }

    #about-us > .page-section > .stats {
        width: 25rem;
        height: fit-content;
        border-left: .1rem solid var(--lightgrey);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    #about-us > .page-section > .stats .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 3rem;
    }

    #about-us > .page-section > .stats .stat-item > p {
        font-size: 3rem;
    }

    #about-us > .page-section > .stats .stat-item > span {
        font-size: 1.6rem;
        font-weight: 300;
        color: var(--grey);
    }

    #about-us #do-dont-section {
        flex-direction: column;
        align-items: start;
    }

    #about-us > #reasons {
        width: 100%;
        height: 40rem;
        margin: 8rem 0rem;
    }

    #about-us > #reasons > .row {
        border-top: .1rem solid var(--lightgrey);
        border-bottom: .1rem solid var(--lightgrey);
        z-index: -1;
    }

    #about-us > #reasons > .row:last-child {
        border-top: none;
    }

    #about-us > #reasons > .row .container {
        display: flex;
    }

    #about-us > #reasons > .row .container .item {
        display: flex;
        flex-grow: 1;
        flex-direction: column;
        padding: 4rem;
        border-right: .1rem solid var(--lightgrey);
        transition: 400ms all;
    }

    #about-us > #reasons > .row .container .item:hover {
        cursor: pointer;
        box-shadow: 0rem 0rem 3rem #dadce6;
        transition: 400ms all;
        border: none;
        z-index: 5000;
    }

    #about-us > #reasons > .row .container .item:last-child {
        border-left: .1rem solid var(--lightgrey);
    }

    #about-us > #reasons > .row .container .item > strong {
        font-size: 3rem;
        font-weight: 400;
        margin-bottom: 1rem;
    }

    #about-us > #reasons > .row .container .item > span,
    #about-us > #reasons > .row .container .item > p {
        color: var(--grey);
    }

    #about-us > #cta {
        width: 80rem;
        background-color: #3259E8;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 6rem 3rem;
        border-radius: 4rem;
        margin: 2rem auto;
    }

    #about-us > #cta .avatar > img {
        width: 8rem;
        height: 8rem;
    }

    #about-us > #cta .avatar {
        background-color: rgba(194, 196, 204, 0.4);
        border-radius: 6rem;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
    }

    #about-us > #cta p {
        color: white;
        font-size: 3rem;
        text-align: center;
        font-weight: 500;
    }

    #about-us > #cta p > span {
        font-size: 1.8rem;
        text-align: center;
        font-weight: 300;
    }

    #about-us > #cta a {
        margin-top: 2rem;
        padding: 1rem 2rem;
        background-color: white;
        border-radius: 5rem;
        font-weight: 600;
    }

    /* SECTION : About End */
    /* SECTION : ContactUs Begin */
    #contact-us {
        height: fit-content;
        text-align: center;
        margin-top: 6rem;
        display: block;
    }

    #contact-us > #contactMethods {
        width: 100rem;
        margin-top: 6rem;
        display: flex;
        justify-content: space-between;
    }

    #contact-us > #contactMethods > .method {
        width: 100%;
        border: .1rem solid var(--lightgrey);
        padding: 8rem 4rem 3rem;
        border-radius: 1rem;
        display: flex;
        align-items: start;
        justify-content: end;
        flex-direction: column;
        margin-left: 4rem;
        flex-grow: 1;
    }

    #contact-us > #contactMethods > .method:last-child {
        margin-left: 0;
    }

    #contact-us > #contactMethods > .method span {
        margin: .6rem 0rem;
        font-size: 1.5rem;
        text-align: right;
    }

    #contact-us > #contactMethods > .method a {
        direction: ltr;
    }

    /* SECTION : ContactUs End */
    /* SECTION : Footer Begin */
    footer {
        width: 100%;
        height: fit-content;
        margin-top: 14rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    footer .footer-layout {
        padding: 2rem;
        flex-grow: 1;
    }

    footer .footer-layout:last-child {
        width: 50%;
        flex-grow: 2;
    }

    footer .links {
        width: 50%;
        display: flex;
        align-items: center;
        flex-grow: 2;
    }

    footer .links a {
        margin-left: 3rem;
        font-size: 1.5rem;
    }

    footer .links a:last-child {
        margin-left: 0;
    }

    footer .avatar-layout {
        width: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-layout > .avatar-wrap {
        width: 4rem;
        height: 4rem;
        overflow: hidden;
        padding: .4rem;
        background-color: var(--white-marble);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5rem;
        grid-column: 3 / 4;
    }

    .footer-layout > .avatar-wrap > img {
        width: auto;
        height: 100%;
    }

    /* SECTION : Footer End */
    /* SECTION : Search Begin */
    #search > .head {
        width: 100%;
        height: 15rem;
    }

    #search > #results {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 3rem;
        padding: 2rem;
        border-radius: 2rem;
    }

    #search > #results .result-item {
        height: 22rem;
        border-radius: 2rem;
    }

    #search > #results .result-item .img-wrap {
        width: 18rem;
        height: 18rem;
        border-radius: 2rem;
        margin-right: 2rem;
    }

    #search > #results .result-item .img-wrap img {
        width: 100%;
        height: 100%;
        border: none;
        outline: none;
        object-fit: cover;
        display: none;
    }

    #search > #results .result-item .txt-wrap {
        padding: 2.5rem 0 0 2rem;
        margin-right: 2rem;
    }

    #search > #results .result-item .txt-wrap h2 {
        font-size: 2rem;
    }

    /* SECTION : Search End */
}

/* Medium devices (landscape tablets, 768px and up) */
@media screen and (min-width: 768px) and (max-width: 992px) {
    .container {
        width: 75rem;
        /*background-color: orange;*/
    }

    /* SECTION : Header Begin */
    header {
        width: 100%;
        height: 10rem;
    }

    .header-wrap {
        height: 100%;
    }

    .header-wrap .logo .icon {
        font-size: 5rem;
    }

    .header-wrap .h-button > a {
        padding: 1rem 1.5rem;
        border-radius: 3rem;
        border: .2rem solid var(--grey);

    }

    .header-wrap .menu {
        flex-grow: 1;
        margin: 0 3rem;
    }

    .header-wrap .menu .menu-link {
        height: 100%;
        margin-right: 3rem;
    }

    .header-wrap .menu .menu-link > .sub-menu {
        width: 16rem;
        position: absolute;
        top: 6rem;
        display: none;
        flex-direction: column;
        padding: 0 1rem;
        border-radius: .8rem;
        border: .2rem solid lightgray;
    }

    .header-wrap .menu .menu-link:hover .sub-menu {
        display: flex;
    }

    .header-wrap .menu .menu-link .sub-menu li {
        padding: .6rem 0;
    }

    .header-wrap .h-button > #menu-btn {
        display: none;
    }

    /* SECTION : Header End */
    /* SECTION : Mobile Navigation Begin */
    #mobile-nav {
        display: none;
    }

    /* SECTION : Mobile Navigation End */
    /* SECTION : Home Begin */
    #home-landing {
        height: fit-content;
    }

    .hero {
        height: 45rem;
        margin-bottom: 40rem;
        display: flex;
        align-items: center;
        flex-direction: column;
        margin-top: 10rem;
    }

    .hero .intro-sides {
        flex-grow: 1;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .hero .intro-sides > p {
        width: 60%;
        text-align: center;
        font-size: 1.7rem;
        font-weight: 300;
        margin-top: 1rem;
        color: var(--grey);
    }

    .hero .intro-sides > img {
        width: 100%;
        margin-top: 10rem;
    }

    .hero .intro-sides .buttons {
        width: fit-content;
        height: fit-content;
        display: flex;
        margin-top: 6rem;
    }

    .hero .intro-sides .buttons .button {
        padding: .8rem 2rem;
    }

    .hero .intro-sides .buttons .button:first-child {
        margin-left: 2rem;
    }

    .hero .intro-sides .buttons .filled {
        background-color: var(--black);
        border-radius: 3rem;
        font-size: 1.8rem;
        color: white;
    }

    .hero .intro-sides .buttons .filled:hover {
        background-color: var(--darkerblack);
    }

    .hero .intro-sides .buttons .outline {
        border: .2rem solid var(--black);
        border-radius: 5rem;
    }

    .hero .intro-sides .buttons .outline:hover {
        background-color: var(--lightestgrey);
    }

    .hero .intro-sides h2 {
        margin-bottom: 1rem;
        font-size: 4.5rem;
    }

    /* SECTION : OPTIONS BEGIN */
    .hero .intro-sides .heroSwiper {
        width: 100%;
    }

    .features {
        width: 80%;
        margin-top: 5rem;
        background-color: powderblue;
    }

    .hero .intro-sides .heroSwiper .swiper-slide {
        width: 23rem;
        height: 24rem;
        border-radius: 3rem;
        overflow: hidden;
        background-position: center;
        background-size: cover;
        background-color: transparent;
    }

    .hero .intro-sides .heroSwiper .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* SECTION : OPTIONS END */
    #home-landing > .landing-section {
        width: 100%;
        height: 35rem;
        margin-bottom: 3rem;
    }

    #home-landing > .landing-section > h3 {
        width: 100%;
    }


    /* SECTION : Home > Why Section Begin */
    #home-landing > #why-section {
        width: 100%;
        height: fit-content;
        margin-bottom: 25rem;
        flex-direction: column;
    }

    #home-landing > .two-col {
        height: fit-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    #home-landing > .two-col .section-col {
        width: 100%;
        flex-grow: 1;
    }

    #home-landing > #why-section > .text-col {
        width: fit-content;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        /*margin-bottom: 5rem;*/

    }

    #home-landing > #why-section > .text-col > .title {
        display: flex;
        align-items: center;
        justify-content: start;
    }

    #home-landing > #why-section > .text-col > h2 {
        font-size: 3.4rem;
    }

    #home-landing > #why-section > .text-col > p {
        width: 80%;
        margin: 2rem 0;
        text-align: center;
        line-height: 200%;
        color: grey;
    }

    #home-landing > #why-section > .text-col > .buttons {
        width: 100%;
        height: fit-content;
        display: flex;
    }

    #home-landing > #why-section > .text-col > .buttons .button {
        padding: 1rem 2rem;
        background-color: var(--black);
        border-radius: 5rem;
        color: white;
    }

    #home-landing > #why-section > .text-col > .buttons .button:hover {
        background-color: var(--darkerblack);
    }

    #home-landing > #why-section > .section-grid {
        width: 100%;
        height: fit-content;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 18rem);
        grid-gap: 4rem 3rem;
        margin-top: 5rem;
    }

    #home-landing > #why-section > .section-grid > .item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: var(--lightestgrey);
        border-radius: 2rem;
    }

    #home-landing > #why-section > .section-grid > .item:hover {
        cursor: pointer;
    }

    #home-landing > #why-section > .section-grid > .active {
        background-color: var(--darkerblack);
        box-shadow: 0 1rem 4rem rgba(46, 47, 51, 0.15);
        transition: all 220ms ease-in;
        transform: translateY(-1rem);
    }

    #home-landing > #why-section > .section-grid > .item > .icon {
        font-size: 5rem;
        margin: 1.5rem 0;
        color: var(--lightgrey);
        transition: all 200ms ease-in;
    }

    #home-landing > #why-section > .section-grid > .item > p {
        width: 60%;
        font-weight: 200;
        text-align: center;
    }

    #home-landing > #why-section > .section-grid > .item > p:first-child {
        font-weight: 400;
        font-size: 1.8rem;
    }

    #home-landing > #why-section > .section-grid > .active > .icon,
    #home-landing > #why-section > .section-grid > .active > p {
        color: whitesmoke;
        transition: all 200ms ease-in;
    }

    #home-landing > #why-section > .section-grid > .active > .icon {
        background: linear-gradient(40deg, #757F9A, #D7DDE8);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* SECTION : Home > Why Section End */
    /* SECTION : Home > Tools Section Begin */
    #tools-section {
        margin-bottom: 10rem !important;
    }

    #tools-section .centered-col {
        align-items: center;
        justify-content: center;
    }

    #tools-section .centered-col h2,
    #tools-section .centered-col p {
        margin: auto;
        text-align: center;
    }

    #tools-section .centered-col h2 {
        width: 60%;
    }

    #tools-section .centered-col p {
        width: 45%;
        margin-top: 2rem;
    }

    #tools-section .centered-col #tools {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-top: 6rem;
    }

    #tools-section .centered-col #tools .tool {
        width: 18%;
        height: 15rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border: .2rem solid var(--lightestgrey);
        filter: drop-shadow(0 .5rem 0 var(--lightestgrey));
        background-color: #FFFFFF;
        border-radius: 2rem !important;
        transition: all 300ms ease-in;
        position: relative;
        padding-bottom: 2rem;
    }

    #tools-section .centered-col #tools .tool:hover {
        filter: drop-shadow(0 0rem 0 var(--lightestgrey));
        transition: all 300ms ease-in;
        transform: translateY(.5rem);
    }

    #tools-section .centered-col #tools .tool:hover .soon {
        opacity: 100%;
        transition: all 500ms;
    }

    #tools-section .centered-col #tools .disable i,
    #tools-section .centered-col #tools .disable span {
        color: var(--lightgrey);
    }

    #tools-section .centered-col #tools .disable .soon {
        background-color: var(--coal);
        border: .16rem solid var(--coal);
        color: whitesmoke;
        padding: .2rem .6rem;
        margin-top: 1rem;
        font-size: 1.4rem;
        border-radius: 2rem;
        font-weight: 600;
        position: absolute;
        bottom: 2rem;
        opacity: 0;
        transition: all 500ms;
    }

    #tools-section .centered-col #tools .disable:hover {
        filter: drop-shadow(0 .5rem 0 var(--lightestgrey)) !important;
        transform: translateY(0rem) !important;
    }

    #tools-section .centered-col #tools .tool .icon {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    #tools-section .centered-col #tools .tool span {
        font-size: 1.6rem;
    }

    /* SECTION : Home > Tools Section End */
    /* SECTION : Home > RozShomar Section Begin */
    #rozshomar-section {
        margin: 10rem 0rem 20rem !important;
        flex-direction: column!important;
    }
    #rozshomar-section .section-col {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 3rem;
    }
    #rozshomar-section .section-col #rs-image {
        width: 35rem;
    }

    #rozshomar-section .section-col .button {
        padding: .8rem 2rem;
        color: white;
        font-size: 1.8rem;
        font-weight: 300;
        border-radius: 6rem;
        margin-top: 10rem;
    }

    /* SECTION : Home > RozShomar Section End */
    /* SECTION : Home > Pricing Section Begin */
    #home-landing > #pricing-section {
        width: 100%;
        height: fit-content;
        margin-bottom: 15rem;
        border-radius: 2rem;
        padding: .5rem;
    }

    #home-landing > #pricing-section .section-content {
        display: flex;
    }

    #home-landing > #pricing-section .section-content > .subscription-content {
        width: 24%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        flex: 1 0 auto;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap {
        width: 100%;
        display: flex;
        background-color: var(--lightestgrey);
        border-radius: 2rem;
        justify-content: space-between;
        padding: 1.5rem;
        margin-right: 4rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table {
        width: 50%;
        border-radius: 1.5rem;
        box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.04);
        background-color: white;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table:nth-child(2) {
        margin-right: 1.5rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table:last-child {
        box-shadow: 33px 0px 80px rgba(0, 0, 0, 0.05);
    }

    #home-landing > #pricing-section .section-content > .subscription-content {
        margin-left: 0;
    }

    #home-landing > #pricing-section .section-content > .subscription-content .head,
    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head {
        width: 100%;
        height: 20rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 3rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content > .head {
        align-items: start;
    }

    #home-landing > #pricing-section .section-content > .subscription-content > .head h4,
    #home-landing > #pricing-section .section-content > .subscription-content > .head span {
        width: 100%;
        font-weight: 700;
        font-size: 2rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content > .head h4 > span {
        display: block;
        color: var(--alphabet-red);
        font-size: 2.5rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content > .head > span {
        font-size: 1.6rem;
        font-weight: 400;
        color: var(--grey);
        margin-top: 3rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head > .avatar {
        width: 10rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .vazifeh-pro .head > .avatar {
        filter: grayscale(100%);
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head > .plan-name {
        margin: 1rem 0rem;
        font-size: 2rem;
        font-weight: 500;
        color: var(--grey);
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table:nth-child(2) .head > .plan-name span {
        color: var(--black);
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head > .plan-name span {
        color: var(--alphabet-red);
        font-weight: 600;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head > .timespan {
        color: var(--grey);
        font-size: 1.6rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body {
        height: fit-content;
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body ul li {
        margin-top: 3rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body ul li:first-child {
        margin-top: 1.5rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li,
    #home-landing > #pricing-section .section-content > .subscription-content .body ul li {
        width: 100%;
        height: 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 3rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body ul li p,
    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li p {
        font-size: 1.5rem;
        font-weight: 400;
        color: var(--darkgrey);
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body ul li p > .strong {
        font-weight: 600;
        color: var(--black);
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body ul li {
        align-items: center;
        justify-content: start;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul .button {
        margin-top: 7rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul .button a {
        background-color: var(--black);
        padding: 1rem 2rem;
        border-radius: 5rem;
        color: white;
        font-weight: 500;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul .outline a {
        border: .2rem solid var(--black);
        background-color: transparent;
        color: var(--black);
    }


    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .icon {
        font-size: 2.5rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .not-accessed {
        color: var(--grey);
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .accessed,
    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .icon-tick-square-bold {
        color: var(--green);
        font-weight: 600;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .icon-cross-mark-sqaure {
        color: var(--grey);
    }

    /* SECTION : Home > Pricing Section End */
    /* SECTION : Home > Reviews Section Begin */
    #reviews {
        margin: 0 0 40rem !important;
    }

    #reviews .section-content {
        height: fit-content;
        display: flex;
        flex-direction: column !important;

    }

    #reviews .section-content > .right {
        flex: 1;
    }

    #reviews .section-content > .right h2,
    #reviews .section-content > .right p {
        text-align: center;
    }

    #reviews .section-content > .right h2 {
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 3rem;
    }

    #reviews .section-content > .right p {
        width: 60%;
        margin: auto;
        font-size: 1.6rem;
        color: var(--grey);
        line-height: 200%;
        text-align: center;
    }

    #reviews .section-content > .left {
        flex: 2;
        display: flex;
        margin-top: 4rem;
    }

    #reviews .section-content > .left > .mySwiper {
        width: 50rem;
        height: fit-content;
    }

    #reviews .section-content > .left > .mySwiper .swiper-slide {
        height: 32rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--lightestgrey);
        border-radius: 3rem;
    }

    #reviews .section-content > .left > .mySwiper .swiper-slide > img {
        width: 100%;
        height: auto;
        object-position: center;
    }


    /* SECTION : Home > Reviews Section End */
    /* SECTION : Home > Consultant Begin */
    #home-landing > #consultant-section {
        width: 100%;
        height: fit-content !important;
        background-color: var(--coal);
        border-radius: var(--4rem);
        padding: 5rem 3rem 0rem;
        display: flex;
        margin-bottom: 6rem;
    }

    #home-landing > #consultant-section .section-content {
        display: flex;
        flex: 1 0 auto;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    #home-landing > #consultant-section .section-content .img-wrap {
        height: 22rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #home-landing > #consultant-section .section-content .img-wrap > img {
        height: 100%;
    }

    #home-landing > #consultant-section .section-content .buttons {
        margin: 2rem 0 1rem;
    }

    #home-landing > #consultant-section .section-content .buttons > a {
        padding: .8rem 2rem;
        color: white;
        font-size: 1.6rem;
        font-weight: 300;
        border: .2rem solid whitesmoke;
        border-radius: 6rem;
    }

    #home-landing > #consultant-section .section-content .buttons > .filled {
        background-color: white;
        color: var(--coal);
        font-weight: 500;
    }

    #home-landing > #consultant-section .section-content .buttons > a:hover {
        filter: brightness(85%);
    }

    #home-landing > #consultant-section .section-content .buttons > a:first-child {
        margin-left: 2rem;
    }

    #home-landing > #consultant-section .section-content .text p {
        font-size: 3rem;
        font-weight: 600;
        color: white;
    }

    #home-landing > #consultant-section .section-content img {
        filter: saturate(120%);
    }

    /* SECTION : Home > Consultant End */
    /* SECTION : Home > Blog Section Begin */
    #home-landing > #blog {
        height: fit-content;
        margin-bottom: 20rem;
        display: flex;
        flex-direction: column;
    }

    #home-landing > #blog .section-content {
        height: fit-content;
        margin-top: 2rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-gap: 3rem 7rem;
    }

    #home-landing > #blog .section-content .post {
        width: fit-content;
        height: fit-content;
        display: flex;
        padding: 1.5rem 1.5rem 4rem;
        flex-direction: column;
        border: .2rem solid transparent;
        border-radius: 2rem;
        transition: all 250ms ease-in;

    }

    #home-landing > #blog .section-content .post:hover {
        cursor: pointer;
        border-color: var(--lightestgrey);
        transition: all 250ms ease-in;

    }

    #home-landing > #blog .section-content .post:hover img {
        filter: grayscale(20%);
        transition: all 250ms ease-in;
    }

    #home-landing > #blog .section-content .post > img {
        width: 80%;
        height: 15rem;
        transition: all 100ms ease-in;
        filter: grayscale(80%);
        object-fit: cover;
        border-radius: 2rem;
        margin: 0 auto 2rem;
    }

    #home-landing > #blog .section-content .post > .details {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #home-landing > #blog .section-content .post > .details .cat {
        font-size: 1.4rem;
        margin: 1.4rem 0 .4rem;
        display: block;
        color: var(--grey);
    }

    #home-landing > #blog .section-content .post:hover > .details > .title {
        color: var(--alphabet-red);
    }

    #home-landing > #blog .section-content .post > .details > .title {
        width: 80%;
        font-size: 1.8rem;
        text-align: center;
        font-weight: 500;
        padding: 0;
    }

    #home-landing > #blog .section-content .post > .details > p {
        width: 80%;
        font-size: 1.4rem;
        margin-top: 1.4rem;
        color: var(--grey);
        text-align: justify;

    }

    /* SECTION : Home > Blog Section End */
    /* SECTION : Home End */
    /* SECTION : Article Begin */
    #article {
        margin-bottom: 10rem;

    }

    /* SECTION : Article > Breadcrumb Begin */
    #article .head > #breadcrumbs {
        width: 100%;
        display: flex;
        margin-bottom: 2rem;
    }

    #article .head > #breadcrumbs .breadcrumb-item {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #article .head > #breadcrumbs .breadcrumb-item .icon {
        margin: 0 1rem;
    }

    /* SECTION : Article > Breadcrumb End */
    #article .head > .title-wrap > h1 {
        text-align: center;
        font-size: 3rem;
    }

    #article .head > .title-wrap #thumbnail {
        width: 100%;
        height: 40rem;
        border-radius: 2rem;
        object-fit: cover;
        margin: 4rem 0rem 2rem;
    }

    #article .head > .title-wrap .details,
    #article .head > .title-wrap .details .detail {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #article .head > .title-wrap .details .detail {
        margin-left: 2rem;
    }

    #article .head > .title-wrap .details .detail .icon {
        margin: 0 1rem;
    }

    /* SECTION : Article > Title End */
    /* SECTION : Article > Content Begin */
    #article > #content-wrapper {
        height: fit-content;
        margin: 6rem auto;
        display: flex;
        justify-content: space-between;
    }

    #article > #content-wrapper #content {
        width: 100%;
        height: 100%;
    }

    #article > #content-wrapper #content p {
        text-align: justify;
        margin-bottom: 4rem;
    }

    /* SECTION : Article > Content > Author Begin */
    #article > #content-wrapper #author {
        width: 100%;
        height: fit-content;
        padding: 1.5rem;
        border-radius: 2rem;
        margin: 2rem 0;
    }

    #article > #content-wrapper #author .head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1rem;
    }

    #article > #content-wrapper #author .head .user-profile {
        height: 6rem;
        display: flex;
        align-items: center;
    }

    #article > #content-wrapper #author .head .user-profile img {
        width: 5rem;
        height: 5rem;
        padding: .6rem;
        background-color: var(--lightgrey);
        border-radius: 5rem;
    }

    #article > #content-wrapper #author .head .user-profile p {
        margin-right: 1rem;
        font-size: 1.6rem;
        font-weight: 500;
    }

    #article > #content-wrapper #author > p {
        color: var(--grey);
        text-align: justify;
    }

    #article > #content-wrapper #author .head .authors-articles {
        text-decoration: underline;
        color: var(--pantome);
    }

    #article > #content-wrapper #author .head .authors-articles:hover {
        color: var(--pantomeDark);
    }

    /* SECTION : Article > Content > Author End */
    /* SECTION : Article > Content > Side-bar Begin */
    #article > #content-wrapper > aside {
        width: 35rem;
        height: fit-content;
        margin-right: 8rem;
        display: none;
    }

    #article > #content-wrapper > aside .widget {
        border-radius: 1.5rem;
        overflow: hidden;
        margin-bottom: 3rem;
    }

    #article > #content-wrapper > aside .ad-widget {
        width: 100%;
        height: 20rem;
        background-color: var(--grey);
    }

    /* SECTION : Article > Content > Main Begin */
    #article > #content-wrapper main {
        width: 72rem;
        height: fit-content;
    }

    #article > #content-wrapper main p {
        line-height: 230%;
    }

    #article > #content-wrapper main h2,
    #article > #content-wrapper main h3 {
        margin: 1.6rem 0;
    }


    /* SECTION : Article > Content > Side-bar End */
    /* SECTION : Article > Content > Main End */
    /* SECTION : Article > Content End */
    /* SECTION : Article End */
    /* SECTION : More-Articles Begin */
    #more-articles {
        display: flex;
        flex-direction: column;
    }

    #more-articles .head {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 3rem;
    }

    #more-articles .head p {
        width: fit-content;
        color: var(--black);
        height: fit-content;
        font-weight: 800;
        display: inline-flex;
        margin-left: 3rem;
        font-size: 2rem;
    }

    #more-articles .head .hr {
        flex-grow: 1;
        height: .1rem;
        background-color: var(--lightgrey);
    }

    #more-articles .body {
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    #more-articles .body .blog-item {
        width: 100%;
        height: fit-content;
        overflow: hidden;
        display: flex;
        flex-direction: row;
        margin-bottom: 3rem;
    }

    #more-articles .body .blog-item .top-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #more-articles .body .blog-item .texts {
        width: fit-content;
        display: block;
    }

    #more-articles .body .blog-item:hover {
        cursor: pointer;
    }


    #more-articles .body .blog-item img {
        width: 16rem;
        height: 10rem;
        object-fit: cover;
        border-radius: 1.4rem;
        margin-left: 1.5rem;
    }

    #more-articles .body .texts > h3 {
        display: block;
        margin-bottom: 1rem;
        font-size: 1.8rem;
        font-weight: 500;
    }

    #more-articles .body .blog-item:hover h3 {
        color: var(--pantome);
        transition: all 350ms;
    }

    #more-articles .body .texts > span {
        display: block;
        margin: auto;
        font-size: 1.5rem;
        color: var(--grey);
    }

    #more-articles .body .blog-item > .details {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #more-articles .body .blog-item > .details .hr {
        height: .1rem;
        flex-grow: 1;
        background-color: var(--lightgrey);
        margin: 0 2rem;
        opacity: .5;
    }

    #more-articles .body .blog-item > .details .detail-item strong,
    #more-articles .body .blog-item > .details .detail-item span {
        font-size: 1.3rem;
        font-weight: 400;
        color: var(--coal);
    }

    /* SECTION : More-Articles End */
    /* SECTION : RozShomar Begin */
    #rozshomar .version-num {
        width: 100%;
        text-align: center;
        color: var(--lightgrey);
        font-size: 1.5rem;
        display: block;
        margin-top: 6rem;
    }

    /* SECTION : RozShomar > Content Begin */
    #rozshomar > #content {
        width: 85%;
        height: fit-content;
        margin: auto;
    }

    #rozshomar > #content > * {
        line-height: 200%;
    }

    #rozshomar > #content > p {
        text-align: justify;
    }

    #rozshomar > #content strong {
        font-weight: 600;
    }

    #rozshomar > #content a {
        color: var(--alphabet-red);
    }

    #rozshomar > #content a:hover {
        color: var(--alphabet-dark-red);
    }

    /* SECTION : RozShomar > Content End */
    #rozshomar > #progress-steps {
        width: 80%;
        display: flex;
        justify-content: center;
        margin: 6rem auto 0;
    }

    #rozshomar > #progress-steps .step {
        width: fit-content;
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 20rem;
        flex: 1 0 auto;
    }

    #rozshomar > #progress-steps .step:last-child {
        margin-left: 0;
    }

    #rozshomar > #progress-steps .step > .step-dot {
        width: 3rem;
        height: 3rem;
        border-radius: 3rem;
        display: flex;
        border: .2rem solid var(--lightgrey);
        align-items: center;
        justify-content: center;
    }

    #rozshomar > #progress-steps .step > .active {
        background-color: var(--blue);
        border-color: var(--blue);
    }

    #rozshomar > #progress-steps .step > .semi-active {
        border-color: var(--blue);
    }

    #rozshomar > #progress-steps .step > .step-dot .inner-dot {
        width: 1rem;
        height: 1rem;
        background-color: var(--lightgrey);
        border-radius: 1rem;
    }

    #rozshomar > #progress-steps .step > .active .inner-dot {
        background-color: white;
    }

    #rozshomar > #progress-steps .step > .semi-active .inner-dot {
        background-color: var(--blue);
    }

    #rozshomar > #progress-steps .step > .step-level {
        font-weight: 600;
        margin: .6rem 0rem;
    }

    #rozshomar > #result-section {
        margin-top: 6rem;
        display: none;
    }

    #rozshomar > .show-result {
        display: block !important;
    }

    @keyframes fade-down {
        0% {
            visibility: hidden;
            transform: translateY(-2rem);
            opacity: 0;
        }
        to {
            transform: translateY(0rem);
            opacity: 1;
            visibility: visible;
        }
    }
    @keyframes fade-up {
        0% {
            visibility: hidden;
            transform: translateY(2rem);
            opacity: 0;
        }
        to {
            transform: translateY(0rem);
            opacity: 1;
            visibility: visible;
        }
    }

    #rozshomar > #result-section .user-preview {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #rozshomar > #result-section .user-preview .avatar {
        width: 13rem;
        padding: 2rem;
        background-color: var(--lightgrey);
        border-radius: 4rem;
        visibility: hidden;
    }

    #rozshomar > #result-section .user-preview > .show {
        animation: fade-down;
        animation-duration: 500ms;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
    }

    #rozshomar > #result-section .user-preview strong {
        font-size: 1.8rem;
        margin-top: 2rem;
    }

    #rozshomar > #result-section .ms-preview {
        display: flex;
        justify-content: center;
        margin: 3rem 0rem;
    }

    #rozshomar > #result-section .ms-preview > .item {
        min-width: 20rem;
        visibility: hidden;
    }

    #rozshomar > #result-section .ms-preview > .show {
        animation: fade-up;
        animation-duration: 500ms;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
    }

    #rozshomar > #result-section .ms-preview .cd-item .item {
        min-width: 13rem;
    }

    #rozshomar > #result-section .ms-preview > .item,
    #rozshomar > #result-section .ms-preview .cd-item .item {
        background-color: var(--lightestgrey);
        margin-left: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 3rem;
        padding: 2.5rem 2rem;
    }


    #rozshomar > #result-section .ms-preview > .item > p {
        padding: 0 1rem;
    }

    #rozshomar > #result-section .ms-preview > .item:last-child {
        margin-left: 0;
    }

    #rozshomar > #result-section .ms-preview > .item .progress-bar {
        width: 100%;
        height: .4rem;
        margin-top: 1rem;
        display: flex;
    }

    #rozshomar > #result-section .ms-preview > .item .progress-bar > .progress,
    #rozshomar > #result-section .ms-preview > .item .progress-bar > .remaining {
        height: 100%;
        border-radius: 1rem;
    }

    #rozshomar > #result-section .ms-preview > .item .progress-bar > .progress {
        width: 80%;
        background-color: var(--green);
    }

    #rozshomar > #result-section .ms-preview > .item .progress-bar > .remaining {
        width: 20%;
        margin-left: .4rem;
        background-color: var(--lightgrey);
    }

    /* SECTION : RozShomar > Setup Progress Begin */
    #rozshomar > #setup-progress {
        width: 90%;
        margin: 10rem auto;
    }

    #rozshomar > #setup-progress > .setup-item {
        width: 100%;
        margin: auto;
        height: fit-content;
        display: flex;
        flex-direction: column;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row {
        width: 100%;
        height: fit-content;
        display: flex;
        margin-bottom: 4rem;
    }


    #rozshomar > #setup-progress > .setup-two,
    #rozshomar > #setup-progress > .setup-three {
        display: none;
    }

    #rozshomar > #setup-progress > .setup-buttons {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    #rozshomar > #setup-progress > .setup-item .setup-button {
        width: fit-content;
        padding: .6rem 1rem;
        border-radius: .7rem;
        border-color: transparent;
        background-color: var(--pantome);
        color: white;
        display: block;
    }

    #rozshomar > #setup-progress > .setup-item #prev-item {
        display: none;
    }

    #rozshomar > #setup-progress > .setup-item .setup-button:hover {
        cursor: pointer;
        background-color: var(--pantomeDark);
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap {
        height: fit-content;
        flex-grow: 1;
        margin-left: 5rem;
        display: flex;
        flex-direction: column;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap:last-child {
        margin-left: 0;
    }

    #rozshomar > #setup-progress > .setup-item > .input-wrap:last-child,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap:last-child {
        margin-left: 0;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker {
        width: 100%;
        height: fit-content;
        display: flex;
        align-items: center;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item {
        flex-grow: 1;
        margin-left: 1rem;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item:last-child {
        margin-left: 0;
    }

    #rozshomar > #setup-progress > .setup-item > .input-wrap span,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap span,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item span {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item span {
        font-size: 1.5rem;
        font-weight: 400;
        display: block;
        margin-bottom: 1rem;
    }


    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap input,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap select,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item input {
        width: 100%;
        height: fit-content;
        padding: 1.3rem 2rem;
        border-radius: 1rem;
        outline: none;
        border: .2rem solid var(--lightestgrey);
        font-size: 1.6rem;
        font-family: 'PeydaWebFaNum';
        background-color: var(--lightestgrey);
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .error {
        border-color: var(--alphabet-red);
    }

    #rozshomar > #setup-progress > .setup-item > .input-wrap input:focus,
    #rozshomar > #setup-progress > .setup-item > .input-wrap select:focus,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item input:focus {
        background-color: white;
        border-color: var(--pantome);
    }

    /* HTML: <div class="loader"></div> */
    #rozshomar > #setup-progress > .setup-item #loader-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #rozshomar > #setup-progress > .setup-item #loader-wrap span {
        font-size: 1.7rem;
    }

    .loader {
        width: 3.2rem;
        aspect-ratio: 1;
        --_g: no-repeat radial-gradient(farthest-side, #3a3a3a 90%, #0000);
        background: var(--_g), var(--_g), var(--_g), var(--_g);
        background-size: 40% 40%;
        margin-bottom: 3rem;
        animation: l46 1s infinite;
    }

    @keyframes l46 {
        0% {
            background-position: 0 0, 100% 0, 100% 100%, 0 100%
        }
        40%,
        50% {
            background-position: 100% 100%, 100% 0, 0 0, 0 100%
        }
        90%,
        100% {
            background-position: 100% 100%, 0 100%, 0 0, 100% 0
        }
    }



    /* SECTION : RozShomar > Setup Progress End */
    /* SECTION : RozShomar > CountDown Begin */
    #rozshomar > #result-section .ms-preview .cd-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #rozshomar > #result-section .ms-preview .colon {
        height: 10.1rem;
        margin: 4rem 2rem 0;
        font-size: 1.6rem;
        display: flex;
        align-items: center;
        font-weight: 600;
        justify-content: center;
    }

    #rozshomar > #result-section .ms-preview .cd-item > span {
        font-size: 1.6rem;
        color: var(--lightgrey);
        margin-bottom: 1.2rem;
    }

    #rozshomar > #result-section .ms-preview .cd-item .item {
        padding: 2rem;
        border-radius: 2rem;
        margin: 0
    }

    #rozshomar > #result-section .ms-preview .cd-item .item > p {
        font-weight: 600;
        font-size: 3rem;
    }

    /* SECTION : RozShomar > CountDown End */
    /* SECTION : RozShomar > Graffito Begin */
    #rozshomar > #result-section #graffito {
        width: 90%;
        /*height: 45rem;*/
        margin: 5rem auto;
        object-fit: cover;
        border: .2rem solid var(--lightgrey);
        border-radius: 3rem;
        padding: 3rem;
    }


    /* SECTION : RozShomar > Graffito End */
    /* SECTION : RozShomar End */
    /* SECTION : Blog Begin */
    #blog #page-title {
        width: 100%;
        margin-bottom: 5rem;
    }

    #blog #page-title > h1 {
        font-size: 4.2rem;
    }

    #blog #page-title > h1 .dot {
        color: var(--alphabet-red);
    }

    /* SECTION : Blog > Pinned Article Begin */
    #blog > #pinned-article {
        width: 100%;
        height: 36rem;
        background-color: #5fc057;
        border-radius: 3rem;
        overflow: hidden;
        position: relative;
        display: block;
    }

    #blog > #pinned-article:hover {
        cursor: pointer;
    }

    #blog > #pinned-article:hover > img {
        transform: scale(1.02);
        transition: all 200ms;
    }

    #blog > #pinned-article > img {
        width: 100%;
        height: 40rem;
        object-fit: cover;
        margin: 0;
        z-index: 1;
        transition: all 200ms;
    }

    #blog > #pinned-article > .hidden {
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 500;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
    }

    #blog > #pinned-article > .article-detail {
        width: 100%;
        height: fit-content;
        position: absolute;
        bottom: 0rem;
        right: 0rem;
        padding: 4rem;
        z-index: 100 !important;
    }

    #blog > #pinned-article > .article-detail:before {
        content: '';
        width: 100%;
        height: 40rem;
        position: absolute;
        bottom: 0rem;
        right: 0rem;
        left: 0;
        background: linear-gradient(0deg, black, rgba(0, 0, 0, 0.81), rgba(0, 0, 0, 0));
        opacity: .6;
        z-index: -1;
    }

    #blog > #pinned-article > .article-detail * {
        color: white;
    }

    #blog > #pinned-article > .article-detail .category {
        padding: .4rem 1rem;
        border: .1rem solid var(--white-marble);
        border-radius: 3rem;
        background-color: rgba(0, 0, 0, 0.2);
        transition: all 250ms;
    }

    #blog > #pinned-article > .article-detail .category:hover {
        transition: all 250ms;
        background-color: rgba(0, 0, 0, 0.4);
    }

    #blog > #pinned-article > .article-detail h2 {
        margin: 1rem 0;
    }

    #blog > #pinned-article > .article-detail p {
        font-weight: 300;
    }

    #blog > .title-wrap {
        width: 100%;
        height: fit-content;
        margin: 6rem 0 2rem;
        display: flex;
    }

    #blog > .title-wrap > h2 {
        font-size: 2rem;
    }

    #blog > #articles {
        width: 100%;
        display: grid;
        margin-top: 3rem;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 7rem 8rem;
    }

    #blog > #articles .article-item {
        overflow: hidden;
        float: right;
    }

    #blog > #articles .article-item > img {
        width: 100%;
        height: 16rem;
        border-radius: 2rem;
        object-fit: cover;
        margin-bottom: 1rem;
    }

    #blog > #articles .article-item > p {
        margin-top: 1rem;
        font-size: 1.4rem;
        color: var(--grey);
    }

    #blog > #articles .article-item a {
        line-height: 175%;
    }

    #blog > #articles .article-item:hover {
        cursor: pointer;
    }

    #blog > #articles .article-item:hover > a {
        color: var(--blue);
    }

    #blog > #articles .article-item > a * {
        font-size: 1.8rem;
        text-align: justify;
        font-weight: 600;
    }

    #blog > #more-loader {
        width: 100%;
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 6rem;
    }

    #blog > #more-loader #load-more {
        padding: 1rem 1.9rem;
        border-radius: 1.2rem;
        background-color: var(--black);
        color: white;
        font-size: 1.6rem;
        border: none;
    }

    #blog > #more-loader #load-more:hover {
        cursor: pointer;
        background-color: var(--darkerblack);
    }

    /* SECTION : Blog > Pinned Article End */
    /* SECTION : Category Begin */
    #blog > #categoryList {
        display: block;
    }

    #blog > #categoryList > .article-item {
        border-radius: 3.5rem;
        width: 28%;
        transition: all 300ms ease-in;
        border: .2rem solid transparent;
        padding: 1.6rem;
        float: right;
        margin-left: 3rem;
        margin-bottom: 4rem;
    }

    #blog > #categoryList > .article-item:last-child {
        margin-left: 0 !important;
    }

    #blog > #categoryList > .article-item:hover {
        border: .2rem solid var(--lightestgrey);
    }

    #blog > #categoryList > .article-item > .img {
        width: 18rem;
        height: 18rem;
        border-radius: 2rem;
        margin: 0rem !important;
    }

    #blog > #categoryList > .article-item:hover .img > img {
        transform: scale(1.05);
        transition: all ease-in 150ms;
        transition-delay: 150ms;
    }

    #blog > #categoryList > .article-item > h3 {
        width: 100%;
        font-size: 1.8rem;
        margin-top: 2rem;
    }

    #blog > #categoryList > .article-item:hover > h3 {
        color: var(--alphabet-dark-red);
    }

    #blog > #categoryList > .article-item > p {
        display: none !important;
    }

    #blog > #contentBox {
        width: 90%;
        margin: 10rem auto;
    }

    /* SECTION : Category End */
    /* SECTION : Blog End */
    /* SECTION : About Begin */
    #about-us h1 {
        visibility: hidden;
    }

    #about-us h2,
    #about-us h2 * {
        font-size: 3.8rem;
        line-height: 200%;
        color: var(--grey);
        text-align: justify;
        font-weight: 700;
    }

    #about-us .highlight,
    #about-us .highlight * {
        /*color: var(--alphabet-red);*/
        color: var(--black);
    }

    #about-us > .page-section img {
        width: 100%;
        height: 34rem;
        background-color: var(--darkgrey);
        margin: 6rem 0;
        border-radius: 3rem;
    }

    #about-us > .page-section {
        display: flex;
        margin: 3rem auto 6rem;
        align-items: center;
        flex-direction: column;
    }

    #about-us > .page-section > .section-item {
        flex-grow: 1;
        margin-right: 2rem;
        display: flex;
        justify-content: start;
    }

    #about-us > .two-col {
        flex-direction: column;
    }

    #about-us > .two-col .text {
        width: 70%;
        display: block;
        text-align: center;
        margin-top: 3rem;
    }

    #about-us > .two-col .text p {
        font-size: 1.7rem;
        line-height: 200%;
        text-align: justify;
    }

    #about-us > .two-col .text h3 {
        margin-bottom: 2rem;
    }

    #about-us > .page-section > .stats {
        width: 70%;
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #about-us > .page-section > .stats .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 3rem;
    }

    #about-us > .page-section > .stats .stat-item > p {
        font-size: 2.6rem;
    }

    #about-us > .page-section > .stats .stat-item > span {
        font-size: 1.6rem;
        font-weight: 300;
        color: var(--grey);
    }

    #about-us #do-dont-section {
        flex-direction: column;
        align-items: start;
    }

    #about-us > #reasons {
        width: 100%;
        height: 40rem;
        margin: 4rem 0rem;
    }

    #about-us > #reasons > .row {
        border-top: .1rem solid var(--lightgrey);
        border-bottom: .1rem solid var(--lightgrey);
        z-index: -1;
    }

    #about-us > #reasons > .row:last-child {
        border-top: none;
    }

    #about-us > #reasons > .row .container {
        display: flex;
    }

    #about-us > #reasons > .row .container .item {
        display: flex;
        flex-grow: 1;
        flex-direction: column;
        padding: 4rem;
        border-right: .1rem solid var(--lightgrey);
        transition: 400ms all;
    }

    #about-us > #reasons > .row .container .item:hover {
        cursor: pointer;
        box-shadow: 0rem 0rem 3rem #dadce6;
        transition: 400ms all;
        border: none;
        z-index: 5000;
    }

    #about-us > #reasons > .row .container .item:last-child {
        border-left: .1rem solid var(--lightgrey);
    }

    #about-us > #reasons > .row .container .item > strong {
        font-size: 2.3rem;
        font-weight: 400;
        margin-bottom: 1rem;
    }

    #about-us > #reasons > .row .container .item > span,
    #about-us > #reasons > .row .container .item > p {
        color: var(--grey);
    }

    #about-us > #cta {
        width: 50rem;
        background-color: #3259E8;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 6rem 3rem;
        border-radius: 4rem;
        margin: 2rem auto;
    }

    #about-us > #cta .avatar > img {
        width: 8rem;
        height: 8rem;
    }

    #about-us > #cta .avatar {
        background-color: rgba(194, 196, 204, 0.4);
        border-radius: 6rem;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
    }

    #about-us > #cta p {
        color: white;
        font-size: 3rem;
        text-align: center;
        font-weight: 500;
    }

    #about-us > #cta p > span {
        font-size: 1.8rem;
        text-align: center;
        font-weight: 300;
    }

    #about-us > #cta a {
        margin-top: 2rem;
        padding: 1rem 2rem;
        background-color: white;
        border-radius: 5rem;
        font-weight: 600;
    }

    /* SECTION : About End */
    /* SECTION : ContactUs Begin */
    #contact-us {
        height: fit-content;
        text-align: center;
        margin-top: 6rem;
        display: block;
    }

    #contact-us > #contactMethods {
        margin-top: 5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }

    #contact-us > #contactMethods > .method {
        width: 60%;
        border: .1rem solid var(--lightgrey);
        padding: 7rem 2rem 3rem;
        border-radius: 1rem;
        display: flex;
        align-items: start;
        justify-content: end;
        flex-direction: column;
        margin-bottom: 5rem;
        flex-grow: 1;
    }

    #contact-us > #contactMethods > .method:last-child {
        margin-left: 0;
    }

    #contact-us > #contactMethods > .method span {
        margin: .6rem 0rem;
        font-size: 1.5rem;
        text-align: right;
    }

    #contact-us > #contactMethods > .method a {
        direction: ltr;
    }

    /* SECTION : ContactUs End */
    /* SECTION : Footer Begin */
    footer {
        width: 100%;
        height: fit-content;
        margin-top: 14rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }

    footer .footer-layout {
        width: 100%;
        padding: 2rem;
        flex-grow: 1;
    }

    footer .footer-layout:last-child {
        order: 3;
    }

    footer .links {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        order: 1;
    }

    footer .links a {
        margin-left: 6rem;
    }

    footer .links a:last-child {
        margin-left: 0;
    }

    footer .avatar-layout {
        width: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
        order: 0;
    }

    .footer-layout > .avatar-wrap {
        width: 4rem;
        height: 4rem;
        overflow: hidden;
        padding: .4rem;
        background-color: var(--white-marble);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5rem;
        grid-column: 3 / 4;
    }

    .footer-layout > .avatar-wrap > img {
        width: auto;
        height: 100%;
    }

    /* SECTION : Footer End */
    /* SECTION : Search Begin */
    #search > .head {
        width: 100%;
        height: 15rem;
    }

    #search > #results {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 3rem;
        padding: 1rem;
        border-radius: 2rem;
    }

    #search > #results .result-item {
        height: 18rem;
        border-radius: 2rem;
        padding: 1.5rem;
        justify-content: space-between;
        overflow: hidden;
    }

    #search > #results .result-item .img-wrap {
        width: 15rem;
        height: 15rem;
        border-radius: 2rem;
        margin-right: 0rem;
    }

    #search > #results .result-item .img-wrap img {
        width: 100%;
        height: 100%;
        border: none;
        outline: none;
        object-fit: cover;

        display: none;
    }

    #search > #results .result-item .txt-wrap {
        padding: 1rem 0 0 1rem;
        margin-right: 2rem;
        align-items: center;
        justify-content: center;
    }

    #search > #results .result-item .txt-wrap h2 {
        font-size: 1.8rem;
    }

    #search > #results .result-item .txt-wrap p {
        display: none
    }

    /* SECTION : Search End */
}


/* Small devices (portrait tablets and large phones, 600px and up) */
@media screen and (min-width: 600px) and (max-width: 768px) {
    .container {
        width: 88%;
        /*background-color: cyan;*/
    }

    /* SECTION : Header Begin */
    header {
        width: 100%;
        height: 10rem;
    }

    .header-wrap {
        height: 100%;
    }

    .header-wrap .logo .icon {
        font-size: 5rem;
    }

    .header-wrap .h-button > div,
    .header-wrap .h-button > a {
        padding: 1rem 1.5rem;
        border-radius: 3rem;
        border: .2rem solid var(--grey);
    }

    .header-wrap .h-button > #subscription-btn {
        display: none;
    }

    .header-wrap .menu {
        display: none;
    }

    /* SECTION : Header End */
    /* SECTION : Mobile Navigation Begin */
    #mobile-nav {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.55);
        z-index: 1000;
        justify-content: right;
        display: none;
    }

    @keyframes mobileNavSlide {
        from {
            transform: translateX(-100%);
        }
        to {
            transform: translateX(0%);
        }
    }

    @keyframes mobileNavSlideReverse {
        from {
            transform: translateX(0%);
        }
        to {
            transform: translateX(-100%);

        }
    }

    #mobile-nav > .container {
        width: 100%;
        height: 100%;
        transform: translateX(-100%);
        background-color: white;
        float: right;
        margin: 0;
        padding: 2rem;
    }

    #mobile-nav > .show {
        animation: mobileNavSlide;
        animation-duration: 1s;
        animation-fill-mode: forwards;
        animation-timing-function: ease-in;
    }

    #mobile-nav > .hide {
        animation: mobileNavSlideReverse;
        animation-duration: 1s;
        animation-fill-mode: forwards;
        animation-timing-function: ease-in;
    }

    #mobile-nav > .container .head {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 4rem;
        padding: 0 2rem;
    }

    #mobile-nav > .container .head .icon {
        font-size: 3rem;
    }

    #mobile-nav > .container .head .icon-Wikisarbaz {
        font-size: 5rem;
    }

    #mobile-nav > .container .head .button {
        width: 4.5rem;
        height: 4.5rem;
        background-color: var(--lightestgrey);
        border-radius: 9rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #mobile-nav > .container > nav {
        width: 100%;
        height: fit-content;
    }

    #mobile-nav > .container > nav .menu-link {
        width: 100%;
        margin-bottom: 2rem;
        border-radius: var(--1rem);
        overflow: hidden;
    }

    #mobile-nav > .container > nav .menu-link:hover {
        background-color: var(--lightestgrey);
    }

    #mobile-nav > .container > nav .menu-link a {
        width: 100%;
        height: 100%;
        display: block;
        padding: 1.6rem 2rem;
        font-size: 1.8rem;
    }

    /* SECTION : Mobile Navigation End */
    /* SECTION : Home Begin */
    #home-landing {
        height: fit-content;
    }

    .hero {
        height: 45rem;
        margin-bottom: 40rem;
        display: flex;
        align-items: center;
        flex-direction: column;
        margin-top: 10rem;
    }

    .hero .l-side {
        background-color: red;
    }

    .hero .intro-sides {
        flex-grow: 1;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .hero .intro-sides > p {
        width: 60%;
        text-align: center;
        font-size: 1.7rem;
        font-weight: 300;
        margin-top: 1rem;
        color: var(--grey);
    }

    .hero .intro-sides > img {
        width: 100%;
        margin-top: 10rem;
    }

    .hero .intro-sides .buttons {
        width: fit-content;
        height: fit-content;
        display: flex;
        margin-top: 6rem;
    }

    .hero .intro-sides .buttons .button {
        padding: .8rem 2rem;
    }

    .hero .intro-sides .buttons .button:first-child {
        margin-left: 2rem;
    }

    .hero .intro-sides .buttons .filled {
        background-color: var(--black);
        border-radius: 3rem;
        font-size: 1.8rem;
        color: white;
    }

    .hero .intro-sides .buttons .filled:hover {
        background-color: var(--darkerblack);
    }

    .hero .intro-sides .buttons .outline {
        border: .2rem solid var(--black);
        border-radius: 5rem;
    }

    .hero .intro-sides .buttons .outline:hover {
        background-color: var(--lightestgrey);
    }

    .hero .intro-sides h2 {
        margin-bottom: 1rem;
        font-size: 4.5rem;
    }

    /* SECTION : OPTIONS BEGIN */
    .hero .intro-sides .heroSwiper {
        width: 100%;
    }

    .features {
        width: 80%;
        margin-top: 5rem;
    }

    .hero .intro-sides .heroSwiper .swiper-slide {
        width: 22rem;
        height: 23rem;
        border-radius: 3rem;
        overflow: hidden;
        background-position: center;
        background-size: cover;
        background-color: transparent;
    }

    .hero .intro-sides .heroSwiper .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* SECTION : OPTIONS END */
    #home-landing > .landing-section {
        width: 100%;
        height: 35rem;
        margin-bottom: 3rem;
    }

    #home-landing > .landing-section > h3 {
        width: 100%;
    }


    /* SECTION : Home > Why Section Begin */
    #home-landing > #why-section {
        width: 100%;
        height: fit-content;
        margin-bottom: 25rem;
        flex-direction: column;
    }

    #home-landing > .two-col {
        height: fit-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    #home-landing > .two-col .section-col {
        width: 100%;
        flex-grow: 1;
    }

    #home-landing > #why-section > .text-col {
        width: fit-content;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        /*margin-bottom: 5rem;*/

    }

    #home-landing > #why-section > .text-col > .title {
        display: flex;
        align-items: center;
        justify-content: start;
    }

    #home-landing > #why-section > .text-col > h2 {
        font-size: 3.4rem;
    }

    #home-landing > #why-section > .text-col > p {
        width: 80%;
        margin: 2rem 0;
        text-align: center;
        line-height: 200%;
        color: grey;
    }

    #home-landing > #why-section > .text-col > .buttons {
        width: 100%;
        height: fit-content;
        display: flex;
    }

    #home-landing > #why-section > .text-col > .buttons .button {
        padding: 1rem 2rem;
        background-color: var(--black);
        border-radius: 5rem;
        color: white;
    }

    #home-landing > #why-section > .text-col > .buttons .button:hover {
        background-color: var(--darkerblack);
    }

    #home-landing > #why-section > .section-grid {
        width: 100%;
        height: fit-content;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 18rem);
        grid-gap: 4rem 3rem;
        margin-top: 5rem;
    }

    #home-landing > #why-section > .section-grid > .item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: var(--lightestgrey);
        border-radius: 2rem;
    }

    #home-landing > #why-section > .section-grid > .item:hover {
        cursor: pointer;
    }

    #home-landing > #why-section > .section-grid > .active {
        background-color: var(--darkerblack);
        box-shadow: 0 1rem 4rem rgba(46, 47, 51, 0.15);
        transition: all 220ms ease-in;
        transform: translateY(-1rem);
    }

    #home-landing > #why-section > .section-grid > .item > .icon {
        font-size: 5rem;
        margin: 1.5rem 0;
        color: var(--lightgrey);
        transition: all 200ms ease-in;
    }

    #home-landing > #why-section > .section-grid > .item > p {
        width: 60%;
        font-weight: 200;
        text-align: center;
    }

    #home-landing > #why-section > .section-grid > .item > p:first-child {
        font-weight: 400;
        font-size: 1.8rem;
    }

    #home-landing > #why-section > .section-grid > .active > .icon,
    #home-landing > #why-section > .section-grid > .active > p {
        color: whitesmoke;
        transition: all 200ms ease-in;
    }

    #home-landing > #why-section > .section-grid > .active > .icon {
        background: linear-gradient(40deg, #757F9A, #D7DDE8);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* SECTION : Home > Why Section End */
    /* SECTION : Home > Tools Section Begin */
    #tools-section {
        height: fit-content!important;
        margin-bottom: 10rem !important;
    }

    #tools-section .centered-col {
        align-items: center;
        justify-content: center;
    }

    #tools-section .centered-col h2,
    #tools-section .centered-col p {
        margin: auto;
        text-align: center;
    }

    #tools-section .centered-col h2 {
        width: 60%;
    }

    #tools-section .centered-col p {
        width: 45%;
        margin-top: 2rem;
    }

    #tools-section .centered-col #tools {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);

        margin-top: 6rem;
        grid-gap: 3rem;
    }

    #tools-section .centered-col #tools .tool {
        height: 16rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border: .2rem solid var(--lightestgrey);
        filter: drop-shadow(0 .5rem 0 var(--lightestgrey));
        background-color: #FFFFFF;
        border-radius: 2rem !important;
        transition: all 300ms ease-in;
        position: relative;
        padding-bottom: 2rem;
    }

    #tools-section .centered-col #tools .tool:hover {
        filter: drop-shadow(0 0rem 0 var(--lightestgrey));
        transition: all 300ms ease-in;
        transform: translateY(.5rem);
    }

    #tools-section .centered-col #tools .tool:hover .soon {
        opacity: 100%;
        transition: all 500ms;
    }

    #tools-section .centered-col #tools .disable i,
    #tools-section .centered-col #tools .disable span {
        color: var(--lightgrey);
    }

    #tools-section .centered-col #tools .disable .soon {
        background-color: var(--coal);
        border: .16rem solid var(--coal);
        color: whitesmoke;
        padding: .2rem .6rem;
        margin-top: 1rem;
        font-size: 1.4rem;
        border-radius: 2rem;
        font-weight: 600;
        position: absolute;
        bottom: 2rem;
        opacity: 0;
        transition: all 500ms;
    }

    #tools-section .centered-col #tools .disable:hover {
        filter: drop-shadow(0 .5rem 0 var(--lightestgrey)) !important;
        transform: translateY(0rem) !important;
    }

    #tools-section .centered-col #tools .tool .icon {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    #tools-section .centered-col #tools .tool span {
        font-size: 1.6rem;
    }

    /* SECTION : Home > Tools Section End */
    /* SECTION : Home > RozShomar Section Begin */
    #rozshomar-section {
        margin: 10rem 0rem 20rem !important;
        flex-direction: column!important;
    }
    #rozshomar-section .section-col {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 3rem;
    }
    #rozshomar-section .section-col #rs-image {
        width: 35rem;
    }

    #rozshomar-section .section-col .button {
        padding: .8rem 2rem;
        color: white;
        font-size: 1.8rem;
        font-weight: 300;
        border-radius: 6rem;
        margin-top: 10rem;
    }

    /* SECTION : Home > RozShomar Section End */
    /* SECTION : Home > Pricing Section Begin */
    #home-landing > #pricing-section {
        width: 100%;
        height: fit-content;
        margin-bottom: 15rem;
        border-radius: 2rem;
    }

    #home-landing > #pricing-section .section-content {
        display: flex;
    }

    #home-landing > #pricing-section .section-content > .subscription-content {
        width: 26%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        flex: 1 0 auto;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap {
        width: 100%;
        display: flex;
        background-color: var(--lightestgrey);
        border-radius: 2rem;
        justify-content: space-between;
        padding: 1.5rem;
        margin-right: 2rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table {
        width: 50%;
        border-radius: 1.5rem;
        box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.04);
        background-color: white;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table:nth-child(2) {
        margin-right: 1.5rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table:last-child {
        box-shadow: 33px 0px 80px rgba(0, 0, 0, 0.05);
    }

    #home-landing > #pricing-section .section-content > .subscription-content {
        margin-left: 0;
    }

    #home-landing > #pricing-section .section-content > .subscription-content .head,
    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head {
        width: 100%;
        height: 20rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 3rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content > .head {
        align-items: start;
    }

    #home-landing > #pricing-section .section-content > .subscription-content > .head h4,
    #home-landing > #pricing-section .section-content > .subscription-content > .head span {
        width: 100%;
        font-weight: 700;
        font-size: 2rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content > .head h4 > span {
        display: block;
        color: var(--alphabet-red);
        font-size: 2.5rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content > .head > span {
        font-size: 1.6rem;
        font-weight: 400;
        color: var(--grey);
        margin-top: 3rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head > .avatar {
        width: 8rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .vazifeh-pro .head > .avatar {
        filter: grayscale(100%);
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head > .plan-name {
        margin: 1rem 0rem;
        font-size: 1.6rem;
        font-weight: 500;
        color: var(--grey);
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table:nth-child(2) .head > .plan-name span {
        color: var(--black);
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head > .plan-name span {
        color: var(--alphabet-red);
        font-weight: 600;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head > .timespan {
        color: var(--grey);
        font-size: 1.5rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body {
        height: fit-content;
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body ul li:first-child {
        margin-top: 1.5rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li,
    #home-landing > #pricing-section .section-content > .subscription-content .body ul li {
        width: 100%;
        height: 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 3rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body ul li p,
    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li p {
        font-size: 1.5rem;
        font-weight: 400;
        color: var(--darkgrey);
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body ul li p > .strong {
        font-weight: 600;
        color: var(--black);
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body ul li {
        align-items: center;
        justify-content: start;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul .button {
        margin-top: 4rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul .button a {
        background-color: var(--black);
        padding: 1rem 2rem;
        border-radius: 5rem;
        color: white;
        font-weight: 400;
        font-size: 1.4rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul .outline a {
        border: .2rem solid var(--black);
        background-color: transparent;
        color: var(--black);
    }


    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .icon {
        font-size: 2.5rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .not-accessed {
        color: var(--grey);
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .accessed,
    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .icon-tick-square-bold {
        color: var(--green);
        font-weight: 600;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .icon-cross-mark-sqaure {
        color: var(--grey);
    }

    /* SECTION : Home > Pricing Section End */
    /* SECTION : Home > Reviews Section Begin */
    #reviews {
        margin: 0 0 40rem !important;
    }

    #reviews .section-content {
        height: fit-content;
        display: flex;
        flex-direction: column !important;

    }

    #reviews .section-content > .right {
        flex: 1;
    }

    #reviews .section-content > .right h2,
    #reviews .section-content > .right p {
        text-align: center;
    }

    #reviews .section-content > .right h2 {
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 3rem;
    }

    #reviews .section-content > .right p {
        width: 60%;
        margin: auto;
        font-size: 1.6rem;
        color: var(--grey);
        line-height: 200%;
        text-align: center;
    }

    #reviews .section-content > .left {
        flex: 2;
        display: flex;
        margin-top: 4rem;
    }

    #reviews .section-content > .left > .mySwiper {
        width: 80%;
        height: fit-content;
    }

    #reviews .section-content > .left > .mySwiper .swiper-slide {
        height: 32rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--lightestgrey);
        border-radius: 3rem;
    }

    #reviews .section-content > .left > .mySwiper .swiper-slide > img {
        width: 100%;
        height: auto;
        object-position: center;
    }

    /* SECTION : Home > Reviews Section End */
    /* SECTION : Home > Consultant Begin */
    #home-landing > #consultant-section {
        width: 100%;
        height: fit-content !important;
        background-color: var(--coal);
        border-radius: var(--4rem);
        padding: 5rem 3rem 0rem;
        display: flex;
        margin-bottom: 6rem;
    }

    #home-landing > #consultant-section .section-content {
        display: flex;
        flex: 1 0 auto;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    #home-landing > #consultant-section .section-content .img-wrap {
        height: 22rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #home-landing > #consultant-section .section-content .img-wrap > img {
        height: 100%;
    }

    #home-landing > #consultant-section .section-content .buttons {
        margin: 2rem 0 1rem;
    }

    #home-landing > #consultant-section .section-content .buttons > a {
        padding: .8rem 2rem;
        color: white;
        font-size: 1.6rem;
        font-weight: 300;
        border: .2rem solid whitesmoke;
        border-radius: 6rem;
    }

    #home-landing > #consultant-section .section-content .buttons > .filled {
        background-color: white;
        color: var(--coal);
        font-weight: 500;
    }

    #home-landing > #consultant-section .section-content .buttons > a:hover {
        filter: brightness(85%);
    }

    #home-landing > #consultant-section .section-content .buttons > a:first-child {
        margin-left: 1.5rem;
    }

    #home-landing > #consultant-section .section-content .text p {
        font-size: 2.4rem;
        font-weight: 600;
        color: white;
    }

    #home-landing > #consultant-section .section-content img {
        filter: saturate(120%);
    }

    /* SECTION : Home > Consultant End */
    /* SECTION : Home > Blog Section Begin */
    #home-landing > #blog {
        height: fit-content;
        margin-bottom: 20rem;
        display: flex;
        flex-direction: column;
    }

    #home-landing > #blog .section-content {
        height: fit-content;
        margin-top: 2rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-gap: 3rem 7rem;
    }

    #home-landing > #blog .section-content .post {
        width: fit-content;
        height: fit-content;
        display: flex;
        padding: 1.5rem 1.5rem 4rem;
        flex-direction: column;
        border: .2rem solid transparent;
        border-radius: 2rem;
        transition: all 250ms ease-in;

    }

    #home-landing > #blog .section-content .post:hover {
        cursor: pointer;
        border-color: var(--lightestgrey);
        transition: all 250ms ease-in;

    }

    #home-landing > #blog .section-content .post:hover img {
        filter: grayscale(20%);
        transition: all 250ms ease-in;
    }

    #home-landing > #blog .section-content .post > img {
        width: 100%;
        height: 15rem;
        transition: all 100ms ease-in;
        filter: grayscale(80%);
        object-fit: cover;
        border-radius: 2rem;
        margin: 0 auto 2rem;
    }

    #home-landing > #blog .section-content .post > .details {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #home-landing > #blog .section-content .post > .details .cat {
        font-size: 1.4rem;
        margin: 1.4rem 0 .4rem;
        display: block;
        color: var(--grey);
    }

    #home-landing > #blog .section-content .post:hover > .details > .title {
        color: var(--alphabet-red);
    }

    #home-landing > #blog .section-content .post > .details > .title {
        width: 100%;
        font-size: 1.8rem;
        text-align: center;
        font-weight: 500;
        padding: 0;
    }

    #home-landing > #blog .section-content .post > .details > p {
        width: 100%;
        font-size: 1.4rem;
        margin-top: 1.4rem;
        color: var(--grey);
        text-align: justify;

    }

    /* SECTION : Home > Blog Section End */
    /* SECTION : Home End */
    /* SECTION : Article Begin */
    #article {
        margin-bottom: 10rem;

    }

    /* SECTION : Article > Breadcrumb Begin */
    #article .head > #breadcrumbs {
        width: 100%;
        display: flex;
        margin-bottom: 2rem;
    }

    #article .head > #breadcrumbs .breadcrumb-item {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #article .head > #breadcrumbs .breadcrumb-item .icon {
        margin: 0 1rem;
    }

    /* SECTION : Article > Breadcrumb End */
    #article .head > .title-wrap > h1 {
        text-align: center;
        font-size: 3rem;
    }

    #article .head > .title-wrap #thumbnail {
        width: 100%;
        height: 30rem;
        border-radius: 2rem;
        object-fit: cover;
        margin: 4rem 0rem 2rem;
    }

    #article .head > .title-wrap .details,
    #article .head > .title-wrap .details .detail {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #article .head > .title-wrap .details .detail {
        margin-left: 2rem;
    }

    #article .head > .title-wrap .details .detail .icon {
        margin: 0 1rem;
    }

    /* SECTION : Article > Title End */
    /* SECTION : Article > Content Begin */
    #article > #content-wrapper {
        height: fit-content;
        margin: 6rem auto;
        display: flex;
        justify-content: space-between;
    }

    #article > #content-wrapper #content {
        width: 100%;
        height: 100%;
    }

    #article > #content-wrapper #content p {
        text-align: justify;
        margin-bottom: 4rem;
    }

    /* SECTION : Article > Content > Author Begin */
    #article > #content-wrapper #author {
        width: 100%;
        height: fit-content;
        padding: 1.5rem;
        border-radius: 2rem;
        margin: 2rem 0;
    }

    #article > #content-wrapper #author .head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1rem;
    }

    #article > #content-wrapper #author .head .user-profile {
        height: 6rem;
        display: flex;
        align-items: center;
    }

    #article > #content-wrapper #author .head .user-profile img {
        width: 5rem;
        height: 5rem;
        padding: .6rem;
        background-color: var(--lightgrey);
        border-radius: 5rem;
    }

    #article > #content-wrapper #author .head .user-profile p {
        margin-right: 1rem;
        font-size: 1.6rem;
        font-weight: 500;
    }

    #article > #content-wrapper #author > p {
        color: var(--grey);
        text-align: justify;
    }

    #article > #content-wrapper #author .head .authors-articles {
        text-decoration: underline;
        color: var(--pantome);
    }

    #article > #content-wrapper #author .head .authors-articles:hover {
        color: var(--pantomeDark);
    }

    /* SECTION : Article > Content > Author End */
    /* SECTION : Article > Content > Side-bar Begin */
    #article > #content-wrapper > aside {
        width: 35rem;
        height: fit-content;
        margin-right: 8rem;
        display: none;
    }

    #article > #content-wrapper > aside .widget {
        border-radius: 1.5rem;
        overflow: hidden;
        margin-bottom: 3rem;
    }

    #article > #content-wrapper > aside .ad-widget {
        width: 100%;
        height: 20rem;
        background-color: var(--grey);
    }

    /* SECTION : Article > Content > Main Begin */
    #article > #content-wrapper main {
        width: 72rem;
        height: fit-content;
    }

    #article > #content-wrapper main p {
        line-height: 230%;
    }

    #article > #content-wrapper main h2,
    #article > #content-wrapper main h3 {
        margin: 1.6rem 0;
    }


    /* SECTION : Article > Content > Side-bar End */
    /* SECTION : Article > Content > Main End */
    /* SECTION : Article > Content End */
    /* SECTION : Article End */
    /* SECTION : More-Articles Begin */
    #more-articles {
        display: flex;
        flex-direction: column;
    }

    #more-articles .head {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 3rem;
    }

    #more-articles .head p {
        width: fit-content;
        color: var(--black);
        height: fit-content;
        font-weight: 800;
        display: inline-flex;
        margin-left: 3rem;
        font-size: 2rem;
    }

    #more-articles .head .hr {
        flex-grow: 1;
        height: .1rem;
        background-color: var(--lightgrey);
    }

    #more-articles .body {
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    #more-articles .body .blog-item {
        width: 100%;
        height: fit-content;
        overflow: hidden;
        display: flex;
        flex-direction: row;
        margin-bottom: 3rem;
    }

    #more-articles .body .blog-item .top-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #more-articles .body .blog-item .texts {
        width: fit-content;
        display: block;
    }

    #more-articles .body .blog-item:hover {
        cursor: pointer;
    }


    #more-articles .body .blog-item img {
        width: 16rem;
        height: 10rem;
        object-fit: cover;
        border-radius: 1.4rem;
        margin-left: 1.5rem;
    }

    #more-articles .body .texts > h3 {
        display: block;
        margin-bottom: 1rem;
        font-size: 1.8rem;
        font-weight: 500;
    }

    #more-articles .body .blog-item:hover h3 {
        color: var(--pantome);
        transition: all 350ms;
    }

    #more-articles .body .texts > span {
        display: block;
        margin: auto;
        font-size: 1.5rem;
        color: var(--grey);
    }

    #more-articles .body .blog-item > .details {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #more-articles .body .blog-item > .details .hr {
        height: .1rem;
        flex-grow: 1;
        background-color: var(--lightgrey);
        margin: 0 2rem;
        opacity: .5;
    }

    #more-articles .body .blog-item > .details .detail-item strong,
    #more-articles .body .blog-item > .details .detail-item span {
        font-size: 1.3rem;
        font-weight: 400;
        color: var(--coal);
    }

    /* SECTION : More-Articles End */
    /* SECTION : RozShomar Begin */
    #rozshomar .version-num {
        width: 100%;
        text-align: center;
        color: var(--lightgrey);
        font-size: 1.5rem;
        display: block;
        margin-top: 6rem;
    }

    /* SECTION : RozShomar > Content Begin */
    #rozshomar > #content {
        width: 85%;
        height: fit-content;
        margin: auto;
    }

    #rozshomar > #content > * {
        line-height: 200%;
    }

    #rozshomar > #content > p {
        text-align: justify;
    }

    #rozshomar > #content strong {
        font-weight: 600;
    }

    #rozshomar > #content a {
        color: var(--alphabet-red);
    }

    #rozshomar > #content a:hover {
        color: var(--alphabet-dark-red);
    }

    /* SECTION : RozShomar > Content End */
    #rozshomar > #progress-steps {
        width: 90%;
        display: flex;
        justify-content: space-between;
        margin: 6rem auto 0;
        overflow: hidden;
    }

    #rozshomar > #progress-steps .step {
        width: fit-content;
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1 0 auto;
    }

    #rozshomar > #progress-steps .step:last-child {
        margin-left: 0;
    }

    #rozshomar > #progress-steps .step > .step-dot {
        width: 3rem;
        height: 3rem;
        border-radius: 3rem;
        display: flex;
        border: .2rem solid var(--lightgrey);
        align-items: center;
        justify-content: center;
    }

    #rozshomar > #progress-steps .step > .active {
        background-color: var(--blue);
        border-color: var(--blue);
    }

    #rozshomar > #progress-steps .step > .semi-active {
        border-color: var(--blue);
    }

    #rozshomar > #progress-steps .step > .step-dot .inner-dot {
        width: 1rem;
        height: 1rem;
        background-color: var(--lightgrey);
        border-radius: 1rem;
    }

    #rozshomar > #progress-steps .step > .active .inner-dot {
        background-color: white;
    }

    #rozshomar > #progress-steps .step > .semi-active .inner-dot {
        background-color: var(--blue);
    }

    #rozshomar > #progress-steps .step > .step-level {
        font-weight: 600;
        margin: .6rem 0rem;
    }

    #rozshomar > #result-section {
        margin-top: 6rem;
        display: none;
    }

    #rozshomar > .show-result {
        display: block !important;
    }

    @keyframes fade-down {
        0% {
            visibility: hidden;
            transform: translateY(-2rem);
            opacity: 0;
        }
        to {
            transform: translateY(0rem);
            opacity: 1;
            visibility: visible;
        }
    }
    @keyframes fade-up {
        0% {
            visibility: hidden;
            transform: translateY(2rem);
            opacity: 0;
        }
        to {
            transform: translateY(0rem);
            opacity: 1;
            visibility: visible;
        }
    }

    #rozshomar > #result-section .user-preview {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #rozshomar > #result-section .user-preview .avatar {
        width: 12rem;
        padding: 2rem;
        background-color: var(--lightgrey);
        border-radius: 4rem;
        visibility: hidden;
    }

    #rozshomar > #result-section .user-preview > .show {
        animation: fade-down;
        animation-duration: 500ms;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
    }

    #rozshomar > #result-section .user-preview strong {
        font-size: 1.8rem;
        margin-top: 2rem;
    }

    #rozshomar > #result-section #remaining-days {
        flex-direction: column;
    }

    #rozshomar > #result-section .ms-preview {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 3rem 0rem;
    }

    #rozshomar > #result-section .ms-preview > .item {
        min-width: 20rem;
        display: flex;
        visibility: hidden;
    }

    #rozshomar > #result-section .ms-preview > .show {
        animation: fade-up;
        animation-duration: 500ms;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
    }

    #rozshomar > #result-section .ms-preview .cd-item .item {
        min-width: 9rem;
        height: 100%;
    }

    #rozshomar > #result-section .ms-preview > .item,
    #rozshomar > #result-section .ms-preview .cd-item .item {
        background-color: var(--lightestgrey);
        margin-left: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 3rem;
        padding: 2.5rem 2rem;
    }

    #rozshomar > #result-section #remaining-days .item {
        margin-left: 0;
        margin-bottom: 3rem;
    }


    #rozshomar > #result-section .ms-preview > .item > p {
        padding: 0 1rem;
    }

    #rozshomar > #result-section .ms-preview > .item:last-child {
        margin-left: 0;
    }

    #rozshomar > #result-section .ms-preview > .item .progress-bar {
        width: 100%;
        height: .4rem;
        margin-top: 1rem;
        display: flex;
    }

    #rozshomar > #result-section .ms-preview > .item .progress-bar > .progress,
    #rozshomar > #result-section .ms-preview > .item .progress-bar > .remaining {
        height: 100%;
        border-radius: 1rem;
    }

    #rozshomar > #result-section .ms-preview > .item .progress-bar > .progress {
        width: 80%;
        background-color: var(--green);
    }

    #rozshomar > #result-section .ms-preview > .item .progress-bar > .remaining {
        width: 20%;
        margin-left: .4rem;
        background-color: var(--lightgrey);
    }

    /* SECTION : RozShomar > Setup Progress Begin */
    #rozshomar > #setup-progress {
        width: 90%;
        margin: 10rem auto;
    }

    #rozshomar > #setup-progress > .setup-item {
        width: 100%;
        margin: auto;
        height: fit-content;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        margin-bottom: 4rem;
    }


    #rozshomar > #setup-progress > .setup-two,
    #rozshomar > #setup-progress > .setup-three {
        display: none;
    }

    #rozshomar > #setup-progress > .setup-buttons {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    #rozshomar > #setup-progress > .setup-item .setup-button {
        width: fit-content;
        padding: .6rem 1rem;
        border-radius: .7rem;
        border-color: transparent;
        background-color: var(--pantome);
        color: white;
        display: block;
    }

    #rozshomar > #setup-progress > .setup-item #prev-item {
        display: none;
    }

    #rozshomar > #setup-progress > .setup-item .setup-button:hover {
        cursor: pointer;
        background-color: var(--pantomeDark);
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap {
        height: fit-content;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        margin-bottom: 3rem;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap:last-child {
        margin-left: 0;
    }

    #rozshomar > #setup-progress > .setup-item > .input-wrap:last-child,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap:last-child {
        margin-left: 0;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker {
        width: 100%;
        height: fit-content;
        display: flex;
        align-items: center;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item {
        flex-grow: 1;
        margin-left: 1rem;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item:last-child {
        margin-left: 0;
    }

    #rozshomar > #setup-progress > .setup-item > .input-wrap span,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap span,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item span {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item span {
        font-size: 1.5rem;
        font-weight: 400;
        display: block;
        margin-bottom: 1rem;
    }


    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap input,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap select,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item input {
        width: 100%;
        height: fit-content;
        padding: 1.3rem 2rem;
        border-radius: 1rem;
        outline: none;
        border: .2rem solid var(--lightestgrey);
        font-size: 1.6rem;
        font-family: 'PeydaWebFaNum';
        background-color: var(--lightestgrey);
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .error {
        border-color: var(--alphabet-red);
    }

    #rozshomar > #setup-progress > .setup-item > .input-wrap input:focus,
    #rozshomar > #setup-progress > .setup-item > .input-wrap select:focus,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item input:focus {
        background-color: white;
        border-color: var(--pantome);
    }

    /* HTML: <div class="loader"></div> */
    #rozshomar > #setup-progress > .setup-item #loader-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #rozshomar > #setup-progress > .setup-item #loader-wrap span {
        font-size: 1.7rem;
    }

    .loader {
        width: 3.2rem;
        aspect-ratio: 1;
        --_g: no-repeat radial-gradient(farthest-side, #3a3a3a 90%, #0000);
        background: var(--_g), var(--_g), var(--_g), var(--_g);
        background-size: 40% 40%;
        margin-bottom: 3rem;
        animation: l46 1s infinite;
    }

    @keyframes l46 {
        0% {
            background-position: 0 0, 100% 0, 100% 100%, 0 100%
        }
        40%,
        50% {
            background-position: 100% 100%, 100% 0, 0 0, 0 100%
        }
        90%,
        100% {
            background-position: 100% 100%, 0 100%, 0 0, 100% 0
        }
    }

    /* SECTION : RozShomar > Setup Progress End */
    /* SECTION : RozShomar > CountDown Begin */
    #rozshomar > #result-section .ms-preview .cd-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #rozshomar > #result-section .ms-preview .colon {
        height: 10.1rem;
        margin: 4rem 2rem 0;
        font-size: 1.6rem;
        display: flex;
        align-items: center;
        font-weight: 600;
        justify-content: center;
    }

    #rozshomar > #result-section .ms-preview .cd-item > span {
        font-size: 1.6rem;
        color: var(--lightgrey);
        margin-bottom: 1.2rem;
    }

    #rozshomar > #result-section .ms-preview .cd-item .item {
        padding: 2rem;
        border-radius: 2rem;
        margin: 0
    }

    #rozshomar > #result-section .ms-preview .cd-item .item > p {
        font-weight: 600;
        font-size: 3rem;
    }

    /* SECTION : RozShomar > CountDown End */
    /* SECTION : RozShomar > Graffito Begin */
    #rozshomar > #result-section #graffito {
        width: 90%;
        /*height: 45rem;*/
        margin: 5rem auto;
        object-fit: cover;
        border: .2rem solid var(--lightgrey);
        border-radius: 3rem;
        padding: 3rem;
        display: grid;
    }


    /* SECTION : RozShomar > Graffito End */
    /* SECTION : RozShomar End */
    /* SECTION : Blog Begin */
    #blog #page-title {
        width: 100%;
        margin-bottom: 5rem;
    }

    #blog #page-title > h1 {
        font-size: 3.8rem;
    }

    #blog #page-title > h1 .dot {
        color: var(--alphabet-red);
    }

    /* SECTION : Blog > Pinned Article Begin */
    #blog > #pinned-article {
        width: 100%;
        height: 36rem;
        background-color: #5fc057;
        border-radius: 3rem;
        overflow: hidden;
        position: relative;
        display: block;
    }

    #blog > #pinned-article:hover {
        cursor: pointer;
    }

    #blog > #pinned-article:hover > img {
        transform: scale(1.02);
        transition: all 200ms;
    }

    #blog > #pinned-article > img {
        width: 100%;
        height: 40rem;
        object-fit: cover;
        margin: 0;
        z-index: 1;
        transition: all 200ms;
    }

    #blog > #pinned-article > .hidden {
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 500;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
    }

    #blog > #pinned-article > .article-detail {
        width: 100%;
        height: fit-content;
        position: absolute;
        bottom: 0rem;
        right: 0rem;
        padding: 4rem;
        z-index: 100 !important;
    }

    #blog > #pinned-article > .article-detail:before {
        content: '';
        width: 100%;
        height: 40rem;
        position: absolute;
        bottom: 0rem;
        right: 0rem;
        left: 0;
        background: linear-gradient(0deg, black, rgba(0, 0, 0, 0.81), rgba(0, 0, 0, 0));
        opacity: .6;
        z-index: -1;
    }

    #blog > #pinned-article > .article-detail * {
        color: white;
    }

    #blog > #pinned-article > .article-detail .category {
        padding: .4rem 1rem;
        border: .1rem solid var(--white-marble);
        border-radius: 3rem;
        background-color: rgba(0, 0, 0, 0.2);
        transition: all 250ms;
    }

    #blog > #pinned-article > .article-detail .category:hover {
        transition: all 250ms;
        background-color: rgba(0, 0, 0, 0.4);
    }

    #blog > #pinned-article > .article-detail h2 {
        margin: 1rem 0;
    }

    #blog > #pinned-article > .article-detail p {
        font-weight: 300;
    }

    #blog > .title-wrap {
        width: 100%;
        height: fit-content;
        margin: 6rem 0 2rem;
        display: flex;
    }

    #blog > .title-wrap > h2 {
        font-size: 2rem;
    }

    #blog > #articles {
        width: 100%;
        display: grid;
        margin-top: 3rem;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 7rem 4rem;
    }

    #blog > #articles .article-item {
        overflow: hidden;
        float: right;
    }

    #blog > #articles .article-item > img {
        width: 100%;
        height: 16rem;
        border-radius: 2rem;
        object-fit: cover;
        margin-bottom: 1rem;
    }

    #blog > #articles .article-item > p {
        margin-top: 1rem;
        font-size: 1.4rem;
        color: var(--grey);
    }

    #blog > #articles .article-item a {
        line-height: 175%;
    }

    #blog > #articles .article-item:hover {
        cursor: pointer;
    }

    #blog > #articles .article-item:hover > a {
        color: var(--blue);
    }

    #blog > #articles .article-item > a * {
        font-size: 1.8rem;
        text-align: justify;
        font-weight: 600;
    }

    #blog > #more-loader {
        width: 100%;
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 6rem;
    }

    #blog > #more-loader #load-more {
        padding: 1rem 1.9rem;
        border-radius: 1.2rem;
        background-color: var(--black);
        color: white;
        font-size: 1.6rem;
        border: none;
    }

    #blog > #more-loader #load-more:hover {
        cursor: pointer;
        background-color: var(--darkerblack);
    }

    /* SECTION : Blog > Pinned Article End */
    /* SECTION : Category Begin */
    #blog > #categoryList {
        display: block;
    }

    #blog > #categoryList > .article-item {
        width: 45%;
        border-radius: 3.5rem;
        transition: all 300ms ease-in;
        border: .2rem solid transparent;
        padding: 2.5rem;
        float: right;
        margin-left: 5rem;
        margin-bottom: 4rem;
    }

    #blog > #categoryList > .article-item:nth-child(2n) {
        margin-left: 0 !important;
    }

    #blog > #categoryList > .article-item:hover {
        border: .2rem solid var(--lightestgrey);
    }

    #blog > #categoryList > .article-item > .img {
        width: 20rem;
        height: 20rem;
        border-radius: 2rem;
        margin: 0rem !important;
    }

    #blog > #categoryList > .article-item:hover .img > img {
        transform: scale(1.05);
        transition: all ease-in 150ms;
        transition-delay: 150ms;
    }

    #blog > #categoryList > .article-item > h3 {
        width: 100%;
        font-size: 1.8rem;
        margin-top: 3rem;
        text-align: right;
    }

    #blog > #categoryList > .article-item:hover > h3 {
        color: var(--alphabet-dark-red);
    }

    #blog > #categoryList > .article-item > p {
        display: none !important;
    }

    #blog > #contentBox {
        width: 90%;
        margin: 6rem auto 10rem;
    }

    /* SECTION : Category End */
    /* SECTION : Blog End */
    /* SECTION : About Begin */
    #about-us h1 {
        visibility: hidden;
    }

    #about-us h2,
    #about-us h2 * {
        font-size: 3.2rem;
        line-height: 200%;
        color: var(--grey);
        text-align: justify;
        font-weight: 700;
    }

    #about-us .highlight,
    #about-us .highlight * {
        /*color: var(--alphabet-red);*/
        color: var(--black);
    }

    #about-us > .page-section img {
        width: 100%;
        height: 34rem;
        background-color: var(--darkgrey);
        margin: 6rem 0;
        border-radius: 3rem;
    }

    #about-us > .page-section {
        display: flex;
        margin: 3rem auto 6rem;
        align-items: center;
        flex-direction: column;
    }

    #about-us > .page-section > .section-item {
        flex-grow: 1;
        margin-right: 2rem;
        display: flex;
        justify-content: start;
    }

    #about-us > .two-col {
        flex-direction: column;
    }

    #about-us > .two-col .text {
        width: 70%;
        display: block;
        text-align: center;
        margin-top: 3rem;
    }

    #about-us > .two-col .text p {
        font-size: 1.6rem;
        line-height: 200%;
        text-align: justify;
    }

    #about-us > .two-col .text h3 {
        margin-bottom: 2rem;
    }


    #about-us > .page-section > .stats {
        width: 70%;
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #about-us > .page-section > .stats .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 3rem;
    }

    #about-us > .page-section > .stats .stat-item > p {
        font-size: 2.6rem;
    }

    #about-us > .page-section > .stats .stat-item > span {
        font-size: 1.6rem;
        font-weight: 300;
        color: var(--grey);
    }

    #about-us #do-dont-section {
        flex-direction: column;
        align-items: start;
    }

    #about-us > #reasons {
        width: 100%;
        height: 40rem;
        margin: 4rem 0rem;
    }

    #about-us > #reasons > .row {
        border-top: .1rem solid var(--lightgrey);
        border-bottom: .1rem solid var(--lightgrey);
        z-index: -1;
    }

    #about-us > #reasons > .row:last-child {
        border-top: none;
    }

    #about-us > #reasons > .row .container {
        display: flex;
    }

    #about-us > #reasons > .row .container .item {
        display: flex;
        flex-grow: 1;
        flex-direction: column;
        padding: 3rem;
        border-right: .1rem solid var(--lightgrey);
        transition: 400ms all;
    }

    #about-us > #reasons > .row .container .item:hover {
        cursor: pointer;
        box-shadow: 0rem 0rem 3rem #dadce6;
        transition: 400ms all;
        border: none;
        z-index: 5000;
    }

    #about-us > #reasons > .row .container .item:last-child {
        border-left: .1rem solid var(--lightgrey);
    }

    #about-us > #reasons > .row .container .item > strong {
        font-size: 2rem;
        font-weight: 400;
        margin-bottom: 1rem;
    }

    #about-us > #reasons > .row .container .item > span,
    #about-us > #reasons > .row .container .item > p {
        color: var(--grey);
    }

    #about-us > #cta {
        width: 70%;
        background-color: #3259E8;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 6rem 3rem;
        border-radius: 4rem;
        margin: 2rem auto;
    }

    #about-us > #cta .avatar > img {
        width: 8rem;
        height: 8rem;
    }

    #about-us > #cta .avatar {
        background-color: rgba(194, 196, 204, 0.4);
        border-radius: 6rem;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
    }

    #about-us > #cta p {
        color: white;
        font-size: 3rem;
        text-align: center;
        font-weight: 500;
    }

    #about-us > #cta p > span {
        font-size: 1.8rem;
        text-align: center;
        font-weight: 300;
    }

    #about-us > #cta a {
        margin-top: 2rem;
        padding: 1rem 2rem;
        background-color: white;
        border-radius: 5rem;
        font-weight: 600;
    }

    /* SECTION : About End */
    /* SECTION : ContactUs Begin */
    #contact-us {
        height: fit-content;
        text-align: center;
        margin-top: 6rem;
        display: block;
    }

    #contact-us > #contactMethods {
        margin-top: 5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }

    #contact-us > #contactMethods > .method {
        width: 60%;
        border: .1rem solid var(--lightgrey);
        padding: 7rem 2rem 3rem;
        border-radius: 1rem;
        display: flex;
        align-items: start;
        justify-content: end;
        flex-direction: column;
        margin-bottom: 5rem;
        flex-grow: 1;
    }

    #contact-us > #contactMethods > .method:last-child {
        margin-left: 0;
    }

    #contact-us > #contactMethods > .method span {
        margin: .6rem 0rem;
        font-size: 1.5rem;
        text-align: right;
    }

    #contact-us > #contactMethods > .method a {
        direction: ltr;
    }

    /* SECTION : ContactUs End */
    /* SECTION : Footer Begin */
    footer {
        width: 100%;
        height: fit-content;
        margin-top: 14rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }

    footer .footer-layout {
        width: 100%;
        padding: 2rem;
        flex-grow: 1;
    }

    footer .footer-layout:last-child {
        order: 3;
    }

    footer .links {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        order: 1;
    }

    footer .links a {
        margin-left: 6rem;
    }

    footer .links a:last-child {
        margin-left: 0;
    }

    footer .avatar-layout {
        width: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
        order: 0;
    }

    .footer-layout > .avatar-wrap {
        width: 4rem;
        height: 4rem;
        overflow: hidden;
        padding: .4rem;
        background-color: var(--white-marble);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5rem;
    }

    .footer-layout > .avatar-wrap > img {
        width: auto;
        height: 100%;
    }

    /* SECTION : Footer End */
    /* SECTION : Search Begin */
    #search > .head {
        width: 100%;
        height: 15rem;
        background-color: orange;
    }

    #search > #results {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 2rem;
        padding: 1rem;
        border-radius: 2rem;
    }

    #search > #results .result-item {
        height: 18rem;
        border-radius: 2rem;
        padding: 1.5rem;
        justify-content: space-between;
        overflow: hidden;
    }

    #search > #results .result-item .img-wrap {
        width: 15rem;
        height: 15rem;
        border-radius: 2rem;
        margin-right: 0rem;
    }

    #search > #results .result-item .img-wrap img {
        width: 100%;
        height: 100%;
        border: none;
        outline: none;
        object-fit: cover;

        display: none;
    }

    #search > #results .result-item .txt-wrap {
        padding: 1rem 0 0 1rem;
        margin-right: 2rem;
        align-items: start;
        justify-content: center;
    }

    #search > #results .result-item .txt-wrap h2 {
        text-align: right;
        font-size: 1.8rem;
    }

    #search > #results .result-item .txt-wrap p {
    }

    /* SECTION : Search End */
}

/* Extra small devices (phones, 600px and down) */
@media screen and (max-width: 600px) {
    body {
        overflow-x: hidden;
    }

    .container {
        width: 94%;
        /*background-color: darkcyan;*/
    }

    /* SECTION : Header Begin */
    header {
        width: 100%;
        height: 10rem;
        margin-bottom: 3rem;
    }

    .header-wrap {
        height: 100%;
    }

    .header-wrap .logo .icon {
        font-size: 4.4rem;
    }

    .header-wrap .h-button > div,
    .header-wrap .h-button > a {
        padding: 1rem;
        border-radius: 3rem;
        border: .2rem solid var(--grey);
        margin-right: 1rem;
    }

    .header-wrap .h-button > div:hover {
        cursor: pointer;
    }

    .header-wrap .h-button > a:hover > .icon,
    .header-wrap .h-button > div:hover .icon {
        color: dimgray;
    }

    .header-wrap .h-button > #subscription-btn {
        display: none;
    }

    .header-wrap .menu {
        display: none;
    }

    /* SECTION : Header End */
    /* SECTION : Mobile Navigation Begin */
    #mobile-nav {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.55);
        z-index: 1000;
        justify-content: right;
        display: none;
    }

    @keyframes mobileNavSlide {
        from {
            transform: translateX(-100%);
        }
        to {
            transform: translateX(0%);
        }
    }

    @keyframes mobileNavSlideReverse {
        from {
            transform: translateX(0%);
        }
        to {
            transform: translateX(-100%);

        }
    }

    #mobile-nav > .container {
        width: 100%;
        height: 100%;
        transform: translateX(-100%);
        background-color: white;
        float: right;
        margin: 0;
        padding: 2rem;
    }

    #mobile-nav > .show {
        animation: mobileNavSlide;
        animation-duration: 1s;
        animation-fill-mode: forwards;
        animation-timing-function: ease-in;
    }

    #mobile-nav > .hide {
        animation: mobileNavSlideReverse;
        animation-duration: 1s;
        animation-fill-mode: forwards;
        animation-timing-function: ease-in;
    }

    #mobile-nav > .container .head {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 4rem;
        padding: 0 2rem;
    }

    #mobile-nav > .container .head .icon {
        font-size: 3rem;
    }

    #mobile-nav > .container .head .icon-Wikisarbaz {
        font-size: 5rem;
    }

    #mobile-nav > .container .head .button {
        width: 4.5rem;
        height: 4.5rem;
        border-radius: 9rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #mobile-nav > .container .head .button:hover {
        background-color: var(--lightestgrey);
        cursor: pointer;
    }

    #mobile-nav > .container > nav {
        width: 100%;
        height: fit-content;
    }

    #mobile-nav > .container > nav .menu-link {
        width: 100%;
        margin-bottom: 2rem;
        border-radius: var(--1rem);
        overflow: hidden;
    }

    #mobile-nav > .container > nav .menu-link:hover {
        background-color: var(--lightestgrey);
    }

    #mobile-nav > .container > nav .menu-link a {
        width: 100%;
        height: 100%;
        display: block;
        padding: 1.6rem 2rem;
        font-size: 1.8rem;
    }

    /* SECTION : Mobile Navigation End */
    /* SECTION : Home Begin */
    #home-landing {
        height: fit-content;
    }

    .hero {
        height: fit-content;
        margin-bottom: 10rem;
        display: flex;
        align-items: center;
        flex-direction: column;
        margin-top: 10rem;
    }

    .hero .intro-sides {
        flex-grow: 1;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .hero .intro-sides > p {
        width: 85%;
        text-align: center;
        font-size: 1.7rem;
        font-weight: 300;
        margin-top: 1rem;
        color: var(--grey);
    }

    .hero .intro-sides > img {
        width: 100%;
        margin-top: 5rem;
    }

    .hero .intro-sides .buttons {
        width: fit-content;
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 6rem;
    }

    .hero .intro-sides .buttons .button {
        padding: .6rem 1.6rem;
        font-size: 1.4rem;
    }

    .hero .intro-sides .buttons .button:first-child {
        margin-left: 2rem;
    }

    .hero .intro-sides .buttons .filled {
        background-color: var(--black);
        border-radius: 3rem;
        color: white;
    }

    .hero .intro-sides .buttons .filled:hover {
        background-color: var(--darkerblack);
    }

    .hero .intro-sides .buttons .outline {
        border: .2rem solid var(--black);
        border-radius: 5rem;
    }

    .hero .intro-sides .buttons .outline:hover {
        background-color: var(--lightestgrey);
    }

    .hero .intro-sides h2 {
        width: 70%;
        text-align: center;
        margin-bottom: 1rem;
        font-size: 3rem;
    }

    /* SECTION : OPTIONS BEGIN */
    .hero .intro-sides .heroSwiper {
        width: 100%;
    }

    .features {
        width: 80%;
        margin-top: 5rem;
    }

    .hero .intro-sides .heroSwiper .swiper-wrapper {
    }

    .hero .intro-sides .heroSwiper .swiper-slide {
        width: 23rem;
        height: 23rem;
        border-radius: 3rem;
        overflow: hidden;
        background-position: center;
        background-size: cover;
        background-color: transparent;
    }

    .hero .intro-sides .heroSwiper .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* SECTION : OPTIONS END */
    #home-landing > .landing-section {
        width: 100%;
        height: 35rem;
        margin-bottom: 3rem;
    }

    #home-landing > .landing-section > h3 {
        width: 100%;
    }


    /* SECTION : Home > Why Section Begin */
    #home-landing > #why-section {
        width: 100%;
        height: fit-content;
        margin-bottom: 12rem;
        flex-direction: column;
    }

    #home-landing > .two-col {
        height: fit-content;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    #home-landing > .two-col .section-col {
        width: 100%;
        flex-grow: 1;
    }

    #home-landing > #why-section > .text-col {
        width: fit-content;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        /*margin-bottom: 5rem;*/

    }

    #home-landing > #why-section > .text-col > .title {
        display: flex;
        align-items: center;
        justify-content: start;
    }

    #home-landing > #why-section > .text-col > h2 {
        font-size: 2.6rem;
    }

    #home-landing > #why-section > .text-col > p {
        width: 80%;
        margin: 2rem 0;
        text-align: center;
        line-height: 200%;
        color: grey;
    }

    #home-landing > #why-section > .text-col > .buttons {
        width: 100%;
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #home-landing > #why-section > .text-col > .buttons .button {
        padding: 1rem 2rem;
        background-color: var(--black);
        border-radius: 5rem;
        color: white;
    }

    #home-landing > #why-section > .text-col > .buttons .button:hover {
        background-color: var(--darkerblack);
    }

    #home-landing > #why-section > .section-grid {
        width: 100%;
        height: fit-content;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 18rem);
        grid-gap: 4rem 3rem;
        margin-top: 5rem;
    }

    #home-landing > #why-section > .section-grid > .item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: var(--lightestgrey);
        border-radius: 2rem;
    }

    #home-landing > #why-section > .section-grid > .item:hover {
        cursor: pointer;
    }

    #home-landing > #why-section > .section-grid > .active {
        background-color: var(--darkerblack);
        box-shadow: 0 1rem 4rem rgba(46, 47, 51, 0.15);
        transition: all 220ms ease-in;
        transform: translateY(-1rem);
    }

    #home-landing > #why-section > .section-grid > .item > .icon {
        font-size: 3rem;
        margin: 1.5rem 0;
        color: var(--lightgrey);
        transition: all 200ms ease-in;
    }

    #home-landing > #why-section > .section-grid > .item > p {
        width: 80%;
        font-weight: 200;
        text-align: center;
    }

    #home-landing > #why-section > .section-grid > .item > p:first-child {
        font-weight: 400;
        font-size: 1.8rem;
    }

    #home-landing > #why-section > .section-grid > .active > .icon,
    #home-landing > #why-section > .section-grid > .active > p {
        color: whitesmoke;
        transition: all 200ms ease-in;
    }

    #home-landing > #why-section > .section-grid > .active > .icon {
        background: linear-gradient(40deg, #757F9A, #D7DDE8);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* SECTION : Home > Why Section End */
    /* SECTION : Home > Tools Section Begin */
    #tools-section {
        height: fit-content!important;
        margin-bottom: 10rem !important;
    }

    #tools-section .centered-col {
        align-items: center;
        justify-content: center;
    }

    #tools-section .centered-col h2,
    #tools-section .centered-col p {
        margin: auto;
        text-align: center;
    }

    #tools-section .centered-col h2 {
        width: 60%;
    }

    #tools-section .centered-col p {
        width: 45%;
        margin-top: 2rem;
    }

    #tools-section .centered-col #tools {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);

        margin-top: 6rem;
        grid-gap: 3rem;
    }

    #tools-section .centered-col #tools .tool {
        height: 16rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border: .2rem solid var(--lightestgrey);
        filter: drop-shadow(0 .5rem 0 var(--lightestgrey));
        background-color: #FFFFFF;
        border-radius: 2rem !important;
        transition: all 300ms ease-in;
        position: relative;
        padding-bottom: 2rem;
    }

    #tools-section .centered-col #tools .tool:hover {
        filter: drop-shadow(0 0rem 0 var(--lightestgrey));
        transition: all 300ms ease-in;
        transform: translateY(.5rem);
    }

    #tools-section .centered-col #tools .tool:hover .soon {
        opacity: 100%;
        transition: all 500ms;
    }

    #tools-section .centered-col #tools .disable i,
    #tools-section .centered-col #tools .disable span {
        color: var(--lightgrey);
    }

    #tools-section .centered-col #tools .disable .soon {
        background-color: var(--coal);
        border: .16rem solid var(--coal);
        color: whitesmoke;
        padding: .2rem .6rem;
        margin-top: 1rem;
        font-size: 1.4rem;
        border-radius: 2rem;
        font-weight: 600;
        position: absolute;
        bottom: 2rem;
        opacity: 0;
        transition: all 500ms;
    }

    #tools-section .centered-col #tools .disable:hover {
        filter: drop-shadow(0 .5rem 0 var(--lightestgrey)) !important;
        transform: translateY(0rem) !important;
    }

    #tools-section .centered-col #tools .tool .icon {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    #tools-section .centered-col #tools .tool span {
        font-size: 1.6rem;
    }

    /* SECTION : Home > Tools Section End */
    /* SECTION : Home > RozShomar Section Begin */
    #rozshomar-section {
        margin: 10rem 0rem 20rem !important;
        flex-direction: column!important;
    }
    #rozshomar-section .section-col {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 3rem;
    }
    #rozshomar-section .section-col #rs-image {
        width: 35rem;
    }

    #rozshomar-section .text-col{
        width: 90% !important;
        margin: auto;
    }

    #rozshomar-section .section-col .button {
        padding: .8rem 2rem;
        color: white;
        font-size: 1.8rem;
        font-weight: 300;
        border-radius: 6rem;
        margin-top: 10rem;
    }

    /* SECTION : Home > RozShomar Section End */
    /* SECTION : Home > Pricing Section Begin */
    #home-landing > #pricing-section {
        width: 100%;
        height: fit-content;
        margin-bottom: 8rem;
        border-radius: 2rem;
    }

    #home-landing > #pricing-section .section-content {
        display: flex;
    }

    #home-landing > #pricing-section .section-content > .subscription-content {
        width: 26%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        flex: 1 0 auto;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap {
        width: 100%;
        display: flex;
        background-color: var(--lightestgrey);
        border-radius: 2rem;
        justify-content: space-between;
        padding: .5rem;

    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table {
        width: 50%;
        border-radius: 1.5rem;
        box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.04);
        background-color: white;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table:nth-child(2) {
        margin-right: .5rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table:last-child {
        box-shadow: 33px 0px 80px rgba(0, 0, 0, 0.05);
    }

    #home-landing > #pricing-section .section-content > .subscription-content {
        margin-left: 0;
    }

    #home-landing > #pricing-section .section-content > .subscription-content .head,
    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head {
        width: 100%;
        height: 20rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 3rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content > .head {
        align-items: start;
    }

    #home-landing > #pricing-section .section-content > .subscription-content > .head h4,
    #home-landing > #pricing-section .section-content > .subscription-content > .head span {
        width: 100%;
        font-weight: 700;
        font-size: 1.7rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content > .head h4 > span {
        display: block;
        color: var(--alphabet-red);
        font-size: 2rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content > .head > span {
        font-size: 1.6rem;
        font-weight: 400;
        color: var(--grey);
        margin-top: 3rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head > .avatar {
        width: 7rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .vazifeh-pro .head > .avatar {
        filter: grayscale(100%);
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head > .plan-name {
        margin: 1rem 0rem;
        font-size: 1.6rem;
        font-weight: 500;
        color: var(--grey);
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table:nth-child(2) .head > .plan-name span {
        color: var(--black);
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head > .plan-name span {
        color: var(--alphabet-red);
        font-weight: 600;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .head > .timespan {
        color: var(--grey);
        font-size: 1.5rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body {
        height: fit-content;
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body ul li:first-child {
        margin-top: 1.5rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li,
    #home-landing > #pricing-section .section-content > .subscription-content .body ul li {
        width: 100%;
        height: 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 3rem;
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body ul li p,
    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li p {
        font-size: 1.5rem;
        font-weight: 400;
        color: var(--darkgrey);
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body ul li p > .strong {
        font-weight: 600;
        color: var(--black);
    }

    #home-landing > #pricing-section .section-content > .subscription-content .body ul li {
        align-items: center;
        justify-content: start;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul .button {
        margin-top: 4rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul .button a {
        background-color: var(--black);
        padding: 1rem 2rem;
        border-radius: 5rem;
        color: white;
        font-weight: 400;
        font-size: 1.4rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul .outline a {
        border: .2rem solid var(--black);
        background-color: transparent;
        color: var(--black);
    }


    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .icon {
        font-size: 2.5rem;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .not-accessed {
        color: var(--grey);
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .accessed,
    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .icon-tick-square-bold {
        color: var(--green);
        font-weight: 600;
    }

    #home-landing > #pricing-section .section-content > .pricing-wrap .pricing-table .body ul li > .icon-cross-mark-sqaure {
        color: var(--grey);
    }

    /* SECTION : Home > Pricing Section End */
    /* SECTION : Home > Reviews Section Begin */
    #reviews {
        margin: 0 0 40rem !important;
    }

    #reviews .section-content {
        height: fit-content;
        display: flex;
        flex-direction: column !important;

    }

    #reviews .section-content > .right {
        flex: 1;
    }

    #reviews .section-content > .right h2,
    #reviews .section-content > .right p {
        text-align: center;
    }

    #reviews .section-content > .right h2 {
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 3rem;
    }

    #reviews .section-content > .right p {
        width: 60%;
        margin: auto;
        font-size: 1.6rem;
        color: var(--grey);
        line-height: 200%;
        text-align: center;
    }

    #reviews .section-content > .left {
        flex: 2;
        display: flex;
        margin-top: 4rem;
    }

    #reviews .section-content > .left > .mySwiper {
        width: 80%;
        height: fit-content;
    }

    #reviews .section-content > .left > .mySwiper .swiper-slide {
        height: 26rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--lightestgrey);
        border-radius: 3rem;
    }

    #reviews .section-content > .left > .mySwiper .swiper-slide > img {
        width: 100%;
        height: auto;
        object-position: center;
    }

    /* SECTION : Home > Reviews Section End */
    /* SECTION : Home > Consultant Begin */
    #home-landing > #consultant-section {
        width: 100%;
        height: fit-content;
        background-color: var(--coal);
    }

    #home-landing > #consultant-section .section-content {

    }

    /* SECTION : Home > Consultant End */
    /* SECTION : Home > Consultant Begin */
    #home-landing > #consultant-section {
        width: 100%;
        height: fit-content !important;
        background-color: var(--coal);
        border-radius: var(--4rem);
        padding: 5rem 1rem 2rem;
        display: flex;
        margin-bottom: 6rem;
    }

    #home-landing > #consultant-section .section-content {
        display: flex;
        flex: 1 0 auto;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    #home-landing > #consultant-section .section-content .img-wrap {
        height: 16rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #home-landing > #consultant-section .section-content .img-wrap > img {
        height: 100%;
    }

    #home-landing > #consultant-section .section-content .buttons {
        margin: 2rem 0 1rem;
    }

    #home-landing > #consultant-section .section-content .buttons > a {
        padding: .8rem 2rem;
        color: white;
        font-size: 1.6rem;
        font-weight: 300;
        border: .2rem solid whitesmoke;
        border-radius: 6rem;
    }

    #home-landing > #consultant-section .section-content .buttons > .filled {
        background-color: white;
        color: var(--coal);
        font-weight: 500;
    }

    #home-landing > #consultant-section .section-content .buttons > a:hover {
        filter: brightness(85%);
    }

    #home-landing > #consultant-section .section-content .buttons > a:first-child {
        margin-left: 1.5rem;
    }

    #home-landing > #consultant-section .section-content .text p {
        font-size: 2.4rem;
        font-weight: 600;
        color: white;
    }

    #home-landing > #consultant-section .section-content img {
        filter: saturate(120%);
    }

    /* SECTION : Home > Consultant End */
    /* SECTION : Home > Blog Section Begin */
    #home-landing > #blog {
        height: fit-content;
        margin-bottom: 8rem;
        display: flex;
        flex-direction: column;
    }

    #home-landing > #blog .section-content {
        height: fit-content;
        margin-top: 2rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-gap: 3rem 4rem;
    }

    #home-landing > #blog .section-content .post {
        width: fit-content;
        height: fit-content;
        display: flex;
        padding: 1rem 1rem 2rem;
        flex-direction: column;
        border: .2rem solid transparent;
        border-radius: 2rem;
        transition: all 250ms ease-in;

    }

    #home-landing > #blog .section-content .post:hover {
        cursor: pointer;
        border-color: var(--lightestgrey);
        transition: all 250ms ease-in;

    }

    #home-landing > #blog .section-content .post:hover img {
        filter: grayscale(20%);
        transition: all 250ms ease-in;
    }

    #home-landing > #blog .section-content .post > img {
        width: 100%;
        height: 10rem;
        transition: all 100ms ease-in;
        filter: grayscale(80%);
        object-fit: cover;
        border-radius: 2rem;
        margin: 0 auto 2rem;
    }

    #home-landing > #blog .section-content .post > .details {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #home-landing > #blog .section-content .post > .details .cat {
        font-size: 1.4rem;
        margin: 1.4rem 0 .4rem;
        display: block;
        color: var(--grey);
    }

    #home-landing > #blog .section-content .post:hover > .details > .title {
        color: var(--alphabet-red);
    }

    #home-landing > #blog .section-content .post > .details > .title {
        width: 100%;
        font-size: 1.8rem;
        text-align: center;
        font-weight: 500;
        padding: 0;
    }

    #home-landing > #blog .section-content .post > .details > p {
        width: 100%;
        font-size: 1.4rem;
        margin-top: 1.4rem;
        color: var(--grey);
        text-align: justify;

    }

    /* SECTION : Home > Blog Section End */
    /* SECTION : Home End */
    /* SECTION : Article Begin */
    #article {
        margin-bottom: 10rem;

    }

    /* SECTION : Article > Breadcrumb Begin */
    #article .head > #breadcrumbs {
        width: 100%;
        display: flex;
        margin-bottom: 2rem;
    }

    #article .head > #breadcrumbs .breadcrumb-item {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #article .head > #breadcrumbs .breadcrumb-item .icon {
        margin: 0 1rem;
    }

    /* SECTION : Article > Breadcrumb End */
    #article .head > .title-wrap > h1 {
        text-align: center;
        font-size: 2.8rem;
        font-weight: 600;
    }

    #article .head > .title-wrap #thumbnail {
        width: 100%;
        height: 30rem;
        border-radius: 2rem;
        object-fit: cover;
        margin: 4rem 0rem 2rem;
    }

    #article .head > .title-wrap .details,
    #article .head > .title-wrap .details .detail {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #article .head > .title-wrap .details .detail {
        margin-left: 2rem;
    }

    #article .head > .title-wrap .details .detail .icon {
        margin: 0 1rem;
        color: var(--grey);
    }

    #article .head > .title-wrap .details .detail p {
        font-size: 1.4rem;
        color: var(--grey);
    }

    /* SECTION : Article > Title End */
    /* SECTION : Article > Content Begin */
    #article > #content-wrapper {
        height: fit-content;
        margin: 3rem auto 6rem;
        display: flex;
        justify-content: space-between;
    }

    #article > #content-wrapper #content {
        width: 100%;
        height: 100%;
        padding: 1rem;
    }

    #article > #content-wrapper #content p {
        text-align: justify;
        margin-bottom: 4rem;
    }

    #article > #content-wrapper #content h2 {
        font-size: 2.6rem;
    }

    /* SECTION : Article > Content > Author Begin */
    #article > #content-wrapper #author {
        width: 100%;
        height: fit-content;
        padding: 1.5rem;
        border-radius: 2rem;
        margin: 2rem 0;
    }

    #article > #content-wrapper #author .head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1rem;
    }

    #article > #content-wrapper #author .head .user-profile {
        height: 6rem;
        display: flex;
        align-items: center;
    }

    #article > #content-wrapper #author .head .user-profile img {
        width: 5rem;
        height: 5rem;
        padding: .6rem;
        background-color: var(--lightgrey);
        border-radius: 5rem;
    }

    #article > #content-wrapper #author .head .user-profile p {
        margin-right: 1rem;
        font-size: 1.6rem;
        font-weight: 500;
    }

    #article > #content-wrapper #author > p {
        color: var(--grey);
        text-align: justify;
    }

    #article > #content-wrapper #author .head .authors-articles {
        text-decoration: underline;
        color: var(--pantome);
    }

    #article > #content-wrapper #author .head .authors-articles:hover {
        color: var(--pantomeDark);
    }

    /* SECTION : Article > Content > Author End */
    /* SECTION : Article > Content > Side-bar Begin */
    #article > #content-wrapper > aside {
        width: 35rem;
        height: fit-content;
        margin-right: 8rem;
        display: none;
    }

    #article > #content-wrapper > aside .widget {
        border-radius: 1.5rem;
        overflow: hidden;
        margin-bottom: 3rem;
    }

    #article > #content-wrapper > aside .ad-widget {
        width: 100%;
        height: 20rem;
        background-color: var(--grey);
    }

    /* SECTION : Article > Content > Main Begin */
    #article > #content-wrapper main {
        width: 72rem;
        height: fit-content;
    }

    #article > #content-wrapper main p {
        line-height: 230%;
    }

    #article > #content-wrapper main h2,
    #article > #content-wrapper main h3 {
        margin: 1.6rem 0;
    }


    /* SECTION : Article > Content > Side-bar End */
    /* SECTION : Article > Content > Main End */
    /* SECTION : Article > Content End */
    /* SECTION : Article End */
    /* SECTION : More-Articles Begin */
    #more-articles {
        display: flex;
        flex-direction: column;
    }

    #more-articles .head {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 3rem;
    }

    #more-articles .head p {
        width: fit-content;
        color: var(--black);
        height: fit-content;
        font-weight: 600;
        display: inline-flex;
        margin-left: 3rem;
        font-size: 1.8rem;
    }

    #more-articles .head .hr {
        flex-grow: 1;
        height: .1rem;
        background-color: var(--lightgrey);
    }

    #more-articles .body {
        height: fit-content;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1rem;
    }

    #more-articles .body .blog-item {
        width: 100%;
        height: fit-content;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 3rem;
    }

    #more-articles .body .blog-item .top-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    #more-articles .body .blog-item .texts {
        width: fit-content;
        display: block;
        margin-top: .5rem;
    }

    #more-articles .body .blog-item:hover {
        cursor: pointer;
    }

    #more-articles .body .blog-item img {
        width: 100%;
        height: 11rem;
        object-fit: cover;
        border-radius: 1.4rem;
    }

    #more-articles .body .texts > h3 {
        width: 100%;
        text-align: center;
        display: block;
        font-size: 1.5rem;
        font-weight: 500;
    }

    #more-articles .body .blog-item:hover h3 {
        color: var(--pantome);
        transition: all 350ms;
    }

    #more-articles .body .texts > span {
        display: none;
    }

    #more-articles .body .blog-item > .details {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #more-articles .body .blog-item > .details .hr {
        height: .1rem;
        flex-grow: 1;
        background-color: var(--lightgrey);
        margin: 0 2rem;
        opacity: .5;
    }

    #more-articles .body .blog-item > .details .detail-item strong,
    #more-articles .body .blog-item > .details .detail-item span {
        font-size: 1.3rem;
        font-weight: 400;
        color: var(--coal);
    }

    /* SECTION : More-Articles End */
    /* SECTION : RozShomar Begin */
    #rozshomar .version-num {
        width: 100%;
        text-align: center;
        color: var(--lightgrey);
        font-size: 1.5rem;
        display: block;
        margin-top: 6rem;
    }

    /* SECTION : RozShomar > Content Begin */
    #rozshomar > #content {
        width: 85%;
        height: fit-content;
        margin: auto;
    }

    #rozshomar > #content > * {
        line-height: 200%;
    }

    #rozshomar > #content > p {
        text-align: justify;
    }

    #rozshomar > #content strong {
        font-weight: 600;
    }

    #rozshomar > #content a {
        color: var(--alphabet-red);
    }

    #rozshomar > #content a:hover {
        color: var(--alphabet-dark-red);
    }

    /* SECTION : RozShomar > Content End */
    #rozshomar > #progress-steps {
        width: 90%;
        display: flex;
        justify-content: space-between;
        margin: 6rem auto 0;
        overflow: hidden;
    }

    #rozshomar > #progress-steps .step {
        width: fit-content;
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1 0 auto;
    }

    #rozshomar > #progress-steps .step:last-child {
        margin-left: 0;
    }

    #rozshomar > #progress-steps .step > .step-dot {
        width: 3rem;
        height: 3rem;
        border-radius: 3rem;
        display: flex;
        border: .2rem solid var(--lightgrey);
        align-items: center;
        justify-content: center;
    }

    #rozshomar > #progress-steps .step > .active {
        background-color: var(--blue);
        border-color: var(--blue);
    }

    #rozshomar > #progress-steps .step > .semi-active {
        border-color: var(--blue);
    }

    #rozshomar > #progress-steps .step > .step-dot .inner-dot {
        width: 1rem;
        height: 1rem;
        background-color: var(--lightgrey);
        border-radius: 1rem;
    }

    #rozshomar > #progress-steps .step > .active .inner-dot {
        background-color: white;
    }

    #rozshomar > #progress-steps .step > .semi-active .inner-dot {
        background-color: var(--blue);
    }

    #rozshomar > #progress-steps .step > .step-level {
        font-weight: 600;
        margin: 1rem 0rem .7rem;
        font-size: 1.4rem;
    }

    #rozshomar > #progress-steps .step > .step-title {
        font-size: 1.4rem;
    }

    #rozshomar > #result-section {
        margin-top: 6rem;
        display: none;
    }

    #rozshomar > .show-result {
        display: block !important;
    }

    @keyframes fade-down {
        0% {
            visibility: hidden;
            transform: translateY(-2rem);
            opacity: 0;
        }
        to {
            transform: translateY(0rem);
            opacity: 1;
            visibility: visible;
        }
    }
    @keyframes fade-up {
        0% {
            visibility: hidden;
            transform: translateY(2rem);
            opacity: 0;
        }
        to {
            transform: translateY(0rem);
            opacity: 1;
            visibility: visible;
        }
    }

    #rozshomar > #result-section .user-preview {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #rozshomar > #result-section .user-preview .avatar {
        width: 12rem;
        padding: 2rem;
        background-color: var(--lightgrey);
        border-radius: 4rem;
        visibility: hidden;
    }

    #rozshomar > #result-section .user-preview > .show {
        animation: fade-down;
        animation-duration: 500ms;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
    }

    #rozshomar > #result-section .user-preview strong {
        font-size: 1.8rem;
        margin-top: 2rem;
    }

    #rozshomar > #result-section #remaining-days {
        flex-direction: column;
    }

    #rozshomar > #result-section .ms-preview {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 3rem 0rem;
    }

    #rozshomar > #result-section .ms-preview > .item {
        min-width: 20rem;
        display: flex;
        visibility: hidden;
    }

    #rozshomar > #result-section .ms-preview > .show {
        animation: fade-up;
        animation-duration: 500ms;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
    }

    #rozshomar > #result-section .ms-preview .cd-item .item {
        min-width: 9rem;
        height: 100%;
    }

    #rozshomar > #result-section .ms-preview > .item,
    #rozshomar > #result-section .ms-preview .cd-item .item {
        background-color: var(--lightestgrey);
        margin-left: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 3rem;
        padding: 2.5rem 2rem;
    }

    #rozshomar > #result-section #count-down {
        width: 60%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr );
    }

    #rozshomar > #result-section #count-down .cdi:nth-child(4) {
        display: none;
    }

    #rozshomar > #result-section #count-down .cdi:nth-child(7) {
        /*background-color: red;*/
        order: 3;
    }


    #rozshomar > #result-section #count-down .cdi:nth-child(2) {
        /*background-color: yellow;*/
        order: 2;
    }

    #rozshomar > #result-section #count-down .cdi:nth-child(5) {
        order: 1;
        /*background-color: black;*/
    }


    #rozshomar > #result-section #count-down .cdi:nth-child(3) {
        order: 6;
        /*background-color: orange;*/
    }

    #rozshomar > #result-section #count-down .cdi:nth-child(6) {
        /*background-color: forestgreen;*/
        order: 5;
    }

    #rozshomar > #result-section #count-down .cdi:nth-child(1) {
        /* Seconds */
        order: 4;
        /*background-color: #1DB954;*/
    }

    #rozshomar > #result-section #remaining-days .item {
        margin-left: 0;
        margin-bottom: 3rem;
    }


    #rozshomar > #result-section .ms-preview > .item > p {
        padding: 0 1rem;
    }

    #rozshomar > #result-section .ms-preview > .item:last-child {
        margin-left: 0;
    }

    #rozshomar > #result-section .ms-preview > .item .progress-bar {
        width: 100%;
        height: .4rem;
        margin-top: 1rem;
        display: flex;
    }

    #rozshomar > #result-section .ms-preview > .item .progress-bar > .progress,
    #rozshomar > #result-section .ms-preview > .item .progress-bar > .remaining {
        height: 100%;
        border-radius: 1rem;
    }

    #rozshomar > #result-section .ms-preview > .item .progress-bar > .progress {
        width: 80%;
        background-color: var(--green);
    }

    #rozshomar > #result-section .ms-preview > .item .progress-bar > .remaining {
        width: 20%;
        margin-left: .4rem;
        background-color: var(--lightgrey);
    }

    /* SECTION : RozShomar > Setup Progress Begin */
    #rozshomar > #setup-progress {
        width: 90%;
        margin: 10rem auto;
    }

    #rozshomar > #setup-progress > .setup-item {
        width: 100%;
        margin: auto;
        height: fit-content;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        margin-bottom: 4rem;
    }


    #rozshomar > #setup-progress > .setup-two,
    #rozshomar > #setup-progress > .setup-three {
        display: none;
    }

    #rozshomar > #setup-progress > .setup-buttons {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    #rozshomar > #setup-progress > .setup-item .setup-button {
        width: fit-content;
        padding: .6rem 1rem;
        border-radius: .7rem;
        border-color: transparent;
        background-color: var(--pantome);
        color: white;
        display: block;
    }

    #rozshomar > #setup-progress > .setup-item #prev-item {
        display: none;
    }

    #rozshomar > #setup-progress > .setup-item .setup-button:hover {
        cursor: pointer;
        background-color: var(--pantomeDark);
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap {
        height: fit-content;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        margin-bottom: 3rem;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap:last-child {
        margin-left: 0;
    }

    #rozshomar > #setup-progress > .setup-item > .input-wrap:last-child,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap:last-child {
        margin-left: 0;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker {
        width: 100%;
        height: fit-content;
        display: flex;
        align-items: center;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item {
        flex-grow: 1;
        margin-left: 1rem;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item:last-child {
        margin-left: 0;
    }

    #rozshomar > #setup-progress > .setup-item > .input-wrap span,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap span,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item span {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item span {
        font-size: 1.5rem;
        font-weight: 400;
        display: block;
        margin-bottom: 1rem;
    }


    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap input,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap select,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item input {
        width: 100%;
        height: fit-content;
        padding: 1.3rem 2rem;
        border-radius: 1rem;
        outline: none;
        border: .2rem solid var(--lightestgrey);
        font-size: 1.6rem;
        font-family: 'PeydaWebFaNum';
        background-color: var(--lightestgrey);
    }

    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .error {
        border-color: var(--alphabet-red);
    }

    #rozshomar > #setup-progress > .setup-item > .input-wrap input:focus,
    #rozshomar > #setup-progress > .setup-item > .input-wrap select:focus,
    #rozshomar > #setup-progress > .setup-item > .setup-row .input-wrap .date-picker > .dp-item input:focus {
        background-color: white;
        border-color: var(--pantome);
    }

    /* HTML: <div class="loader"></div> */
    #rozshomar > #setup-progress > .setup-item #loader-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #rozshomar > #setup-progress > .setup-item #loader-wrap span {
        font-size: 1.7rem;
    }

    .loader {
        width: 3.2rem;
        aspect-ratio: 1;
        --_g: no-repeat radial-gradient(farthest-side, #3a3a3a 90%, #0000);
        background: var(--_g), var(--_g), var(--_g), var(--_g);
        background-size: 40% 40%;
        margin-bottom: 3rem;
        animation: l46 1s infinite;
    }

    @keyframes l46 {
        0% {
            background-position: 0 0, 100% 0, 100% 100%, 0 100%
        }
        40%,
        50% {
            background-position: 100% 100%, 100% 0, 0 0, 0 100%
        }
        90%,
        100% {
            background-position: 100% 100%, 0 100%, 0 0, 100% 0
        }
    }

    /* SECTION : RozShomar > Setup Progress End */
    /* SECTION : RozShomar > CountDown Begin */
    #rozshomar > #result-section .ms-preview .cd-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #rozshomar > #result-section .ms-preview .colon {
        height: 10.1rem;
        margin: 4rem 2rem 0;
        font-size: 1.6rem;
        display: flex;
        align-items: center;
        font-weight: 600;
        justify-content: center;
    }

    #rozshomar > #result-section .ms-preview .cd-item > span {
        font-size: 1.6rem;
        color: var(--lightgrey);
        margin-bottom: 1.2rem;
    }

    #rozshomar > #result-section .ms-preview .cd-item .item {
        padding: 2rem;
        border-radius: 2rem;
        margin: 0
    }

    #rozshomar > #result-section .ms-preview .cd-item .item > p {
        font-weight: 600;
        font-size: 3rem;
    }

    /* SECTION : RozShomar > CountDown End */
    /* SECTION : RozShomar > Graffito Begin */
    #rozshomar > #result-section #graffito {
        width: 90%;
        /*height: 45rem;*/
        margin: 5rem auto;
        object-fit: cover;
        border: .2rem solid var(--lightgrey);
        border-radius: 3rem;
        padding: 3rem;
        display: block;
        overflow: hidden;
    }

    /* SECTION : RozShomar > Graffito End */
    /* SECTION : RozShomar End */
    /* SECTION : Blog Begin */
    #blog {
        padding: 1rem;
    }

    #blog #page-title {
        width: 100%;
        margin-bottom: 5rem;
    }

    #blog #page-title > h1 {
        font-size: 3.4rem;
    }

    #blog #page-title > h1 .dot {
        color: var(--alphabet-red);
    }

    /* SECTION : Blog > Pinned Article Begin */
    #blog > #pinned-article {
        width: 100%;
        height: 26rem;
        background-color: #5fc057;
        border-radius: 2rem;
        overflow: hidden;
        position: relative;
        display: block;
    }

    #blog > #pinned-article:hover {
        cursor: pointer;
    }

    #blog > #pinned-article:hover > img {
        transform: scale(1.02);
        transition: all 200ms;
    }

    #blog > #pinned-article > img {
        width: 100%;
        height: 30rem;
        object-fit: cover;
        margin: 0;
        z-index: 1;
        transition: all 200ms;
    }

    #blog > #pinned-article > .hidden {
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 500;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
    }

    #blog > #pinned-article > .article-detail {
        width: 100%;
        height: fit-content;
        position: absolute;
        bottom: 0rem;
        right: 0rem;
        padding: 2rem;
        z-index: 100 !important;
    }

    #blog > #pinned-article > .article-detail:before {
        content: '';
        width: 100%;
        height: 40rem;
        position: absolute;
        bottom: 0rem;
        right: 0rem;
        left: 0;
        background: linear-gradient(0deg, black, rgba(0, 0, 0, 0.81), rgba(0, 0, 0, 0));
        opacity: .6;
        z-index: -1;
    }

    #blog > #pinned-article > .article-detail * {
        color: white;
    }

    #blog > #pinned-article > .article-detail .category {
        padding: .4rem 1rem;
        border: .1rem solid var(--white-marble);
        border-radius: 3rem;
        background-color: rgba(0, 0, 0, 0.2);
        transition: all 250ms;
        font-size: 1.4rem;
    }

    #blog > #pinned-article > .article-detail .category:hover {
        transition: all 250ms;
        background-color: rgba(0, 0, 0, 0.4);
    }

    #blog > #pinned-article > .article-detail h2 {
        margin: 2rem 0 0;
        font-size: 2rem;
        font-weight: 500;
    }

    #blog > #pinned-article > .article-detail p {
        display: none;
    }

    #blog > .title-wrap {
        width: 100%;
        height: fit-content;
        margin: 6rem 0 2rem;
        display: flex;
    }

    #blog > .title-wrap > h2 {
        font-size: 2rem;
    }

    #blog > #articles {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 7rem 4rem;
    }

    #blog > #articles .article-item {
        overflow: hidden;
        float: right;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    #blog > #articles .article-item > img {
        width: 20rem;
        height: 11rem;
        border-radius: 1.6rem;
        object-fit: cover;
        margin-bottom: 1rem;
    }

    #blog > #articles .article-item > p {
        margin-top: 1rem;
        font-size: 1.4rem;
        color: var(--grey);
        display: none;
    }

    #blog > #articles .article-item a {
        line-height: 175%;
    }

    #blog > #articles .article-item:hover {
        cursor: pointer;
    }

    #blog > #articles .article-item:hover > a {
        color: var(--blue);

    }

    #blog > #articles .article-item > a * {
        font-size: 1.5rem;
        text-align: justify;
        font-weight: 500;
    }

    #blog > #more-loader {
        width: 100%;
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 5rem;
    }

    #blog > #more-loader #load-more {
        padding: .8rem 1.9rem;
        border-radius: 5rem;
        background-color: var(--black);
        color: white;
        font-size: 1.5rem;
        border: none;
    }

    #blog > #more-loader #load-more:hover {
        cursor: pointer;
        background-color: var(--darkerblack);
    }

    /* SECTION : Blog > Pinned Article End */
    /* SECTION : Category Begin */
    #blog > #categoryList {
        display: block;
    }

    #blog > #categoryList > .article-item {
        width: 45%;
        border-radius: 3.5rem;
        transition: all 300ms ease-in;
        border: .2rem solid transparent;
        padding: 2.2rem;
        float: right;
        margin-left: 3rem;
        margin-bottom: 4rem;
    }

    #blog > #categoryList > .article-item:nth-child(2n) {
        margin-left: 0 !important;
    }

    #blog > #categoryList > .article-item:hover {
        border: .2rem solid var(--lightestgrey);
    }

    #blog > #categoryList > .article-item > .img {
        width: 16rem;
        height: 16rem;
        border-radius: 2rem;
        margin: 0rem !important;
    }

    #blog > #categoryList > .article-item:hover .img > img {
        transform: scale(1.05);
        transition: all ease-in 150ms;
        transition-delay: 150ms;
    }

    #blog > #categoryList > .article-item > h3 {
        width: 100%;
        font-size: 1.6rem;
        margin-top: 3rem;
        font-weight: 600 !important;
        text-align: right;
    }

    #blog > #categoryList > .article-item:hover > h3 {
        color: var(--alphabet-dark-red);
    }

    #blog > #categoryList > .article-item > p {
        display: none !important;
    }

    #blog > #contentBox {
        width: 90%;
        margin: 5rem auto 5rem;
    }

    /* SECTION : Category End */
    /* SECTION : Blog End */
    /* SECTION : About Begin */
    #about-us h1 {
        visibility: hidden;
    }

    #about-us h2,
    #about-us h2 * {
        font-size: 3.2rem;
        line-height: 200%;
        color: var(--grey);
        text-align: justify;
        font-weight: 700;
    }

    #about-us .highlight,
    #about-us .highlight * {
        /*color: var(--alphabet-red);*/
        color: var(--black);
    }

    #about-us > .page-section img {
        width: 100%;
        height: 34rem;
        background-color: var(--darkgrey);
        margin: 6rem 0;
        border-radius: 3rem;
    }

    #about-us > .page-section {
        display: flex;
        margin: 3rem auto 6rem;
        align-items: center;
        flex-direction: column;
    }

    #about-us > .page-section > .section-item {
        flex-grow: 1;
        margin-right: 2rem;
        display: flex;
        justify-content: start;
    }

    #about-us > .two-col {
        flex-direction: column;
        margin: 2rem 0;
    }

    #about-us > .two-col .text {
        width: 80%;
        display: block;
        text-align: center;
        margin-top: 3rem;
    }

    #about-us > .two-col .text p {
        font-size: 1.6rem;
        line-height: 200%;
        text-align: justify;
    }

    #about-us > .two-col .text h3 {
        margin-bottom: 2rem;
    }

    #about-us > .page-section > .stats {
        width: 70%;
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #about-us > .page-section > .stats .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 3rem;
    }

    #about-us > .page-section > .stats .stat-item > p {
        font-size: 2.2rem;
    }

    #about-us > .page-section > .stats .stat-item > span {
        font-size: 1.6rem;
        font-weight: 300;
        color: var(--grey);
    }

    #about-us #do-dont-section {
        flex-direction: column;
        align-items: start;
    }

    #about-us > #reasons {
        width: 100%;
        height: 40rem;
        margin: 4rem 0rem;
    }

    #about-us > #reasons > .row {
        border-top: .1rem solid var(--lightgrey);
        border-bottom: .1rem solid var(--lightgrey);
        z-index: -1;
    }

    #about-us > #reasons > .row:last-child {
        border-top: none;
    }

    #about-us > #reasons > .row .container {
        display: flex;
    }

    #about-us > #reasons > .row .container .item {
        display: flex;
        flex-grow: 1;
        flex-direction: column;
        padding: 2rem;
        border-right: .1rem solid var(--lightgrey);
        transition: 400ms all;
    }

    #about-us > #reasons > .row .container .item:hover {
        cursor: pointer;
        box-shadow: 0rem 0rem 3rem #dadce6;
        transition: 400ms all;
        border: none;
        z-index: 5000;
    }

    #about-us > #reasons > .row .container .item:last-child {
        border-left: .1rem solid var(--lightgrey);
    }

    #about-us > #reasons > .row .container .item > strong {
        font-size: 1.6rem;
        font-weight: 500;
        margin-bottom: .5rem;
    }

    #about-us > #reasons > .row .container .item > span,
    #about-us > #reasons > .row .container .item > p {
        color: var(--grey);
    }

    #about-us > #cta {
        width: 80%;
        background-color: #3259E8;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 6rem 3rem;
        border-radius: 4rem;
        margin: 2rem auto;
    }

    #about-us > #cta .avatar > img {
        width: 8rem;
        height: 8rem;
    }

    #about-us > #cta .avatar {
        background-color: rgba(194, 196, 204, 0.4);
        border-radius: 6rem;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
    }

    #about-us > #cta p {
        color: white;
        font-size: 2.4rem;
        text-align: center;
        font-weight: 500;
    }

    #about-us > #cta p > span {
        font-size: 1.8rem;
        text-align: center;
        font-weight: 300;
    }

    #about-us > #cta a {
        margin-top: 2rem;
        padding: 1rem 2rem;
        background-color: white;
        border-radius: 5rem;
        font-weight: 600;
    }

    /* SECTION : About End */
    /* SECTION : ContactUs Begin */
    #contact-us {
        height: fit-content;
        text-align: center;
        margin-top: 6rem;
        display: block;
    }

    #contact-us > #contactMethods {
        margin-top: 5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }

    #contact-us > #contactMethods > .method {
        width: 70%;
        border: .1rem solid var(--lightgrey);
        padding: 7rem 2rem 3rem;
        border-radius: 1rem;
        display: flex;
        align-items: start;
        justify-content: end;
        flex-direction: column;
        margin-bottom: 5rem;
        flex-grow: 1;
    }

    #contact-us > #contactMethods > .method:last-child {
        margin-left: 0;
    }

    #contact-us > #contactMethods > .method span {
        margin: .6rem 0rem;
        font-size: 1.5rem;
        text-align: right;
    }

    #contact-us > #contactMethods > .method a {
        direction: ltr;
    }

    /* SECTION : ContactUs End */
    /* SECTION : Footer Begin */
    footer {
        width: 100%;
        height: fit-content;
        margin-top: 14rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }

    footer .footer-layout {
        width: 100%;
        padding: 2rem;
        flex-grow: 1;
    }

    footer .footer-layout:last-child {
        order: 3;
    }

    footer .links {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
        order: 1;
    }

    footer .links a {
        width: 100%;
        text-align: center;
    }

    footer .links a:last-child {
        margin-left: 0;
    }

    footer .avatar-layout {
        width: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
        order: 0;
    }

    .footer-layout > .avatar-wrap {
        width: 6rem;
        height: 6rem;
        overflow: hidden;
        padding: .8rem;
        background-color: var(--white-marble);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5rem;
        grid-column: 3 / 4;
    }

    .footer-layout > .avatar-wrap > img {
        width: auto;
        height: 100%;
    }

    /* SECTION : Footer End */
    /* SECTION : Search Begin */
    #search > .head {
        width: 100%;
        height: 10rem;
    }

    #search > .head h1 {
        font-size: 3rem;
    }

    #search > #results {
        margin-top: 2rem;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 2rem;
        padding: 1rem;
        border-radius: 2rem;
    }

    #search > #results .result-item {
        height: 16rem;
        border-radius: 2rem;
        padding: 1.5rem;
        justify-content: space-between;
        overflow: hidden;
    }

    #search > #results .result-item .img-wrap {
        width: 13rem;
        height: 13rem;
        border-radius: 2rem;
        margin-right: 0rem;
    }

    #search > #results .result-item .img-wrap img {
        width: 100%;
        height: 100%;
        border: none;
        outline: none;
        object-fit: cover;

        display: none;
    }

    #search > #results .result-item .txt-wrap {
        padding: 1rem 0 0 1rem;
        margin-right: 2rem;
        align-items: start;
        justify-content: center;
    }

    #search > #results .result-item .txt-wrap h2 {
        text-align: right;
        font-size: 1.8rem;
    }

    #search > #results .result-item .txt-wrap p {
        display: none;
    }

    /* SECTION : Search End */
}
