@import url(../font/Opensans/style.min.css);
@import url(../font/montserrat/style.min.css);

* {
    padding: 0;
    margin: 0;
}

:root {
    --sub-text: #bf00dc;
    --default-color: #581edc;
    --default-color-hover: #4618af;
    --paralax-color: #9629e6;
    --paralax-color-hover: #6d14ae;
    --hover-menu: #6730e3;
}


a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 0.938rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    line-height: 1.25;
    color: #1b2e4b;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

.header-site {
    font-family: Manrope;
}

header {
    position: relative;
    z-index: 222;
    background-color: transparent
}

body {
    color: #696969;
    font-family: Montserrat;
}

.cbtn {
    padding: 10px;
    min-width: 146px;
    text-align: center;
    margin: 10px 8px 0 0px;
    opacity: .95;
    color: #fff;
    font-size: .8em;
    background-color: var(--default-color);
    border-radius: 41px;
    font-weight: 500;
    line-height: 1.8;
    transition: background-color .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
}

    .cbtn.solid-btn {
        border-radius: 5px;
        margin: 0;
    }

    .cbtn:hover {
        background-color: var(--default-color-hover);
    }

    .cbtn > i,
    .cbtn > svg {
        font-size: 12px;
        margin-left: 15px;
    }

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.3;
}

    .btn-text > small {
        font-size: .8em;
    }

    .btn-text > span {
        font-size: 1.1em;
        font-weight: 600;
    }

.btn-default {
    display: inline-block;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    color: #fff !important;
    transition: all 0.5s ease;
    z-index: 1;
    background-size: cover;
}




    .btn-default.white-btn {
        color: #696969 !important;
        border: 1px solid #e0e3e7;
        background: #fff;
        margin-top: 55px;
    }

        .btn-default.white-btn:hover {
            color: #fff !important;
            background-image: -webkit-gradient(linear, right top, left top, from(#49a3fe), to(#0037ac));
            background-image: -webkit-linear-gradient(right, #49a3fe 0%, #0037ac 100%);
            background-image: -o-linear-gradient(right, #49a3fe 0%, #0037ac 100%);
            background-image: linear-gradient(270deg, #49a3fe 0%, #0037ac 100%);
            background-size: cover;
        }

    .btn-default::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        background-image: -webkit-gradient(linear, right top, left top, from(#49a3fe), to(#0037ac));
        background-image: -webkit-linear-gradient(right, #49a3fe 0%, #0037ac 100%);
        background-image: -o-linear-gradient(right, #49a3fe 0%, #0037ac 100%);
        background-image: linear-gradient(270deg, #49a3fe 0%, #0037ac 100%);
        background-size: 400%;
        border-radius: 34px;
        opacity: 0;
        -webkit-transition: .5s;
        -o-transition: .5s;
        transition: .5s;
    }

    .btn-default:hover::before {
        -webkit-filter: blur(20px);
        filter: blur(20px);
        opacity: .8;
        animation: btnGradedientAnimate 8s linear infinite reverse;
    }

@keyframes btnGradedientAnimate {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 400%;
    }
}

.header-site {
    width: 100%;
    z-index: 999;
    justify-content: space-between;
    display: flex;
    align-items: center;
    padding: 0 100px;
}

    .header-site > div {
        justify-content: space-between;
        display: flex;
        align-items: center;
    }

@media screen and (min-width:992px) {
    .menufixed {
        padding-top: 60px;
    }

    .header-site.fixed {
        position: fixed;
        z-index: 9999;
        width: 100%;
        top: 0;
        background: #fff;
        -webkit-box-shadow: 0 0.1rem 0.08rem #000000;
        -webkit-box-shadow: 0 0.1rem 0.08rem rgba(0,0,0, .08);
        box-shadow: 0 0.1rem 0.08rem #000000;
        box-shadow: 0 0.1rem 0.08rem rgba(0,0,0, .08);
        animation-name: fadeInDown;
        -webkit-animation-duration: 900ms;
        animation-duration: 900ms;
        -webkit-animation-timing-function: cubic-bezier(0.2, 1, 0.22, 1);
        animation-timing-function: cubic-bezier(0.2, 1, 0.22, 1);
        -webkit-animation-delay: 0s;
        animation-delay: 0s;
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
        -webkit-animation-direction: normal;
        animation-direction: normal;
        -webkit-animation-fill-mode: none;
        animation-fill-mode: none;
        -webkit-animation-play-state: running;
        animation-play-state: running;
        border-bottom: 0;
        padding: 0 100px;
    }

    .header-site.internal-menu.fixed {
        background: linear-gradient(75deg, #4f1bc5, #7b17c5) !important;
    }
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.menu-site li a {
    font-size: 1.1em;
    text-decoration: none;
    margin: 0 13px;
    font-family: opensans;
    font-size: 14px;
    font-weight: 200;
    display: inline-block;
    color: #fff;
    opacity: 0.8;
    position: relative;
}

.header-site.fixed:not(.internal-menu) .menu-site li a {
    color: #696969
}

.menu-site ol {
    display: flex;
}

    .menu-site ol li {
        display: inline-block;
        position: relative;
        height: 75px;
        display: flex;
        align-items: center;
    }

.menu-site nav > ol > li.has-dropdown:after {
    content: "\f0d7";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: 1px;
    font-size: .75em;
    font-weight: 800;
    top: 50%;
    transform: translateY(-50%);
    color: #9e9e9e;
}

@media screen and (min-width:992px) {
    .menu-site ol ol.submenu {
        visibility: hidden;
        opacity: 0;
        margin: 0;
        padding: 0;
        width: 200px;
        position: absolute;
        bottom: -100%;
        left: 0;
        background: #f5f5f5;
        z-index: 9;
        border-radius: 4px;
        -webkit-transform: translate(0, 20px);
        transform: translate(0, 20px);
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        -webkit-box-shadow: 0 4px 10px #000000;
        -webkit-box-shadow: 0 4px 10px rgba(0,0,0, .15);
        box-shadow: 0 4px 10px #000000;
        box-shadow: 0 4px 10px rgba(0,0,0, .15);
    }

        .menu-site ol ol.submenu:after {
            bottom: 100%;
            left: 35px;
            content: " ";
            height: 0;
            width: 0;
            position: absolute;
            pointer-events: none;
            border-color: rgba(255, 255, 255, 0);
            border: solid transparent;
            border-bottom-color: #f5f5f5;
            border-width: 8px;
            margin-left: -8px;
        }

    .menu-site ol.submenu a {
        font-weight: 500;
        margin: 0;
        width: 100%;
        height: 43px;
        display: flex;
        align-items: center;
        padding: 10px 14px;
    }

    .menu-site ol.submenu {
        flex-direction: column;
    }

        .menu-site ol.submenu a::after {
            position: absolute;
            content: "";
            top: 0;
            left: auto;
            right: 0;
            width: 0%;
            height: 100%;
            background: #fff;
            -webkit-transition: all 0.5s ease;
            -o-transition: all 0.5s ease;
            transition: all 0.5s ease;
            z-index: -1;
        }


        .menu-site ol.submenu a:hover {
            color: #ffffff;
            opacity: 1;
            background-color: var(--hover-menu);
        }

        .menu-site ol.submenu li {
            height: auto;
        }

        .menu-site ol.submenu > li:first-child a {
            border-radius: 6px 6px 0 0;
        }
}






@media screen and (min-width:992px) {
    .menu-site ol li.has-dropdown:hover .submenu {
        visibility: visible;
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .logo-menu {
        display: none;
    }

    .btn-menu {
        display: none;
    }

    /* .side-menu {
        display: none;
    } */
}

@media screen and (min-width:768px) {
    .menu-mobile {
        margin-right: -20px;
    }
}

@media screen and (max-width:992px) {
    .logo-menu {
        padding: 20px;
        margin-bottom: 50px;
    }

        .logo-menu img {
            width: 84px;
            height: 45px;
        }

    .btn-menu {
        display: inline-block;
        color: #1251c0;
        font-size: 30px;
    }

    .header-site {
        padding: 15px 5px 20px 5px;
        background: #fff;
    }

    .btn-header {
        display: none;
    }

    .menu-mobile {
        /* position: none; */
    }

    .side-menu.show {
        z-index: 9999999;
        transform: none;
    }

    .side-menu {
        position: fixed;
        bottom: 0;
        z-index: 1050;
        display: flex;
        flex-direction: column;
        max-width: 100%;
        background-color: #fff;
        background-clip: padding-box;
        outline: 0;
        transition: transform .3s ease-in-out;
        top: 0;
        left: 0;
        width: 400px;
        border-right: 1px solid rgba(0, 0, 0, .2);
        transform: translateX(-100%);
    }

    .menu-site ol {
        display: inline-block;
    }

        .menu-site ol li {
            height: auto;
        }

        .menu-site ol ol.submenu {
            position: relative;
        }

        .menu-site ol li {
            display: inline-block;
            width: 100%;
            float: left;
        }

    .menu-site li a {
        font-size: .95em;
        text-transform: uppercase;
        padding: 9px 22px;
        font-weight: 600;
        color: #0e0e0e;
    }

    .menu-site ol ol.submenu {
        padding-left: 10px;
    }

    .menu-site li a,
    .menu-site ol ol.submenu {
        display: inline-block;
        width: 100%;
        margin: 0;
    }

    .menu-site ol ol.submenu {
        margin-bottom: 10px;
        display: none;
        float: left;
    }

    .has-dropdown > a:after {
        content: "\f105";
        position: absolute;
        font-family: "Font Awesome 6 Pro";
        right: 20px;
        transition: transform .3s ease;
    }

    .menu-site li.active > a {
        color: #1251c0;
    }

    .has-dropdown.active > a:after {
        transform: rotate(90deg);
    }
}

.content-img-wrap {
    /*border-radius: 63% 37% 30% 70% / 50% 45% 55% 50%;*/
    /*background: #f5f5f5;*/
    overflow: hidden;
}

@media screen and (max-width:992px) {

    .content-img-wrap .dot-shape,
    .content-img-wrap .box1-animate,
    .content-img-wrap .img-animate {
        display: none;
    }
}

@media screen and (min-width: 1300px) and (max-width: 1920px) {
    .content-img-wrap {
        min-width: 600px;
        overflow: hidden;
    }
}

.img-animate {
    animation: move-up-down 2s ease 8s infinite;
    transform: translateY(0);
}

.box1-animate {
    background-color: #fff;
    position: absolute;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    animation: move-up-down 6s ease 2s infinite;
    transform: translateY(0);
    top: 45%;
    left: -75px;
    -webkit-box-shadow: 0 22px 45px rgba(0,0, 0, .09);
    box-shadow: 0 22px 45px rgba(0,0, 0, .09);
    padding: 21px;
    align-items: center;
    width: 350px;
    border-radius: 16px;
}

    .box1-animate p {
        margin: 0;
        padding: 0 15px;
        font-weight: 300;
        font-size: .9em;
        font-family: 'opensans';
    }

    .box1-animate img {
        width: 50px !important;
        height: 50px;
        border-radius: 50px;
    }

@keyframes move-up-down {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}

.hero-display-img {
    position: relative;
}

.img-animate {
    position: absolute;
    right: -5%;
    top: 15%;
    -webkit-animation: move-up-down 4s ease-in-out 3s infinite;
    animation: move-up-down 4s ease-in-out 3s infinite;
}

.hero-display-text {
    margin: 160px 10px 160px 0px;
}

.hero-display-section {
    padding-bottom: 10px;
    background: whitesmoke;
}

@media screen and (max-width: 768px) {
    .content-img-wrap {
        position: relative;
        margin: 60px 0;
    }
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1140px;
    }
}

.hero-display-img img,
.content-display-img img {
    width: 100%;
}

.hero-btn {
    align-items: center;
    display: flex;
}

.hero-title-tag {
    color: var(--sub-text) !important;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: .95em;
}

.hero-title h2 span {
    color: #1b5fc7;
}

.hero-title p {
    font-weight: 200;
    line-height: 1.9;
    font-size: 1em;
    margin: 15px 0;
    color: #757575;
    font-family: opensans;
}

.hero-title h2 {
    font-size: 3.5em;
    font-weight: 800;
    margin: 0 55px 0 0;
}


.cbtn:hover,
.cbtn:focus {
    color: #fff !important;
}

.iconbtn {
    padding: 0 9px;
    margin: 10px 5px 0 0px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    font-weight: 500;
    font-size: .95em;
}

    .iconbtn span {
        background-color: var(--sub-text);
        color: #fff;
        width: 40px;
        height: 41px;
        display: flex;
        align-items: center;
        font-size: 1em;
        justify-content: center;
        border-radius: 25px;
        margin-right: 10px;
    }

.section-inner-gray-gradient-bg-reverse {
    background: -webkit-gradient(linear, right top, left top, from(#e6e8ea), color-stop(66%, rgba(230, 232, 234, 0.1)), to(rgba(230, 232, 234, 0)));
    background: -webkit-linear-gradient(right, #e6e8ea 0%, rgba(230, 232, 234, 0.1) 66%, rgba(230, 232, 234, 0) 100%);
    background: -o-linear-gradient(right, #e6e8ea 0%, rgba(230, 232, 234, 0.1) 66%, rgba(230, 232, 234, 0) 100%);
    background: linear-gradient(270deg, #e6e8ea 0%, rgba(230, 232, 234, 0.1) 66%, rgba(230, 232, 234, 0) 100%);
}

@media screen and (max-width:992px) {
    .hero-display-section {
        flex-direction: column-reverse;
        flex-wrap: wrap;
        padding: 0 8px;
    }

    .hero-display-img img,
    .content-display-img img {
        width: 100% !important;
    }

    .hero-title h2 {
        font-size: 45px;
        margin: 0;
    }

    .hero-title p {
        margin: 15px 0;
        font-size: 1.1em;
    }

    .hero-btn .cbtn {
        padding: 8px 31px;
        margin: 0;
    }

    .iconbtn {
        margin: 0 !important;
    }
}

/* Customer box */
.customer-slider-wrap {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin: -70px 0 0 0;
}

.customer-slider {
    -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, .18) !important;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .18) !important;
    padding: 55px 80px 35px 80px;
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.dot-shape {
    top: 45%;
    left: 20%;
    position: absolute;
    z-index: -1;
}

.shape1::after {
    position: absolute;
    left: -80px;
    width: 200px;
    height: 200px;
    background: #bf00dc;
    content: "";
    top: -100px;
    border-radius: 100%;
}

.shape1::before {
    position: absolute;
    left: 35%;
    width: 70px;
    height: 70px;
    background: #6730e3;
    content: "";
    bottom: -40px;
    border-radius: 100%;
    opacity: 0.3;
}

.shape2::after {
    position: absolute;
    right: 35%;
    width: 70px;
    height: 70px;
    background: #6730e3;
    content: "";
    top: -40px;
    border-radius: 100%;
    opacity: 0.3;
}

.shape2::before {
    position: absolute;
    right: -108px;
    width: 200px;
    height: 200px;
    background: #9629e6;
    content: "";
    bottom: -100px;
    border-radius: 100%
}

.customer-slider h6 {
    font-weight: 200;
    font-family: opensans;
    font-size: 1.2em;
    color: #858585;
}

    .customer-slider h6 strong {
        font-weight: 700;
        color: var(--paralax-color);
    }

.customer-list .owl-item {
    padding: 15px 10px;
    transition: all .5s ease;
}

.customer-img img {
    width: 95px !important;
    height: 85px;
    -webkit-filter: opacity(90%);
    filter: opacity(90%);
    transition: all .5s ease;
    object-fit: contain;
}

.customer-list .owl-item:hover {
    -webkit-filter: opacity(100%);
    filter: opacity(100%);
    transform: scale(1.2);
}

@media screen and (max-width:768px) {
    .customer-slider {
        padding: 40px 20px 20px 20px;
        background-color: #fff;
    }

        .customer-slider h6 {
            position: relative;
            z-index: 2;
            padding: 0 10px;
            font-size: 1em;
        }

    .shape1::after {
        left: -167px;
    }

    .shape2::before {
        right: -158px;
    }

    .customer-img img {
        margin: auto;
    }
}

/* Customer box */
/* Service */
.service-dispaly-section ~ .service-dispaly-section {
    padding: 30px 0 60px 0;
}

.service-dispaly-section.single,
.service-dispaly-section {
    padding: 100px 0 40px 0;
    background-color: #f5f5f5;
}


.hero-title h4 {
    font-weight: 600;
    opacity: .95;
    font-size: 2.1em;
    line-height: 1.4;
}

.single-service-promo {
    border-radius: 15px;
    padding: 22px 26px 22px 13px;
    margin-bottom: 25px;
}

.shadow-box {
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, .08) !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, .08) !important;
}

.img-service-item {
    color: #fff;
    width: 49px;
    height: 49px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .img-service-item a, .img-service-item span {
        padding: 12px;
        display: inline-block;
    }

    .img-service-item svg {
        width: 1em !important;
        font-size: 1.8em;
    }

.single-service-promo {
    display: flex;
    flex-direction: column;
    background: rgb(255, 255, 255);
    align-items: flex-start;
    min-height: 230px;
    justify-content: start;
}

.blue-bg {
    background-color: #6730e3;
}

.red-bg {
    background-color: #dc3545;
}

.yellow-bg {
    background-color: #ffc107;
}

.green-bg {
    background-color: #28a745;
}

.purple-bg {
    background-color: #9928a7;
}

.orange-bg {
    background-color: #f08b0d;
}

a.title-service-item {
    cursor: pointer;
}

.title-service-item {
    /* width: 77%; */
    font-weight: 600;
    font-size: 1.2em;
    color: #1b2e4b;
    line-height: 1.3;
    margin: 17px 0;
}

.content-service-item {
    color: #868686;
    font-weight: 200;
    font-size: .899em;
    font-family: opensans;
}

    .content-service-item strong {
        color: var(--sub-text);
        font-weight: 800;
    }



@media screen and (max-width:768px) {

    .service-dispaly-section.single,
    .service-dispaly-section {
        margin: 0;
        padding: 0 0 !important;
    }

    .single-service-promo {
        min-height: unset;
    }

    .service-dispaly-section {
        padding: 0;
        padding-top: 130px;
        margin-top: 0;
    }

    .aos-init {
        opacity: 1 !important;
        transform: none !important
    }
}

/* Service */


/* About */
.about-display-section .hero-display-text {
    margin: 20px 0px 20px 30px;
}

.about-display-section {
    padding: 100px 0;
    width: 100%;
    display: inline-block;
    overflow: hidden;
}

    .about-display-section + .service-dispaly-section {
        padding-top: 110px
    }

.image-overlap {
    position: relative;
    display: grid;
    grid-template-rows: 2fr;
}

.image-overlap-item:first-of-type {
    grid-column: 1 / span 2;
    grid-row: 1 / span 3;
}

.about-display-section .dot-shape {
    top: 45%;
    left: 20%;
    z-index: -1;
}

.position-absolute {
    position: absolute !important;
}

.image-overlap-item .dot-shape-2 {
    top: 6px;
    left: auto;
    right: 100px;
}

.rounded-custom {
    border-radius: 15px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.image-overlap-item:last-of-type {
    grid-column: 2 / span 2;
    grid-row: 3 / span 2;
}

.hero-title p.small-text {
    font-size: .90em;
    line-height: 1.8;
}

.counter-list {
    display: flex;
    margin-top: 30px;
    justify-content: space-around;
}

    .counter-list > li:first-child + li {
        border-style: solid;
        padding: 0 30px;
        border-width: 0px 1px 0px 1px;
        border-color: #e1e1e1;
    }

    .counter-list li {
        text-align: center;
    }

    .counter-list .title {
        margin: 0;
        color: var(--sub-text);
        font-weight: 800;
    }

    .counter-list .content {
        font-size: .9em;
        font-weight: 200;
        color: #9e9e9e;
        font-family: opensans;
    }

@media screen and (max-width:768px) {
    .about-display-section {
        padding: 30px 0;
    }

        .about-display-section .hero-display-text {
            margin: 80px 0 0 0;
        }
}

/* About */
.slider-item-main .swiper-creative .swiper-slide {
    background-repeat: no-repeat;
    background: url(/img/istockphoto-1366693438-612x612.jpg);
    background-size: 100%;
    position: relative
}


.image-slider {
    z-index: 1;
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 57% 43% 70% 30% / 60% 45% 55% 40%;
    object-fit: cover;
    left: 65px;
    top: 50%;
    -webkit-transform: translateX(-1000px) translateY(-50%);
    transform: translateX(-1000px) translateY(-50%);
    background: #edeaf0;
    box-shadow: 20px 20px 60px #c9c7cc, -20px -20px 60px #ffffff;
    transition: all .8s ease
}

    .image-slider:hover {
        border-radius: 77% 23% 69% 31% / 50% 72% 28% 50%
    }

.slider-item-main {
    margin: auto;
    max-width: 1120px;
}
/* parallax  */
.parallax-display-section {
    position: relative;
    opacity: 1;
    background: url(../img/img-products/Capture3.PNG) no-repeat center center / contain fixed;
}

.second-parallax {
    background: url(../img/img-products/Capture9.PNG) no-repeat center center / contain fixed
}

.parallax-display-section > div {
    position: relative;
    z-index: 1;
}

.parallax-display-section:after {
    position: absolute;
    content: '';
    background: linear-gradient(75deg, #4f1bc5, #7b17c5) !important;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .7;
    z-index: 0;
}

.parallax-display-section .hero-title h4 {
    color: #fff;
    font-weight: 800;
}

.parallax-display-section .hero-title p.small-text {
    width: 75%;
    margin: auto;
    line-height: 1.9;
    color: #fff;
    opacity: .9;
    margin-bottom: 10px;
}

.newsletter-wrap .cbtn span {
    margin-left: 11px;
}

.parallax-display-section .cbtn,
.newsletter-wrap .cbtn, .blog-content .cbtn {
    background-color: var(--paralax-color);
    padding: 11px 41px;
    margin: 10px;
}

.newsletter-wrap .cbtn {
    margin: 10px;
    width: auto;
    display: inline-block;
    float: left;
    font-size: 1em;
}

.parallax-display-section .cbtn:hover {
    background-color: var(--paralax-color-hover);
}

.parallax-display-section .cbtn svg,
.parallax-display-section .cbtn i {
    font-size: 1.6em;
    margin: 0 9px 0px 0;
}

.parallax-display-section .hero-title {
    position: relative;
    color: #fff;
    padding: 120px 45px;
    text-align: center;
    z-index: 5;
}

.button-row {
    display: flex;
    justify-content: center;
}

@media screen and (max-width:768px) {
    .button-row {
        flex-wrap: wrap;
    }

    .parallax-display-section .cbtn {
        padding: 11px 25px;
    }

    .parallax-display-section .hero-title p.small-text {
        width: 100%;
    }

    .parallax-display-section .hero-title {
        padding: 80px 20px;
    }
}

/* parallax  */


.catalog-btn svg {
    width: 18px;
    margin: -2px 3px 0px 3px;
}

.catalog-btn {
    cursor: pointer;
    position: fixed;
    right: 20px;
    padding: 9px 16px 9px 10px;
    text-align: center;
    font-size: .9rem;
    background: #6730e3;
    z-index: 99999999;
    color: #fff;
    animation: unfixed-catalog .3s ease;
    bottom: 20px;
    border-radius: 5px;
}




@media(max-width:769px) {
    .catalog-btn {
        top: auto !important;
    }

        .catalog-btn.fixed svg {
            display: none;
        }

        .catalog-btn.fixed {
            border-radius: 3px;
            animation: none;
            position: fixed;
            top: auto !important;
            bottom: 30px;
        }
}


/* feature */
.hero-title.sub-title p.small-text {
    width: 70%;
    margin: auto;
}

@media screen and (max-width:500px) {
    .hero-title.sub-title p.small-text {
        width: 100%;
    }
}

.feature-display-content {
    display: inline-block;
    margin-top: 40px;
    width: 100%;
}

.feature-display-section {
    display: inline-block;
    width: 100%;
    padding: 20px 0 90px 0;
    background: #f5f5f5;
}

.hero-display-text.center {
    text-align: center;
    margin: 85px 0 45px 0;
}

.service-dispaly-section .hero-display-text.center {
    margin: 0 0 45px 0;
}

.feature-item {
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 30px;
    text-align: right;
    position: relative;
}

.feature-display-content .right .feature-item-text {
    margin: 0px 75px 0px 0;
}

.feature-display-content .right .feature-item {
    flex-direction: row;
    text-align: left;
}

.feature-icon {
    width: 50px;
    position: absolute;
    height: 50px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    -webkit-box-shadow: 0 2px 4px 0 #000000;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .12);
    box-shadow: 0 2px 4px 0 #000000;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .12);
    border-radius: 50px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    color: var(--paralax-color);
}

.feature-item-title {
    font-size: 1.22em;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-item-dec {
    font-size: .9em;
    font-family: opensans;
    font-weight: 200;
    line-height: 1.8;
}

.feature-item-text {
    opacity: .9;
    margin: 0px 0px 0 75px;
    width: calc(100% - 85px);
}

.feature-display-section .feature-item .feature-icon img {
    filter: invert(17%) sepia(87%) saturate(5872%) hue-rotate(274deg) brightness(97%) contrast(88%);
}

.feature-display-section .feature-item .feature-icon {
    background-color: #fff;
}

.feature-display-section .feature-item:hover .feature-icon img {
    filter: invert(1);
}

.feature-display-section .feature-item:hover .feature-icon {
    background-color: var(--paralax-color);
}

.img-app {
    width: 350px;
    margin: -25px 0;
    height: 527px;
    object-fit: contain;
}

@media screen and (max-width:768px) {
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2em;
        line-height: 45px;
        right: 0;
    }

    .feature-item {
        margin-bottom: 15px;
        flex-direction: row;
        font-size: 14px;
        text-align: right;
    }

    .feature-item-text {
        width: calc(100% - 65px);
        margin: 0px 65px 0 0;
    }

    .feature-item-title {
        margin-bottom: 5px;
        font-size: 1.3em;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .hero-title p,
    .customer-slider h6,
    .feature-item-dec,
    .content-service-item {
        font-size: 1em;
    }

    .img-app {
        width: 100%;
        margin: 20px 0 45px 0;
    }

    .feature-display-content .right .feature-item-text {
        margin: 0px 25px 0px 0;
        text-align: right;
    }

    .feature-display-content .right .feature-item {
        flex-direction: row-reverse;
    }
}

@media screen and (max-width:500px) {
    .hero-title.sub-title p.small-text {
        width: 100%;
    }
}

/* feature */


/* Plan */
.plan-display-section {
    display: inline-block;
    background-color: #f5f5f5 !important;
    width: 100%;
    padding-bottom: 75px;
}

.plan-item {
    background-color: #fff !important;
    text-align: center;
    padding: 35px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.plan-display-section .small-text {
    width: 60%;
    margin: auto;
}

.plan-display-section .hero-display-text {
}

.plan-img {
    width: 120px;
    height: 80px;
}

.plan-item .title {
    font-size: .9em;
    font-weight: 800;
    margin-bottom: 5px;
}

.plan-item .dec {
    font-weight: 600;
    font-size: .9em;
    color: #b1b1b1;
    margin-bottom: 25px;
}

.pricing-feature-list strong {
    font-weight: 800;
    color: #505050;
    font-size: .94em;
}

.pricing-feature-list {
    font-size: .87em;
    font-weight: 400;
    font-family: opensans;
    margin-top: 25px;
}

    .pricing-feature-list li {
        margin-bottom: 10px;
    }

.text-deem {
    opacity: .5;
}

.plan-price {
    color: var(--default-color);
    font-size: 40px;
    font-weight: 800;
    margin: 13px 0;
}

    .plan-price small {
        font-size: .5em;
    }

.line-btn.cbtn {
    border: 1px solid var(--paralax-color);
    color: var(--paralax-color);
    background-color: #fff;
    padding: 8px 36px;
    transition: all .3s ease;
    text-align: center;
}

    .line-btn.cbtn:hover {
        background-color: var(--paralax-color);
        color: var(--paralax-color);
        color: #fff;
    }

@media screen and (max-width:768px) {
    .plan-display-section .small-text {
        width: 100%;
    }

    .plan-item {
        margin-bottom: 15px;
        border-radius: 15px;
    }
}

@media screen and (max-width:500px) {
    .plan-display-section .small-text {
        width: 100%;
    }
}

/* Plan */




/* Counter */
.counter-display-section {
    background: linear-gradient(75deg, #4f1bc5, #7b17c5) !important;
    padding: 40px;
    text-align: center;
}

.counter-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}

.counter-icon {
    font-size: 3em;
    height: 66px;
}

.counter-num {
    font-size: 1.6em;
    font-weight: 800;
    margin: 5px 0;
}

.counter-item-text {
    font-size: .85em;
    font-weight: 500;
}

/* Counter */

/* Team News */
.team-news-display-section {
    display: inline-block;
    background-color: #f5f5f5;
    width: 100%;
    padding-bottom: 100px;
}

.single-team-wrap {
    display: flex;
    border-radius: 15px;
    background: #fff;
    height: 180px;
    padding: 25px;
    margin: 75px 0 50px 0;
}

.image-team-item {
    transform: translateY(-80px);
}

    .image-team-item img {
        width: 215px;
        height: 215px;
        border-radius: 15px;
        object-fit: cover;
    }

.content-team-item {
    margin-left: 35px;
}

    .content-team-item .title {
        font-size: 1.2em;
        margin: 0;
        font-weight: 800;
    }

    .content-team-item p {
        font-size: .9em;
        font-weight: 400;
        font-family: opensans;
        color: #909090;
    }

    .content-team-item span {
        font-size: .8em;
        margin-bottom: 25px;
        font-family: opensans;
        font-weight: 200;
        display: inline-block;
        color: var(--paralax-color);
    }

/* Team News */
/*News*/
.fit-size svg {
    max-width: fit-content !important;
    margin-right: 5px;
    margin-left: 0;
}

.fit-size {
    width: fit-content
}

.news-page-list .news-page-index {
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 45px;
    padding-bottom: 15px;
}

    .news-page-list .news-page-index:last-child {
        border: none
    }

.news-page-index p {
    text-align: justify
}

.news-page > .row {
    flex-direction: row-reverse
}

.news-page-img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    border-radius: 5px;
}

.news-page .blockquote {
    font-weight: 500;
    font-size: 1.2rem;
    color: #222;
    border-right: 2px solid #eaeaea;
    padding: 10px 40px 10px 0;
    margin: 40px 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.news-page-index h1 {
    font-size: 1.3rem;
    margin: 20px 0 0 0;
}

.news-page-header p {
    color: #999999;
    font-size: .85rem;
}

.item-news {
    cursor: pointer;
}

    .item-news img {
        width: 100px;
        height: 60px;
        object-fit: cover;
        border-radius: 5px;
        flex: 0 0 100px;
    }

@media screen and (max-width:992px) {
    .item-news img {
        width: 60px;
    }
}

.item-side-head {
    margin-bottom: 20px;
}

    .item-side-head h4 {
        letter-spacing: 1px;
        font-weight: 600;
        font-size: 12px;
        margin: 0;
        color: #788487;
    }

.item-news {
    display: flex
}

.item-news-content p {
    font-size: 12px;
    color: #b4b4b4;
    margin-top: 5px;
}

.item-news-content {
    padding: 0 10px;
}

    .item-news-content h2 {
        color: #788487;
        display: block;
        font-size: 14px;
        margin: 0;
        text-align: right;
        line-height: 20px;
        font-weight: 500;
        overflow: hidden;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        transition: color .3s ease;
        cursor: pointer;
    }

        .item-news-content h2:hover {
            color: var(--sub-text)
        }

.item-news-content {
    display: flex;
    flex-direction: column;
}
/*News*/
/* Review */
.review-item {
    border-radius: 1rem;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0,0,0, .10);
    box-shadow: 0 1px 4px 0 rgba(0,0,0, .10);
    background-color: #f5f5f5;
    padding: 45px 50px;
}

.review-item-content {
    font-size: .95em;
    margin-top: 30px;
    font-weight: 200;
    line-height: 1.7;
    opacity: .9;
    font-family: opensans;
}

.review-author-img img {
    border-radius: 50px;
    width: 50px !important;
}

.review-item-header {
    justify-content: space-between;
    display: flex;
    align-items: center;
}

    .review-item-header > div {
        display: flex;
        align-items: center;
    }

.review-author-detail {
    margin: 0 15px;
}

.author-icon {
    color: var(--default-color);
    font-size: 2.5em;
}

.review-author-name {
    font-size: .94em;
    color: #181818;
    font-weight: 600;
}

.review-author-info {
    font-size: .9em;
    font-weight: 500;
}

.review-display-section {
    display: inline-block;
    width: 100%;
    padding-bottom: 100px;
}


@media screen and (max-width:550px) {
    .image-team-item {
        display: none;
    }

    .content-team-item {
        margin: 0;
    }

        .content-team-item p {
            margin: 0;
        }

    .single-team-wrap {
        height: auto;
        padding: 25px;
        margin: 16px 0 0 0;
    }
}



/* Review */


/* Blog */

.blog-display-section {
    display: inline-block;
    width: 100%;
    background-color: #f5f5f5;
    padding-bottom: 70px;
}

.blog-header {
    display: flex;
    font-size: .75em;
    font-weight: 600;
    color: #7d7d7d;
    justify-content: space-between;
}

    .blog-header > ul {
        display: flex;
    }

.blog-item {
    padding: 25px;
    border: 1px solid rgba(72, 94, 144, 0.16);
    background-color: #fff;
    border-radius: 4px;
}

.blog-date {
    color: var(--paralax-color);
}

.blog-header li {
    margin-right: 5px;
    font-weight: 500;
}

.blog-content .title {
    font-size: 1.2em;
    margin-top: 15px;
    line-height: 1.2;
}

.blog-content .dec {
    font-size: .9em;
    font-weight: 500;
    line-height: 1.8;
    color: #858585;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

@media screen and (max-width:500px) {
    .blog-item {
        margin-bottom: 15px;
    }
}

/* Blog */



/* ReDemo */
.requst-demo-display-section {
    display: inline-block;
    width: 100%;
}

.requst-demo-display-section {
    padding: 100px 0 180px 0;
}

    .requst-demo-display-section .hero-display-text {
        margin: 0;
    }

.contact-us-form {
    background-color: #f5f5f5;
    padding: 45px;
    border-radius: 5px;
}

@media screen and (max-width: 768px) {
    .content-img-wrap {
        position: relative;
        margin: 60px 0;
    }

    .hero-display-text {
        margin: 65px 0 !important;
    }

    .hero-title h4 {
        font-size: 1.8em;
    }
}

.input-control:focus,
.input-control:active {
    outline: none;
    border-color: #80bdff;
}

.input-control {
    border: 1px solid #e5e9f2;
    font-weight: 500;
    line-height: 1.5;
    color: #3a444d;
    border-radius: 4px;
    width: 100%;
    padding: 11px;
    margin-bottom: 15px;
    font-size: .9em;
    opacity: .8;
}

    .input-control::-moz-placeholder {
        font-weight: 500;
        color: #3a444d;
        font-size: .9em;
    }

    .input-control::placeholder {
        color: #3a444d;
        font-weight: 500;
        font-size: .9em;
    }

.contact-us-form h4 {
    font-size: 1.407rem;
}

.contact-us-form .cbtn.solid-btn {
    background-color: var(--paralax-color);
    opacity: .6;
    padding: 10px 40px
}

    .contact-us-form .cbtn.solid-btn:hover {
        background-color: #6d14ae;
        opacity: .6;
    }

.requst-demo-display-section .line-btn {
    border-color: var(--default-color);
    color: var(--default-color);
    width: 190px;
    border-radius: 3px;
    padding: 8px 0;
}

    .requst-demo-display-section .line-btn:hover {
        background-color: var(--default-color-hover);
        border-color: var(--default-color-hover);
    }

/* ReDemo */



/* Footer */


.newsletter-wrap {
    background: rgb(103, 48, 227);
    transform: translateY(-50px);
    border-radius: 4px;
    padding: 45px 55px;
    box-shadow: rgba(0,0, 0, .18) 0px 1rem 3rem !important;
    margin-top: -125px;
}

    .newsletter-wrap .title {
        color: #fff;
        font-size: 1.7em;
        margin: 0;
        font-weight: 600;
    }

    .newsletter-wrap .content {
        color: #fff;
        font-weight: 500;
        font-size: .9em;
        opacity: .8;
        margin: 2px 0 0 0;
    }

        .newsletter-wrap .content.content-phone {
            padding: 21px 0;
            font-size: 1rem;
            font-family: 'Vazir';
        }

.newsletter-form {
    position: relative;
}

    .newsletter-form > input {
        width: 100%;
        border: none;
        padding: 12px 22px;
        border-radius: 33px;
    }

        .newsletter-form > input::-moz-placeholder {
            font-weight: 500;
            font-size: .8em;
        }

        .newsletter-form > input::placeholder {
            font-weight: 500;
            font-size: .8em;
        }

    .newsletter-form a {
        right: 5px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--paralax-color);
        color: #fff;
        width: 72px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 12px;
        border-radius: 23px;
    }

    .newsletter-form > input:focus,
    .newsletter-form > input:active {
        outline: none;
    }

.social-list {
    display: flex;
}

    .social-list a {
        width: 30px;
    }

.footer {
    background: linear-gradient(75deg, #4f1bc5, #7b17c5) !important;
    padding: 100px 0 0 0;
}

.navbar-brand img {
    width: 46px;
    /* height: 25px; */
    object-fit: contain;
    margin: -5px -18px;
}

.internal-menu .menu-site li a {
    color: #fff;
}

.footer-detail-list .dec {
    color: #fff;
    margin: 14px 0 13px 0;
    font-size: .88em;
    font-weight: 200;
    line-height: 1.8;
    opacity: .85;
    /*font-family: "opensans";*/
    align-items: center;
}


.navbar-brand {
    opacity: 1 !important;
}

.footer-detail-list h4 {
    font-size: 1.05em;
    opacity: .85 !important;
}

.footer-detail-list h4,
.footer-detail-list a {
    color: #fff;
    opacity: .75;
}

.logo-site > a > img {
    height: 50px;
    padding: 4px 0px;
}

.footer-detail-list li {
    margin-bottom: 7px;
}

.footer-detail-list a {
    font-size: .8em;
    font-weight: 200;
    /*font-family: 'opensans';*/
}

.totop {
    z-index: 9999;
    position: fixed;
    bottom: 100px;
    left: -548px;
    background: #6730e3;
    color: #fff;
    padding: 7px 15px;
    border-radius: 5px;
    transition: all .3s ease
}

    .totop.show {
        transition: all .3s ease;
        left: 24px;
    }

    .totop:after {
        position: absolute;
        z-index: -1;
        content: '';
        top: 100%;
        left: 5%;
        height: 10px;
        width: 90%;
        opacity: 1;
        background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
    }

    .totop svg, .totop i {
        margin: 0 !important
    }

.footer-detail-list a:hover {
    opacity: 1;
}

.social-list a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 7px 0 0;
    font-size: 1em;
    border-radius: 5px;
    transition: all .3s ease;
}

    .social-list a:hover {
        border-radius: 35px;
    }

.twitter {
    background-color: #00a7e6;
}

.youtube {
    background-color: #ff0000;
}

.linkedin {
    background-color: #0077b5
}

.dribbble {
    background-color: #ea4c89
}

.footer-bottom-dec {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom {
    margin-top: -65px;
}

.footer-bottom-dec h6 {
    color: #fff;
    opacity: .75;
    margin: 0;
    font-weight: 200;
    font-family: 'opensans';
    font-size: .9em;
}

.footer-bottom-dec ul {
    display: flex;
    padding: 20px 0;
}

.footer-bottom-dec a {
    color: #fff;
    font-size: .8em;
    opacity: .75;
    margin: 0 0 0px 15px;
    font-family: 'opensans';
    font-weight: 200;
    transition: all .3s ease;
}

    .footer-bottom-dec a:hover {
        opacity: 1;
    }

@media screen and (max-width: 768px) {

    .newsletter-form {
        position: relative;
        margin-top: 30px;
    }
}

/* Footer */

/* Support Box */
.support-display-section {
    display: inline-block;
    background-color: #f5f5f5;
    width: 100%;
}

.support-items .feature-item-dec {
    margin: 0;
}

.support-items .feature-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    background: rgb(255, 255, 255);
    align-items: flex-start;
    min-height: 130px;
    justify-content: start;
    position: relative;
    border-radius: 15px;
    padding: 22px 26px 22px 13px;
}

.support-items .feature-item-text {
    opacity: .9;
    margin: 2px 66px 0px 0;
    width: calc(100% - 85px);
}

.support-items .feature-item .feature-icon {
    background-color: var(--paralax-color);
    color: #fff;
    /* left: 0; */
    right: 25px;
    margin: auto;
    top: 25px;
}

.support-items .feature-item-dec,
.support-items .feature-item-title {
    text-align: right;
}



/* Support Box */



/*Internal Page*/
.title-bar {
    position: relative;
    /* display: inline-block; */
    width: 100%;
    padding: 130px 0 0 0;
    margin-top: -100px;
}

    .title-bar:before {
        content: "";
        position: absolute;
        height: 100%;
        top: 0;
        width: 100%;
        left: 0;
        background-size: cover !important;
        background-position: 70% 50% !important;
        z-index: 1;
        opacity: .2;
        transition: opacity .3s linear;
        -webkit-transition: opacity .3s linear;
        background: url('/img/slider-bg-1.jpg')
    }

    .title-bar:after {
        position: absolute;
        content: '';
        background: linear-gradient( 75deg, #4f1bc5, #7b17c5) !important;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
    }

.title-bar-control {
    padding-bottom: 55px
}

.title-bar > .container {
    position: relative;
    opacity: 1;
    z-index: 9;
}
/*======================
    404 page
=======================*/


.page_404 {
    padding: 0 0 40px 0;
    background: #fff;
}

    .page_404 img {
        width: 100%;
    }

.four_zero_four_bg {
    background-image: url(/img/dribbble_1.gif);
    height: 400px;
    background-position: center;
    background-size: contain
}


    .four_zero_four_bg h1 {
        font-size: 80px;
    }

    .four_zero_four_bg h3 {
        font-size: 80px;
    }

.link_404 {
    color: #fff !important;
    padding: 10px 20px;
    background: #39ac31;
    margin: 20px 0;
    display: inline-block;
}

.contant_box_404 {
    margin-bottom: 80px;
}

.head-article h1,
.title-page h4, .title-page h1 {
    color: #fff;
    font-weight: 600;
    font-size: 2em;
    margin-bottom: 45px;
}

.path-page {
    margin-top: 70px;
    padding: 15px 0;
    position: relative;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
    z-index: 1;
}

    .path-page ul {
        display: flex
    }

    .path-page li a {
        color: #6e6e6e;
        font-size: .87em;
        margin-left: 20px;
        font-weight: 500;
        opacity: .7
    }

.internal-page {
    display: inline-block;
    width: 100%;
    padding: 45px 0 95px 0
}

.article-item {
    margin-bottom: 15px;
    background: #f5f5f5;
    border-radius: 5px;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0,0, .08);
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0, .08) !important;
    overflow: hidden;
}

.related-articles {
    display: inline-block;
    width: 100%
}

.title-articles {
    padding: 20px 0;
    border-top: 2px dashed #deb6ff;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

    .title-articles a {
        display: inline-block;
        width: auto
    }

        .title-articles a:hover h1 {
            color: #7618c5;
            transform: translateX(-5px)
        }

    .title-articles h1 {
        font-size: 1rem;
        color: #969696;
        font-weight: 500;
        transition: all .3s ease;
    }

.related-articles label {
    color: #7618c5;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.img-article:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    content: "";
    height: 100%;
    background: linear-gradient( 75deg, #4f1bc5, #7b17c5) !important;
}

.img-article h1 {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 72%;
    display: flex;
    align-items: center;
    line-height: 1.5;
    font-size: 1.6em;
}

.img-article:before {
    transition: all .3s ease;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    content: "";
    background-size: 25%;
    background-position: 6% 217%;
    background-repeat: no-repeat;
    opacity: .3;
    z-index: 2;
    height: 100%;
    background-image: url(/img/no-image.png);
}

.img-article:hover:before {
    opacity: .7
}

@media screen and (max-width:1200px) {
    .img-article:before {
        background-position: bottom left;
    }
}

.lead-article {
    padding-top: 35px;
}


.img-article {
    position: relative;
    display: flex;
    justify-content: center;
    box-shadow: inset 0px -1px #fff;
    padding: 25px 30px 10px 30px;
    border-bottom: 3px solid #ec6e7b;
    min-height: 160px;
    justify-content: flex-start;
}

    .img-article img {
        width: 100px;
    }

.article-item-content {
    padding: 35px 25px;
}

    .article-item-content p {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: .95em;
        /*min-height: 128px;*/
        line-height: 1.7;
    }

    .article-item-content h2 {
        font-size: 1.2em;
    }

        .article-item-content h2 a {
            color: #696969;
            transition: all .3s ease;
        }

            .article-item-content h2 a:hover {
                color: var(--paralax-color);
            }

.m-btn a {
    transition: all .3s ease;
    font-weight: 600;
    font-size: .97em;
}

    .m-btn a:hover {
        color: var(--paralax-color);
    }

        .m-btn a:hover > svg, .m-btn a:hover > i {
            margin-right: 10px
        }

    .m-btn a > svg, .m-btn a > i {
        vertical-align: middle;
        color: var(--default-color);
        font-size: .9em;
        margin: 8px 3px;
        display: inline-block;
        transition: all .3s ease;
    }

.tag-article ul {
    display: flex;
    flex-wrap: wrap;
}

    .tag-article ul li a {
        background: #f5f5f5;
        margin: 10px 0 0 11px;
        font-size: .8em;
        padding: 6px 12px;
        display: inline-block;
        border-radius: 3px;
        transition: all .3s ease
    }

        .tag-article ul li a:hover {
            color: #fff;
            background: var(--paralax-color-hover);
        }

.article-page {
    display: inline-block;
    width: 100%;
    margin-bottom: 115px;
}

    .article-page h1, .article-page h2, .article-page h3, .article-page h4, .article-page h5, .article-page h6 {
        margin: 5px 0;
        color: inherit;
    }

.contact-item > span {
    font-size: 46px;
    color: var(--default-color)
}

.contact-item {
    padding: 35px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid rgba(72, 94, 144, 0.16);
    transition: transform .3s ease
}

@media screen and (min-width:1200px) {
    .contact-item {
        min-height: 260px;
    }
}

.contact-item h4 {
    font-weight: 500;
    font-size: 1.3em;
    margin: 10px 0 14px 0;
}

.contact-item p {
    font-size: .92em;
    margin: 0
}

.contact-item:hover {
    transform: translateY(-10px);
}

.item-customer {
    border: 1px solid rgba(72, 94, 144, 0.16);
    background-color: #fff;
    padding: 20px;
    text-align: center;
    height: 100%;
    border-radius: 5px;
}

    .item-customer img {
        width: 125px;
        height: 120px;
        object-fit: contain;
    }

.item-customer-content > div {
    margin-bottom: 15px
}

.item-name span {
    font-weight: 600;
    margin: 40px 0 20px 0;
    display: inline-block;
}

.item-customer > div:last-child span {
    font-size: .9em;
    font-weight: 400;
    color: #838383;
}

.internal-page .requst-demo-display-section {
    padding-top: 30px
}

    .internal-page .requst-demo-display-section > .container {
        padding: 15px
    }

.DivSeprate {
    box-shadow: none !important;
    background: transparent !important;
}

    .DivSeprate img {
        max-width: 100%
    }

.path-page ul li a {
    position: relative
}


    .path-page ul li a:after {
        position: absolute;
        top: 61%;
        transform: translateY(-50%);
        content: url(../img/Icons/angle-left.svg);
        right: -14px;
        font-weight: 600;
        width: 7px;
        font-size: 10px;
        color: var(--paralax-color);
    }

.path-page li a:hover {
    color: var(--paralax-color);
}

.path-page ul > li:first-child a:after {
    display: none;
}

/*Internal Page*/

.tooltip-inner {
    font-family: Vazir !important
}

.demo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    object-position: 75%;
}




.customer-slider .owl-nav > button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}





.customer-slider .owl-carousel .owl-nav button.owl-next:focus,
.customer-slider .owl-carousel .owl-nav button.owl-prev:focus, .customer-slider .owl-carousel .owl-nav button.owl-next:active,
.customer-slider .owl-carousel .owl-nav button.owl-prev:active {
    background-color: var(--paralax-color);
    color: #fff
}

.customer-slider .owl-carousel .owl-stage-outer {
    position: relative;
    z-index: 6;
}

.customer-slider .owl-carousel .owl-nav button.owl-next, .customer-slider .owl-carousel .owl-nav button.owl-prev {
    -webkit-box-shadow: 0px 2px 5px rgba(71,71, 71, .18);
    box-shadow: 0px 2px 5px rgba(71,71, 71, .18);
    cursor: pointer;
    border-radius: 3px;
    background: #f6f6f6;
    right: 13px;
    font-size: 26px;
    bottom: 20px;
    color: var(--paralax-color);
    width: 20px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.customer-slider .owl-carousel .owl-nav button.owl-next {
    left: 0;
    right: auto !important
}

.customer-slider .owl-carousel .owl-nav button.owl-prev {
    right: 0;
    left: auto
}

/*Company Slider*/


.support-btn {
    background-color: #fff;
    width: 60px;
    position: fixed;
    height: 60px;
    left: 20px;
    border-radius: 50px;
    box-sizing: border-box;
    z-index: 99;
    padding: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
    animation: heartbeat 1.5s ease-in-out infinite both;
    bottom: 20px;
}

    .support-btn img {
        width: 40px;
        height: 40px;
    }





.tooltip-content-support {
    position: fixed;
    transition: all .3s;
    border-radius: 4px;
    padding: 9px;
    z-index: 999;
    bottom: 10px;
    left: 100px;
    font-size: 14px;
    margin: 0;
    opacity: 0;
    background: #3e3e3e;
    background: rgba(62, 62, 62, 0.94);
    display: none;
    color: #fff;
}



    .tooltip-content-support:before {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        border-left: 7px solid transparent;
        border-right: 7px solid #3e3e3e;
        border-right: 7px solid rgba(62, 62, 62, 0.94);
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        right: 100%;
        transform: translateY(-50%);
        margin: auto;
        top: 50%;
    }


.support-btn:hover + .tooltip-content-support {
    opacity: 1;
    display: table;
    z-index: 999;
    bottom: 25px
}

@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}


.none-padding {
    padding-top: 0 !important
}

.closeMenu {
    display: none
}

@media screen and (max-width: 768px) {


    #DivMasterMainBody {
        overflow-x: hidden;
        overflow-y: clip;
    }

    .counter-item {
        margin-bottom: 45px;
    }
}

.totop img {
    width: 19px;
    height: 23px;
    filter: invert(1);
}

.cbtn img {
    margin-left: 5px;
    width: 22px;
    height: 22px;
}

.counter-icon {
    margin-bottom: 10px;
    filter: invert(1);
}

.contact-item span img {
    width: 40px;
    height: 40px;
    filter: invert(17%) sepia(87%) saturate(5872%) hue-rotate(274deg) brightness(97%) contrast(88%);
}

.img-service-item img, .cbtn img, .feature-icon img {
    width: 25px;
    height: 25px;
    filter: invert(1);
}

.lead-article svg, .internal-page svg {
    max-width: 21px
}

.btn-menu img {
    width: 24px;
    height: 24px;
}

.error-box {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 90px;
    text-align: center;
}

.footer-bottom-dec ul li svg path {
    fill: #fff
}



.social-media-buttons li a {
    background: #6730e3;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 5px;
    transition: box-shadow .3s ease;
    box-shadow: 0px 0 0 #fff;
}

    .social-media-buttons li a:hover {
        box-shadow: 0px 5px 8px #d8d8d8;
    }

.social-media-buttons {
    display: flex;
    margin-top: 20px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.blog-item > div {
    padding: 0
}

.blog-item {
    border: 0
}

.blog-list .blog-item.row {
    overflow: hidden;
    margin: 0
}

.blog-img {
    height: 100%;
}

.blog-item {
    height: 100%;
}

.blog-content {
    padding-bottom: 15px !important;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

canvas {
    display: block;
    vertical-align: bottom;
}
/* ---- particles.js container ---- */


/* ---- stats.js ---- */

.count-particles {
    background: #000022;
    position: absolute;
    top: 48px;
    left: 0;
    width: 80px;
    color: #13E8E9;
    font-size: .8em;
    text-align: left;
    text-indent: 4px;
    line-height: 14px;
    padding-bottom: 2px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
}

.js-count-particles {
    font-size: 1.1em;
}

#stats, .count-particles {
    -webkit-user-select: none;
    margin-top: 5px;
    margin-left: 5px;
}

#stats {
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

.count-particles {
    border-radius: 0 0 3px 3px;
}

.icon-link {
    position: absolute;
    left: 5px;
    bottom: 5px;
    width: 50px;
}

    .icon-link img {
        width: 100%;
        vertical-align: top;
    }

.icon-link--twitter {
    left: auto;
    right: 5px;
}

#particles-js {
    margin-top: -75px;
    position: absolute;
    width: 100%;
    height: 550px;
    background: linear-gradient(75deg, #4f1bc5, #7b17c5) !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

#DivMasterMainBody + div:not(#radynMessage) {
    display: none
}



.swiper-slider-box h3 {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
}

.swiper-slide-active .swiper-slider-box p {
    margin: 0;
    -webkit-animation: .7s slide-in-bottom 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: .7s slide-in-bottom 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.swiper-slide-active .swiper-slider-box h3 {
    -webkit-animation: .5s slide-in-bottom 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: .5s slide-in-bottom 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.swiper-slide-active .swiper-slider-box span {
    -webkit-animation: .2s slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: .2s slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.swiper-slide-active .image-slider {
    -webkit-animation: .7s slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: .7s slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-1000px) translateY(-50%);
        transform: translateX(-1000px) translateY(-50%);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0) translateY(-50%) rotate(10deg);
        transform: translateX(0) translateY(-50%) rotate(10deg);
        opacity: 1;
    }
}

@keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-1000px) translateY(-50%);
        transform: translateX(-1000px) translateY(-50%);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0) translateY(-50%);
        transform: translateX(0) translateY(-50%);
        opacity: 1;
    }
}

.slider-item-main .swiper-slide {
    color: #fff
}

.swiper-slider-box h3 {
    color: #3e3e3e;
    margin: 15px 0;
    font-size: 2.8rem;
    text-shadow: 1px 1px 1px #b9b7b7;
}

.bg-slider {
    position: absolute;
}

.swiper-slider-box span {
    color: var(--sub-text);
    font-size: 1.1rem;
}

.swiper-slider-box p {
    color: #3f3f3f;
    font-weight: 400;
    font-size: 1.1rem;
}

.swiper-slider-box {
    bottom: 0;
    position: absolute;
    right: 0;
    left: 33%;
    padding: 35px;
    border-radius: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.swiper-slide-next {
    z-index: 50 !important
}



.feature-item-dec {
    text-align: justify !important
}

@-webkit-keyframes slide-in-bottom {
    0% {
        -webkit-transform: translateY(1000px);
        transform: translateY(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-bottom {
    0% {
        -webkit-transform: translateY(1000px);
        transform: translateY(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@media screen and (max-width:992px) {
    .image-slider {
        display: none;
    }

    .swiper-slider-box {
        left: 0
    }

        .swiper-slider-box span {
        }

        .swiper-slider-box h3 {
            font-size: 2rem
        }

        .swiper-slider-box p {
            font-size: 1rem
        }

    .img-article:before {
        display: none;
    }

    .closeMenu {
        display: block !important
    }

    .catalog-btn {
        z-index: 99
    }

    .internal-menu .menu-site li a {
        color: #0e0e0e
    }

    .img-article {
        min-height: 125px;
    }

        .img-article h2 {
            width: 100%;
            line-height: 1.6;
            font-size: 1.3em;
        }
}
