div.gradient {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background: var(--b);
    /* Old browsers */
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, var(--b) 0%, var(--g) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(var(--b)), to(var(--g)));
    background: -o-linear-gradient(left, var(--b) 0%, var(--g) 100%);
    background: linear-gradient(to right, var(--b) 0%, var(--g) 100%);
}
div.gradient::after {
    content: '';
    width: 100%;
    height: 60%;
    position: absolute;
    bottom: 0;
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)),to(rgba(255,255,255,1)));
    background: -o-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}
div.gradient_ {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background: var(--o);
    /* Old browsers */
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, var(--o) 0%, var(--y) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(var(--o)), to(var(--y)));
    background: -o-linear-gradient(left, var(--o) 0%, var(--y) 100%);
    background: linear-gradient(to right, var(--o) 0%, var(--y) 100%);
    display: none;
}
div.gradient_::after {
    content: '';
    width: 100%;
    height: 60%;
    position: absolute;
    bottom: 0;
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)),to(rgba(255,255,255,1)));
    background: -o-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}
div.circle {
    position: absolute;
    border-radius: 50%;
}
.circle.md {
    width: 200px;
    height: 200px;
    top: 20vh;
    right: 30vw;
    background: -webkit-linear-gradient(45deg, rgba(255,255,255,.1), transparent);
    background: -o-linear-gradient(45deg, rgba(255,255,255,.1), transparent);
    background: linear-gradient(45deg, rgba(255,255,255,.1), transparent);
}
.circle.md_ {
    width: 150px;
    height: 150px;
    top: 20vh;
    right: 40vw;
    background: -webkit-linear-gradient(45deg, rgba(0,0,0,.05), transparent);
    background: -o-linear-gradient(45deg, rgba(0,0,0,.05), transparent);
    background: linear-gradient(45deg, rgba(0,0,0,.05), transparent);
}
.circle.lg {
    width: 250px;
    height: 250px;
    top: 25vh;
    left: 15vw;
    background: -webkit-linear-gradient(135deg, rgba(255,255,255,.1), transparent);
    background: -o-linear-gradient(135deg, rgba(255,255,255,.1), transparent);
    background: linear-gradient(-45deg, rgba(255,255,255,.1), transparent);
}
.circle.lg_ {
    width: 300px;
    height: 300px;
    top: 40vh;
    left: 29vw;
    background: -webkit-linear-gradient(135deg, rgba(0,0,0,.05), transparent);
    background: -o-linear-gradient(135deg, rgba(0,0,0,.05), transparent);
    background: linear-gradient(-45deg, rgba(0,0,0,.05), transparent);
}
.circle.sm {
    width: 50px;
    height: 50px;
    top: 10vh;
    right: 47vw;
    background: -webkit-linear-gradient(45deg, rgba(255,255,255,.1), transparent);
    background: -o-linear-gradient(45deg, rgba(255,255,255,.1), transparent);
    background: linear-gradient(45deg, rgba(255,255,255,.1), transparent);
}
.circle.sm_ {
    width: 50px;
    height: 50px;
    top: 15vh;
    right: 25vw;
    background: -webkit-linear-gradient(45deg, rgba(0,0,0,.05), transparent);
    background: -o-linear-gradient(45deg, rgba(0,0,0,.05), transparent);
    background: linear-gradient(45deg, rgba(0,0,0,.05), transparent);
}
div.v-line {
    display: none;
    position: absolute;
    top: 0;
    width: 1px;
    height: 100vh;
    background: rgba(255,255,255,.2);
    z-index: 1;
}
div.bullet {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,.85);
    border: 3px solid rgba(255,255,255,.85);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 2;
}
@-webkit-keyframes fadeLow {
    0%, 100% {
        opacity: .5;
    }
    50% {
        opacity: 0;
    }
}
@keyframes fadeLow {
    0%, 100% {
        opacity: .5;
    }
    50% {
        opacity: 0;
    }
}
@-webkit-keyframes fadeHigh {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
@keyframes fadeHigh {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
div.bullet::before {
    content: '';
    display: block;
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.4);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    top: -13px;
    left: -13px;
    -webkit-animation: fadeHigh 1s ease-in infinite;
    animation: fadeHigh 1s ease-in infinite;
}
div.bullet::after {
    content: '';
    display: block;
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    top: -23px;
    left: -23px;
    -webkit-animation: fadeHigh 1s ease-in .1s infinite;
    animation: fadeHigh 1s ease-in .1s infinite;
}
div.bullet ~ div.bullet {
    background: none;
}
div.bullet ~ div.bullet::before, div.bullet ~ div.bullet::after {
    opacity: .35;
    -webkit-animation-name: fadeLow;
    animation-name: fadeLow;
}
#area-chart-web, #area-chart-seo {
    position: absolute;
    display: block;
    pointer-events: none;
    top: 0;
    left: 0;
}
#area-chart-seo {
    display: none;
}
div.motto {
    position: absolute;
    top: 20vh;
    left: 100px;
    z-index: 5;
    text-align: center;
}
h1.motto-sen {
    font-family: IRANSans;
    font-weight: bold;
    font-size: 1.9em !important;
    color: #fffe;
    display: block;
}
div.motto > p {
    font-family: IRANSans;
    font-weight: bold;
    font-size: 1.2em;
    color: #fffb;
    line-height: 40px;
}
div.motto > p.sub {
    font-size: .9em;
    display: block;
    margin: 15px 0;
    color: rgba(255,255,255,.9);
}
div.motto > a {
    display: inline-block;
    position: relative;
    color: #fff;
    font-size: .8em;
    width: 140px;
    height: 50px;
    border-radius: 10px;
    text-align: center;
    margin: 25px 10px;
    line-height: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 10px 18px 45px -5px rgba(27, 135, 142, 0.6);
    box-shadow: 10px 18px 45px -5px rgba(27, 135, 142, 0.6);
    background: rgb(102,204,153);
    background: -webkit-linear-gradient(45deg, rgb(42, 204, 151) 0%, rgb(99, 211, 69) 100%);
    background: -o-linear-gradient(45deg, rgb(42, 204, 151) 0%, rgb(99, 211, 69) 100%);
    background: linear-gradient(45deg, rgb(42, 204, 151) 0%, rgb(99, 211, 69) 100%);
}
div.motto > a:first-of-type {
    background: var(--o);
    -webkit-box-shadow: 10px 18px 45px -5px rgba(255, 142, 33, 0.7);
    box-shadow: 10px 18px 45px -5px rgba(255, 142, 33, 0.7);
    background: -webkit-linear-gradient(45deg, var(--o) 0%, var(--y) 100%);
    background: -o-linear-gradient(45deg, var(--o) 0%, var(--y) 100%);
    background: linear-gradient(45deg, var(--o) 0%, var(--y) 100%);
}
div.motto > a::after {
    content: '';
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
    border: 2px solid white;
    -webkit-filter: blur(1px);
    filter: blur(1px);
}
.post h2,.post h3,.post h4,.post h5,.post h6 ,.work-samples h2, .deSkew h2 ,.plans > h2 ,.about-us h2 {
    font: 1.2em IRANSans;
    font-weight: bold;
    display: inline-block;
    background: -webkit-linear-gradient(left, var(--b), var(--g));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    text-indent: 0;
}
a.read-more {
    display: inline-block;
    width: auto;
    height: 40px;
    border-radius: 20px;
    text-align: center;
    padding: 0px 54px;
    line-height: 40px;
    font-size: .9em;
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, from(var(--b)), to(var(--g)));
    background: -webkit-linear-gradient(left, var(--b), var(--g));
    background: -o-linear-gradient(left, var(--b), var(--g));
    background: linear-gradient(to right, var(--b), var(--g));
    position: relative;
    margin-top: 10px;
    margin-left: 50px;
}
a.read-more::after {
    content: '';
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
    border: 2px solid white;
    -webkit-filter: blur(1px);
    filter: blur(1px);
}
section.about-us {
    position: relative;
}
section.about-us .contentabout {
    font-size: .75em;
    text-indent: 15px;
    color: #bbb;
    text-align: justify;
    line-height: 30px;
    max-height: 300px;
    overflow: hidden;
}
section.about-us .contentabout::after {
    content: '';
    display: block;
    width: 400px;
    height: 400px;
    top: 0;
    left: 10px;
    background: -webkit-linear-gradient(45deg, var(--g), transparent);
    background: -o-linear-gradient(45deg, var(--g), transparent);
    background: linear-gradient(45deg, var(--g), transparent);
    opacity: .2;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    pointer-events: none;
}
section.work-samples {
    position: relative;
}
section.work-samples::before {
    content: '';
    display: block;
    width: 600px;
    height: 600px;
    top: 0;
    right: 10px;
    background: -webkit-linear-gradient(45deg, var(--g), transparent);
    background: -o-linear-gradient(45deg, var(--g), transparent);
    background: linear-gradient(45deg, var(--g), transparent);
    opacity: .2;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    pointer-events: none;
}
section.work-samples::after {
    content: '';
    display: block;
    width: 300px;
    height: 300px;
    bottom: -70px;
    left: 110px;
    background: -webkit-linear-gradient(135deg, var(--b), transparent);
    background: -o-linear-gradient(135deg, var(--b), transparent);
    background: linear-gradient(-45deg, var(--b), transparent);
    opacity: .2;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    pointer-events: none;
}
div.work-sample {
    width: 255px;
    height: 292px;
    margin: 0 auto;
    border-radius: 25px;
    background: #fff;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0 20px 35px rgba(45, 190, 196, .3);
    box-shadow: 0 20px 35px rgba(45, 190, 196, .3);
    z-index: 1;
}
div.work-sample span.title {
    display: block;
    font: .9em IRANSans;
    font-weight: bold;
    color: #444;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    line-height: 50px;
    text-shadow: 0 0 3px #fff, 0 0 10px #fff;
}
div.work-sample picture {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.ws-detail {
    height: 50px;
}
div.work-sample a.linkindex {
    display: inline-block;
    width: auto;
    height: 36px;
    border-radius: 18px 0 18px 18px;
    text-align: center;
    padding: 0 20px;
    font: .75em IRANSans;
    font-weight: bold;
    line-height: 36px;
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, from(var(--b)), to(var(--g)));
    background: -webkit-linear-gradient(left, var(--b), var(--g));
    background: -o-linear-gradient(left, var(--b), var(--g));
    background: linear-gradient(to right, var(--b), var(--g));
    position: relative;
}
div.abs {
    position: absolute;
    z-index: -1;
}
div.abs.top-c-wrap {
    top: -125px;
    right: -98px;
}
div.abs.bottom-c-wrap {
    bottom: -125px;
    left: -98px;
}
div.c-wrap {
    width: 250px;
    height: 250px;
    position: relative;
}
div.c-wrap .c {
    position: absolute;
    border: 1px solid var(--b);
    border-radius: 50%;
}
div.c-wrap .c.c1 {
    width: 50px;
    height: 50px;
    top: 50%;
    margin-top: -25px;
    left: 50%;
    margin-left: -25px;
    opacity: .9;
}
div.c-wrap .c.c2 {
    width: 100px;
    height: 100px;
    top: 50%;
    margin-top: -50px;
    left: 50%;
    margin-left: -50px;
    opacity: .7;
}
div.c-wrap .c.c3 {
    width: 150px;
    height: 150px;
    top: 50%;
    margin-top: -75px;
    left: 50%;
    margin-left: -75px;
    opacity: .5;
    border-color: var(--g);
}
div.c-wrap .c.c4 {
    width: 200px;
    height: 200px;
    top: 50%;
    margin-top: -100px;
    left: 50%;
    margin-left: -100px;
    opacity: .4;
    border-color: var(--g);
}
div.c-wrap .c.c5 {
    width: 250px;
    height: 250px;
    top: 50%;
    margin-top: -125px;
    left: 50%;
    margin-left: -125px;
    opacity: .2;
    border-color: var(--g);
}
section.articles {
    width: 100%;
    height: 300px;
    background: -webkit-gradient(linear, right top, left top, from(var(--g)), to(var(--b)));
    background: -webkit-linear-gradient(right, var(--g), var(--b));
    background: -o-linear-gradient(right, var(--g), var(--b));
    background: linear-gradient(to left, var(--g), var(--b));
    position: relative;
    -webkit-transform: skewY(5deg);
    -ms-transform: skewY(5deg);
    transform: skewY(5deg);
    outline: 1px solid transparent;
}
section.articles .deSkew {
    -webkit-transform: skewY(-5deg);
    -ms-transform: skewY(-5deg);
    transform: skewY(-5deg);
}
section.articles h2 {
    margin-bottom: 10px;
	position: relative;
    top: -30px;
}
.swiper-wrapper {
	display: flex;
	overflow: auto;
}
.category-card {
    width: 255px;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    display: block;
    margin: 0 auto 0 20px;
	min-width: 150px;
}
.category-card::after {
    content: '';
    display: block;
    width: 80%;
    height: 4px;
    background: -webkit-gradient(linear, right top, left top, from(var(--g)), to(var(--b)));
    background: -webkit-linear-gradient(right, var(--g), var(--b));
    background: -o-linear-gradient(right, var(--g), var(--b));
    background: linear-gradient(to left, var(--g), var(--b));
    position: absolute;
    bottom: 0;
    left: 10%;
}
.category-card picture {
    width: 100%;
}
.category-card span.cat-title {
    display: block;
    height: 50px;
    width: 100%;
    font: .9em/50px IRANSans;
    font-weight: bold;
    text-align: center;
    color: #666;
    position: relative;
    direction: ltr;
    background-color: white;
}
.category-card span.cat-title::after {
    content: '';
    display: block;
    width: 80%;
    height: 1px;
    background: #eee;
    position: absolute;
    bottom: 0;
    left: 10%;
}
.category-card ul {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: white;
}
.category-card ul li{
    text-align: center;
    color: #999;
    font-size: .8em;
    height: 50px;
    line-height: 50px;
    position: relative;
}
.category-card ul li::after {
    content: '';
    display: block;
    width: 80%;
    height: 1px;
    background: #f2f2f2;
    position: absolute;
    bottom: 0;
    left: 10%;
}
div.plans-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
div.plan {
    width: 300px;
    height: 550px;
    background: #fff;
    margin: 10px;
    -webkit-box-shadow: 0 10px 100px 0 rgba(106, 230, 178, .35);
    box-shadow: 0 10px 100px 0 rgba(106, 230, 178, .35);
    border-radius: 7px;
    position: relative;
    text-align: center;
    padding: 5px 40px;
}
div.plan:nth-of-type(2) {
    height: 600px;
    z-index: 2;
}
div.plan:nth-of-type(2)::before {
    content: '';
    width: 100%;
    height: 17px;
    border-radius: 7px 7px 0 0;
    background: -webkit-gradient(linear, left top, right top, from(var(--b)), to(var(--g)));
    background: -webkit-linear-gradient(left, var(--b), var(--g));
    background: -o-linear-gradient(left, var(--b), var(--g));
    background: linear-gradient(to right, var(--b), var(--g));
    position: absolute;
    top: 0;
    left: 0;
}
div.plan:nth-of-type(2)::after {
    content: '';
    width: 100%;
    height: 7px;
    border-radius: 0 0 7px 7px;
    background: -webkit-gradient(linear, left top, right top, from(var(--b)), to(var(--g)));
    background: -webkit-linear-gradient(left, var(--b), var(--g));
    background: -o-linear-gradient(left, var(--b), var(--g));
    background: linear-gradient(to right, var(--b), var(--g));
    position: absolute;
    bottom: 0;
    left: 0;
}
div.plan picture {
    display: block;
    width: 78px;
    height: auto;
    margin: 30px auto 10px;
}
div.plan span.title {
    color: #666;
    display: block;
}
div.plan span.title > span {
    font: 1em IRANSans;
    font-weight: bold;
    color: #666;
}
div.plan span.title > img {
    width: 14px;
    position: relative;
    bottom: -4px;
    right: -10px;
}
div.plan span.price {
    color: #ccc;
    display: block;
    margin: 5px auto;
    font-size: .8em;
}
div.plan ul {
    margin: 30px auto 20px;
    padding: 0;
    list-style-type: none;
    border-bottom: 1px solid #f2f2f2;
}
div.plan ul li {
    color: #777;
    height: 50px;
    position: relative;
    line-height: 50px;
    border-top: 1px solid #f2f2f2;
    font-size: .8em;
}
div.plan ul li img {
    position: absolute;
    right: 0;
    top: 17px;
	width: 16px;
}
div.plan p {
    color: #d8d8d8;
    font-size: .8em;
    line-height: 22px;
    margin: 20px auto 30px;
}
div.plan a.more-info {
    font-size: .8em;
    display: block;
    width: 200px;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    color: #fff;
    background: var(--br);
    position: relative;
    margin: auto;
}
div.plan:nth-of-type(2) a.more-info {
    background: var(--si);
}
div.plan:nth-of-type(3) a.more-info {
    background: var(--go);
}
div.plan:nth-of-type(n+2) a.more-info {
    margin-top: 30px;
}
div.plan a.more-info img {
    position: absolute;
    right: 22px;
    top: 16px;
	width:7px;
}
div.plan a.more-info::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    right: 10px;
    top: 10px;
    border-radius: 50%;
    background: #78332a;
}
div.plan:nth-of-type(2) a.more-info::before {
    background: #bbb;
}
div.plan:nth-of-type(3) a.more-info::before {
    background: #d5a723;
}
div.plan span.terms {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 10px;
    left: 0;
    font-size: .7em;
    color: #ddd;
}
div.plan span.terms span {
    font-family: IRANSans;
    font-weight: bold;
    color: var(--g);
}
div.plan span.plan-des {
    font-size: .7em;
    background: -webkit-linear-gradient(right, var(--b) 40%, var(--g) 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 100%;
    position: absolute;
    left: 0;
    top: -20px;
}
div.plan span.plan-des img {
	width:16px;
}
.contact-title {
    width: 100%;
    text-align: center;
    font: 2em IRANSans;
    font-weight: bold;
    display: inline-block;
    background: -webkit-linear-gradient(left, var(--b) 45%, var(--g) 55%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
section.contact .phone {
    display: inline-block;
    direction: ltr;
    width: auto;
    height: 60px;
    border-radius: 30px;
    text-align: center;
    padding: 0 50px;
    font: 1.5em/60px IRANSans;
    font-weight: bold;
    color: #fff;
    line-height: 64px;
    background: -webkit-gradient(linear, left top, right top, from(var(--b)), to(var(--g)));
    background: -webkit-linear-gradient(left, var(--b), var(--g));
    background: -o-linear-gradient(left, var(--b), var(--g));
    background: linear-gradient(to right, var(--b), var(--g));
    position: relative;
}
section.contact .phone::after {
    content: '';
    border-radius: 30px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
    border: 2px solid white;
    -webkit-filter: blur(1px);
    filter: blur(1px);
}
.under-web-txt {
	overflow: hidden;
	height:300px;
	position:relative;
}
.phoneFloat a {
    font-family: IRANSans !important;
}