@font-face{
	font-family: Mobits;
	src: url('../fonts/iranyekanwebmediumfanum.woff') format('woff');		
}

@font-face{
	font-family: MobitsBold;
	src: url('../fonts/iranyekanwebextraboldfanum.woff') format('woff');	
}

* {
    box-sizing: border-box;
    direction: rtl;
    text-align: right;
    padding: 0;
    margin: 0;
    outline: none !important;
    text-decoration: none;
    font-family:Mobits;
}

.bold {
    font-family: MobitsBold;
}

ul,li {
   list-style: none;
}

.woocommerce .star-rating span::before {
    font-family: 'WooCommerce';
}

body {
    background-color: #fff;
    overflow-x: hidden;
    animation: fadeIn .4s ease-in forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.buttonHover {
    position: relative;
}

.buttonHover:before {
    position: absolute;
    content: "";
    z-index: 1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    border-radius: 100px;
    background: linear-gradient(115deg, #5024ff, #ff5455);
    transform: scale(0);
    transition: .5s;
}

.buttonHover:hover:before {
    transform: scale(1);
}

.buttonHover>span {
    z-index: 2;
    position: relative;
}

#mobits {
    height: 100vh;
    padding-top: 110px;
}

img {
    max-width: 100%;
}

/*--------------------nav-------------------*/
body>nav {
    height: 90px;
    width: 100%;
    position: fixed;
    top: 0;
    line-height: 90px;
    z-index: 999999;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

#nasa {
    position: fixed;
    z-index: 9;
    width: 100%;
    height: 100vh;
    top: 0;
    right: 0;
}

body>nav.scrolled {
    backdrop-filter: blur(12px);
    background-color: rgba(247, 249, 254, 0.8);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

body>nav.scrolled .menu {
    background: transparent;
}

body>nav.scrolled .menu:before {
    display: none;
}

body>nav .menu {
    background: rgba(255,255,255,.4);
    padding-right: 50px;
    border-bottom-right-radius: 53px;
    border-bottom-left-radius: 50px;
    position: relative;
}

body>nav .menu:before {
    content: "";
    position: absolute;
    background-color: transparent;
    top: 0;
    height: 40px;
    width: 20px;
    left: -20px;
    border-top-left-radius: 20px;
    box-shadow: 0 -20px 0 0 rgba(255,255,255,.4);
    transform: scaleX(-1);
}

body>nav>div {
    width: 90%;
    margin: 0 auto;
}

body>nav>div .logo img {
    vertical-align: middle;
    position: relative;
    top: -1px;
    margin-left: 5px;
}

body>nav .title {
    color: #2aa79b;
    font-size: 24px;
}

body>nav>div {
    display: flex;
}

body>nav>div>div {
    flex: 1;
}

body>nav>div .menu>ul>li {
    display: inline-block;
    color: rgb(72, 90, 131);
    cursor: pointer;
    margin-left: 45px;
}

body>nav>div .menu>ul>li svg {
    vertical-align: middle;
}

body>nav>div .menu>ul>li svg.arrow_down {
    position: relative;
    top: -2px;
}

body>nav>div .menu>ul {
    position: relative;
}

body>nav>div .menu>ul ul li {
    line-height: 30px;
}

body>nav>div .menu>ul ul {
    position: absolute;
    display: none; 
    transform: translateY(20px);
    opacity: 0;
    background-color: #fff;
    border-radius: 24px;
    border-top-right-radius: 0;
    box-shadow: 0 10px 55px 5px rgba(137,173,255,.35);
    width: 360px;
    padding: 10px 0;
}

body>nav>div .menu>ul ul:before {
    border-bottom: 10px solid #fff;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    content: "";
    height: 0;
    pointer-events: none;
    position: absolute;
    right: 37px;
    top: -9px;
    width: 0;
}

body>nav>div .menu>ul>li>a {
    color: rgb(72, 90, 131);
}

body>nav>div .menu>ul ul li a {
    color: #000;
    padding: 13px 20px;
}

body>nav>div .menu>ul ul li a {
    display: block;
    transition: .3s;
    font-size: 17px;
}

body>nav>div .menu>ul ul li a:hover {
    background: rgb(247, 249, 254);
    transition: .3s;
}

body>nav>div .menu>ul ul li a:hover span svg {
    opacity: 1;
    transition: .3s;
}

body>nav>div .menu>ul ul li a div {
    font-size: 11px;
    color: rgb(115, 133, 175);
    display: inline-block;
}

body>nav .login button {
    background: linear-gradient(-65deg, #2AA79B, #0898CB, #00f5d4);
    color: #fff;
    border: none;
    padding: 10px 30px 10px 10px;
    font-size: 17px;
    border-radius: 30px;
    cursor: pointer;
    float: left;
    margin-top: 20px;
    box-shadow: 0 20px 16px -16px #10d4ad80;
    background-size: 300% 300%;
    animation: liquidFlow 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

@keyframes liquidFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

body>nav .login button svg {
    vertical-align: middle;
    margin-right: 10px;
    background: rgba(255,255,255,.9);
    border-radius: 50%;
    padding: 5px;
}

body>nav .mobits_icon {
    background-color: rgba(255, 20, 147, 0.1);
    padding: 9px;
    border-radius: 7px;
}

body>nav .mobits {
    color: deeppink !important;
}

body>nav .submenu_icon {
    float: right;
    margin-left: 20px;
    margin-top: 5px;
}

body>nav .menu>ul>li span {
    display: flex;
}

body>nav .mobits_money_icon {
    background-color: rgba(22, 160, 133, .1);
    padding: 9px;
    border-radius: 7px;
}

body>nav .mobits_money {
    color: #16A085 !important;
}

body>nav .assemble_icon {
    background-color: rgba(52, 152, 219, 0.1);
    padding: 8px;
    border-radius: 7px;
}

body>nav .assemble {
    color: #3498db !important;
}

body>nav .assemble span svg, 
body>nav .mobits span svg,
body>nav .mobits_money span svg
{
    margin-top: 2px;
    opacity: 0;
    transition: .3s;
    margin-right: auto;
}

body>nav .submenu li:first-child a {
    border-top-left-radius: 10px;
}

body>nav .submenu li:last-child a {
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;
}

.mobile_nav_icon {
    display: none;
}

.mobile_menu {
    width: 300px;
    height: 100vh;
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 99999999;
    border-top-left-radius: 15px;
    transform: translateX(300%);
    transition: transform 0.3s ease;
    padding-top: 0px;
    box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
}

.mobile_menu.active {
    transform: translateX(0);
    z-index: 9999999999999999;
}

.mobile_menu a {
    color: #000;
    padding: 17px 15px;
    display: block;
}

.mobile_menu .mobits a {
    color: deeppink
}

.mobile_menu .mobits_money a {
    color: #2aa79b;
}

.mobile_menu .assemble a {
    color: #3498db;
}

.mobile_menu svg {
    vertical-align: middle;
    margin-left: 9px;
    position: relative;
    top: -2px;
}

.mobile_menu .title {
    font-weight: bold;
    color: #2aa79b;
    font-size: 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    padding: 20px;
}

.mobile_menu .title svg {
    float: left;
    position: relative;
    top: -2px;
    left: -10px;
}

.contact_us {
    width: 100%;
    height: 100vh;
    background: rgba(4, 49, 101, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); 
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999999999;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.contact_us>div>svg {
    position: absolute;
    left: 8px;
    top: 9px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 4px;
    cursor: pointer;
}

.contact_us>div {
    width: 50%;
    height: auto;
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0px;
    padding-top: 20px;
    position: relative;
}

.contact_us>div>div {
    flex: 1;
    padding: 20px;
    padding-top: 0;
}

.contact_us>div>div p {
    margin-bottom: 30px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 20px;
    font-size: 17px;
}

.contact_us>div>div svg {
    vertical-align: middle;
    margin-left: 10px;
    background: #fafafa;
    padding: 6px;
    border-radius: 8px;
}

.contact_us>div>div a {
    font-size: 18px;
    color: #555;
}

.contact_us>div>div>div {
    margin-bottom: 30px;
    font-size: 17px;
}

.contact_us>div>div>div:last-child {
    margin-bottom: 0;
}

.contact_us>div>div>div span {
    background: #fafafa;
    padding: 3px 10px;
    border-radius: 30px;
}

.contact_us>div>div img {
    float: left;
    border-radius: 15px;
}




/*-----------------Footer-------------------*/
.back-to-top {
    position: fixed;
    bottom: 15px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(-65deg, #2AA79B, #0898CB, #00f5d4);
    color: white;
    font-size: 24px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 99999999;
    text-align: center;
    line-height: 85px;
    background-size: 300% 300%;
    animation: liquid 6s infinite ease-in-out;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
    pointer-events: none; 
}

.back-to-top.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@keyframes liquid {
    0%, 100% {
        border-radius: 50% 50% 50% 50%;
        background-position: 0% 50%;
    }
    25% {
        border-radius: 60% 40% 65% 35%;
        background-position: 50% 50%;
    }
    50% {
        border-radius: 40% 60% 35% 65%;
        background-position: 100% 50%;
    }
    75% {
        border-radius: 55% 45% 60% 40%;
        background-position: 50% 50%;
    }
}

.fast_menu {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
    position: fixed;
    bottom: 0px;
    right: 0;
    z-index: 99999999;
}

.fast_menu.active {
    opacity: 1;
    transform: translateY(0);
}

.fast-menu {
    bottom: 15px;
    right: 25px;
    border: none;
    background: #2AA79B;
    box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* opacity: 0; */
    /* transform: translateY(100px); */
    transition: all 0.4s ease;
    position: absolute;
}

.fast-menu.active {
    opacity: 1;
    transform: translateY(0);
}

.fast-menu-content {
    background-color: #fff;
    box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    color: #000;
    height: 60px;
    line-height: 60px;
    transition: all 0.4s ease;
    width: max-content;
    position: relative;
    bottom: 15px;
    right: 100px;
}

.fast-menu-content ul {
    display: flex;
    padding: 0 13px 0 26px;
}

.fast-menu-content ul li {
    margin-left: 22px;
    color: #555;
    font-size: 15px;
    cursor: pointer;
}

.fast-menu-content ul li:last-child {
    margin-left: 0;
}

.fast-menu-content ul li a {
    color: #555;
}

.fast-menu-content ul li:first-child a {
    color: #fff;
    background: darkorange;
    padding: 10px 25px;
    border-radius: 30px;
}

.fast-menu-content.active {
    opacity: 1;
    bottom: -150px;
    pointer-events: auto;
}

.footer {
    background: -webkit-gradient(linear, left top, right top, color-stop(0, #00BCD4), to(#1565C0));
    background-position: center top;
    background-size: auto;
    background-repeat: no-repeat;
    color: #fff;
    height: auto;
    width: 100%;
    padding-bottom: 80px;
}

.footer_in {
    width: 1368px;
    margin: 0 auto 0;
    display: flex;
}

.footer_in>div {
    flex: 1;
    padding-top: 60px;
}

.footer .define a.title {
    color: #fff;
    font-size: 30px;
}

.footer .define p {
    width: 80%;
    margin-top: 27px;
    line-height: 33px;
}

.footer .define div {
    margin-top: 35px;
}

.footer .define div svg {
    vertical-align: middle;
    position: relative;
    top: -2px;
    margin-left: 10px;
}

.footer .define div a {
    font-size: 21px;
    color: #fff;
    border-bottom: 1px dashed #fff;
    margin-left: 15px;
}

.footer .fast h4, .footer .namad h4 {
    position: relative;
}

.footer .fast h4::before, .footer .namad h4::before {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0px;
    height: 4px;
    width: 94px;
    background: url(https://cdn.biawp.ir/images/theme/tf-line.png) no-repeat;
}

.footer .fast h4, .footer .namad h4 {
    font-size: 20px;
    padding-bottom: 20px;
    position: relative;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer .fast ul a {
    color: rgb(255, 255, 255);
    font-size: 16px;
    display: block;
    padding: 8px 0px;
    transition: 0.3s;
    margin-bottom: 5px;
}

.footer .fast ul a:hover {
    color: yellow;
    transition: 0.3s;
}

.footer .namad ul {
    display: flex;
}

.footer .namad img {
    border-radius: 8px;
}

.footer .namad h4 {
    margin-bottom: 33px;
}

.footer .namad li:first-child {
    margin-left: 15px;
}

.footer .namad li:first-child img {
    position: relative;
    top: 6px;
}

.footer .company {
    text-align: center;
    border-top: 1px dashed rgba(255, 255, 255, .3);
    width: 1368px;
    padding: 40px;
    margin: 70px auto 0;
}

.footer .company span {
    color: yellow;
}


/*--------------------Responsive--------------------*/
@media only screen and (min-width: 1000px) and (max-width: 1368px) {
    canvas {
        display: none;
    }
    /*---------------Nav-------------*/
    body>nav>div {
        width: 96%;
    }

    body>nav .menu {
        padding-right: 30px;
    }

    body>nav>div .menu>ul>li {
        margin-left: 24px;
    }

    /*---------------Intro-------------*/
    .intro-in {
        width: 95%;
    }

    .intro .left .form {
        margin-left: 0;
    }

    .intro h1 {
        font-size: 29px;
        margin-top: 16px;
        line-height: 48px;
        padding-left: 20px;
        margin-bottom: 16px;
    }

    .intro .right ul li {
        width: 100%;
    }

    .intro .right .buy, .intro .right .support, .intro .right .admin_demo {
        padding: 13px 24px;
        font-size: 15px;
    }

    /*---------------Trust-------------*/
    .trust {
        max-width: 100%;
        padding: 0 15px;
    }

    .trust_logos {
        max-width: 100%;
        padding: 0 15px;
    }

    /*---------------Testimonial-------------*/
    .testimonials {
        padding-top: 50px;
    }

    /*---------------Why-------------*/
    .why .right h2 {
        font-size: 29px;
        line-height: 58px;
    }

    /*---------------Features-------------*/
    .features-in {
        max-width: 100%;
        padding: 0 15px;
    }

    /*---------------Woocommerce-------------*/
    .woocommerce_in {
        max-width: 100%;
        padding: 0 15px;
    }

    /*---------------Faq-------------*/
    .faq-in {
        max-width: 100%;
        padding: 0 15px;
    }

    /*---------------Blog-------------*/
    .blog-in {
        max-width: 100%;
        padding: 0 15px;
    }

    /*---------------Review-------------*/
    .reviews-in {
        max-width: 100%;
        padding: 0 15px;
    }

    /*---------------Log-------------*/
    .logs-in {
        max-width: 100%;
        padding: 0 15px;
    }

    .logs .call_to_action {
        max-width: 100%;
        right: auto;
    }

    /*---------------Footer-------------*/
    .footer_in {
        max-width: 100%;
        padding: 0 15px;
    }

    .footer .company {
        max-width: 100%;
        padding: 0 15px;
    }
}


/*--------------------Responsive--------------------*/
@media only screen and (max-width: 1368px) {
    /*---------------Trust-------------*/
    .trust {
        max-width: 100%;
        padding: 0 15px;
    }

    .trust_logos {
        max-width: 100%;
        padding: 0 15px;
    }

    /*---------------Testimonial-------------*/
    .testimonials>div {
        max-width: 100%;
        padding: 0 15px;
    }

    /*---------------Why-------------*/
    .why {
        max-width: 100%;
        padding: 0 15px;
    }

    /*---------------Features-------------*/
    .features-in {
        max-width: 100%;
        padding: 0 15px;
    }

    /*---------------Woocommerce-------------*/
    .woocommerce_in {
        max-width: 100%;
        padding: 0 15px;
    }

    /*---------------Faq-------------*/
    .faq-in {
        max-width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }

    /*---------------Blog-------------*/
    .blog-in {
        max-width: 100%;
        padding: 0 15px 80px;
    }

    /*---------------Review-------------*/
    .reviews-in {
        max-width: 100%;
        padding: 70px 15px 90px;
    }

    /*---------------Log-------------*/
    .logs-in {
        max-width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        padding-top: 75px;
    }

    .logs .call_to_action {
        max-width: 100%;
        right: auto;
    }

    /*---------------Footer-------------*/
    .footer_in {
        max-width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }

    .footer .company {
        max-width: 100%;
        padding: 33px 15px;
    }

    .footer_in>div:first-child {
        flex: 1.2;
    }
}

@media only screen and (max-width: 600px) {

    #mobits {
        padding-top: 50px;
    }
    
    /*----------------Nav------------------*/
    body>nav {
        height: 60px;
    }

    body>nav>div {
        width: 100%;
    }

    body>nav .title span {
        display: none;
    }

    body>nav>div .logo img {
        vertical-align: super;
        position: relative;
        top: 3px;
        margin-right: 5px;
        margin-right: 15px;
    }

    body>nav .login button {
        padding: 10px 22px;
        font-size: 15px;
        border-radius: 30px;
        margin-top: 10px;
        margin-left: 10px;
        box-shadow: none;
    }

    body>nav .login button svg {
        display: none;
    }

    body>nav .menu {
        display: none;
    }

    body>nav>div>div {
        height: 60px;
    }

    body>nav>div>div.logo {
        flex: .5;
    }

    .mobile_nav_icon {
        display: inline-block;
        float: left;
        margin-top: 12px;
        background: #fff;
        margin-left: 15px;
        border-radius: 8px;
        padding: 5px;
        margin-right: 3px;
    }
    
    .fast-menu-content {
        right: -500px;
        bottom: 81px;
        height: auto;
        border-radius: 15px;
        padding-top: 10px;
        padding-right: 4px;
    }
    
    .fast-menu-content.active {
        right: 15px;
        bottom: 81px;
        height: auto;
        border-radius: 15px;
        padding-top: 10px;
        padding-right: 4px;
    }
    

    .fast-menu-content ul {
        display: block;
        min-width: 200px;
        padding-top: 7px;
        line-height: 46px;
        padding-bottom: 10px;
    }
    
    .fast-menu {
        bottom: 10px;
        right: 10px;
    }
    
    .fast-menu-content ul li:first-child a {
        display: block;
        padding: inherit;
        height: 40px;
        line-height: 40px;
        text-align: center;
        width: 100%;
        margin-bottom: 5px;
        border-radius: 10px;
    }
    
    .fast-menu-content ul li {
        margin-left: 0;
    }

    .contact_us>div {
        flex-direction: column;
        width: 95%;
    }

    .contact_us>div>div {
        padding-right: 4px;
    }

    .contact_us>div>div>div {
        margin-bottom: 17px;
        font-size: 15px;
    }

    .contact_us>div>div:last-child {
        display: none;
    }


    /*-----------------Blog-------------------*/
    .blog .articles {
        flex-direction: column;
    }

    .blog h2 button svg {
        display: none;
    }

    .blog h4 {
        font-size: 18px;
        line-height: 30px;
    }

    /*--------------------Footer--------------------*/
    .footer_in {
        max-width: 100%;
        padding: 0 15px;
        flex-direction: column;
    }

    .footer .company {
        max-width: 100%;
        padding: 0 15px;
        line-height: 32px;
        padding-top: 20px;
    }

    .footer .define p {
        width: 100%;
    }

    .footer .define div svg {
        width: 27px;
    }

    .footer .define div a {
        font-size: 18px;
    }

    .footer .define div {
        font-size: 15px;
    }
}