/*--------------------General--------------------*/



@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,900");
a {
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
}

.row.m0 {
    margin: 0px;
}

.p0 {
    padding: 0px;
}

i:before {
    margin-left: 0px !important;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    font: 300 15px/28px "Poppins", sans-serif;
    letter-spacing: 0px;
    color: #677294;
    padding: 0px;
    overflow-x: hidden;
    z-index: 0;
    position: relative;
}

.body_wrapper {
    z-index: 20;
    overflow: hidden;
}

a,
.btn,
button {
    text-decoration: none;
    outline: none;
}

a:hover,
a:focus,
.btn:hover,
.btn:focus,
button:hover,
button:focus {
    text-decoration: none;
    outline: none;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Modal Background */
.modal{
    display:none;
    position:fixed;
    z-index:99999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
    overflow:auto;
}

/* Modal Box */
.modal-content{
    background:#fff;
    width:90%;
    max-width:650px;
    margin:60px auto;
    padding:35px;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
    position:relative;
    animation:popupFade .3s ease;
}

/* Header */
.modal-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.modal-header h3{
    margin:0;
    font-size:28px;
    font-weight:700;
    color:#051441;
}

/* Close Button */
.close{
    font-size:32px;
    cursor:pointer;
    line-height:1;
}

/* Form Fields */
#contactForm label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#051441;
}

#contactForm input,
#contactForm textarea{
    width:100%;
    padding:14px 15px;
    border:1px solid #ddd;
    border-radius:10px;
    margin-bottom:18px;
    font-size:15px;
}

#contactForm textarea{
    resize:vertical;
}

/* Submit Button */
#submitBtn{
    width:100%;
    border:none;
    background:linear-gradient(135deg,#4e78f4,#7b61ff);
    color:#fff;
    padding:15px;
    border-radius:10px;
    font-weight:600;
    cursor:pointer;
}

/* Animation */
@keyframes popupFade{
    from{
        opacity:0;
        transform:translateY(-20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.smtp_sec_title h2 {
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
    color: #263b5e;
    margin-bottom: 15px;
}

.smtp_sec_title p {
    font-size: 16px;
    font-weight: 400;
    color: #6a7695;
    margin-bottom: 0;
}

@media (min-width: 1250px) {
    .container {
        max-width: 1200px;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 100%;
    }
}

/* ==========================
   HEADER
========================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:#fff;
    padding:15px 0;
    box-shadow:0 5px 25px rgba(0,0,0,.05);
    transition:all .3s ease;
}

/* Logo */

.logo img{
    max-height:100px;
    width:auto;
}

/* CTA Button */

.btn-getstarted{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 24px;
    background:#4e78f4;
    color:#fff;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.btn-getstarted:hover{
    background:#7b61ff;
    color:#fff;
    transform:translateY(-2px);
}

/* Space for Fixed Header */

body{
    padding-top:90px;
}

/* Responsive */

@media (max-width: 991px) {
    .header {
        padding: 12px 0;
    }

    .header .container {
        gap: 10px;
        align-items: center;
    }

    .logo {
        flex: 1 1 auto;
    }

    .logo img {
        max-height: 62px;
    }

    .btn-getstarted {
        padding: 10px 14px;
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 767px) {
    .header {
        padding: 10px 0;
    }

    .header .container {
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .logo {
        flex: 1 1 180px;
        min-width: 0;
    }

    .logo img {
        max-height: 44px;
    }

    .btn-getstarted {
        padding: 9px 12px;
        font-size: 12.5px;
        justify-content: center;
        flex: 0 0 auto;
    }
}

.container.custom_container {
    max-width: 1520px;
}

.f_size_50 {
    font-size: 50px;
}

.f_size_40 {
    font-size: 40px;
}

.f_size_30 {
    font-size: 30px;
}

.f_size_28 {
    font-size: 28px;
}

.f_size_22 {
    font-size: 22px;
}

.f_size_24 {
    font-size: 24px;
}

.f_size_20 {
    font-size: 20px;
}

.f_size_18 {
    font-size: 18px;
}

.f_size_16 {
    font-size: 16px;
}

.f_size_15 {
    font-size: 15px;
}

.l_height60 {
    line-height: 60px;
}

.l_height70 {
    line-height: 70px;
}

.l_height54 {
    line-height: 60px;
}

.l_height50 {
    line-height: 50px;
}

.l_height45 {
    line-height: 45px;
}

.l_height40 {
    line-height: 40px;
}

.l_height30 {
    line-height: 30px;
}

.l_height34 {
    line-height: 34px;
}

.l_height28 {
    line-height: 28px;
}

.f_p {
    font-family: "Poppins", sans-serif;
}

/*=========== font-weight ==============*/

.f_300 {
    font-weight: 300;
}

.f_400 {
    font-weight: 400;
}

.f_500 {
    font-weight: 500;
}

.f_600 {
    font-weight: 600;
}

.f_700 {
    font-weight: 700;
}

.f_900 {
    font-weight: 900;
}

.t_color {
    color: #051441;
}

.w_color {
    color: #fff;
}

.t_color2 {
    color: #3f4451;
}

.t_color3 {
    color: #222d39;
}

.d_p_color {
    color: #bdbed6;
}

.bg_color_white {
    background: #ffffff;
}

.bg_color {
    background: #fbfbfd;
}

.dk_bg_one {
    background: #101135;
}

.dk_bg_two {
    background: #0f1029;
}

.seo_title_color {
    color: #263b5e;
}

.mt_60 {
    margin-top: 60px;
}

.mt_15 {
    margin-top: 15px;
}

.mt_20 {
    margin-top: 20px;
}

.mt_30 {
    margin-top: 30px;
}

.mt_40 {
    margin-top: 40px;
}

.mt_50 {
    margin-top: 50px;
}

.mt_60 {
    margin-top: 60px;
}

.mt_70 {
    margin-top: 70px;
}

.mt_75 {
    margin-top: 75px;
}

.mt_100 {
    margin-top: 100px;
}

.mt_130 {
    margin-top: 130px;
}

.mb_70 {
    margin-bottom: 70px;
}

.mb_20 {
    margin-bottom: 20px;
}

.mb_15 {
    margin-bottom: 15px;
}

.mb_30 {
    margin-bottom: -30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb_40 {
    margin-bottom: 40px;
}

.mb_50 {
    margin-bottom: 50px;
}

.mb-50 {
    margin-bottom: -50px;
}

.mb_60 {
    margin-bottom: 0px;
}

.mb_90 {
    margin-bottom: 90px;
}

.pm_15 {
    padding-bottom: 15px;
}

.pl_20 {
    padding-left: 20px;
}

.pl-30 {
    padding-left: 30px;
}

.pl_40 {
    padding-left: 40px;
}

.pl_50 {
    padding-left: 50px;
}

.pl_100 {
    padding-left: 100px;
}

.pl_70 {
    padding-left: 70px;
}

.pl_120 {
    padding-left: 120px;
}

.pr_100 {
    padding-right: 100px;
}

.pr_120 {
    padding-right: 120px;
}

.pr_70 {
    padding-right: 70px;
}

.pr_40 {
    padding-right: 40px;
}

.pr_50 {
    padding-right: 50px;
}

.pr_20 {
    padding-right: 20px;
}

.pt_150 {
    padding-top: 150px;
}

.pt_120 {
    padding-top: 40px;
}

.vfx_section_pad {
    padding: 10px 0px;
}

/*================= f_digital_home_area_part css ===============*/

.f_digital_home_area_part {
    position: relative;
    background: #fafafe;
    height: auto;
}

.banner_top {
    padding-top: 120px;
    padding-bottom: 100px
}

.smtp_home_block_area .banner_top {
    padding-top: 140px;
    padding-bottom: 170px
}

.banner_top h2 {
    color: #051441;
    margin-bottom: 25px;
}

.banner_top p {
    margin-bottom: 40px;
    font-weight: 400;
}

.banner_top .subcribes {
    max-width: 630px;
    margin: 0 auto;
}

.banner_top .subcribes .form-control {
    border: 2px solid #e9ebf4;
    border-radius: 4px;
    background-color: white;
    -webkit-box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
    box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
    font: 400 15px/46px "Poppins", sans-serif;
    padding-left: 25px;
    color: #051441;
    z-index: 0;
}

.banner_top .subcribes .form-control.placeholder {
    color: #b4b9c8;
}

.banner_top .subcribes .form-control:-moz-placeholder {
    color: #b4b9c8;
}

.banner_top .subcribes .form-control::-moz-placeholder {
    color: #b4b9c8;
}

.banner_top .subcribes .form-control::-webkit-input-placeholder {
    color: #b4b9c8;
}

.banner_top .subcribes .form-control:focus {
    border-color: #237efd;
}

.banner_top .subcribes .btn_submit {
    position: absolute;
    right: 8px;
    background: #237efd;
    color: #fff;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 11px 32px;
}

.f_digital_home_banner_img {
    text-align: center;
    margin-top: 40px;
    position: relative;
}

/*============== slider_area css ==============*/

.slider_area {
    background-image: -moz-linear-gradient(40deg, #1786d8 0%, #00aff0 100%);
    background-image: -webkit-linear-gradient(40deg, #1786d8 0%, #00aff0 100%);
    background-image: -ms-linear-gradient(40deg, #1786d8 0%, #00aff0 100%);
    height: 930px;
    background-size: cover;
    background-position: 50%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.slider_area .bottom_shoape {
    position: absolute;
    bottom: 0px;
    left: 0;
    z-index: -1;
    width: 100%;
}

.slider_area .middle_shape {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.leaf {
    position: absolute;
}

.leaf.l_left {
    top: 200px;
    left: 260px;
}

.leaf.l_right {
    right: 0;
    bottom: 100px;
}

.mobile_img {
    position: relative;
}

.mobile_img .img {
    -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    -webkit-animation-name: animateUpDown;
    animation-name: animateUpDown;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.mobile_img .mobile {
    z-index: -1;
    position: relative;
}

.mobile_img .women_img {
    top: 245px;
    right: 160px;
    z-index: 1;
}

.slider_content {
    padding-top: 200px;
}

.slider_content h2,
.slider_content p {
    color: #fff;
}

@-webkit-keyframes animateUpDown {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes animateUpDown {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

/*=============== prototype_banner_area css ==============*/

.prototype_banner_area {
    background: #fbfbfd;
    padding-top: 220px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.prototype_content .banner_subscribe .subcribes {
    display: block;
}

.prototype_content .banner_subscribe .subcribes .form-control {
    max-width: 370px;
    width: 100%;
    border-radius: 3px;
    background-color: white;
    border: 0px;
    height: 50px;
    color: #222d39;
    padding-left: 30px;
    -webkit-box-shadow: 0px 2px 3px 0px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 2px 3px 0px rgba(12, 0, 46, 0.06);
    font: 300 14px/28px "Poppins", sans-serif;
    border: 1px solid transparent;
}

.prototype_content .banner_subscribe .subcribes .form-control.placeholder {
    color: #aeb4ba;
}

.prototype_content .banner_subscribe .subcribes .form-control:-moz-placeholder {
    color: #aeb4ba;
}

.prototype_content .banner_subscribe .subcribes .form-control::-moz-placeholder {
    color: #aeb4ba;
}

.prototype_content .banner_subscribe .subcribes .form-control::-webkit-input-placeholder {
    color: #aeb4ba;
}

.prototype_content .banner_subscribe .subcribes .form-control:focus {
    border-color: #237efd;
}

.partner_logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 100px;
    border-bottom: 1px solid #eeeef5;
    padding-bottom: 35px;
    position: relative;
    z-index: 4;
}

.partner_logo .p_logo_item {
    width: calc(100% / 5);
    text-align: center;
}

.partner_logo .p_logo_item img {
    max-width: 100%;
    -webkit-filter: contrast(0.3%);
    filter: contrast(0.3%);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.partner_logo .p_logo_item:hover img {
    -webkit-filter: contrast(100%);
    filter: contrast(100%);
}

/*============== agency_banner_area css =============*/

.agency_banner_area {
    padding-top: 100px;
    position: relative;
    z-index: 1;
}

.agency_banner_area .banner_shap {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.agency_content h2 {
    font-size: 50px;
    line-height: 66px;
}

/*================ banner_area css ================*/

.software_banner_area {
    min-height: 100vh;
    background-image: -moz-linear-gradient(140deg, #23026d 0%, #3d64f4 100%);
    background-image: -webkit-linear-gradient(140deg, #23026d 0%, #3d64f4 100%);
    background-image: -ms-linear-gradient(140deg, #23026d 0%, #3d64f4 100%);
    position: relative;
    z-index: 0;
}

.f_dark_banner_area {
    background-image: -moz-linear-gradient(140deg, #030207 0%, #111339 100%);
    background-image: -webkit-linear-gradient(140deg, #030207 0%, #111339 100%);
    background-image: -ms-linear-gradient(140deg, #030207 0%, #111339 100%);
    padding-top: 210px;
    padding-bottom: 130px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.vfx_shap {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.dasboard_img img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.app_banner_area {
    background: url(../img/home7/banner.png) no-repeat scroll center 100%;
    padding-top: 230px;
    padding-bottom: 210px;
    overflow: hidden;
    background-size: cover;
}

.app_banner_area .app_img .app_screen {
    position: absolute;
    -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    -webkit-animation-name: animateUpDown;
    animation-name: animateUpDown;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.app_banner_area .app_img .app_screen.one {
    top: -20px;
    left: 80px;
    -webkit-animation-duration: 1.9s;
    animation-duration: 1.9s;
}

.app_banner_contentmt h2 {
    line-height: 64px;
}

.app_banner_contentmt .app_btn {
    border: 0px;
    background: #fff;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    color: #4069eb;
    margin-right: 10px;
    padding: 14px 40px;
}

.app_banner_contentmt .app_btn:hover {
    border-color: #4069eb;
    background: #4069eb;
    color: #fff;
}

.f_service_agency_banner_area {
    background-image: -moz-linear-gradient(40deg, #237efd 0%, #a485fd 100%);
    background-image: -webkit-linear-gradient(40deg, #237efd 0%, #a485fd 100%);
    background-image: -ms-linear-gradient(40deg, #237efd 0%, #a485fd 100%);
    padding: 150px 0px 110px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.f_service_agency_banner_area img.agency_banner_img {
    -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    -webkit-animation-name: animateUpDown;
    animation-name: animateUpDown;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.f_service_agency_banner_area img.agency_banner_img {
    -webkit-animation-duration: 1.9s;
    animation-duration: 1.9s;
}

.f_dot_shap_area {
    position: absolute;
    right: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: -1;
}

.f_dot_shap_area.one {
    width: 740px;
    height: 740px;
    top: -280px;
}

.f_dot_shap_area.two {
    width: 640px;
    height: 640px;
    top: -150px;
    right: -80px;
}

.f_dot_shap_area.three {
    width: 640px;
    height: 640px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -450px;
}

.agency_banner_img {
    margin-left: -100px;
}

.f_service_agency_content_area .agency_banner_btn {
    color: #237efd;
    border-color: #fff;
    background: #fff;
}

.f_part_banner_area {
    position: relative;
    z-index: 1;
}

.f_part_banner_area .shap_img {
    position: absolute;
    width: 100%;
    height: 540px;
    bottom: 120px;
    z-index: 0;
    left: 0;
    overflow: hidden;
    background-size: cover;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    right: 0;
}

.f_part_banner_area .section_intro {
    background-image: -moz-linear-gradient(-50deg, #237efd 0%, #24b0fe 46%, #24e2ff 100%);
    background-image: -webkit-linear-gradient(-50deg, #237efd 0%, #24b0fe 46%, #24e2ff 100%);
    background-image: -ms-linear-gradient(-50deg, #237efd 0%, #24b0fe 46%, #24e2ff 100%);
}

.section_container {
    max-width: 830px;
    margin: 0 auto;
    text-align: center;
    height: 100vh;
}

.section_container .intro {
    height: 55%;
    width: 100%;
    position: relative;
}

.f_part_banner_area .section_container .intro {
    height: 55%;
    width: 100%;
    position: relative;
}

.section_container .intro_content {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 0px 15px;
}

.section_container .intro_content h1 {
    font-size: 100px;
    letter-spacing: -0.20px;
    line-height: 80px;
    margin-bottom: 16px;
}

.section_container .intro_content p {
    line-height: 30px;
    margin-bottom: 60px;
    font-weight: 600;
}

.section_container .intro_content .subcribes {
    max-width: 570px;
    margin: 0 auto;
}

.section_container .intro_content .subcribes .form-control {
    border-radius: 60px;
    background-color: white;
    -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 11, 40, 0.1);
    box-shadow: 0px 8px 16px 0px rgba(0, 11, 40, 0.1);
    font: 400 16px/36px "Poppins", sans-serif;
    border: 0px;
    color: #a1a8be;
    height: 60px;
    padding-left: 30px;
    position: relative;
    z-index: 1;
}

.section_container .intro_content .subcribes .form-control.placeholder {
    color: #a1a8be;
}

.section_container .intro_content .subcribes .form-control:-moz-placeholder {
    color: #a1a8be;
}

.section_container .intro_content .subcribes .form-control::-moz-placeholder {
    color: #a1a8be;
}

.section_container .intro_content .subcribes .form-control::-webkit-input-placeholder {
    color: #a1a8be;
}

.section_container .intro_content .subcribes .btn_submit {
    position: absolute;
    top: 0;
    right: 0;
    font: 400 14px/60px "Poppins", sans-serif;
    color: #fff;
    background: #1c7ce7;
    border-radius: 0px 60px 60px 0px;
    padding: 0px 25px;
    border: 0px;
    z-index: 2;
}

.animation_img {
    text-align: center;
    margin-top: -400px;
    padding-top: 50px;
    z-index: 2;
    position: relative;
}

.f_part_banner_area .animation_img img {
    max-width: 100%;
}

.payment_banner_area {
    position: relative;
    min-height: 100vh;
    background-image: -moz-linear-gradient(-86deg, #7121ff 0%, #21d4fd 100%);
    background-image: -webkit-linear-gradient(-86deg, #7121ff 0%, #21d4fd 100%);
    background-image: -ms-linear-gradient(-86deg, #7121ff 0%, #21d4fd 100%);
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}

.payment_banner_area .shape {
    background-image: -moz-linear-gradient(-57deg, #7121ff 0%, #21d4fd 100%);
    background-image: -webkit-linear-gradient(-57deg, #7121ff 0%, #21d4fd 100%);
    background-image: -ms-linear-gradient(-57deg, #7121ff 0%, #21d4fd 100%);
    position: absolute;
    left: -256px;
    top: -178px;
    width: 1095px;
    height: 602px;
    border-radius: 90px;
    -webkit-transform: rotate(-38deg);
    -ms-transform: rotate(-38deg);
    transform: rotate(-38deg);
    z-index: -1;
    opacity: 0.20;
}

.payment_banner_area .shape.two {
    background-image: -moz-linear-gradient(-75deg, #7121ff 0%, #21d4fd 100%);
    background-image: -webkit-linear-gradient(-75deg, #7121ff 0%, #21d4fd 100%);
    background-image: -ms-linear-gradient(-75deg, #7121ff 0%, #21d4fd 100%);
    position: absolute;
    left: 689px;
    top: 458px;
    border-radius: 150px;
    width: 816px;
    height: 702px;
}

.animation_img_two {
    width: 70%;
    height: 60%;
    float: right;
    text-align: right;
    position: absolute;
    bottom: 140px;
    right: 0;
    z-index: 0;
}

.animation_img_two img {
    max-width: 100%;
}

.svg_intro_bottom {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: auto;
    z-index: -1;
}

.payment_banner_content {
    max-width: 670px;
}

.payment_banner_content h1 {
    line-height: 70px;
    margin-bottom: 25px;
}

.payment_banner_content p {
    line-height: 30px;
}

.payment_banner_content .agency_banner_btn {
    background: #fff;
    color: #5956fe;
    border-color: #fff;
}

.payment_banner_content .agency_banner_btn_two {
    color: #ffffff;
    margin-left: 30px;
}

.payment_banner_content .agency_banner_btn_two:before {
    display: none;
}

.payment_banner_content .agency_banner_btn_two i {
    vertical-align: middle;
    padding-left: 10px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.payment_banner_content .agency_banner_btn_two:hover i {
    padding-left: 15px;
}

/*=============== payment_banner_area_two css ==============*/

.payment_banner_area_two {
    background-image: -moz-linear-gradient(125deg, #237efd 0%, #767cfd 64%, #8ca7ff 100%);
    background-image: -webkit-linear-gradient(125deg, #237efd 0%, #767cfd 64%, #8ca7ff 100%);
    background-image: -ms-linear-gradient(125deg, #237efd 0%, #767cfd 64%, #8ca7ff 100%);
    height: 100vh;
    min-height: 860px;
    padding-top: 200px;
    position: relative;
    z-index: 1;
}

.payment_banner_area_two .symbols-pulse>div {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.04)), color-stop(65%, rgba(255, 255, 255, 0.04)), to(rgba(255, 255, 255, 0.04)));
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.04) 65%, rgba(255, 255, 255, 0.04) 100%);
    background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.04) 65%, rgba(255, 255, 255, 0.04) 100%);
    background-image: linear-gradient(-180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.04) 65%, rgba(255, 255, 255, 0.04) 100%);
    width: 28rem;
    height: 28rem;
}

.payment_content_two {
    max-width: 800px;
    margin: 0 auto;
}

.payment_content_two h2 {
    font-size: 50px;
    font-family: "Poppins", sans-serif;
    line-height: 66px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 33px;
}

.payment_content_two h2 span {
    font-weight: 700;
}

.payment_content_two .slider_btn {
    color: #237efd;
    font-size: 15px;
    padding: 15px 41px;
    -webkit-box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
    box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
}

.payment_content_two .slider_btn i {
    padding-right: 10px;
}

.payment_content_two .slider_btn:hover {
    background: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.payment_content_two .video_btn {
    position: relative;
    z-index: 1;
}

.payment_content_two .video_btn:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
}

.payment_content_two .payment_img {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.payment_content_two .payment_img .payment_icon {
    position: absolute;
    z-index: 0;
}

.payment_content_two .payment_img .payment_icon.icon_one {
    top: -82px;
    left: -34px;
}

.payment_content_two .payment_img .payment_icon.icon_two {
    left: 20px;
    top: 33%;
}

.payment_content_two .payment_img .payment_icon.icon_three {
    top: 38%;
    left: -20px;
    z-index: 1;
}

.payment_content_two .payment_img .payment_icon.icon_four {
    right: 0;
    top: -89px;
}

.payment_content_two .payment_img .payment_icon.icon_five {
    right: -40px;
    top: 80px;
}

.payment_content_two .payment_img .payment_icon.icon_six {
    right: -20px;
    top: 160px;
}

.f_digital_company_banner_area {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background-image: -moz-linear-gradient(270deg, #8647f9 0%, #15da88 100%);
    background-image: -webkit-linear-gradient(270deg, #8647f9 0%, #15da88 100%);
    background-image: -ms-linear-gradient(270deg, #8647f9 0%, #15da88 100%);
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.f_digital_company_banner_area .parallax-effect {
    background-size: cover !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.f_digital_company_banner_area .f_digital_company_content_area h6 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 28px;
    color: #fff;
}

.f_digital_company_banner_area .f_digital_company_content_area h2 {
    font-size: 50px;
    line-height: 66px;
    font-weight: 700;
    color: #fff;
}

.f_digital_company_banner_area .f_digital_company_content_area .about_btn {
    color: #237efd;
    font-size: 15px;
    padding: 14px 35px;
    margin-top: 28px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.f_digital_company_banner_area .f_digital_company_content_area .about_btn:hover {
    background: #fff;
    color: #237efd;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.f_startup_new_banner_area_part {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #237efd;
    position: relative;
    z-index: 0;
}

.f_startup_new_banner_area_part:before {
    content: "";
    background: url("../img/new/startup_banner_bg.png") no-repeat scroll center bottom;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: -1;
    top: 0;
}

.f_startup_new_banner_area_part .new_startup_img {
    padding-right: 70px;
    position: relative;
    z-index: 1;
}

.f_startup_new_banner_area_part .new_startup_img img {
    -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    -webkit-animation-name: animateUpDown;
    animation-name: animateUpDown;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.f_startup_new_banner_area_part .new_startup_img img {
    -webkit-animation-duration: 1.9s;
    animation-duration: 1.9s;
}

.f_startup_new_banner_area_part .new_startup_img .line {
    position: absolute;
    z-index: -1;
    height: 100%;
}

.f_startup_new_banner_area_part .new_startup_img .line.line_one {
    left: -40px;
    top: -95px;
}

.f_startup_new_banner_area_part .new_startup_img .line.line_two {
    left: 80px;
    bottom: -138px;
    opacity: 0.4;
}

.f_startup_new_banner_area_part .new_startup_img .line.line_three {
    right: 93px;
    top: -160px;
    opacity: 0.4;
}

.f_new_startup_content_area h2 {
    font: 300 50px "Poppins", sans-serif;
    line-height: 58px;
}

.f_new_startup_content_area h2 span {
    font-weight: 700;
}

.f_new_startup_content_area .app_btn {
    background: #fff;
    border-color: #fff;
    color: #237efd;
    -webkit-box-shadow: 0px 20px 20px 0px rgba(0, 11, 40, 0.1);
    box-shadow: 0px 20px 20px 0px rgba(0, 11, 40, 0.1);
    padding-top: 10px;
    padding-bottom: 10px;
}

.f_new_startup_content_area .app_btn i {
    padding-left: 8px;
}

.startup_banner_area_three {
    min-height: 100vh;
    background: #17c7bd;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}

.startup_content_three h2 {
    font-size: 50px;
    color: #051441;
    font-weight: 300;
    line-height: 60px;
    margin-bottom: 30px;
}

.startup_content_three h2 span {
    font-weight: 700;
}

.startup_content_three p {
    font-size: 18px;
    color: #3c4043;
    line-height: 30px;
    font-style: italic;
    margin-bottom: 50px;
}

.stratup_app_screen {
    position: absolute;
    width: 48%;
    height: 100%;
    right: 0;
    z-index: -1;
}

.stratup_app_screen .phone,
.stratup_app_screen .laptop {
    position: absolute;
    right: 0;
}

.stratup_app_screen .phone {
    bottom: -220px;
    left: 0;
}

.stratup_app_screen .laptop {
    right: -200px;
    bottom: -200px;
}

/*================= digital_banner_area css ============*/

.digital_banner_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100vh;
    background-image: -moz-linear-gradient(40deg, #237efd 0%, #767cfd 64%, #8ca7ff 100%);
    background-image: -webkit-linear-gradient(40deg, #237efd 0%, #767cfd 64%, #8ca7ff 100%);
    background-image: -ms-linear-gradient(40deg, #237efd 0%, #767cfd 64%, #8ca7ff 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.digital_banner_area .round_shap {
    position: absolute;
    border-radius: 50%;
    background-image: -moz-linear-gradient(50deg, #40dcfd 0%, #5286fd 36%, #632ffd 100%);
    background-image: -webkit-linear-gradient(50deg, #40dcfd 0%, #5286fd 36%, #632ffd 100%);
    background-image: -ms-linear-gradient(50deg, #40dcfd 0%, #5286fd 36%, #632ffd 100%);
    border-radius: 50%;
    z-index: -1;
}

.digital_banner_area .round_shap.one {
    width: 200px;
    height: 200px;
    left: -100px;
}

.digital_banner_area .round_shap.two {
    width: 520px;
    height: 520px;
    left: 38%;
    bottom: -100px;
}

.digital_banner_area .round_shap.three {
    width: 100px;
    height: 100px;
    left: 34%;
    top: 200px;
}

.digital_banner_area #demo {
    position: absolute;
    z-index: -1;
}

.digital_content {
    padding-right: 85px;
}

.digital_content h6 {
    font-size: 15px;
    font-weight: 300;
    line-height: 28px;
    border-bottom: 1px solid #fff;
    display: inline-block;
    color: #fff;
}

.digital_content h2 {
    font-size: 50px;
    line-height: 66px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.digital_content p {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 44px;
    color: #fff;
}

.digital_content .btn_six {
    -webkit-box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
    box-shadow: 0px 30px 30px 0px rgba(0, 11, 40, 0.1);
    background: #26c4e5;
    border-color: #26c4e5;
}

.digital_content .btn_six:hover {
    background: #26c4e5;
    color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.digital_video_slider {
    width: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.digital_video_slider .owl-stage {
    padding-left: 0px !important;
    padding-bottom: 30px;
}

.digital_video_slider .video_item {
    border-radius: 6px;
    overflow: hidden;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(0, 11, 40, 0.12);
    box-shadow: 0px 20px 30px 0px rgba(0, 11, 40, 0.12);
}

.digital_video_slider .video_item .video_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.digital_video_slider .video_item .video_icon:before {
    -webkit-transform: scale(1.32);
    -ms-transform: scale(1.32);
    transform: scale(1.32);
}

.digital_video_slider .video_item .video_icon:after {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0px 1px 15px 1px rgba(255, 255, 255, 0.3);
    box-shadow: 0px 1px 15px 1px rgba(255, 255, 255, 0.3);
    content: "";
    -webkit-animation: pulse 2s infinite;
    -webkit-transform: scale(8);
    -ms-transform: scale(8);
    transform: scale(8);
    animation: pulse 2s infinite;
}

.digital_video_slider .video_item .video_icon i:after {
    display: none;
}

.home_banner_section_block .owl-stage {
    padding-bottom: 138px;
}

.home_banner_section_block .owl-dots {
    position: absolute;
    right: 50px;
    top: 43%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 0;
}

.home_banner_section_block .owl-dots button {
    display: block;
    margin: 15px 0px;
}

.home_banner_section_block .owl-dots button span {
    background: #9886f7;
    border-color: #9886f7;
}

.home_banner_section_block .owl-dots button.active span {
    background: #fff;
    border-color: #fff;
}

.home_banner_section_block .slider_item {
    min-height: 900px;
    background-image: -moz-linear-gradient(270deg, #237efd 0%, #fd609b 100%);
    background-image: -webkit-linear-gradient(270deg, #237efd 0%, #fd609b 100%);
    background-image: -ms-linear-gradient(270deg, #237efd 0%, #fd609b 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.home_banner_section_block .slider_item.slider_item_two {
    background-image: -moz-linear-gradient(270deg, #8647f9 0%, #15da88 100%);
    background-image: -webkit-linear-gradient(270deg, #8647f9 0%, #15da88 100%);
    background-image: -ms-linear-gradient(270deg, #8647f9 0%, #15da88 100%);
}

.home_banner_section_block .slider_item .slidet_content {
    text-align: center;
    color: #fff;
    padding-top: 150px;
}

.home_banner_section_block .slider_item .slidet_content h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.home_banner_section_block .slider_item .slidet_content h2 span {
    font-weight: 300;
}

.home_banner_section_block .slider_item .slidet_content p {
    margin-bottom: 38px;
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    line-height: 34px;
}

.home_banner_section_block .slider_item .slidet_content .slider_btn {
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.home_banner_section_block .slider_item .slidet_content .slider_btn:hover {
    background: #fff;
    color: #237efd;
}

.home_banner_section_block .slider_item .slidet_content .slider_btn+.slider_btn {
    background: #fff;
    color: #237efd;
    margin-left: 15px;
}

.home_banner_section_block .slider_item .slidet_content .slider_btn+.slider_btn:hover {
    background: transparent;
    color: #fff;
}

.home_banner_section_block .slider_item .slidet_content_two {
    color: #fff;
    padding-top: 150px;
}

.home_banner_section_block .slider_item .slidet_content_two h2 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #fff;
}

.home_banner_section_block .slider_item .slidet_content_two .slider_btn {
    border: 2px solid #fff;
    color: #237efd;
}

.home_banner_section_block .slider_item .slidet_content_two .slider_btn:hover {
    background: transparent;
    color: #fff;
}

.home_banner_section_block .slider_item .image_mockup {
    position: absolute;
    bottom: -100px;
    width: 1030px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
}

.home_banner_section_block .slider_item .image_mockup img {
    max-width: 100%;
    width: auto;
    display: inline-block;
}

.home_banner_section_block .slider_item .image_mockup .laptop {
    opacity: 0;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 0.7s linear;
    -o-transition: all 0.7s linear;
    transition: all 0.7s linear;
}

.home_banner_section_block .active .image_mockup .laptop {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.smtp_home_block_area {
    background: #f7fdfc;
    position: relative;
    margin-bottom: 0px;
}

.smtp_home_block_area .f_digital_home_banner_img {
    margin-top: 30px;
}

.smtp_home_block_area .f_digital_home_banner_img img {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: -140px;
}

.seo_banner_content h2 {
    font-size: 50px;
    line-height: 68px;
    color: #263b5e;
    font-weight: 700;
}

.seo_banner_content p {
    font-size: 18px;
    line-height: 30px;
    color: #6a7695;
    margin-bottom: 40px;
}

.seo_banner_content .smtp_btn {
    margin: 0px 8px;
}

.home_bubble .bubble {
    position: absolute;
    border-radius: 50%;
}

.home_bubble .bubble.b_one,
.home_bubble .bubble.b_four {
    width: 10px;
    height: 10px;
}

.home_bubble .bubble.b_two,
.home_bubble .bubble.b_five {
    width: 30px;
    height: 30px;
}

.home_bubble .bubble.b_three,
.home_bubble .bubble.b_six {
    width: 14px;
    height: 14px;
}

.home_bubble .bubble.b_one {
    background: #237efd;
    top: 40%;
    left: 40px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-animation: spin2 2s infinite alternate;
    animation: spin2 2s infinite alternate;
}

.home_bubble .bubble.b_two {
    background: #237efd;
    top: 50%;
    left: 100px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-animation: spin2 2s infinite alternate;
    animation: spin2 2s infinite alternate;
}

.home_bubble .bubble.b_three {
    background: #237efd;
    top: 40%;
    right: 40px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-animation: spin2 2s infinite alternate;
    animation: spin2 2s infinite alternate;
}

.home_bubble .bubble.b_four {
    background: #237efd;
    top: 50%;
    right: 100px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-animation: spin2 2s infinite alternate;
    animation: spin2 2s infinite alternate;
}

.home_bubble .triangle {
    position: absolute;
}

.home_bubble .triangle.b_seven {
    left: 25%;
    top: 400px;
}

.home_bubble .triangle.b_eight {
    left: -100px;
    bottom: -45px;
}

.home_bubble .triangle.b_nine {
    right: 28%;
    bottom: 250px;
    -webkit-animation: spin2 2s infinite alternate;
    animation: spin2 2s infinite alternate;
}

@-webkit-keyframes pulse {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*================= breadcrum_area css =================*/

.inner_breadcrum_area {
    background: -moz-linear-gradient(-50deg, #237efd 0%, #24b0fe 46%, #47bcfe 100%);
    background-image: -webkit-linear-gradient(-50deg, #237efd 0%, #24b0fe 46%, #47bcfe 100%);
    background-image: -ms-linear-gradient(-50deg, #237efd 0%, #24b0fe 46%, #47bcfe 100%);
    position: relative;
    z-index: 1;
    padding: 180px 0px 100px;
    overflow: hidden;
}

.inner_breadcrum_area .inner_breadcrum_banner_shap {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    opacity: 0.05
}

.inner_breadcrum_area_two {
    background: #f8f6fe;
    position: relative;
    padding: 235px 0px 125px;
    z-index: 1;
}

.inner_breadcrum_area_two .inner_breadcrum_banner_shap {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    height: 100%;
}

.inner_breadcrum_area_two .bubble li {
    background: #237efd;
    opacity: 0.1;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
}

.inner_breadcrum_area_two .bubble li:nth-child(1) {
    left: 220px;
    bottom: 50px;
    -webkit-animation: spin3 2s infinite alternate;
    animation: spin3 2s infinite alternate;
}

.inner_breadcrum_area_two .bubble li:nth-child(2) {
    left: 35%;
    top: 100px;
    -webkit-animation: spin 2s infinite alternate;
    animation: spin 2s infinite alternate;
}

.inner_breadcrum_area_two .bubble li:nth-child(3) {
    left: 40%;
    width: 51px;
    height: 51px;
    bottom: 50px;
    -webkit-animation: spin1 3s infinite alternate;
    animation: spin1 3s infinite alternate;
}

.inner_breadcrum_area_two .bubble li:nth-child(4) {
    left: 42%;
    bottom: 50px;
    width: 20px;
    height: 20px;
}

.inner_breadcrum_area_two .bubble li:nth-child(5) {
    left: 76%;
    width: 51px;
    height: 51px;
    top: 160px;
    -webkit-animation: spin1 3s infinite alternate;
    animation: spin1 3s infinite alternate;
}

.inner_breadcrum_area_two .bubble li:nth-child(6) {
    left: 75%;
    width: 30px;
    height: 30px;
    top: 186px;
}

.inner_breadcrum_area_two .bubble li:nth-child(7) {
    left: 52%;
    top: 150px;
    width: 20px;
    height: 20px;
    -webkit-animation: spin2 2s infinite alternate;
    animation: spin2 2s infinite alternate;
}

.inner_breadcrum_area_two .bubble li:nth-child(8) {
    left: 90%;
    top: 250px;
    width: 20px;
    height: 20px;
    -webkit-animation: spin2 2s infinite alternate;
    animation: spin2 2s infinite alternate;
}

.inner_breadcrum_content_area {
    border-left: 5px solid #fff;
    border-radius: 2px 0 0 2px;
    padding-left: 30px;
}

.inner_breadcrum_content_area_two h1 {
    color: #ffffff;
    margin-bottom: 12px;
}

.inner_breadcrum_content_area_two .breadcrumb {
    background: transparent;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    padding-left: 0;
    padding-right: 0;
}

.inner_breadcrum_content_area_two .breadcrumb li {
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    position: relative;
    color: #ffffff;
}

.inner_breadcrum_content_area_two .breadcrumb li a {
    color: #ffffff;
}

.inner_breadcrum_content_area_two .breadcrumb li+li {
    padding-left: 32px;
}

.inner_breadcrum_content_area_two .breadcrumb li+li:after {
    content: "\e649";
    font-family: 'themify';
    position: absolute;
    left: 8px;
    top: 0;
    font-size: 14px;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: translateX(-10px) scale(0.9);
        transform: translateX(-10px) scale(0.9);
    }
    100% {
        -webkit-transform: translateX(30px) scale(1.3) translateY(10px);
        transform: translateX(30px) scale(1.3) translateY(10px);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: translateX(-10px) scale(0.9);
        transform: translateX(-10px) scale(0.9);
    }
    100% {
        -webkit-transform: translateX(30px) scale(1.3) translateY(10px);
        transform: translateX(30px) scale(1.3) translateY(10px);
    }
}

@-webkit-keyframes spin1 {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

@keyframes spin1 {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

@-webkit-keyframes spin2 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
}

@keyframes spin2 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
}

@-webkit-keyframes spin3 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    25% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
}

@keyframes spin3 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    25% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
}

.blog_inner_breadcrum_area {
    position: relative;
    height: 450px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}

.blog_inner_breadcrum_area .background_overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: -moz-linear-gradient(-140deg, #237efd 0%, #8037da 100%);
    background-image: -webkit-linear-gradient(-140deg, #237efd 0%, #8037da 100%);
    background-image: -ms-linear-gradient(-140deg, #237efd 0%, #8037da 100%);
    opacity: 0.90;
    z-index: -1;
}

.blog_inner_breadcrum_area .inner_breadcrum_content_area_two {
    color: #fff;
    padding-top: 50px;
}

.blog_inner_breadcrum_area .inner_breadcrum_content_area_two h5 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 18px;
    color: #fff;
}

.blog_inner_breadcrum_area .inner_breadcrum_content_area_two h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.25em;
    color: #fff;
    margin-bottom: 25px;
}

.blog_inner_breadcrum_area .inner_breadcrum_content_area_two ul {
    margin-bottom: 0;
}

.blog_inner_breadcrum_area .inner_breadcrum_content_area_two ul li {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
}

.blog_inner_breadcrum_area .inner_breadcrum_content_area_two ul li+li:before {
    content: "\e649";
    display: inline-block;
    font-family: 'themify';
    font-size: 10px;
    margin: 0px 5px 0px 3px;
}

/*================= f_digital_service_promo_area css =================*/

.f_digital_service_promo_area {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.f_digital_service_promo_area .shape {
    position: absolute;
    width: 100%;
    height: 1320px;
    z-index: -1;
}

.f_digital_service_promo_area .shape.shape_one {
    opacity: 0.01;
    left: -25%;
    top: 350px;
}

.f_digital_service_promo_area .shape.shape_two {
    opacity: 0.02;
    left: -15%;
    top: 400px;
}

.f_digital_service_promo_area .shape.shape_three {
    right: -52%;
    bottom: -9%;
    opacity: 0.01;
}

.f_digital_service_promo_area .shape.shape_four {
    right: -44%;
    bottom: -12%;
    opacity: 0.02;
}

.s_service_section {
    margin-top: 360px;
}

.s_service_item {
    background-image: -moz-linear-gradient(40deg, #8647f9 0%, #15da88 100%);
    background-image: -webkit-linear-gradient(40deg, #8647f9 0%, #15da88 100%);
    background-image: -ms-linear-gradient(40deg, #8647f9 0%, #15da88 100%);
    -webkit-box-shadow: 0px 20px 60px 0px rgba(0, 11, 40, 0.06);
    box-shadow: 0px 20px 60px 0px rgba(0, 11, 40, 0.06);
    padding: 50px 40px 40px;
    position: relative;
    text-align: center;
    border: 5px solid rgba(94, 83, 201, 0.1);
    z-index: 1;
    border-radius: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.s_service_item:hover {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.s_service_item .icon {
    width: 82px;
    height: 82px;
    border-width: 2px;
    border-style: dotted;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    line-height: 82px;
    font-size: 30px;
    text-align: center;
    margin-bottom: 34px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.s_service_item .icon.icon_1 {
    background-color: rgba(30, 130, 93, 0.059);
    border-color: rgba(30, 130, 93, 0.3);
    color: #1e825d;
}

.s_service_item .icon.icon_2 {
    border-color: rgba(128, 214, 25, 0.3);
    background-color: rgba(128, 214, 25, 0.059);
    color: #80d619;
}

.s_service_item .icon.icon_3 {
    color: #701dd2;
    background-color: rgba(112, 29, 210, 0.059);
    border-color: rgba(112, 29, 210, 0.3);
}

.s_service_item .icon.icon_4 {
    color: #fb5c0f;
    background-color: rgba(251, 92, 15, 0.059);
    border-color: rgba(251, 92, 15, 0.3);
}

.s_service_item .solid_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -1;
    opacity: 1;
    border-radius: 10px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.s_service_item h5 {
    margin-bottom: 18px;
    -webkit-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.s_service_item:hover .solid_overlay {
    opacity: 0;
}

.s_service_item:hover .learn_btn_two,
.s_service_item:hover h5,
.s_service_item:hover p {
    color: #fff;
}

.s_service_item:hover .icon {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.059);
    color: #fff;
}

.learn_btn_two {
    color: #051441;
    font-size: 15px;
    display: inline-block;
    margin-top: 7px;
    font-weight: 400;
    position: relative;
    -webkit-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.learn_btn_two i {
    font-size: 13px;
    padding-left: 3px;
    vertical-align: middle;
}

.learn_btn_two:hover {
    color: #fff;
}

.learn_btn_two:hover:before {
    width: 100%;
}

.learn_btn_two:hover i {
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.f_digital_service_promo_area_two {
    margin-top: -140px;
    padding-bottom: 120px;
}

.f_digital_service_promo_area_two .s_service_section {
    margin-top: 180px;
}

.f_digital_service_promo_area_two .shape.shape_one {
    top: 150px;
}

.f_digital_service_promo_area_two .shape.shape_two {
    top: 250px;
}

.f_digital_service_promo_area_two .s_service_item {
    background-image: -moz-linear-gradient(270deg, #8647f9 0%, #15da88 100%);
    background-image: -webkit-linear-gradient(270deg, #8647f9 0%, #15da88 100%);
    background-image: -ms-linear-gradient(270deg, #8647f9 0%, #15da88 100%);
}

/*=============== f_digital_features_section_area css ================*/

.f_digital_features_section_area {
    background: #f6f7fa;
    padding-top: 120px;
    padding-bottom: 100px;
}

.s_features_item .s_features_content {
    max-width: 590px;
}

.s_features_item .s_features_content .icon_square {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    border: 2px dotted rgba(127, 203, 17, 0.3);
    background-color: rgba(127, 203, 17, 0.059);
    text-align: center;
    font-size: 30px;
    line-height: 74px;
    color: #7fcb11;
}

.s_features_item .s_features_content h2 {
    margin: 32px 0px 20px;
    position: relative;
    padding-bottom: 15px;
}

.s_features_item .s_features_content h2::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    margin: 8px 0 10px;
    position: absolute;
    bottom: -5px;
    width: 60px;
    border-radius: 30px;
}

.s_features_item .ml_50 {
    margin-left: -50px;
}

.s_features_item .ml_25 {
    margin-left: -25px;
}

.s_features_item.s_features_item_two .s_features_content .icon_square {
    background-color: rgba(104, 166, 254, 0.059);
    border-color: rgba(104, 166, 254, 0.3);
    color: #237efd;
}

.s_features_item.s_features_item_two .s_features_content .learn_btn:hover {
    color: #237efd;
}

.s_features_item.s_features_item_two .s_features_content .learn_btn:hover:before {
    background: #237efd;
}

.s_features_item.s_features_item_two .s_features_content .learn_btn:hover i {
    color: #237efd;
}

.learn_btn {
    font: 500 16px/25px "Poppins", sans-serif;
    color: #051441;
    vertical-align: middle;
    display: inline-block;
    position: relative;
    margin-top: 30px;
    -webkit-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

.learn_btn i {
    padding-left: 8px;
    font-size: 14px;
    -webkit-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.learn_btn:before {
    content: "";
    width: 100%;
    left: 0;
    bottom: -2px;
    height: 2px;
    background: #051441;
    position: absolute;
    -webkit-transition: background 0.3s linear;
    -o-transition: background 0.3s linear;
    transition: background 0.3s linear;
}

.learn_btn:hover {
    color: #7fcb11;
}

.learn_btn:hover:before {
    background: #7fcb11;
}

.learn_btn:hover i {
    padding-left: 15px;
}

/*============= software_promo_area css ============*/

.software_promo_area {
    background: #f6f7fa;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.software_promo_area .round_shape {
    border-radius: 50%;
    max-width: 650px;
    min-height: 650px;
    margin: 120px auto 0px;
    position: relative;
}

.software_promo_area .round_shape .symbols-pulse {
    top: 50%;
}

.software_promo_area .round_shape .r_shape {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid #e9ebf0;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.software_promo_area .round_shape .r_shape.r_shape_five {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.software_promo_area .round_shape .r_shape.r_shape_five a {
    display: block;
    color: #fff;
    font-size: 80px;
    font-weight: 700;
}

.software_promo_area .round_shape .r_shape.r_shape_five .round {
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50%;
    background: #399be4;
    border: 5px solid #fff;
    right: 10px;
    position: absolute;
    bottom: 12px;
}

.s_promo_info .promo_item {
    position: absolute;
    border-style: solid;
    border: 0px solid rgba(93, 88, 247, 0.14);
    border-radius: 50%;
    background-color: white;
    -webkit-box-shadow: 0px 30px 60px 0px rgba(0, 11, 40, 0.1);
    box-shadow: 0px 30px 60px 0px rgba(0, 11, 40, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 1;
    width: 95px;
    height: 95px;
}

.s_promo_info .promo_item .text {
    padding: 10px;
}

.s_promo_info .promo_item .text img {
    max-width: 100%;
    height: auto;
}

.s_promo_info .promo_item .text p {
    display: block;
    font-size: 14px;
    color: #677294;
    margin-bottom: 0px;
    margin-top: 5px;
    font-weight: 400;
}

.s_promo_info .promo_item.item_one {
    left: 50%;
    top: 0px;
}

.s_promo_info .promo_item.item_two {
    left: 0px;
    top: 228px;
}

.s_promo_info .promo_item.item_three {
    left: 133px;
    top: 95px;
}

.s_promo_info .promo_item.item_four {
    left: 72%;
    top: 23%;
}

.s_promo_info .promo_item.item_five {
    left: 84%;
    top: 50%;
}

.s_promo_info .promo_item.item_six {
    top: 61%;
    left: 24%;
}

.s_promo_info .promo_item.item_seven {
    top: 70%;
    left: 67%;
}

.s_promo_info .promo_item.item_eight {
    top: 84%;
    left: 41%;
}

.s_promo_info .promo_item.item_nine {
    left: 0px;
    top: 65%;
}

.s_promo_info .promo_item.scroll_animation.in-view {
    opacity: 1;
}

.s_promo_info .promo_item.scroll_animation.in-view.item_one {
    -webkit-animation: rollIncustom3 0.6s linear;
    animation: rollIncustom3 0.6s linear;
}

.s_promo_info .promo_item.scroll_animation.in-view.item_two {
    -webkit-animation: rollIncustom 0.6s linear;
    animation: rollIncustom 0.6s linear;
}

.s_promo_info .promo_item.scroll_animation.in-view.item_three {
    -webkit-animation: rollIncustom1 0.9s linear;
    animation: rollIncustom1 0.9s linear;
}

.s_promo_info .promo_item.scroll_animation.in-view.item_four {
    -webkit-animation: rollIncustom4 1.2s linear;
    animation: rollIncustom4 1.2s linear;
}

.s_promo_info .promo_item.scroll_animation.in-view.item_five {
    -webkit-animation: rollIncustom5 0.9s linear;
    animation: rollIncustom5 0.9s linear;
}

.s_promo_info .promo_item.scroll_animation.in-view.item_six {
    -webkit-animation: rollIncustom6 0.6s linear;
    animation: rollIncustom6 0.6s linear;
}

.s_promo_info .promo_item.scroll_animation.in-view.item_seven {
    -webkit-animation: rollIncustom7 0.9s linear;
    animation: rollIncustom7 0.9s linear;
}

.s_promo_info .promo_item.scroll_animation.in-view.item_eight {
    -webkit-animation: rollIncustom8 0.6s linear;
    animation: rollIncustom8 0.6s linear;
}

.s_promo_info .promo_item.scroll_animation.in-view.item_nine {
    -webkit-animation: rollIncustom9 0.9s linear;
    animation: rollIncustom9 0.9s linear;
}

.vfx_process_area .features_info {
    padding-bottom: 80px;
}

/*============== features_area css ==============*/

.sec_title h2 {
    position: relative;
    margin-bottom: 18px;
    padding-top: 60px;
    padding-bottom: 2px;
}

.sec_title h2::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    bottom: -3px;
    width: 60px;
    border-radius: 30px;
}

.app_featured_area .sec_title h2,
.app_screenshot_area .sec_title h2,
.vfx_team_member_area .sec_title h2 {
    padding-bottom: 10px;
}

.f_dark_feedback_area_three .sec_title h2 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.f_dark_feedback_area_three .sec_title h2::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    right: auto;
    margin: 0;
    position: absolute;
    bottom: -5px;
    width: 60px;
    border-radius: 30px;
}

.features_area {
    background: #fbfbfd;
    overflow: hidden;
}

.feature_info .feature_img img {
    max-width: 100%;
}

.feature_info .feature_img.f_img_one {
    margin-left: -50px;
}

.feature_info .feature_img.f_img_one .one {
    bottom: 10px;
    left: 50px;
}

.feature_info .feature_img.f_img_one .three {
    bottom: 60px;
    left: 50px;
}

.feature_info .feature_img.f_img_two .one {
    right: 120px;
    bottom: 10px;
}

.feature_info .feature_img.f_img_two .three {
    right: 70px;
    bottom: 30px;
}

.feature_info .feature_img.f_img_two .four {
    top: 80px;
    left: 100px;
}

.feature_info .f_content .icon {
    position: relative;
    width: 105px;
    height: 105px;
    text-align: center;
    line-height: 105px;
    font-size: 20px;
    color: #fff;
    margin-left: -24px;
    z-index: 1;
}

.feature_info .f_content .icon img {
    position: absolute;
    left: 0;
    top: 10px;
    z-index: -1;
}

.feature_info .f_content h2 {
    color: #3f4451;
    line-height: 44px;
    padding-right: 50px;
    margin: 8px 0px 30px;
}

.feature_info .f_content p {
    color: #677294;
    line-height: 30px;
    margin-bottom: 0px;
}

/*============= prototype_featured_area css ===============*/

.prototype_featured_area {
    background: #f4f4f9;
    position: relative;
    z-index: 1;
}

.p_feature_item+.p_feature_item {
    margin-top: 170px;
}

.p_feature_item img {
    max-width: 100%;
}

.p_feature_item .p_feture_img_one {
    margin-right: -160px;
}

.p_feature_item .p_feture_img_two {
    margin-left: -160px;
}

.p_feature_item .prototype_content h2 {
    font-size: 26px;
    line-height: 36px;
    padding-right: 70px;
}

.p_feature_item .prototype_content .prototype_logo {
    background-color: #fbfbfd;
    -webkit-box-shadow: 0px 2px 3px 0px rgba(12, 0, 46, 0.04);
    box-shadow: 0px 2px 3px 0px rgba(12, 0, 46, 0.04);
    display: inline-block;
    padding: 7px 16px;
    margin: 35px 0px 45px;
}

.p_feature_item .prototype_content .prototype_logo a {
    display: inline-block;
    padding: 10px 12px;
}

.p_feature_item .prototype_content p {
    font-weight: 300;
}

/*============== f_agency_featured_area_service css =============*/

.f_agency_featured_area_service {
    padding-top: 120px;
}

.f_agency_featured_area_service_two {
    padding-bottom: 100px;
}

.features_info {
    position: relative;
    padding-bottom: 170px;
}

.features_info .dot_img {
    position: absolute;
    left: 0;
    top: 0px;
}

.features_info.feature_info_two {
    padding-bottom: 70px;
}

.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(94, 44, 237, 0.150);
    display: block;
    position: absolute;
    left: -9px;
    top: 15px;
    z-index: 1;
}

.dot .dot1 {
    position: absolute;
    left: 50%;
    margin-top: -4px;
    margin-left: -4px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #68a6fe;
}

.dot .dot2 {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(104, 166, 254, 0.8);
    -webkit-animation: pulsate 3s infinite;
    animation: pulsate 3s infinite;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    will-change: transform;
}

.dot.middle_dot {
    left: 54.8%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    top: auto;
}

.agency_featured_item {
    margin-top: 120px;
}

.agency_featured_item .f_agency_featured_progress_content {
    position: relative;
}

.agency_featured_item .f_agency_featured_progress_content h3 {
    font: 600 26px/36px "Poppins", sans-serif;
    color: #222d39;
    margin: 32px 0px 25px;
    position: relative;
    padding-bottom: 12px
}

.agency_featured_item .f_agency_featured_progress_content h3::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    bottom: 0px;
    width: 55px;
    border-radius: 30px;
}

.agency_featured_item .f_agency_featured_progress_content p {
    font-size: 15px;
    font-weight: 400;
}

.agency_featured_item .f_agency_featured_progress_content .icon {
    width: 46px;
    height: 46px;
    line-height: 50px;
    border-radius: 6px;
    background-image: -moz-linear-gradient(40deg, #237efd 0%, #a485fd 100%);
    background-image: -webkit-linear-gradient(40deg, #237efd 0%, #a485fd 100%);
    background-image: -ms-linear-gradient(40deg, #237efd 0%, #a485fd 100%);
    -webkit-box-shadow: 0px 10px 20px 0px rgba(94, 44, 237, 0.2);
    box-shadow: 0px 10px 20px 0px rgba(94, 44, 237, 0.2);
    font-size: 20px;
    color: #fff;
    display: inline-block;
    text-align: center;
}

.agency_featured_item.agency_featured_item_two .f_agency_featured_progress_content .dot {
    left: 30px;
}

/*=============== vfx_software_featured_area css ===============*/

.vfx_software_featured_area {
    padding-top: 120px;
}

.software_area_bg {
    background: #f8f8fc;
}

.software_featured_item .s_icon {
    display: inline-block;
    position: relative;
}

.software_featured_item .s_icon .icon {
    position: relative;
    right: 0;
    left: 0;
    margin-top: 0;
}

.software_featured_item h3 {
    font-size: 17px;
    margin: 30px 0px 25px;
}

.software_featured_item .learn_btn {
    font: 400 14px/26px "Poppins", sans-serif;
    color: #222d39;
    position: relative;
    margin-top: 0px;
}

.software_featured_item .learn_btn:before {
    content: "";
    width: 0;
    height: 2px;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    margin: 0 auto;
    background: transparent;
    position: absolute;
    -webkit-transition: width 0.2s linear;
    -o-transition: width 0.2s linear;
    transition: width 0.2s linear;
}

.software_featured_item .learn_btn:hover {
    color: #3d64f4;
}

.software_featured_item .learn_btn:hover:before {
    width: 100%;
    right: 0;
    left: 0;
    margin: 0 auto;
}

/*=============== vfx_software_featured_area_two css ==================*/

.vfx_software_featured_area_two {
    background-image: -moz-linear-gradient(40deg, #23026d 0%, #3d64f4 100%);
    background-image: -webkit-linear-gradient(40deg, #23026d 0%, #3d64f4 100%);
    background-image: -ms-linear-gradient(40deg, #23026d 0%, #3d64f4 100%);
}

.software_featured_img {
    margin-left: -30px;
}

.software_featured_content .btn_four {
    border: 0px;
    color: #3d64f4;
    background: #fff;
}

.software_featured_content .btn_four:hover {
    color: #fff;
    background: #3d64f4;
}

.f_dark_featured_area {
    position: relative;
    overflow: hidden;
}

.f_dark_featured_area .f_dark_featured_content h2 {
    position: relative;
    padding-bottom: 10px;
}

.f_dark_featured_area .f_dark_featured_content h2::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    bottom: 0px;
    width: 50px;
    border-radius: 30px;
}

.square_box {
    position: absolute;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top-left-radius: 100%;
    opacity: 0.302;
}

.square_box.box_one {
    background-image: -moz-linear-gradient(90deg, #1167cc 0%, #20b0f7 100%);
    background-image: -webkit-linear-gradient(90deg, #1167cc 0%, #20b0f7 100%);
    background-image: -ms-linear-gradient(90deg, #1167cc 0%, #20b0f7 100%);
    width: 380px;
    height: 380px;
    bottom: -200px;
    left: -50px;
}

.square_box.box_two {
    background-image: -moz-linear-gradient(90deg, #006cea 0%, #20b0f7 100%);
    background-image: -webkit-linear-gradient(90deg, #006cea 0%, #20b0f7 100%);
    background-image: -ms-linear-gradient(90deg, #006cea 0%, #20b0f7 100%);
    width: 240px;
    height: 240px;
    bottom: -120px;
    left: 300px;
}

.square_box.box_one_one {
    background-image: -moz-linear-gradient(90deg, #1167cc 0%, #20b0f7 100%);
    background-image: -webkit-linear-gradient(90deg, #1167cc 0%, #20b0f7 100%);
    background-image: -ms-linear-gradient(90deg, #1167cc 0%, #20b0f7 100%);
    width: 380px;
    height: 380px;
    bottom: -200px;
    right: -50px;
}

.square_box.box_two_two {
    background-image: -moz-linear-gradient(90deg, #006cea 0%, #20b0f7 100%);
    background-image: -webkit-linear-gradient(90deg, #006cea 0%, #20b0f7 100%);
    background-image: -ms-linear-gradient(90deg, #006cea 0%, #20b0f7 100%);
    width: 240px;
    height: 240px;
    bottom: -120px;
    right: 300px;
}

.square_box.box_three {
    background-image: -moz-linear-gradient(-90deg, #290a59 0%, #3d57f4 100%);
    background-image: -webkit-linear-gradient(-90deg, #290a59 0%, #3d57f4 100%);
    background-image: -ms-linear-gradient(-90deg, #290a59 0%, #3d57f4 100%);
    opacity: 0.059;
    left: 50px;
    top: -60px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
}

.square_box.box_four {
    background-image: -moz-linear-gradient(-90deg, #290a59 0%, #3d57f4 100%);
    background-image: -webkit-linear-gradient(-90deg, #290a59 0%, #3d57f4 100%);
    background-image: -ms-linear-gradient(-90deg, #290a59 0%, #3d57f4 100%);
    opacity: 0.059;
    left: 150px;
    top: -25px;
    width: 550px;
    height: 550px;
    border-radius: 50%;
}

.f_dark_box_featured_info .f_dark_featured_box_item {
    color: #fff;
    border-radius: 4px;
    padding: 30px 25px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    cursor: pointer;
    text-align: center;
}

.f_dark_box_featured_info .f_dark_featured_box_item i {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 10px;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 48px;
}

.f_dark_box_featured_info .f_dark_featured_box_item:before {
    position: absolute;
    content: '';
    top: 50%;
    left: -90px;
    width: 540px;
    height: 540px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transition: all .5s ease;
    -webkit-transform: translateY(100%) rotate(-10deg);
    -moz-transform: translateY(100%) rotate(-10deg);
    -ms-transform: translateY(100%) rotate(-10deg);
    -o-transform: translateY(100%) rotate(-10deg);
    transform: translateY(100%) rotate(-10deg)
}

.f_dark_box_featured_info .f_dark_featured_box_item:hover:before {
    transition-delay: .2s;
    -webkit-transform: translateY(0) rotate(-10deg);
    -moz-transform: translateY(0) rotate(-10deg);
    -ms-transform: translateY(0) rotate(-10deg);
    -o-transform: translateY(0) rotate(-10deg);
    transform: translateY(0) rotate(-10deg)
}

.f_dark_box_featured_info .f_dark_featured_box_item:hover .hover-overlay:before,
.f_dark_box_featured_info .f_dark_featured_box_item:hover .hover-overlay:after {
    -webkit-transform: translateY(0) rotate(-10deg);
    -moz-transform: translateY(0) rotate(-10deg);
    -ms-transform: translateY(0) rotate(-10deg);
    -o-transform: translateY(0) rotate(-10deg);
    transform: translateY(0) rotate(-10deg)
}

.f_dark_box_featured_info .f_dark_featured_box_item:hover .hover-overlay:after {
    transition-delay: .1s
}

.f_dark_box_featured_info .f_dark_featured_box_item .hover-overlay:before,
.f_dark_box_featured_info .f_dark_featured_box_item .hover-overlay:after {
    position: absolute;
    content: '';
    top: 70%;
    left: -90px;
    width: 540px;
    height: 540px;
    z-index: -1;
    transition: all .5s ease;
    -webkit-transform: translateY(100%) rotate(10deg);
    -moz-transform: translateY(100%) rotate(10deg);
    -ms-transform: translateY(100%) rotate(10deg);
    -o-transform: translateY(100%) rotate(10deg);
    transform: translateY(100%) rotate(10deg);
    background-color: rgba(255, 255, 255, 0.2)
}

.f_dark_box_featured_info .f_dark_featured_box_item .hover-overlay:after {
    top: 90%;
    background-color: rgba(255, 255, 255, 0.15)
}

.f_dark_box_featured_info .f_dark_featured_box_item.s_featured_one {
    background-image: -moz-linear-gradient(40deg, #290a59 0%, #ff7c00 100%);
    background-image: -webkit-linear-gradient(40deg, #290a59 0%, #ff7c00 100%);
    background-image: -ms-linear-gradient(40deg, #290a59 0%, #ff7c00 100%);
    -webkit-box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.2);
}

.f_dark_box_featured_info .f_dark_featured_box_item.s_featured_two {
    background-image: -moz-linear-gradient(40deg, #006cea 0%, #27c1fa 100%);
    background-image: -webkit-linear-gradient(40deg, #006cea 0%, #27c1fa 100%);
    background-image: -ms-linear-gradient(40deg, #006cea 0%, #27c1fa 100%);
    -webkit-box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.2);
}

.f_dark_box_featured_info .f_dark_featured_box_item.s_featured_three {
    background-image: -moz-linear-gradient(40deg, #378905 0%, #6cd164 100%);
    background-image: -webkit-linear-gradient(40deg, #378905 0%, #6cd164 100%);
    background-image: -ms-linear-gradient(40deg, #378905 0%, #6cd164 100%);
    -webkit-box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.2);
}

.f_dark_box_featured_info .f_dark_featured_box_item.s_featured_four {
    background-image: -moz-linear-gradient(40deg, #24b1a8 0%, #0c6a64 100%);
    background-image: -webkit-linear-gradient(40deg, #24b1a8 0%, #0c6a64 100%);
    background-image: -ms-linear-gradient(40deg, #24b1a8 0%, #0c6a64 100%);
    -webkit-box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.2);
}

.f_dark_box_featured_info .f_dark_featured_box_item h6 {
    font-size: 18px;
    color: #fff;
}

.f_dark_box_featured_info .f_dark_featured_box_item p {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
}

.f_dark_box_featured_info .f_dark_featured_box_item:hover {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
}

.f_dark_box_featured_info .f_dark_featured_content p {
    color: #bdbed6;
}

.f_dark_box_featured_info .f_img_one {
    margin-left: -100px;
}

.f_dark_box_featured_info .img_border img {
    border: 4px solid #2a3656;
    border-radius: 6px;
}

.f_dark_box_featured_info .f_img_one,
.f_dark_box_featured_info .f_img_two {
    -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    -webkit-animation-name: animateUpDown;
    animation-name: animateUpDown;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.f_dark_box_featured_info .f_img_one,
.f_dark_box_featured_info .f_img_two {
    -webkit-animation-duration: 1.9s;
    animation-duration: 1.9s;
}

.f_dark_box_featured_info .f_img_two {
    margin-right: -120px;
    position: relative;
    z-index: 0;
}

.f_dark_box_featured_info .f_img_two img {
    border-color: #49436f;
}

.f_dark_box_featured_info .f_dark_featured_content .f_dark_box_banner_btn {
    padding: 12px 30px;
}

.f_dark_box_featured_info+.f_dark_box_featured_info {
    margin-top: 200px;
}

/*=============== app_featured_area css ===============*/

.app_featured_area {
    padding: 120px 0px;
    position: relative;
    z-index: 1;
}

.triangle_shape {
    position: absolute;
    z-index: -2;
    height: 100%;
    width: 100%;
    background: #fbfbfd;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.app_featured_content {
    padding: 50px 100px 90px 0;
}

.app_feature_info .app_featured_content h2 {
    position: relative;
    padding-bottom: 10px;
}

.app_feature_info .app_featured_content h2::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    bottom: 0px;
    width: 50px;
    border-radius: 30px;
}

.app_featured_content .learn_btn_two {
    margin-top: 20px;
    overflow: hidden;
}

.app_featured_content .learn_btn_two:before {
    background: #4069eb;
}

.app_featured_content .learn_btn_two:hover {
    color: #4069eb;
}

.app_fetured_item {
    position: relative;
    height: 100%;
    margin-left: 70px;
}

.app_item {
    text-align: center;
    border-radius: 6px;
    width: 200px;
    padding: 45px 0px 35px;
    position: absolute;
    z-index: 0;
}

.app_item h6 {
    margin-bottom: 0px;
    margin-top: 10px;
}

.app_item.item_one {
    background-image: -moz-linear-gradient(40deg, #e87e16 0%, #f0de14 100%);
    background-image: -webkit-linear-gradient(40deg, #e87e16 0%, #f0de14 100%);
    background-image: -ms-linear-gradient(40deg, #e87e16 0%, #f0de14 100%);
    -webkit-box-shadow: 0px 20px 40px 0px rgba(224, 149, 32, 0.4);
    box-shadow: 0px 20px 40px 0px rgba(224, 149, 32, 0.4);
    right: 0;
    top: 0;
    z-index: 1;
}

.app_item.item_two {
    background-image: -moz-linear-gradient(40deg, #237efd 0%, #a485fd 100%);
    background-image: -webkit-linear-gradient(40deg, #237efd 0%, #a485fd 100%);
    background-image: -ms-linear-gradient(40deg, #237efd 0%, #a485fd 100%);
    -webkit-box-shadow: 0px 20px 40px 0px rgba(94, 44, 237, 0.4);
    box-shadow: 0px 20px 40px 0px rgba(94, 44, 237, 0.4);
    left: 140px;
    top: 90px;
}

.app_item.item_three {
    background-image: -moz-linear-gradient(40deg, #e03827 0%, #f9a47a 100%);
    background-image: -webkit-linear-gradient(40deg, #e03827 0%, #f9a47a 100%);
    background-image: -ms-linear-gradient(40deg, #e03827 0%, #f9a47a 100%);
    -webkit-box-shadow: 0px 20px 40px 0px rgba(224, 56, 39, 0.4);
    box-shadow: 0px 20px 40px 0px rgba(224, 56, 39, 0.4);
    left: 0;
    bottom: 70px;
    z-index: -1;
}

.app_item.item_four {
    background-image: -moz-linear-gradient(40deg, #2171d4 0%, #2cc4f0 100%);
    background-image: -webkit-linear-gradient(40deg, #2171d4 0%, #2cc4f0 100%);
    background-image: -ms-linear-gradient(40deg, #2171d4 0%, #2cc4f0 100%);
    -webkit-box-shadow: 0px 20px 40px 0px rgba(44, 130, 237, 0.4);
    box-shadow: 0px 20px 40px 0px rgba(44, 130, 237, 0.4);
    right: 0;
    bottom: 10px;
}

.app_img {
    position: relative;
    display: inline-block;
    z-index: 0;
}

.app_feature_info .app_img {
    -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    -webkit-animation-name: animateUpDown;
    animation-name: animateUpDown;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.app_feature_info .app_img {
    -webkit-animation-duration: 1.9s;
    animation-duration: 1.9s;
}

.app_img .dot {
    background: rgba(64, 105, 235, 0.161);
}

.app_img .dot .dot1 {
    background: #6c8bed;
}

.app_img .dot .dot2 {
    background: rgba(64, 105, 235, 0.8);
}

.app_img .dot_one {
    right: 75px;
    top: 35px;
    left: auto;
}

.app_img .dot_two {
    right: 100px;
    top: 67%;
    left: auto;
}

.app_img .dot_three {
    top: 38%;
    left: 105px;
}

.app_img .text_bg {
    position: absolute;
    z-index: 1;
}

.app_img .text_bg.one {
    left: -50%;
    top: 190px;
}

.app_img .text_bg.two {
    right: -34%;
    top: -50px;
}

.app_img .text_bg.three {
    right: -50%;
    bottom: 100px;
}

.app_featured_area_two {
    position: relative;
    padding: 120px 0 100px;
    background: #fbfbfd;
}

.part_features_area_service {
    padding-top: 90px;
}

.part_features_item {
    padding: 0px 40px;
    margin-bottom: 30px;
}

.part_features_item h4 {
    margin: 25px 0px 20px;
}

.new_service {
    position: relative;
}

.new_service .col-lg-4:first-child .separator {
    display: none;
}

.new_service .number {
    width: 33px;
    height: 33px;
    text-align: center;
    font-size: 16px;
    color: #237efd;
    border: 1px solid #237efd;
    border-radius: 50%;
    margin: 0 auto;
    line-height: 32px;
    background: #fff;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    z-index: 1;
    position: relative;
}

.new_service .separator {
    position: absolute;
    top: 15px;
    width: 100%;
    background: #ededed;
    height: 1px;
    left: -51%;
    z-index: 0;
}

.new_service .separator:before {
    content: "";
    position: absolute;
    top: 0px;
    width: 0;
    background: #237efd;
    height: 1px;
    left: 0;
    z-index: 0;
    -webkit-transition: width 0.3s linear;
    -o-transition: width 0.3s linear;
    transition: width 0.3s linear;
}

.new_service .new_service_content {
    background: #ffffff;
    border-radius: 4px;
    padding: 50px 35px;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.08);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.new_service .new_service_content:before {
    position: absolute;
    content: '';
    top: 50%;
    left: -90px;
    width: 540px;
    height: 540px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transition: all .5s ease;
    -webkit-transform: translateY(100%) rotate(-10deg);
    -moz-transform: translateY(100%) rotate(-10deg);
    -ms-transform: translateY(100%) rotate(-10deg);
    -o-transform: translateY(100%) rotate(-10deg);
    transform: translateY(100%) rotate(-10deg)
}

.new_service .new_service_content:hover:before {
    transition-delay: .2s;
    -webkit-transform: translateY(0) rotate(-10deg);
    -moz-transform: translateY(0) rotate(-10deg);
    -ms-transform: translateY(0) rotate(-10deg);
    -o-transform: translateY(0) rotate(-10deg);
    transform: translateY(0) rotate(-10deg)
}

.new_service .new_service_content:hover .hover-overlay:before,
.new_service .new_service_content:hover .hover-overlay:after {
    -webkit-transform: translateY(0) rotate(-10deg);
    -moz-transform: translateY(0) rotate(-10deg);
    -ms-transform: translateY(0) rotate(-10deg);
    -o-transform: translateY(0) rotate(-10deg);
    transform: translateY(0) rotate(-10deg)
}

.new_service .new_service_content:hover .hover-overlay:after {
    transition-delay: .1s
}

.new_service .new_service_content .hover-overlay:before,
.new_service .new_service_content .hover-overlay:after {
    position: absolute;
    content: '';
    top: 70%;
    left: -90px;
    width: 540px;
    height: 540px;
    z-index: -1;
    transition: all .5s ease;
    -webkit-transform: translateY(100%) rotate(-10deg);
    -moz-transform: translateY(100%) rotate(-10deg);
    -ms-transform: translateY(100%) rotate(-10deg);
    -o-transform: translateY(100%) rotate(-10deg);
    transform: translateY(100%) rotate(-10deg);
    background-color: rgba(255, 255, 255, 0.2)
}

.new_service .new_service_content .hover-overlay:after {
    top: 90%;
    background-color: rgba(255, 255, 255, 0.15)
}

.new_service .new_service_content {
    cursor: pointer;
}

.new_service .new_service_content:hover .number {
    background: #237efd;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(95, 81, 251, 0.5);
    box-shadow: 0px 10px 30px 0px rgba(95, 81, 251, 0.5);
    color: #fff;
}

.new_service .new_service_content:hover .separator:before {
    width: 100%;
}

.new_service .part_features_item:hover .new_service_content {
    background-image: -moz-linear-gradient(270deg, #8647f9 0%, #15da88 100%);
    background-image: -webkit-linear-gradient(270deg, #8647f9 0%, #15da88 100%);
    background-image: -ms-linear-gradient(270deg, #8647f9 0%, #15da88 100%);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0px 50px 80px 0px rgba(0, 11, 40, 0.08);
    box-shadow: 0px 50px 80px 0px rgba(0, 11, 40, 0.08);
}

.new_service .part_features_item:hover h4,
.new_service .part_features_item:hover p {
    color: #fff;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

/*=============== payment_features_area css =============*/

.payment_features_area {
    background: #fbfbfd;
    position: relative;
    padding-top: 100px;
    padding-bottom: 50px;
}

.payment_features_area .featured_item+.featured_item {
    margin-top: 100px;
}

.payment_features_area .payment_featured_img {
    margin-left: -190px;
}

.payment_features_area .payment_featured_img {
    -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    -webkit-animation-name: animateUpDown;
    animation-name: animateUpDown;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.payment_features_area .payment_featured_img {
    -webkit-animation-duration: 1.9s;
    animation-duration: 1.9s;
}

.payment_features_area .payment_featured_img.img_two {
    margin-right: -10px;
}

.payment_features_area .bg_shape {
    position: absolute;
    background-color: #ffffff;
    width: 1100px;
    height: 1775px;
    display: block;
    border-radius: 120px;
    z-index: 0;
}

.payment_features_area .shape_one {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: -669px;
    top: 0px;
}

.payment_features_area .shape_two {
    left: -669px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-43deg);
    top: 275px;
    width: 870px;
}

.payment_features_area .shape_three {
    bottom: -29%;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: -100px;
    width: 988px;
    height: 1022px;
}

.payment_features_content .icon {
    display: inline-block;
    position: relative;
    height: 100px;
    width: 100px;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 50px;
    border-width: 5px;
    border-color: #f6f6fa;
    border-style: solid;
    text-align: center;
    line-height: 90px;
    box-shadow: 0px 1px 30px 0px rgba(55, 125, 162, 0.2);
}

.payment_features_content .icon .icon_img {
    position: relative;
    text-align: center;
    vertical-align: middle;
}

.payment_features_content h2 {
    font-weight: 700;
    font-size: 26px;
    color: #051441;
    margin-bottom: 15px;
}

.payment_features_content p {
    font-size: 18px;
    color: #677294;
    line-height: 30px;
    margin-bottom: 50px;
    font-weight: 400;
}

.pay_btn {
    color: #5956fe;
    position: relative;
    border: 0px;
    z-index: 1;
    border-radius: 4px;
    background: #fff;
    z-index: 1;
    min-width: 170px;
    padding: 15px 20px;
    text-align: center;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(63, 54, 132, 0.1);
    box-shadow: 0px 2px 5px 0px rgba(63, 54, 132, 0.1);
}

.pay_btn:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    border-radius: 3px;
    background-image: -moz-linear-gradient(0deg, #7121ff 0%, #21d4fd 100%);
    background-image: -webkit-linear-gradient(0deg, #7121ff 0%, #21d4fd 100%);
    background-image: -ms-linear-gradient(0deg, #7121ff 0%, #21d4fd 100%);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.pay_btn.pay_btn_two {
    color: #fff;
    margin-left: 18px;
}

.pay_btn.pay_btn_two:before {
    opacity: 1;
}

.pay_btn.pay_btn_two:hover {
    color: #5956fe;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(63, 54, 132, 0.1);
    box-shadow: 0px 2px 5px 0px rgba(63, 54, 132, 0.1);
}

.pay_btn.pay_btn_two:hover:before {
    opacity: 0;
}

.pay_btn:hover {
    color: #fff;
}

.pay_btn:hover:before {
    opacity: 1;
}

.payment_features_two {
    position: relative;
    z-index: 1;
}

.payment_features_two .sec_title h2 {
    font-size: 35px;
    line-height: 44px;
    font-weight: 500;
}

.payment_features_item {
    border-radius: 4px;
    background-color: white;
    -webkit-box-shadow: 0px 20px 60px 0px rgba(0, 11, 40, 0.06);
    box-shadow: 0px 20px 60px 0px rgba(0, 11, 40, 0.06);
    padding: 50px 40px;
}

.payment_features_item h4 {
    font: 600 20px/26px "Poppins", sans-serif;
    color: #051441;
    margin-bottom: 22px;
}

.payment_features_item p {
    font-weight: 300;
    margin-bottom: 28px;
}

.payment_features_item .learn_btn_two:before {
    background: #237efd;
}

.payment_features_item .learn_btn_two:hover {
    color: #237efd;
}

/*======== payment_features_area css ==========*/

.payment_features_area_three {
    padding: 135px 0px 75px;
}

.payment_features_content_two h2 {
    font-size: 35px;
    line-height: 44px;
    margin-bottom: 18px;
    font-weight: 500;
}

.payment_features_content_two p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
    margin-bottom: 60px;
}

.payment_features_content_two .item {
    margin-top: 30px;
}

.payment_features_content_two .item h3 {
    font-size: 20px;
    line-height: 26px;
    color: #051441;
    margin-bottom: 15px;
    margin-top: 0px;
}

.payment_features_content_two .item p {
    font-size: 16px;
    line-height: 26px;
}

.payment_features_content_two .app_btn {
    background: #237efd;
    border-color: #237efd;
    padding: 11px 38px;
}

.payment_features_content_two .app_btn i {
    font-size: 12px;
    padding-left: 10px;
}

.payment_features_content_two .app_btn:hover {
    color: #237efd;
    background: transparent;
}

.payment_features_img {
    position: relative;
    text-align: left;
    z-index: 1;
    float: left;
}

.payment_features_img:before {
    content: "";
    background: url(../img/new/shape_bg.png) no-repeat scroll center left;
    position: absolute;
    left: -65px;
    top: -20px;
    right: -32px;
    height: 100%;
    background-size: cover;
    z-index: -1;
}

.payment_features_img img {
    margin-left: -50px;
}

.payment_features_area_four .payment_features_content h2 {
    line-height: 44px;
    font-size: 30px;
    padding-bottom: 12px;
    position: relative;
}

.payment_features_area_four .payment_features_content h2::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    margin: 8px 0 10px;
    position: absolute;
    bottom: -5px;
    width: 60px;
    border-radius: 30px;
}

.payment_features_area_four .pay_btn {
    border-radius: 4px;
    border: 2px solid #237efd;
    min-width: auto;
    padding: 12px 30px;
    color: #237efd;
}

.payment_features_area_four .pay_btn:before {
    background: #237efd;
    border-radius: 0px;
}

.payment_features_area_four .pay_btn:hover {
    color: #fff;
}

.payment_features_area_four .pay_btn.pay_btn_two {
    color: #fff;
}

.payment_features_area_four .pay_btn.pay_btn_two:hover {
    color: #237efd;
}

/*===========f_digital_perfect_solution_area css ==========*/

.f_digital_perfect_solution_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}

.f_digital_perfect_solution_area .perfect_solution_left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 120px 0px;
}

.f_digital_perfect_solution_area .perfect_solution_left .per_solution_content {
    max-width: 685px;
    margin-left: auto;
    margin-right: 0;
    padding-right: 170px;
}

.f_digital_perfect_solution_area .perfect_solution_left .per_solution_content h2 {
    font-size: 40px;
    line-height: 56px;
    color: #051441;
    font-weight: 700;
    margin-bottom: 32px;
}

.f_digital_perfect_solution_area .perfect_solution_left .per_solution_content p {
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
    margin-bottom: 50px;
}

.f_digital_perfect_solution_area .perfect_solution_left .per_solution_content .btn_three {
    margin-top: 0px;
    font-size: 15px;
    background: #237efd;
    padding: 15px 42px;
}

.f_digital_perfect_solution_area .perfect_solution_left .per_solution_content .btn_three:hover {
    background: transparent;
}

.f_digital_perfect_solution_area .perfect_solution_left .per_solution_content .btn_six {
    background: transparent;
    color: #677294;
    border-color: #dfe3ed;
    margin-left: 20px;
}

.f_digital_perfect_solution_area .perfect_solution_left .per_solution_content .btn_six:hover {
    background: #237efd;
    border-color: #237efd;
    color: #fff;
}

.f_digital_perfect_solution_area .perfect_solution_left .per_solution_content.per_solution_content_two {
    padding-right: 0px;
    margin-right: auto;
    margin-left: 0;
    padding-left: 110px;
}

.f_digital_perfect_solution_area .perfect_solution_left .per_solution_content.per_solution_content_three {
    padding-right: 0px;
    margin-right: auto;
    margin-left: 0;
    padding-left: 110px;
}

.f_digital_perfect_solution_area .perfect_solution_left .per_solution_content.per_solution_content_three h2 {
    font-weight: 600;
    line-height: 56px;
}

.f_digital_perfect_solution_area .perfect_solution_left .per_solution_content.per_solution_content_three .btn_three {
    border-radius: 4px;
    padding: 13px 44px;
}

.f_digital_perfect_solution_area .perfect_solution_right {
    padding: 0px;
    position: relative;
}

.f_digital_perfect_solution_area .perfect_solution_right .bg_img {
    background: url("../img/new/solution_01.jpg") no-repeat scroll center 0;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 130%;
    background-size: cover;
}

.f_digital_perfect_solution_area .perfect_solution_right .bg_img.bg_two {
    background: url("../img/new/solution_02.jpg") no-repeat scroll center 0;
}

/*=========== startup_fuatures_area css ==========*/

.startup_tab {
    border: 0px;
    margin-bottom: 50px;
}

.startup_tab .nav-item {
    width: calc(100% / 5);
    padding: 0px 15px;
    margin: 0px;
    text-align: center;
}

.startup_tab .nav-item .nav-link {
    border: 0px;
    background: #fbfbfd;
    padding: 32px 0px;
    border-radius: 4px;
    border: 2px solid transparent;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.startup_tab .nav-item .nav-link .icon {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    display: inline-block;
    text-align: center;
    font-size: 26px;
    line-height: 68px;
    color: #fff;
    margin-bottom: 15px;
}

.startup_tab .nav-item .nav-link h3 {
    font-size: 18px;
    line-height: 26px;
    color: #051441;
    font-weight: 400;
    white-space: pre-line;
    margin-bottom: 0;
}

.startup_tab .nav-item .nav-link.active {
    border-color: #6fadfa;
    background: #fff;
    -webkit-box-shadow: 0px 30px 40px 0px rgba(29, 7, 90, 0.08);
    box-shadow: 0px 30px 40px 0px rgba(29, 7, 90, 0.08);
}

.startup_tab .nav-item:nth-child(1) .icon {
    background: #fa6fd1;
}

.startup_tab .nav-item:nth-child(1) .nav-link.active {
    border-color: #fa6fd1;
}

.startup_tab .nav-item:nth-child(2) .icon {
    background: #6fadfa;
}

.startup_tab .nav-item:nth-child(2) .nav-link.active {
    border-color: #6fadfa;
}

.startup_tab .nav-item:nth-child(3) .icon {
    background: #f3af4e;
}

.startup_tab .nav-item:nth-child(3) .nav-link.active {
    border-color: #f3af4e;
}

.startup_tab .nav-item:nth-child(4) .icon {
    background: #aa6ffa;
}

.startup_tab .nav-item:nth-child(4) .nav-link.active {
    border-color: #aa6ffa;
}

.startup_tab .nav-item:nth-child(5) .icon {
    background: #fa6666;
}

.startup_tab .nav-item:nth-child(5) .nav-link.active {
    border-color: #fa6666;
}

.startup_tab_content .show .startup_tab_img .phone_img,
.startup_tab_content .show .startup_tab_img .web_img {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}

.startup_tab_img {
    position: relative;
    padding-top: 40px;
    padding-bottom: 64px;
    z-index: 1;
}

.startup_tab_img .web_img {
    display: inline-block;
    -webkit-box-shadow: 0px 20px 40px 0px rgba(0, 11, 40, 0.14);
    box-shadow: 0px 20px 40px 0px rgba(0, 11, 40, 0.14);
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.startup_tab_img .phone_img {
    position: absolute;
    right: 0;
    bottom: 0;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

/*============== intregration_area css =============*/

.intregration_logo {
    padding-left: 50px;
    margin-bottom: 0px;
}

.intregration_logo .intregration_item {
    margin-bottom: 30px;
}

.intregration_icon {
    width: 100%;
    display: block;
    border-radius: 70px;
    background-color: white;
    -webkit-box-shadow: 0px 4px 5px 0px rgba(29, 7, 90, 0.06);
    box-shadow: 0px 4px 5px 0px rgba(29, 7, 90, 0.06);
    height: 100%;
    padding: 30px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.intregration_icon:hover {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

.intregration_content h2 {
    font-size: 30px;
    color: #051441;
    font-weight: 600;
    margin-bottom: 25px;
}

.intregration_content p {
    line-height: 30px;
    margin-bottom: 40px;
}

.startup_fuatures_area_two .startup_tab {
    margin-bottom: 0px;
}

.startup_fuatures_area_two .startup_tab .nav-item:hover:nth-child(1) .nav-link {
    border-color: #fa6fd1;
}

.startup_fuatures_area_two .startup_tab .nav-item:hover:nth-child(2) .nav-link {
    border-color: #6fadfa;
}

.startup_fuatures_area_two .startup_tab .nav-item:hover:nth-child(3) .nav-link {
    border-color: #f3af4e;
}

.startup_fuatures_area_two .startup_tab .nav-item:hover:nth-child(4) .nav-link {
    border-color: #aa6ffa;
}

.startup_fuatures_area_two .startup_tab .nav-item:hover:nth-child(5) .nav-link {
    border-color: #fa6666;
}

.smtp_features_content h2 {
    font-size: 32px;
    line-height: 40px;
    color: #263b5e;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
}

.smtp_features_content h2::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    bottom: 0px;
    width: 60px;
    border-radius: 30px;
}

.smtp_features_content p {
    font-size: 16px;
    color: #6a7695;
    letter-spacing: 1.5px;
    font-weight: 400;
}

.smtp_features_content h6 {
    font-size: 18px;
    font-weight: 400;
    color: #263b5e;
    line-height: 30px;
    letter-spacing: 1.5px;
    margin-bottom: 35px;
}

.smtp_features_content .smtp_btn {
    margin-top: 40px;
}

.smtp_features_content .btn_hover,
.smtp_features_content .btn_four,
.smtp_features_content .btn_hover.btn_four {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #4e78f4 0%, #237efd 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(94, 44, 237, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.smtp_features_content .btn_hover:hover,
.smtp_features_content .btn_four:hover,
.smtp_features_content .btn_hover.btn_four:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(94, 44, 237, 0.28);
    color: #fff;
}

.smtp_features_content .smtp_features_item {
    padding-right: 0px;
    margin-top: 50px;
}

.smtp_features_content .smtp_features_item .icon img {
    width: 30px;
    height: 30px;
}

.smtp_features_content .smtp_features_item .icon {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    background: #f1ebfe;
    text-align: center;
    line-height: 60px;
    margin-right: 25px;
}

.smtp_features_content .smtp_features_item .icon.two {
    background: #fcf1e7;
}

.smtp_features_content .smtp_features_item h3 {
    font-size: 20px;
    color: #263b5e;
    font-weight: 500;
    margin-bottom: 15px;
    padding-bottom: 10px;
    position: relative;
}

.smtp_features_content .smtp_features_item h3::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    bottom: 0px;
    width: 40px;
    border-radius: 30px;
}

.smtp_features_content .smtp_features_item p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #6a7695;
    margin-bottom: 0;
}

.smtp_features_img {
    text-align: center;
    position: relative;
    z-index: 1;
}

.smtp_features_img img {
    -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    -webkit-animation-name: animateUpDown;
    animation-name: animateUpDown;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.smtp_features_img img {
    -webkit-animation-duration: 1.9s;
    animation-duration: 1.9s;
}

.smtp_features_img img {
    margin-right: -80px;
}

.smtp_features_img .round_circle {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #237efd;
    right: -80px;
    z-index: -1;
    opacity: 0.05;
}

.smtp_features_img .round_circle.two {
    width: 440px;
    height: 440px;
    left: -6px;
    right: auto;
    top: 4px;
    z-index: -2;
}

.smtp_features_img.smtp_features_img_two img {
    margin-left: -80px;
    margin-right: 0;
}

.smtp_features_img.smtp_features_img_two .round_circle {
    left: -86px;
    right: auto;
    width: 500px;
    height: 500px;
    background: #dfac0b;
}

.smtp_features_img.smtp_features_img_two .round_circle.two {
    right: 20px;
    width: 400px;
    height: 400px;
    left: auto;
}

/*=========== service_area css ============*/

.service_area {
    background: #f4f6fa;
}

.service_item {
    background: #fff;
    -webkit-box-shadow: 0px 30px 40px 0px rgba(3, 115, 156, 0.1);
    box-shadow: 0px 30px 40px 0px rgba(3, 115, 156, 0.1);
    padding: 47px 40px 0px;
    height: 100%;
    border-radius: 6px;
    position: relative;
    border: 3px solid transparent;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    cursor: pointer;
    overflow: hidden;
}

.service_item p {
    line-height: 28px;
    font-weight: 400;
}

.service_item .icon {
    width: 80px;
    height: 80px;
    line-height: 84px;
    font-size: 26px;
    border-radius: 50px;
    color: #fff;
    text-align: center;
    background-image: -moz-linear-gradient(40deg, #237efd 0%, #a485fd 100%);
    background-image: -webkit-linear-gradient(40deg, #237efd 0%, #a485fd 100%);
    background-image: -ms-linear-gradient(40deg, #237efd 0%, #a485fd 100%);
    -webkit-box-shadow: 0px 14px 30px 0px rgba(94, 44, 237, 0.4);
    box-shadow: 0px 14px 30px 0px rgba(94, 44, 237, 0.4);
    text-align: center;
    display: block;
    margin: 0 auto 30px auto;
}

.service_item .icon.s_icon_one {
    background-image: -moz-linear-gradient(40deg, #2c82ed 0%, #38d0fc 100%);
    background-image: -webkit-linear-gradient(40deg, #2c82ed 0%, #38d0fc 100%);
    background-image: -ms-linear-gradient(40deg, #2c82ed 0%, #38d0fc 100%);
    -webkit-box-shadow: 0px 14px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 14px 20px 0px rgba(0, 0, 0, 0.2);
}

.service_item img {
    margin-right: 0;
    width: auto;
}

.service_info .service_item {
    position: relative;
    overflow: hidden;
}

.service_info .service_item:before {
    position: absolute;
    content: '';
    top: 50%;
    left: -90px;
    width: 540px;
    height: 540px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transition: all .5s ease;
    -webkit-transform: translateY(100%) rotate(-10deg);
    -moz-transform: translateY(100%) rotate(-10deg);
    -ms-transform: translateY(100%) rotate(-10deg);
    -o-transform: translateY(100%) rotate(-10deg);
    transform: translateY(100%) rotate(-10deg)
}

.service_info .service_item:hover:before {
    transition-delay: .2s;
    -webkit-transform: translateY(0) rotate(-10deg);
    -moz-transform: translateY(0) rotate(-10deg);
    -ms-transform: translateY(0) rotate(-10deg);
    -o-transform: translateY(0) rotate(-10deg);
    transform: translateY(0) rotate(-10deg)
}

.service_info .service_item:hover .hover-overlay:before,
.service_info .service_item:hover .hover-overlay:after {
    -webkit-transform: translateY(0) rotate(-10deg);
    -moz-transform: translateY(0) rotate(-10deg);
    -ms-transform: translateY(0) rotate(-10deg);
    -o-transform: translateY(0) rotate(-10deg);
    transform: translateY(0) rotate(-10deg)
}

.service_info .service_item:hover .hover-overlay:after {
    transition-delay: .1s
}

.service_info .service_item .hover-overlay:before,
.service_info .service_item .hover-overlay:after {
    position: absolute;
    content: '';
    top: 70%;
    left: -90px;
    width: 540px;
    height: 540px;
    z-index: -1;
    transition: all .5s ease;
    -webkit-transform: translateY(100%) rotate(-10deg);
    -moz-transform: translateY(100%) rotate(-10deg);
    -ms-transform: translateY(100%) rotate(-10deg);
    -o-transform: translateY(100%) rotate(-10deg);
    transform: translateY(100%) rotate(-10deg);
    background-color: rgba(255, 255, 255, 0.2)
}

.service_info .service_item .hover-overlay:after {
    top: 90%;
    background-color: rgba(255, 255, 255, 0.15)
}

.service_info .service_item {
    cursor: pointer;
}

.service_info .service_item:hover .number {
    background: #237efd;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(95, 81, 251, 0.5);
    box-shadow: 0px 10px 30px 0px rgba(95, 81, 251, 0.5);
    color: #fff;
}

.service_info .service_item:hover .separator:before {
    width: 100%;
}

.service_item:hover {
    background: #22baff;
    border-color: #22baff;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.service_item:hover .s_icon_one {
    background: #ffffff;
    color: #22baff;
    border-radius: 40px;
}

.service_item:hover h4,
.service_item:hover p {
    color: #ffffff;
}

/*================ vfx_proto_service_info css ==============*/

.prototype_service_area_two,
.prototype_service_area_three {
    overflow: hidden;
}

.vfx_proto_service_info {
    padding: 120px 0px 140px;
    position: relative;
    z-index: 0;
}

.p_service_info {
    margin-bottom: -90px;
}

.p_service_item {
    margin-bottom: 60px;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
}

.p_service_item .icon {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 70px;
    height: 70px;
    position: relative;
    display: inline-block;
    margin: 0px 0px 30px;
    font-size: 28px;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    color: #ffffff;
    text-align: center;
    line-height: 78px;
    -o-text-overflow: clip;
    text-overflow: clip;
    z-index: 1;
}

.p_service_item .icon:before {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    position: absolute;
    content: "";
    top: 10%;
    right: -5.5%;
    bottom: 10%;
    left: -5%;
    border: none;
    -webkit-border-radius: 7% / 50%;
    border-radius: 7% / 50%;
    -o-text-overflow: clip;
    text-overflow: clip;
    text-shadow: none;
    z-index: -1;
}

.p_service_item .icon.icon_one {
    background: #cd5d5c;
    border: 5px solid rgba(0, 0, 0, 0.3);
}

.p_service_item .icon.icon_two {
    background: #fe8b00;
    border: 5px solid rgba(0, 0, 0, 0.3);
}

.p_service_item .icon.icon_three {
    background: #33ce34;
    border: 5px solid rgba(0, 0, 0, 0.3);
}

.p_service_item .icon.icon_four {
    background: #ff68b5;
    border: 5px solid rgba(0, 0, 0, 0.3);
}

.p_service_item .icon.icon_five {
    background: #6395ee;
    border: 5px solid rgba(0, 0, 0, 0.3);
}

.p_service_item .icon.icon_six {
    background: #c81686;
    border: 5px solid rgba(0, 0, 0, 0.3);
}

.p_service_item h5 {
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 15px;
}

.p_service_item p {
    font-size: 15px;
}

/*================ prototype_service_area css =============*/

.prototype_service_area {
    background: #fbfbfd;
    padding-bottom: 130px;
    padding-top: 20px;
}

.service_carousel {
    padding-left: 155px;
    position: relative;
    z-index: 1;
}

.service_carousel:before {
    width: 100px;
    content: "";
    height: 100%;
    right: -25px;
    top: 0;
    position: absolute;
    background: #f8f8fc;
    -webkit-filter: blur(30px);
    filter: blur(30px);
    -webkit-box-shadow: 0px 100px 40px 0px rgba(248, 248, 252, 0.1);
    box-shadow: 0px 100px 40px 0px rgba(248, 248, 252, 0.1);
    z-index: 1;
}

.service_carousel:after {
    width: 100px;
    content: "";
    height: 100%;
    left: -25px;
    top: 0;
    position: absolute;
    background: #f8f8fc;
    -webkit-filter: blur(30px);
    filter: blur(30px);
    -webkit-box-shadow: 0px 100px 40px 0px rgba(248, 248, 252, 0.1);
    box-shadow: 0px 100px 40px 0px rgba(248, 248, 252, 0.1);
    z-index: 1;
}

.service_carousel .owl-stage {
    left: -100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.service_carousel .owl-item {
    padding-left: 10px;
    padding-bottom: 50px;
}

.service_carousel .owl-item .service_item {
    -webkit-box-shadow: 0px 15px 30px 0px rgba(12, 0, 46, 0.1);
    box-shadow: 0px 15px 30px 0px rgba(12, 0, 46, 0.1);
}

.service_carousel .owl-item .service_item:hover {
    border-color: rgba(116, 68, 253, 0.2);
}

.service_carousel .owl-item .service_item img {
    width: auto;
}

.service_carousel .owl-next {
    position: absolute;
    top: 40%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    -webkit-box-shadow: 0px 2px 20px 2px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 2px 20px 2px rgba(12, 0, 46, 0.06);
    font-size: 16px;
    color: #222d39;
    z-index: 9;
    line-height: 56px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.service_carousel .owl-next:hover {
    background: #7444fd !important;
    color: #fff !important;
}

.service_carousel .owl-prev {
    position: absolute;
    top: 40%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -20px;
    width: 56px;
    height: 56px;
    z-index: 9;
    border-radius: 50%;
    background: white;
    -webkit-box-shadow: 0px 2px 20px 2px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 2px 20px 2px rgba(12, 0, 46, 0.06);
    font-size: 16px;
    color: #222d39;
    line-height: 56px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.service_carousel .owl-prev:hover {
    background: #7444fd !important;
    color: #fff !important;
}

.prototype_service_area_two {
    background: #f8f8fc;
    padding: 120px 0px 60px;
    position: relative;
    z-index: 1;
}

/*============= f_agency_service_features_area css =============*/

.f_agency_service_features_area {
    background: #f7f6fa;
    padding: 120px 0px;
}

.f_agency_service_item_part {
    margin-bottom: 30px;
}

.p_service_item.f_agency_service_item_part {
    text-align: center;
}

.f_agency_service_item_part .icon {
    background-image: -moz-linear-gradient(40deg, #237efd 0%, #a485fd 100%);
    background-image: -webkit-linear-gradient(40deg, #237efd 0%, #a485fd 100%);
    -webkit-box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.f_agency_service_item_part .icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.f_agency_service_item_part a {
    font: 400 14px/26px "Poppins", sans-serif;
    color: #222d39;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    -webkit-transition: color 0.3s linear 0s;
    -o-transition: color 0.3s linear 0s;
    transition: color 0.3s linear 0s;
}

.f_agency_service_item_part p {
    display: inline-block;
    font-weight: 400;
}

.f_agency_service_item_part p i {
    vertical-align: middle;
    padding-left: 8px;
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.f_agency_service_item_part p:hover a {
    color: #237efd;
}

.f_agency_service_item_part p:hover i {
    color: #237efd;
    padding-left: 12px;
}

/*====================== developers_area css =================*/

.design_img img {
    border: 2px solid #e4ebf2;
    border-radius: 6px;
    background-color: #c3c9ce;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(12, 0, 46, 0.1);
    box-shadow: 0px 20px 30px 0px rgba(12, 0, 46, 0.1);
}

.design_img_two {
    margin-left: -100px;
}

.software_service_area {
    background: #f9f9fc;
}

.software_service_tab {
    margin: 0px;
    border: 0px;
    display: block;
}

.software_service_tab .nav-item {
    margin: 0px;
}

.software_service_tab .nav-item .nav-link {
    display: block;
    padding: 16px 32px 16px 40px;
    -webkit-transition: border-left-color .25s linear;
    -o-transition: border-left-color .25s linear;
    transition: border-left-color .25s linear;
    border-radius: 0px;
    border: 0px;
    border-left: 4px solid #e6e8ef;
    background: transparent;
    font: 400 16px "Poppins", sans-serif;
    color: #677294;
    position: relative;
}

.software_service_tab .nav-item .nav-link:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 8px;
    border-color: transparent transparent transparent #3d64f4;
    position: absolute;
    left: -2px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
}

.software_service_tab .nav-item .nav-link.active {
    border-left-color: #3d64f4;
    color: #3d64f4;
}

.software_service_tab .nav-item .nav-link.active:before {
    opacity: 1;
}

.software_service_tab_content {
    margin-bottom: -70px;
}

.software_service_tab_content .software_service_item {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 15px 30px 0px rgba(12, 0, 46, 0.1);
}

.software_service_tab_content .software_service_item i {
    font-size: 30px;
    color: #3d64f4;
    line-height: 40px;
}

.software_service_tab_content .software_service_item h5 {
    font: 600 17px/25px "Poppins", sans-serif;
    color: #222d39;
}

.software_service_tab_content .software_service_item p {
    font-size: 15px;
}

.vfx_developer_product_area {
    background: #f9f9fc;
    padding: 120px 0px;
}

.vfx_developer_product_area .service_tab_img {
    -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    -webkit-animation-name: animateUpDown;
    animation-name: animateUpDown;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.vfx_developer_product_area .service_tab_img {
    -webkit-animation-duration: 1.9s;
    animation-duration: 1.9s;
}

.developer_product_content {
    padding-right: 50px;
}

.developer_product_content .develor_tab {
    display: inline-block;
    border-bottom: 2px solid #e1e3ed;
    padding: 0px 20px 0px 0px;
}

.developer_product_content .develor_tab .nav-item {
    margin: 0px 0px 0px 10px;
    float: left;
    background: #e1e3ed;
    border-radius: 10px 10px 0 0;
}

.developer_product_content .develor_tab .nav-item .nav-link {
    font: 400 16px "Poppins", sans-serif;
    color: #454b5e;
    border: 0px;
    padding: 10px 18px;
    position: relative;
    border-radius: 10px 10px 0 0;
}

.developer_product_content .develor_tab .nav-item .nav-link.active {
    color: #ffffff;
    padding: 10px 18px;
    background: #237efd;
}

.developer_product_content .develor_tab .nav-item .nav-link.active:before {
    right: auto;
    left: 0;
    width: 100%;
}

.developer_product_content .develor_tab .nav-item:first-child {
    margin-left: 0px;
}

.developer_product_content .developer_tab_content p {
    line-height: 28px;
    font-weight: 400;
}

.developer_product_content .developer_tab_content .details_btn {
    font: 400 14px "Poppins", sans-serif;
    color: #3d64f4;
    position: relative;
    display: inline-block;
}

.developer_product_content .developer_tab_content .details_btn:before {
    width: 100%;
    content: "";
    left: auto;
    right: 0;
    height: 1px;
    background: #3d64f4;
    position: absolute;
    bottom: 0px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.c_violet {
    color: #222d39;
}

.c_violet:before {
    background: #237efd;
}

.c_violet:hover {
    color: #237efd;
}

.tab_img_info {
    position: relative;
}

.tab_img_info .tab_img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    border-radius: 6px;
    overflow: hidden;
    -webkit-transition: opacity 0.3s linear;
    -o-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
}

.tab_img_info .tab_img.active {
    position: relative;
    opacity: 1;
}

/*============= service_area css ============*/

.expert_app_service_feature_area {
    padding-top: 120px;
    background: #fff;
}

.app_service_info {
    margin-bottom: -90px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.app_service_item {
    border: 1px solid #f4f4f9;
    background-color: white;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    margin-bottom: 30px;
    cursor: pointer;
}

.app_service_item .app_icon {
    font-size: 40px;
    line-height: 45px;
}

.app_service_item .app_icon.one {
    text-shadow: 0px 14px 30px rgba(44, 130, 237, 0.4);
    color: #677294;
    background-image: -moz-linear-gradient(0deg, #2171d4 0%, #2cc4f0 100%);
    background-image: -webkit-linear-gradient(0deg, #2171d4 0%, #2cc4f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app_service_item .app_icon.two {
    text-shadow: 0px 14px 30px rgba(224, 56, 39, 0.4);
    color: #e03827;
    background-image: -moz-linear-gradient(0deg, #e03827 0%, #f9a47a 100%);
    background-image: -webkit-linear-gradient(0deg, #e03827 0%, #f9a47a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app_service_item .app_icon.three {
    text-shadow: 0px 14px 30px rgba(94, 44, 237, 0.4);
    color: #e03827;
    background-image: -moz-linear-gradient(0deg, #237efd 0%, #a485fd 100%);
    background-image: -webkit-linear-gradient(0deg, #237efd 0%, #a485fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app_service_item .learn_btn_two {
    color: #222d39;
    font-size: 14px;
    font-weight: 400;
}

.app_service_item .learn_btn_two:before {
    background: #4069eb;
}

.app_service_item .learn_btn_two:hover {
    color: #4069eb;
}

.app_service_item .learn_btn_two.c_violet:hover {
    color: #237efd;
}

.app_service_item .learn_btn_two.c_violet:hover:before {
    background: #237efd;
}

.app_service_item:hover {
    -webkit-box-shadow: 0px 20px 40px 0px rgba(12, 0, 46, 0.08);
    box-shadow: 0px 20px 40px 0px rgba(12, 0, 46, 0.08);
}

.expert_app_service_feature_area_two {
    background: #f9f9fc;
    padding: 120px 0px;
}

.expert_app_service_feature_area_two .app_service_info {
    margin-bottom: -30px;
}

.vfx_service_details_area .service_details h2 {
    position: relative;
    padding-bottom: 15px;
}

.vfx_service_details_area .service_details h2::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    bottom: 0px;
    width: 60px;
    border-radius: 30px;
}

.vfx_service_details_img {
    margin-left: -30px;
}

.study_details .details_img img {
    border-radius: 10px;
}

.vfx_service_details_img {
    -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    -webkit-animation-name: animateUpDown;
    animation-name: animateUpDown;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.vfx_service_details_img {
    -webkit-animation-duration: 1.9s;
    animation-duration: 1.9s;
}

.service_details ul li {
    font: 400 16px "Poppins", sans-serif;
    color: #677294;
    position: relative;
    padding-left: 35px;
    margin-bottom: 13px;
}

.service_details ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #237efd;
}

.service_details ul li:last-child {
    margin-bottom: 0px;
}

.service_details_item+.service_details_item {
    margin-top: 200px;
}

.part_service_item_block .part_service_content .icon {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    font-size: 24px;
    line-height: 64px;
    color: #fff;
    text-align: center;
    margin-bottom: 35px;
}

.part_service_item_block .part_service_content .icon.icon_one {
    background-image: -moz-linear-gradient(40deg, #237efd 0%, #a485fd 100%);
    background-image: -webkit-linear-gradient(40deg, #237efd 0%, #a485fd 100%);
    background-image: -ms-linear-gradient(40deg, #237efd 0%, #a485fd 100%);
    -webkit-box-shadow: 0px 10px 20px 0px rgba(94, 44, 237, 0.2);
    box-shadow: 0px 10px 20px 0px rgba(94, 44, 237, 0.2);
}

.part_service_item_block .part_service_content .icon.icon_two {
    background-image: -moz-linear-gradient(40deg, #e03827 0%, #f9a47a 100%);
    background-image: -webkit-linear-gradient(40deg, #e03827 0%, #f9a47a 100%);
    background-image: -ms-linear-gradient(40deg, #e03827 0%, #f9a47a 100%);
    -webkit-box-shadow: 0px 10px 20px 0px rgba(227, 69, 49, 0.2);
    box-shadow: 0px 10px 20px 0px rgba(227, 69, 49, 0.2);
}

.part_service_item_block .part_service_content .icon.icon_three {
    background-image: -moz-linear-gradient(40deg, #57b22a 0%, #77ea3d 100%);
    background-image: -webkit-linear-gradient(40deg, #57b22a 0%, #77ea3d 100%);
    background-image: -ms-linear-gradient(40deg, #57b22a 0%, #77ea3d 100%);
    -webkit-box-shadow: 0px 10px 20px 0px rgba(92, 186, 45, 0.2);
    box-shadow: 0px 10px 20px 0px rgba(92, 186, 45, 0.2);
}

.part_service_item_block .part_service_content .icon.icon_four {
    background-image: -moz-linear-gradient(40deg, #2c82ed 0%, #38d0fc 100%);
    background-image: -webkit-linear-gradient(40deg, #2c82ed 0%, #38d0fc 100%);
    background-image: -ms-linear-gradient(40deg, #2c82ed 0%, #38d0fc 100%);
    -webkit-box-shadow: 0px 10px 20px 0px rgba(45, 139, 239, 0.2);
    box-shadow: 0px 10px 20px 0px rgba(45, 139, 239, 0.2);
}

.part_service_item_block .part_service_content h4 {
    margin-bottom: 20px;
    line-height: 36px;
    position: relative;
    padding-bottom: 10px;
}

.part_service_item_block .part_service_content h4::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    bottom: 0px;
    width: 50px;
    border-radius: 30px;
}

.part_service_item_block .part_service_content h6 {
    font-size: 18px;
    font-weight: 400;
    color: #263b5e;
    line-height: 30px;
    margin-bottom: 30px;
}

.part_service_item_block .part_service_content p {
    margin-bottom: 45px;
}

.part_service_item_block+.part_service_item_block {
    margin-top: 180px;
}

.s_features_item .s_features_img {
    -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    -webkit-animation-name: animateUpDown;
    animation-name: animateUpDown;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.s_features_item .s_features_img {
    -webkit-animation-duration: 1.9s;
    animation-duration: 1.9s;
}

.payment_service_area .image_shape {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 882px;
    z-index: -1;
}

.payment_service_area .service-content h2 {
    font-size: 26px;
    margin-bottom: 25px;
}

.payment_service_area .service-content p {
    font-size: 18px;
}

.pay_icon {
    height: 100px;
    width: 100px;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 50px;
    border-width: 5px;
    border-color: #f6f6fa;
    border-style: solid;
    text-align: center;
    line-height: 90px;
    box-shadow: 0px 1px 30px 0px rgba(55, 125, 162, 0.2);
    margin-bottom: 20px;
}

.payment_service_item {
    margin-bottom: 75px;
}

.payment_service_item .icon {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 58px;
    margin-right: 30px;
}

.payment_service_item h3 {
    margin-bottom: 15px;
}

.payment_service_item p {
    margin-bottom: 0;
}

.f_new_stratup_service_img {
    position: relative;
    padding-top: 20px;
    z-index: 1;
}

.f_new_stratup_service_img .shape {
    position: absolute;
    left: -37px;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../img/new/new_shape.png) no-repeat scroll left 0;
    z-index: -1;
    background-size: contain;
}

.f_new_stratup_service_img .phone_img {
    position: absolute;
    left: 0;
    bottom: 0;
}

.f_new_stratup_service_info {
    margin-left: -15px;
}

.f_new_stratup_service_info .f_new_startup_service_item {
    position: relative;
    padding-left: 75px;
}

.f_new_stratup_service_info .f_new_startup_service_item .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    color: #fff;
    background: #6fadfa;
    line-height: 58px;
    position: absolute;
    -webkit-box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.12);
    border: 4px solid rgba(0, 0, 0, 0.10);
    left: 0;
    top: 0px;
}

.f_new_stratup_service_info .f_new_startup_service_item .icon.icon_two {
    background: #f3af4e;
    border: 4px solid rgba(0, 0, 0, 0.10);
}

.f_new_stratup_service_info .f_new_startup_service_item .icon.icon_three {
    background: #fa6fd1;
    border: 4px solid rgba(0, 0, 0, 0.10);
}

.f_new_stratup_service_info .f_new_startup_service_item .icon.icon_four {
    background: #fa6666;
    border: 4px solid rgba(0, 0, 0, 0.10);
}

.f_new_stratup_service_info .f_new_startup_service_item h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    font-family: "Poppins", sans-serif;
    color: #051441;
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 12px;
}

.f_new_stratup_service_info .f_new_startup_service_item h3::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    margin: 8px 0 10px;
    position: absolute;
    bottom: -5px;
    width: 45px;
    border-radius: 30px;
}

.f_new_stratup_service_info .f_new_startup_service_item p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0;
}

.f_new_stratup_service_info .f_new_startup_service_item+.f_new_startup_service_item {
    margin-top: 40px;
}

/*============= f_startup_progress_bar_area css =============*/

.f_startup_progress_bar_area {
    padding-top: 120px;
}

.f_startup_progress_bar_area .br_bottom {
    width: 100%;
    height: 1px;
    background: #f0f0f8;
    margin-top: 100px;
}

.f_startup_progress_bar_area .progress_item {
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 20px 40px 0px rgba(38, 59, 94, 0.1);
    box-shadow: 0px 20px 40px 0px rgba(38, 59, 94, 0.1);
    border-radius: 10px;
}

.f_startup_progress_bar_area .progress_item .circle {
    position: relative;
    margin-bottom: 22px;
}

.f_startup_progress_bar_area .progress_item h4 {
    color: #051441;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Poppins", sans-serif;
}

.f_startup_progress_bar_area .progress_item p {
    margin-bottom: 0;
    line-height: 28px;
    font-weight: 400;
}

.f_startup_progress_bar_area .number {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #051441;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.vfx_service_details_area .job_info .info_item {
    padding-left: 60px;
}

.vfx_service_details_area .details_content .sec_title p+p {
    margin-top: 40px;
    margin-bottom: 0;
}

/*=========== case_study_area css ==========*/

.case_study_area .row {
    margin-bottom: -40px;
}

.case_study_item {
    margin-bottom: 40px;
}

.case_study_item img {
    max-width: 100%;
    border-radius: 6px 6px 0 0;
}

.case_study_item .text {
    background: #f4f6f9;
    padding: 20px 30px;
    border-radius: 0 0 6px 6px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    cursor: pointer;
    text-align: center;
}

.case_study_item p {
    font-size: 15px;
    color: #677294;
    font-weight: 400;
    margin-bottom: 0;
}

.case_study_item h3 {
    font-size: 20px;
    line-height: 34px;
    font-weight: 500;
    color: #282835;
    margin-bottom: 0;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.case_study_item h3:hover {
    color: #237efd;
}

.case_study_item:hover .text {
    background: #fff;
    -webkit-box-shadow: 0px 20px 20px 0px rgba(9, 1, 34, 0.06);
    box-shadow: 0px 20px 20px 0px rgba(9, 1, 34, 0.06);
}

.study_details h2 {
    font-size: 24px;
    font-weight: 600;
    color: #051441;
    margin-bottom: 25px;
}

.study_details .btn_info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 25px;
}

.study_details .tag {
    font-size: 20px;
    color: #3dc318;
    margin-left: 25px;
}

.study_details .tag i {
    padding-right: 15px;
}

.study_details ul li {
    font: 400 15px "Poppins", sans-serif;
    color: #677294;
    margin-bottom: 15px;
}

.study_details ul li span {
    font-weight: 600;
    color: #051441;
}

.study_details_content {
    padding-top: 58px;
}

.study_details_content h2 {
    font-size: 24px;
    color: #051441;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.study_details_content h2::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    margin: 8px 0 10px;
    position: absolute;
    bottom: -10px;
    width: 45px;
    border-radius: 30px;
}

.study_details_content p {
    color: #677294;
    font-weight: 400;
    margin-bottom: 0;
}

.study_details_content p+p {
    margin-top: 30px;
}

.study_details_two .study_details_content {
    padding-top: 0px;
}

.study_details_two .study_details_content+.study_details_content {
    padding-top: 50px;
}

.study_details_three .details_img img {
    -webkit-box-shadow: -12.856px 15.321px 30px 0px rgba(9, 1, 34, 0.1);
    box-shadow: -12.856px 15.321px 30px 0px rgba(9, 1, 34, 0.1);
}

.study_details_three .study_details_content {
    padding-top: 0;
}

.study_details_three .study_details_content h2 {
    margin-bottom: 25px;
}

.study_details_three .study_details_content p {
    margin-bottom: 50px;
}

.study_details_three .study_details_content ul li {
    font: 400 15px/34px "Poppins", sans-serif;
    color: #282835;
    position: relative;
    padding-left: 25px;
}

.study_details_three .study_details_content ul li:before {
    content: "\e64c";
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'themify';
    color: #237efd;
}

/*============= smtp_service_area css =============*/

.smtp_service_item {
    background-color: white;
    -webkit-box-shadow: 0px 3px 10px 0px rgba(38, 59, 94, 0.1);
    box-shadow: 0px 3px 10px 0px rgba(38, 59, 94, 0.1);
    padding: 50px 30px 30px;
    margin-bottom: 30px;
    text-align: center;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    border: 5px solid rgba(94, 83, 201, 0.1);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    cursor: pointer;
}

.smtp_service_item:before {
    position: absolute;
    content: '';
    top: 50%;
    left: -90px;
    width: 540px;
    height: 540px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transition: all .5s ease;
    -webkit-transform: translateY(100%) rotate(-10deg);
    -moz-transform: translateY(100%) rotate(-10deg);
    -ms-transform: translateY(100%) rotate(-10deg);
    -o-transform: translateY(100%) rotate(-10deg);
    transform: translateY(100%) rotate(-10deg)
}

.smtp_service_item:hover:before {
    transition-delay: .2s;
    -webkit-transform: translateY(0) rotate(-10deg);
    -moz-transform: translateY(0) rotate(-10deg);
    -ms-transform: translateY(0) rotate(-10deg);
    -o-transform: translateY(0) rotate(-10deg);
    transform: translateY(0) rotate(-10deg)
}

.smtp_service_item:hover .hover-overlay:before,
.smtp_service_item:hover .hover-overlay:after {
    -webkit-transform: translateY(0) rotate(-10deg);
    -moz-transform: translateY(0) rotate(-10deg);
    -ms-transform: translateY(0) rotate(-10deg);
    -o-transform: translateY(0) rotate(-10deg);
    transform: translateY(0) rotate(-10deg)
}

.smtp_service_item:hover .hover-overlay:after {
    transition-delay: .1s
}

.smtp_service_item .hover-overlay:before,
.smtp_service_item .hover-overlay:after {
    position: absolute;
    content: '';
    top: 70%;
    left: -90px;
    width: 540px;
    height: 540px;
    z-index: -1;
    transition: all .5s ease;
    -webkit-transform: translateY(100%) rotate(-10deg);
    -moz-transform: translateY(100%) rotate(-10deg);
    -ms-transform: translateY(100%) rotate(-10deg);
    -o-transform: translateY(100%) rotate(-10deg);
    transform: translateY(100%) rotate(-10deg);
    background-color: rgba(255, 255, 255, 0.2)
}

.smtp_service_item .hover-overlay:after {
    top: 90%;
    background-color: rgba(255, 255, 255, 0.15)
}

.smtp_service_item h4 {
    font-size: 20px;
    line-height: 28px;
    color: #263b5e;
    font-weight: 500;
    margin-top: 35px;
    margin-bottom: 16px;
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

.smtp_service_item h4:hover {
    color: #237efd;
}

.smtp_service_item p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #6a7695;
    margin-bottom: 20px;
}

.smtp_service_item i {
    font-size: 40px;
    color: #afb8ce;
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

.smtp_service_item i:hover {
    color: #237efd;
}

.smtp_service_item:hover {
    background: #237efd;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0px 50px 80px 0px rgba(0, 11, 40, 0.08);
    box-shadow: 0px 50px 80px 0px rgba(0, 11, 40, 0.08);
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.smtp_service_item:hover h4,
.smtp_service_item:hover p {
    color: #fff;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

/*=========== smtp_studies_area_part css ==========*/

.smtp_studies_slider_part .owl-dots {
    margin-top: 30px;
}

.smtp_studies_slider_part .owl-dots button span {
    width: 24px;
    height: 12px;
    background: #b9c4d8;
    border: 0px;
}

.smtp_studies_slider_part .owl-dots button.active span {
    background: #237efd;
}

.smtp_studies_item {
    background: #f4f6f9;
    -webkit-box-shadow: 0px 3px 4px 0px rgba(38, 59, 94, 0.1);
    box-shadow: 0px 3px 4px 0px rgba(38, 59, 94, 0.1);
    margin: 10px 15px;
}

.smtp_studies_item .text {
    padding: 20px;
    text-align: center;
}

.smtp_studies_item .text a:hover h4 {
    color: #237efd
}

.smtp_studies_item .text h4 {
    font-size: 20px;
    color: #263b5e;
    font-weight: 500;
    margin-bottom: 3px;
}

.smtp_studies_item .text p {
    margin-bottom: 0;
    font-weight: 400;
}

.smtp_studies_item .text p a {
    font-size: 16px;
    color: #6a7695;
    font-weight: 400;
}

/*================= f_digital_pricing_area css ===============*/

.f_pricing-item {
    text-align: center;
    background: #ffffff;
    border: 3px solid #f6f7fa;
    padding: 50px 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 20px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-box-shadow: 0px 20px 40px 0px rgba(0, 11, 40, 0.04);
    box-shadow: 0px 20px 40px 0px rgba(0, 11, 40, 0.04);
    margin-bottom: 30px;
}

.f_digital_pricing_area .f_pricing-item:before {
    position: absolute;
    content: '';
    top: 70%;
    left: -90px;
    width: 540px;
    height: 540px;
    background-color: rgba(35, 126, 253, 0.1);
    z-index: -6;
    transition: all .5s ease;
    -webkit-transform: translateY(100%) rotate(-10deg);
    -moz-transform: translateY(100%) rotate(-10deg);
    -ms-transform: translateY(100%) rotate(-10deg);
    -o-transform: translateY(100%) rotate(-10deg);
    transform: translateY(100%) rotate(-10deg)
}

.f_digital_pricing_area .f_pricing-item:hover:before {
    transition-delay: .2s;
    -webkit-transform: translateY(0) rotate(-10deg);
    -moz-transform: translateY(0) rotate(-10deg);
    -ms-transform: translateY(0) rotate(-10deg);
    -o-transform: translateY(0) rotate(-10deg);
    transform: translateY(0) rotate(-10deg)
}

.f_digital_pricing_area .f_pricing-item:hover .hover-overlay:before,
.f_digital_pricing_area .f_pricing-item:hover .hover-overlay:after {
    -webkit-transform: translateY(0) rotate(-10deg);
    -moz-transform: translateY(0) rotate(-10deg);
    -ms-transform: translateY(0) rotate(-10deg);
    -o-transform: translateY(0) rotate(-10deg);
    transform: translateY(0) rotate(-10deg)
}

.f_digital_pricing_area .f_pricing-item:hover .hover-overlay:after {
    transition-delay: .1s
}

.f_digital_pricing_area .f_pricing-item .hover-overlay:before,
.f_digital_pricing_area .f_pricing-item .hover-overlay:after {
    position: absolute;
    content: '';
    top: 80%;
    left: -90px;
    width: 540px;
    height: 540px;
    z-index: -2;
    transition: all .5s ease;
    -webkit-transform: translateY(100%) rotate(-10deg);
    -moz-transform: translateY(100%) rotate(-10deg);
    -ms-transform: translateY(100%) rotate(-10deg);
    -o-transform: translateY(100%) rotate(-10deg);
    transform: translateY(100%) rotate(-10deg);
    background-color: rgba(35, 126, 253, 0.1)
}

.f_digital_pricing_area .f_pricing-item .hover-overlay:after {
    top: 90%;
    background-color: rgba(35, 126, 253, 0.15)
}

.f_pricing-item .tag_label {
    font: 400 16px/22px "Poppins", sans-serif;
    color: #fff;
    background: #237efd;
    position: absolute;
    top: 25px;
    left: 0;
    padding: 10px 20px;
    border: 0px;
    border-radius: 0 20px 20px 0;
    display: block;
}

.f_pricing-item .tag_label.blue_bg {
    background: #19cce6;
}

.f_pricing-item .tag_label.blue_bg:before {
    border-top: 20px solid #19cce6;
    border-bottom: 20px solid #19cce6;
}

.f_pricing-item .shape_img {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.f_pricing-item .s_price_icon {
    width: 110px;
    height: 110px;
    text-align: center;
    line-height: 110px;
    background: #f0f2f8;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.f_pricing-item .s_price_icon i:before {
    font-size: 48px;
}

.f_pricing-item .s_price_icon.p_icon1 {
    color: #7fcb11;
}

.f_pricing-item .s_price_icon.p_icon2 {
    color: #237efd;
}

.f_pricing-item .s_price_icon.p_icon3 {
    color: #e92460;
}

.f_pricing-item p {
    color: #677294;
}

.f_pricing-item .price {
    color: #051441;
    padding: 20px 0px 25px;
    line-height: 48px;
    border-bottom: 2px solid #e9e9f4;
}

.f_pricing-item .price sub {
    color: #677294;
    bottom: 0;
}

.f_pricing-item ul li {
    line-height: 38px;
    color: #505975;
    font-weight: 400;
}

.f_pricing-item:hover {
    border-color: #68a6fe;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 30px 60px 0px rgba(0, 11, 40, 0.14);
    box-shadow: 0px 30px 60px 0px rgba(0, 11, 40, 0.14);
}

.f_pricing-item:hover .s_price_icon {
    background: #faf9fa;
}

/*=========== vfx_features_subscribe_area css ============*/

.vfx_features_subscribe_area {
    position: relative;
    z-index: 1;
    background: #f9fafd;
    padding: 120px 0px 130px;
    overflow: hidden;
}

.vfx_features_subscribe_area:before {
    content: "";
    width: 100%;
    height: 100%;
    background: url("../img/map.png") no-repeat scroll center 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.vfx_features_subscribe_area .mchimp-errmessage,
.vfx_features_subscribe_area .mchimp-sucmessage {
    text-align: center;
}

.right_shape,
.bottom_shape {
    position: absolute;
    width: 700px;
    height: 600px;
}

.right_shape path,
.bottom_shape path {
    opacity: 0.03;
}

.right_shape {
    right: -450px;
    top: -102px;
}

.bottom_shape {
    left: 130px;
    top: 280px;
}

.s_subcribes {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.s_subcribes .form-control {
    font: 400 16px/70px "Poppins", sans-serif;
    color: #9ea4b7;
    height: 70px;
    padding: 0px 0px 0px 35px;
    background-color: white;
    -webkit-box-shadow: 0px 30px 60px 0px rgba(8, 0, 63, 0.14);
    box-shadow: 0px 30px 60px 0px rgba(8, 0, 63, 0.14);
    border: 0;
    border-radius: 50px !important;
    z-index: 0;
}

.s_subcribes .form-control.placeholder {
    color: #9ea4b7;
}

.s_subcribes .form-control:-moz-placeholder {
    color: #9ea4b7;
}

.s_subcribes .form-control::-moz-placeholder {
    color: #9ea4b7;
}

.s_subcribes .form-control::-webkit-input-placeholder {
    color: #9ea4b7;
}

.s_subcribes .btn-submit {
    position: absolute;
    background: #237efd;
    color: #fff;
    right: 0;
    line-height: 68px;
    padding: 0px;
    font-size: 24px;
    font-weight: bold;
    z-index: 3;
    width: 70px;
    height: 70px;
    border-radius: 40px;
    border: 5px solid rgba(0, 0, 0, 0.1);
}

/*================= pricing_area css ==============*/

.pricing_area {
    background: #fbfbfd;
}

.price_tab {
    border-radius: 4px;
    max-width: 400px;
    background-color: white;
    -webkit-box-shadow: 0px 3px 13px 0px rgba(0, 11, 40, 0.08);
    box-shadow: 0px 3px 13px 0px rgba(0, 11, 40, 0.08);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
    border: 0px;
    padding: 7px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.price_tab .nav-item {
    padding: 0px;
    margin: 0px;
}

.price_tab .nav-item .nav-link {
    margin: 0px;
    font: 400 16px "Poppins", sans-serif;
    color: #677294;
    padding: 12px 30px;
    display: inline-block;
    border: 0px;
    border-radius: 4px;
    min-width: 193px;
    text-align: center;
    -webkit-transition: color 0.3s linear;
    -o-transition: color 0.3s linear;
    transition: color 0.3s linear;
    position: relative;
    z-index: 1;
}

.price_tab .nav-item .nav-link.active {
    border: 0px;
    border-radius: 4px;
    background: transparent;
    color: #fff;
}

.price_tab .hover_bg {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #00aff0;
    left: 0;
    height: calc(100% - 14px);
    border-radius: 4px;
    z-index: 0;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.price_tab_two .hover_bg {
    background: #237efd;
}

.vfx_price_content .fade {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.vfx_price_content .fade.show {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.vfx_price_content .vfx_price_item {
    text-align: center;
    background-color: white;
    border-radius: 20px;
    -webkit-box-shadow: 0px 4px 6px 0px rgba(0, 11, 40, 0.1);
    box-shadow: 0px 4px 6px 0px rgba(0, 11, 40, 0.1);
    padding: 50px 50px 40px;
    border: 3px solid #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    cursor: pointer;
}

.vfx_price_content .vfx_price_item:before {
    position: absolute;
    content: '';
    top: 70%;
    left: -90px;
    width: 540px;
    height: 540px;
    background-color: rgba(35, 126, 253, 0.1);
    z-index: -6;
    transition: all .5s ease;
    -webkit-transform: translateY(100%) rotate(-10deg);
    -moz-transform: translateY(100%) rotate(-10deg);
    -ms-transform: translateY(100%) rotate(-10deg);
    -o-transform: translateY(100%) rotate(-10deg);
    transform: translateY(100%) rotate(-10deg)
}

.vfx_price_content .vfx_price_item:hover:before {
    transition-delay: .2s;
    -webkit-transform: translateY(0) rotate(-10deg);
    -moz-transform: translateY(0) rotate(-10deg);
    -ms-transform: translateY(0) rotate(-10deg);
    -o-transform: translateY(0) rotate(-10deg);
    transform: translateY(0) rotate(-10deg)
}

.vfx_price_content .vfx_price_item:hover .hover-overlay:before,
.vfx_price_content .vfx_price_item:hover .hover-overlay:after {
    -webkit-transform: translateY(0) rotate(-10deg);
    -moz-transform: translateY(0) rotate(-10deg);
    -ms-transform: translateY(0) rotate(-10deg);
    -o-transform: translateY(0) rotate(-10deg);
    transform: translateY(0) rotate(-10deg)
}

.vfx_price_content .vfx_price_item:hover .hover-overlay:after {
    transition-delay: .1s
}

.vfx_price_content .vfx_price_item .hover-overlay:before,
.vfx_price_content .vfx_price_item .hover-overlay:after {
    position: absolute;
    content: '';
    top: 80%;
    left: -90px;
    width: 540px;
    height: 540px;
    z-index: -2;
    transition: all .5s ease;
    -webkit-transform: translateY(100%) rotate(-10deg);
    -moz-transform: translateY(100%) rotate(-10deg);
    -ms-transform: translateY(100%) rotate(-10deg);
    -o-transform: translateY(100%) rotate(-10deg);
    transform: translateY(100%) rotate(-10deg);
    background-color: rgba(35, 126, 253, 0.1)
}

.vfx_price_content .vfx_price_item .hover-overlay:after {
    top: 90%;
    background-color: rgba(35, 126, 253, 0.15)
}

.vfx_price_content .vfx_price_item .tag {
    position: absolute;
    font: 400 14px "Poppins", sans-serif;
    color: #fff;
    background: #00aff0;
    padding: 19px 32px;
    top: -10px;
    left: -39px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.vfx_price_content .vfx_price_item .tag span {
    position: relative;
    top: 11px;
}

.vfx_price_content .vfx_price_item p {
    font-size: 16px;
    line-height: 22px;
    color: #677294;
    font-weight: 400;
    margin-bottom: 0px;
}

.vfx_price_content .vfx_price_item .price {
    line-height: 40px;
    border-bottom: 1px solid #e9e9f4;
    padding: 33px 0px 30px;
}

.vfx_price_content .vfx_price_item .price sub {
    color: #677294;
    bottom: 0;
}

.vfx_price_content .vfx_price_item .p_list {
    padding: 30px 0px 20px;
}

.vfx_price_content .vfx_price_item .p_list li {
    font: 400 16px/40px "Poppins", sans-serif;
    color: #505975;
}

.vfx_price_content .vfx_price_item .p_list li i {
    padding-right: 10px;
}

.vfx_price_content .vfx_price_item .p_list li .ti-check {
    color: #00aff0;
}

.vfx_price_content .vfx_price_item .p_list li .ti-close {
    color: #f0002d;
}

.vfx_price_content .vfx_price_item .price_btn {
    border-radius: 4px;
    color: #00aff0;
    border-color: #00aff0;
    padding: 0px 36px;
}

.vfx_price_content .vfx_price_item .price_btn:hover {
    color: #fff;
    background: #00aff0;
}

.vfx_price_content .vfx_price_item:hover {
    border-color: #00aff0;
    -webkit-box-shadow: 0px 30px 60px 0px rgba(0, 11, 40, 0.14);
    box-shadow: 0px 30px 60px 0px rgba(0, 11, 40, 0.14);
}

.vfx_pricing_area_two {
    background: #f6f7fa;
}

.vfx_price_content_two .vfx_price_item .tag {
    background: #237efd;
}

.vfx_price_content_two .vfx_price_item .p_list li .ti-check {
    color: #237efd;
}

.vfx_price_content_two .vfx_price_item .price_btn {
    border-color: #237efd;
    color: #237efd;
    background: transparent;
}

.vfx_price_content_two .vfx_price_item .price_btn:hover {
    background: #237efd;
    color: #fff;
}

.vfx_price_content_two .vfx_price_item:hover {
    border-color: #68a6fe;
}

.vfx_price_content_three .vfx_price_item .tag {
    background: #237efd;
}

.vfx_price_content_three .vfx_price_item .p_list li .ti-check {
    color: #237efd;
}

.vfx_price_content_three .vfx_price_item .price_btn {
    border-color: #237efd;
    color: #237efd;
    background: transparent;
}

.vfx_price_content_three .vfx_price_item .price_btn:hover {
    background: #237efd;
    color: #fff;
}

.vfx_price_content_three .vfx_price_item:hover {
    border-color: #dfdcfe;
}

/*================== call_action_area css ================*/

.call_action_area {
    min-height: 900px;
    position: relative;
    background-image: -moz-linear-gradient(180deg, #1786d8 0%, #00aff0 100%);
    background-image: -webkit-linear-gradient(180deg, #1786d8 0%, #00aff0 100%);
    background-image: -ms-linear-gradient(180deg, #1786d8 0%, #00aff0 100%);
    z-index: 1;
    padding-top: 250px;
    position: relative;
    overflow: hidden;
}

.call_action_area .action_one {
    left: -240px;
    bottom: 0;
    height: 100%;
    z-index: -1;
}

.call_action_area .action_two {
    right: 0;
    background-position: 50% 50%;
    z-index: -1;
    top: 0;
}

.call_action_area .action_content {
    max-width: 570px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.call_action_area .action_content h2 {
    margin-bottom: 15px;
    color: #fff;
}

.call_action_area .action_content p {
    font-weight: 300;
    color: #fff;
}

.call_action_area .action_content .action_btn {
    min-width: 180px;
    line-height: 55px;
    border-radius: 4px;
    -webkit-box-shadow: 0px 20px 40px 0px rgba(0, 11, 40, 0.2);
    box-shadow: 0px 20px 40px 0px rgba(0, 11, 40, 0.2);
    background: #fff;
    color: #00aff0;
}

.call_action_area .action_content .action_btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

/*============= design_tab_area css ============*/

.design_tab_area {
    background: #fbfbfd;
}

.design_tab {
    border: 0px;
}

.design_tab .nav-item {
    width: 100%;
    margin-bottom: 30px;
}

.design_tab .nav-item .nav-link {
    background-color: white;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(12, 0, 46, 0.15);
    box-shadow: 0px 2px 10px 0px rgba(12, 0, 46, 0.15);
    border: 0px;
    border-radius: 6px;
    padding: 25px 30px;
    -webkit-transition: background 0.5s ease 0s;
    -o-transition: background 0.5s ease 0s;
    transition: background 0.5s ease 0s;
}

.design_tab .nav-item .nav-link h5 {
    font-size: 17px;
    line-height: 26px;
    font-weight: 500;
    color: #222d39;
    -webkit-transition: color 0.5s ease 0s;
    -o-transition: color 0.5s ease 0s;
    transition: color 0.5s ease 0s;
}

.design_tab .nav-item .nav-link p {
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 400;
    color: #677294;
    -webkit-transition: color 0.5s ease 0s;
    -o-transition: color 0.5s ease 0s;
    transition: color 0.5s ease 0s;
}

.design_tab .nav-item .nav-link.active {
    background-color: #237efd;
}

.design_tab .nav-item .nav-link.active h5,
.design_tab .nav-item .nav-link.active p {
    color: #fff;
}

.tab-content .tab-pane .tab_img img {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    max-width: 100%;
}

.tab-content .tab-pane.show .tab_img img {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.tab-content .tab_img {
    margin-right: -160px;
    padding-left: 120px;
    max-width: 100%;
}

/*============= action_area_two css =============*/

.action_area_two {
    background: #f6f6fa;
    padding-bottom: 40px;
}

.action_content .btn_three {
    margin-top: 40px;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(12, 0, 46, 0.1);
    box-shadow: 0px 20px 30px 0px rgba(12, 0, 46, 0.1);
}

.action_content .btn_three:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.action_img {
    margin-right: -160px;
    margin-top: -50px;
}

.action_img img {
    max-width: 100%;
}

.action_area_three {
    background-image: -moz-linear-gradient(0deg, #237efd 0%, #6c3cf4 100%);
    background-image: -webkit-linear-gradient(0deg, #237efd 0%, #6c3cf4 100%);
    background-image: -ms-linear-gradient(0deg, #237efd 0%, #6c3cf4 100%);
    position: relative;
    z-index: 1;
}

.action_area_three:before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}

.action_area_three .action_content h2 {
    color: #fff;
}

.action_area_three .action_content .about_btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.action_area_three .action_content .about_btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #237efd;
    background: #fff;
}

.action_area_three .action_content .white_btn {
    color: #237efd;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #fff;
    margin-right: 25px;
}

.action_area_three .action_content .white_btn:hover {
    -webkit-box-shadow: 0px 20px 30px 0px rgba(12, 0, 46, 0.1);
    box-shadow: 0px 20px 30px 0px rgba(12, 0, 46, 0.1);
    color: #fff;
    background: #237efd;
}

/*=========== payment_priceing_area css ===========*/

.payment_priceing_area {
    padding: 120px 0px 90px;
    position: relative;
    z-index: 1;
}

.payment_priceing_area .payment_price_info {
    display: block;
    overflow: hidden;
    padding: 30px 0px;
}

.payment_priceing_area .sec_title h2 {
    font-size: 35px;
    font-weight: 500;
    line-height: 45px;
}

.payment_vfx_price_item {
    text-align: center;
    background: #fbfbfd;
    padding: 50px 40px 55px;
    border: 1px solid #f1f3f8;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    width: calc(100% / 3);
    float: left;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.payment_vfx_price_item:before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: -moz-linear-gradient(-140deg, #fdabe7 0%, #bd8ef2 36%, #7d71fd 100%);
    background-image: -webkit-linear-gradient(-140deg, #fdabe7 0%, #bd8ef2 36%, #7d71fd 100%);
    background-image: -ms-linear-gradient(-140deg, #fdabe7 0%, #bd8ef2 36%, #7d71fd 100%);
    -webkit-box-shadow: 0px 30px 60px 0px rgba(0, 11, 40, 0.1);
    box-shadow: 0px 30px 60px 0px rgba(0, 11, 40, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    border-radius: 4px;
    -webkit-transition: opacity 0.4s linear;
    -o-transition: opacity 0.4s linear;
    transition: opacity 0.4s linear;
}

.payment_vfx_price_item h2 {
    font-size: 40px;
    font-weight: 600;
    color: #051441;
}

.payment_vfx_price_item h6 {
    font-size: 18px;
    color: #051441;
    font-weight: 400;
    margin-bottom: 30px;
}

.payment_vfx_price_item p {
    line-height: 30px;
    margin-bottom: 50px;
}

.payment_vfx_price_item .payment_price_btn {
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    border-radius: 45px;
    background: rgba(253, 83, 135, 0.1);
    display: inline-block;
    padding: 10px 42px;
    color: #fd5387;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.payment_vfx_price_item .payment_price_btn i {
    font-size: 12px;
    padding-left: 5px;
}

.payment_vfx_price_item:nth-child(3) .payment_price_btn {
    background: rgba(95, 81, 251, 0.1);
    color: #237efd;
}

.payment_vfx_price_item.center {
    border: 0px;
    border-radius: 4px;
    padding: 80px 40px 86px;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.payment_vfx_price_item.center:before {
    opacity: 1;
}

.payment_vfx_price_item.center h2,
.payment_vfx_price_item.center h6,
.payment_vfx_price_item.center p {
    color: #fff;
}

.payment_vfx_price_item.center .payment_price_btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.payment_vfx_price_item:hover {
    border-radius: 4px;
    border-color: #bd8ef2;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.payment_vfx_price_item:hover:before {
    opacity: 1;
}

.payment_vfx_price_item:hover h2,
.payment_vfx_price_item:hover h6,
.payment_vfx_price_item:hover p {
    color: #fff;
}

.payment_vfx_price_item:hover .payment_price_btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.priceing_area_four .sec_title {
    margin-bottom: 50px;
}

.priceing_area_four .sec_title h2 {
    margin-bottom: 0px;
}

.priceing_area_four .sec_title p {
    font-style: italic;
}

.price_info_two {
    -webkit-box-shadow: 0px 4px 5px 0px rgba(12, 0, 46, 0.05);
    box-shadow: 0px 4px 5px 0px rgba(12, 0, 46, 0.05);
}

.price_info_two .price_head {
    display: table;
    width: 100%;
}

.price_info_two .price_head .p_head {
    width: calc(100% / 4);
    text-align: center;
    color: #fff;
    vertical-align: middle;
    display: table-cell;
    padding: 31px 0px;
}

.price_info_two .price_head .p_head h4 {
    color: #222d39;
    font-size: 20px;
}

.price_info_two .price_head .p_head h4,
.price_info_two .price_head .p_head h5 {
    margin-bottom: 0px;
}

.price_info_two .price_head .p_head p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
}

.price_info_two .price_head .p_head:nth-child(2) {
    background: #0ed1b3;
}

.price_info_two .price_head .p_head:nth-child(3) {
    background: #6c84ee;
}

.price_info_two .price_head .p_head:nth-child(4) {
    background: #ee6cda;
}

.price_info_two .price_head .p_head h5 {
    font-size: 20px;
    font-weight: 600;
}

.price_info_two .vfx_price_item {
    width: calc(100% / 4);
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    cursor: pointer;
    padding: 15px 0px;
}

.price_info_two .vfx_price_item:nth-child(odd) {
    background: #f8f8fa;
}

.price_info_two .vfx_price_item:first-child {
    text-align: left;
    padding-left: 30px;
}

.price_info_two .vfx_price_item h5 {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    color: #222d39;
}

.price_info_two .vfx_price_item h5 i {
    font-size: 20px;
}

.price_info_two .vfx_price_item .pr_title {
    position: relative;
    display: inline-block;
    padding-left: 30px;
}

.price_info_two .vfx_price_item .pr_title:before {
    content: "\70";
    position: absolute;
    left: 0;
    top: 0;
    font-family: eleganticons;
    color: #afb5c7;
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

.price_info_two .vfx_price_item .pr_title:hover:before {
    color: #237efd;
}

.price_info_two .vfx_price_item .check {
    color: #0ed1b3;
}

.price_info_two .vfx_price_item .cros {
    color: #afb5c7;
}

.price_info_two .pr_list {
    display: table;
    width: 100%;
}

.price_info_two .price_btn {
    border-radius: 4px;
    color: #677294;
    border-color: #dfe3ed;
    padding: 0px 32px;
    line-height: 46px;
    margin: 40px 0px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.price_info_two .price_btn:hover {
    background: #237efd;
    border-color: #237efd;
    color: #fff;
}

.tooltip .tooltip-inner {
    background-color: #fff;
    opacity: 1;
    color: #111;
    opacity: 1;
    -webkit-box-shadow: 0px 20px 40px 0px rgba(12, 0, 46, 0.14);
    box-shadow: 0px 20px 40px 0px rgba(12, 0, 46, 0.14);
    font-size: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #677294;
    line-height: 22px;
    height: 34px;
    width: 100%;
}

.tooltip.bs-tooltip-top .arrow:before {
    border-top-color: #237efd;
}

/*============= agency_about_area css ============*/

.agency_about_area .owl-dots {
    position: absolute;
    left: -48%;
    bottom: 10px;
}

.agency_about_area .owl-dots button span {
    width: 8px;
    height: 8px;
    display: block;
    background: #9c7bfb;
    border-radius: 50%;
    border: 1px solid #9c7bfb;
    margin: 0px 5px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.agency_about_area .owl-dots button.active span {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    border-color: rgba(251, 251, 253, 0.8);
    background: transparent;
}

.about_content_left {
    padding: 0px 0px 0px 200px;
}

.about_content {
    background-image: -moz-linear-gradient(40deg, #237efd 0%, #a485fd 100%);
    background-image: -webkit-linear-gradient(40deg, #237efd 0%, #a485fd 100%);
    background-image: -ms-linear-gradient(40deg, #237efd 0%, #a485fd 100%);
    height: 100%;
    color: #fff;
    padding: 100px;
    position: relative;
}

.about_content h2,
.about_content p {
    color: #fff;
}

.about_btn {
    font: 500 14px "Poppins", sans-serif;
    padding: 17px 28px;
    background: #fbfbfd;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(12, 0, 46, 0.1);
    box-shadow: 0px 20px 30px 0px rgba(12, 0, 46, 0.1);
    border-radius: 3px;
    color: #237efd;
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.about_btn:hover {
    color: #fff;
    background: #237efd;
}

.about_img {
    padding: 0px;
    position: relative;
}

.about_img .about_img_slider .about_item {
    float: left;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
}

.about_img .about_img_slider .about_item:after {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(17, 22, 28, 0.7);
    position: absolute;
    opacity: 0;
    z-index: 0;
    -webkit-transition: opacity 0.4s linear 0s;
    -o-transition: opacity 0.4s linear 0s;
    transition: opacity 0.4s linear 0s;
}

.about_img .about_img_slider .about_item img {
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.about_img .about_img_slider .about_item.w55 {
    width: 53.3%;
}

.about_img .about_img_slider .about_item.w45 {
    width: 46.7%;
}

.about_img .about_img_slider .about_item img {
    width: 100%;
    max-width: 100%;
}

.about_img .about_img_slider .about_item .about_text {
    position: absolute;
    bottom: 80px;
    padding: 0px 80px 0px 50px;
    left: 0;
    z-index: 1;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.about_img .about_img_slider .about_item .about_text h5 {
    color: #fff;
}

.about_img .about_img_slider .about_item .about_text .br {
    width: 50px;
    height: 5px;
    background: #fff;
    opacity: 0.30;
    margin-bottom: 25px;
    display: block;
}

.about_img .about_img_slider .about_item .about_text.text_two {
    bottom: 30px;
}

.about_img .about_img_slider .about_item:hover:after {
    opacity: 1;
}

.about_img .about_img_slider .about_item:hover img {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

.about_img .about_img_slider .about_item:hover .about_text {
    bottom: 90px;
}

.about_img .about_img_slider .about_item:hover .about_text.text_two {
    bottom: 50px;
}

.about_img .pluse_icon {
    width: 100px;
    height: 100px;
    text-align: center;
    color: #237efd;
    line-height: 100px;
    font-size: 22px;
    background-color: #fbfbfd;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(12, 0, 46, 0.14);
    box-shadow: 0px 20px 30px 0px rgba(12, 0, 46, 0.14);
    display: inline-block;
    position: absolute;
    bottom: -60px;
    left: 0;
    z-index: 2;
}

/*=============== testimonial_area css ==============*/

.f_agency_testimonial_info {
    position: relative;
}

.f_agency_testimonial_info .testimonial_slider {
    max-width: 980px;
    border-radius: 10px;
    margin: 0 auto;
    background-color: white;
    -webkit-box-shadow: 0px 20px 40px 0px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 20px 40px 0px rgba(12, 0, 46, 0.06);
    padding: 50px;
}

.f_agency_testimonial_info .testimonial_slider .testimonial_item {
    z-index: 0;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.f_agency_testimonial_info .testimonial_slider .testimonial_item .author_img img {
    max-width: 100%;
    width: auto;
    display: inline-block;
    border-radius: 6px;
}

.f_agency_testimonial_info .testimonial_slider .testimonial_item .vfx_author_description {
    margin-top: 20px;
    margin-bottom: 30px;
}

.f_agency_testimonial_info .testimonial_slider .testimonial_item .vfx_author_description h4 {
    margin-bottom: 5px;
    background: #237efd;
    display: inline-block;
    padding: 5px 20px;
    color: #fff;
    border-radius: 30px;
}

.f_agency_testimonial_info .testimonial_slider .testimonial_item .vfx_author_description h6 {
    font: 400 14px/26px "Poppins", sans-serif;
    color: #959cb1;
}

.f_agency_testimonial_info .testimonial_slider .testimonial_item p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 50px;
}

.f_agency_testimonial_info .testimonial_slider .active {
    position: relative;
    z-index: 9;
}

.f_agency_testimonial_info .testimonial_slider .owl-dots {
    text-align: center;
    bottom: 0px;
    position: relative;
    margin-top: 0px;
}

.f_agency_testimonial_info .testimonial_slider .owl-dots .owl-dot {
    width: 20px;
    height: 12px;
    top: 2px;
    border-radius: 20px;
    border: 2px solid transparent;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    margin: 0px 3px;
}

.f_agency_testimonial_info .testimonial_slider .owl-dots .owl-dot span {
    width: 20px;
    height: 12px;
    background: #cfcfe7;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
    border: 2px solid transparent;
    -webkit-transform: scale(1.0);
    -ms-transform: scale(1.0);
    transform: scale(1.0);
}

.f_agency_testimonial_info .testimonial_slider .owl-dots .owl-dot.active {
    border-color: #237efd;
}

.f_agency_testimonial_info .testimonial_slider .owl-dots .owl-dot.active span {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.f_agency_testimonial_info .owl-prev,
.f_agency_testimonial_info .owl-next {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    border: 2px solid #f3f5f8;
    background-color: white;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 20px 30px 0px rgba(12, 0, 46, 0.06);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
}

.f_agency_testimonial_info .owl-prev:hover,
.f_agency_testimonial_info .owl-next:hover {
    background: #237efd;
    color: #fff;
    border: 2px solid #237efd;
}

.f_agency_testimonial_info .owl-next {
    right: 0;
}

/*============= trusted_worldwide_logo_part css ==============*/

.trusted_worldwide_logo_part_two {
    padding-top: 120px;
}

.trusted_worldwide_logo_part_two h4 {
    color: #8891aa;
}

.trusted_worldwide_partner_logo_info {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.smtp_trusted_worldwide_logo_part {
    background: #f9f7fd;
}

.trusted_worldwide_partner_logo_info .logo_item {
    width: calc(100% / 5);
    padding: 10px;
}

.trusted_worldwide_partner_logo_info .logo_item a {
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    padding: 10px 15px;
    display: inline-block;
    -webkit-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
}

.trusted_worldwide_partner_logo_info .logo_item img {
    max-width: 100%;
    -webkit-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
}

.trusted_worldwide_partner_logo_info .logo_item:hover img {
    -webkit-transform: scale(1.06);
    -moz-transform: scale(1.06);
    -ms-transform: scale(1.06);
    -o-transform: scale(1.06);
    transform: scale(1.06);
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    transition: all 0.6s linear;
}

.subscribe_form_info {
    border-style: solid;
    border-width: 1px;
    border-color: #f3f6f9;
    border-radius: 6px;
    background-color: white;
    -webkit-box-shadow: 0px 30px 50px 0px rgba(12, 0, 46, 0.1);
    box-shadow: 0px 30px 50px 0px rgba(12, 0, 46, 0.1);
    padding: 120px 0px;
    margin-bottom: -150px;
    z-index: 2;
    position: relative;
}

.subscribe_form_info .subscribe-form {
    max-width: 370px;
    margin: 0 auto;
}

.subscribe_form_info .subscribe-form .form-control {
    text-align: center;
    border: 0px;
    font: 400 18px/28px "Poppins", sans-serif;
    color: #b4bacc;
    border-radius: 0px;
    border-bottom: 1px solid #3d64f4;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.subscribe_form_info .subscribe-form .form-control.placeholder {
    color: #b4bacc;
}

.subscribe_form_info .subscribe-form .form-control:-moz-placeholder {
    color: #b4bacc;
}

.subscribe_form_info .subscribe-form .form-control::-moz-placeholder {
    color: #b4bacc;
}

.subscribe_form_info .subscribe-form .form-control::-webkit-input-placeholder {
    color: #b4bacc;
}

.subscribe_form_info .subscribe-form .btn_four {
    padding: 16px 44px;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(61, 100, 244, 0.16);
    box-shadow: 0px 20px 30px 0px rgba(61, 100, 244, 0.16);
}

.subscribe_form_info .subscribe-form .btn_four:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.s_form_info_two .subscribe-form .form-control {
    border-color: #237efd;
}

.s_form_info_two .subscribe-form .btn_four {
    border-radius: 4px;
    border-color: #237efd;
    background: #237efd;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(61, 100, 244, 0.16);
    box-shadow: 0px 20px 30px 0px rgba(61, 100, 244, 0.16);
}

.s_form_info_two .subscribe-form .btn_four:hover {
    color: #fff;
}

.vfx_features_subscribe_area_two .subscribe_form_info {
    padding: 80px 0px;
}

.vfx_features_subscribe_area_two .subscribe_form_info .form-control {
    border-color: #237efd;
}

.vfx_features_subscribe_area_two .subscribe_form_info .btn_four {
    border-color: #237efd;
    background: #5f51fd;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(61, 100, 244, 0.16);
    box-shadow: 0px 20px 30px 0px rgba(61, 100, 244, 0.16);
}

.vfx_features_subscribe_area_two .subscribe_form_info .btn_four:hover {
    color: #fff;
}

.trusted_worldwide_logo_part_three {
    padding: 100px 0px;
}

.trusted_worldwide_logo_part_three .trusted_worldwide_partner_logo_info {
    margin-bottom: -20px;
}

.trusted_worldwide_logo_part_three .trusted_worldwide_partner_logo_info .logo_item a {
    display: inline-block;
}

.trusted_worldwide_logo_part_three .trusted_worldwide_partner_logo_info .logo_item img {
    -webkit-filter: contrast(100%);
    filter: contrast(100%);
    -webkit-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    transition: all 0.6s linear;
}

.trusted_worldwide_logo_part_three .trusted_worldwide_partner_logo_info .logo_item:hover img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    transition: all 0.6s linear;
}

.trusted_worldwide_logo_part_three .trusted_worldwide_partner_logo_info_two .logo_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.trusted_worldwide_logo_part_three .trusted_worldwide_partner_logo_info_two .logo_item:hover img {
    -webkit-filter: brightness(1);
    filter: brightness(1);
}

.trusted_worldwide_logo_part_four {
    padding-top: 20px;
    margin-bottom: 0px;
}

.trusted_worldwide_logo_part_four h4 {
    color: #8891aa;
}

.trusted_worldwide_logo_part_five {
    padding: 120px 0px;
}

.payment_logo_area {
    padding: 200px 0px 120px;
}

.payment_logo_area .sec_title h2 {
    font-size: 35px;
    line-height: 44px;
}

.trusted_worldwide_logo_part_six {
    padding: 56px 0px;
}

.trusted_worldwide_logo_part_six .trusted_worldwide_partner_logo_info {
    margin-bottom: -60px;
}

.trusted_worldwide_logo_part_six .trusted_worldwide_partner_logo_info .logo_item:hover img {
    -webkit-filter: brightness(0);
    filter: brightness(0);
}

/*============== signup_area css ==============*/

.vfx_signup_form .input-group .form-control {
    background: transparent;
    font: 500 14px "Poppins", sans-serif;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    border: 2px solid #555571;
    padding: 12px 20px;
    padding-bottom: 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
    z-index: 0;
    position: relative;
}

.vfx_signup_form .input-group .form-control.placeholder {
    color: #535473;
}

.vfx_signup_form .input-group .form-control:-moz-placeholder {
    color: #535473;
}

.vfx_signup_form .input-group .form-control::-moz-placeholder {
    color: #535473;
}

.vfx_signup_form .input-group .form-control::-webkit-input-placeholder {
    color: #535473;
}

.vfx_signup_form .input-group .form-control:focus+label {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.vfx_signup_form .input-group .form-control:focus {
    width: 100%;
    border: 2px solid #3d57f4;
    z-index: 2;
    border-radius: 30px;
}

.vfx_signup_form .f_dark_box_banner_btn {
    border: 0px;
    padding: 12px 48px;
}

/*============= f_fun_fact_featured_area  css ==============*/

.f_fun_fact_featured_area {
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
}

.f_fun_fact_featured_area_two {
    background: #f7f6fa;
}

.f_fun_fact_content_area h1 {
    font-size: 54px;
}

.f_fun_fact_content_area h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 0
}

.f_fun_fact_content_area .fact_item h1 {
    font-size: 70px;
    font-weight: 600;
}

.f_fun_fact_content_area .fact_item p {
    font-weight: 400;
}

.f_fun_fact_author_img {
    position: relative;
}

.f_fun_fact_author_img img {
    margin-top: -70px;
    -webkit-filter: grayscale(10%);
    filter: grayscale(10%);
}

.f_fun_fact_featured_area .d-flex .fact_item {
    background: transparent;
    padding: 15px 30px;
    margin-right: 20px;
    border-radius: 6px;
    border: 2px solid #68a6fe;
    -webkit-box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.1);
}

.f_fun_fact_featured_area .d-flex .fact_item:last-child {
    margin-right: 0
}

/*============ f_dark_feedback_area css ==============*/

.feedback_slider .owl-nav {
    display: none;
}

.feedback_slider .item {
    padding: 0px 15px;
}

.feedback_slider .owl-stage-outer {
    overflow: inherit;
}

.f_dark_feedback_area {
    position: relative;
    overflow: hidden;
}

.f_dark_feedback_area::before {
    content: "";
    top: 0;
    left: 0;
    right: auto;
    height: 100%;
    width: 25%;
    border-radius: 10px;
    z-index: 9;
    position: absolute;
    padding: 0;
    background: rgba(16, 17, 53, 0) linear-gradient(to left, rgba(16, 17, 53, 0), rgb(16, 17, 53)) repeat scroll 0% 0%;
}

.f_dark_feedback_area::after {
    content: "";
    top: 0;
    left: auto;
    right: 0;
    height: 100%;
    width: 25%;
    border-radius: 10px;
    z-index: 9;
    position: absolute;
    padding: 0;
    background: rgba(16, 17, 53, 0) linear-gradient(to right, rgba(16, 17, 53, 0), rgb(16, 17, 53)) repeat scroll 0% 0%;
}

.feedback_slider .shap_one,
.feedback_slider .shap_two {
    position: absolute;
    bottom: 0;
    right: 20px;
    opacity: 0.302;
    border-radius: 10px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 66px;
    height: 66px;
    bottom: -35px;
    opacity: 0.302;
}

.feedback_slider .shap_one {
    background-image: -moz-linear-gradient(40deg, #290a59 0%, #3d57f4 100%);
    background-image: -webkit-linear-gradient(40deg, #290a59 0%, #3d57f4 100%);
    background-image: -ms-linear-gradient(40deg, #290a59 0%, #3d57f4 100%);
}

.feedback_slider .shap_two {
    background-image: -moz-linear-gradient(40deg, #290a59 0%, #3d57f4 100%);
    background-image: -webkit-linear-gradient(40deg, #290a59 0%, #3d57f4 100%);
    background-image: -ms-linear-gradient(40deg, #290a59 0%, #3d57f4 100%);
    right: -10px;
    bottom: -45px;
}

.feedback_slider .center .vfx_feed_back_item {
    border-color: #2881ff;
}

.feedback_slider .center .vfx_feed_back_item .shap_one,
.feedback_slider .center .vfx_feed_back_item .shap_two {
    opacity: 1;
}

.vfx_feed_back_item {
    border: 3px solid rgba(61, 87, 244, 0.4);
    border-radius: 20px;
    background-color: #2e3d62;
    -webkit-box-shadow: 0px 30px 50px 0px rgba(12, 0, 46, 0.3);
    box-shadow: 0px 30px 50px 0px rgba(12, 0, 46, 0.3);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.vfx_feed_back_item .vfx_feed_back_author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.vfx_feed_back_author .media-body h5 {
    color: #051441;
    background: rgba(0, 0, 0, 0.06);
    display: inline-block;
    padding: 8px 15px;
    border-radius: 4px;
}

.vfx_feed_back_item .media-body h5 {
    color: #ffffff;
    background: #237efd;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
}

.vfx_feed_back_item .media .img {
    border-radius: 6px;
    width: 75px;
    height: 75px;
    overflow: hidden;
    margin-right: 18px;
}

.vfx_feed_back_item .media .img img {
    max-width: 100%;
    width: auto;
}

.vfx_feed_back_item .media .media-body {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.vfx_feed_back_item .media .media-body h6 {
    margin-bottom: 0px;
    width: 100%;
    font-size: 14px;
    color: #969699;
    font-weight: 400;
}

.vfx_feed_back_item p {
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 0px;
}

.vfx_feed_back_item .post_date {
    font-size: 13px;
    line-height: 22px;
    color: #c8c8d2;
    font-weight: 400;
    position: relative;
    padding-top: 0px;
    padding-bottom: 5px;
    display: block;
}

.vfx_feed_back_item .ratting {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: left;
}

.vfx_feed_back_item .ratting a {
    font-size: 12px;
    color: #58596e;
}

.vfx_feed_back_item .ratting a:nth-child(1),
.vfx_feed_back_item .ratting a:nth-child(2),
.vfx_feed_back_item .ratting a:nth-child(3) {
    color: #3d57f4;
}

.owl-dots {
    text-align: center;
    margin-top: 40px;
}

.owl-dots .owl-dot span {
    width: 24px;
    height: 12px;
    border-radius: 20px;
    background: #3d3e65;
    margin: 0px 5px;
    border: 0px solid #3d3e65;
    display: block;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.owl-dots .owl-dot.active span {
    background: #237efd;
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
    border-color: #237efd;
}

.owl-dots .owl-dot:focus {
    outline: none;
}

.f_dark_feedback_area_two {
    background-image: -moz-linear-gradient(30deg, #237efd 0%, #8ca7ff 100%);
    background-image: -webkit-linear-gradient(30deg, #237efd 0%, #8ca7ff 100%);
    background-image: -ms-linear-gradient(30deg, #237efd 0%, #8ca7ff 100%);
    height: 550px;
    position: relative;
    z-index: 1;
}

.f_dark_feedback_area_two .sec_title {
    padding-left: 162px;
}

.f_dark_feedback_area_two .sec_title h2 {
    font-size: 35px;
    line-height: 45px;
}

.f_dark_feedback_area_two .sec_title p {
    color: #cfd0fa;
    font-style: italic;
}

.feedback_slider_two .item {
    padding-bottom: 30px;
}

.feedback_slider_two .shap_one,
.feedback_slider_two .shap_two {
    opacity: 0.12;
    background-image: -moz-linear-gradient(40deg, #237efd 0%, #767cfd 64%, #8ca7ff 100%);
    background-image: -webkit-linear-gradient(40deg, #237efd 0%, #767cfd 64%, #8ca7ff 100%);
    background-image: -ms-linear-gradient(40deg, #237efd 0%, #767cfd 64%, #8ca7ff 100%);
}

.feedback_slider_two .center .vfx_feed_back_item_two .shap_one,
.feedback_slider_two .center .vfx_feed_back_item_two .shap_two {
    opacity: 0.25;
}

.feedback_slider_two .owl-nav {
    display: block;
    position: absolute;
    right: 120px;
    top: -100px;
}

.feedback_slider_two .owl-nav i {
    width: 50px;
    height: 50px;
    text-align: center;
    border: 2px solid #fff;
    display: inline-block;
    color: #fff;
    line-height: 46px;
    font-size: 14px;
    border-radius: 4px;
    margin-left: 10px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.feedback_slider_two .owl-nav i:hover {
    background: #fff;
    color: #237efd;
}

.feedback_slider_two .vfx_feed_back_item {
    background: #fff;
    -webkit-box-shadow: 0px 10px 25px 0px rgba(0, 11, 40, 0.05);
    box-shadow: 0px 10px 25px 0px rgba(0, 11, 40, 0.05);
    margin: 0 20px;
}

.feedback_slider_two .vfx_feed_back_item .media .img {
    border: 0px;
}

.feedback_slider_two .owl-dots {
    display: none;
}

.f_dark_feedback_area_three .row {
    margin-left: -20px;
    margin-right: -20px;
}

.f_dark_feedback_area_three .feedback_slider_two .vfx_feed_back_item {
    margin: 0px 20px;
    -webkit-box-shadow: 0px 15px 25px 0px rgba(0, 11, 40, 0.08);
    box-shadow: 0px 15px 25px 0px rgba(0, 11, 40, 0.08);
}

.f_dark_feedback_area_three .feedback_slider_two .vfx_feed_back_item .ratting a:nth-child(1),
.f_dark_feedback_area_three .feedback_slider_two .vfx_feed_back_item .ratting a:nth-child(2),
.f_dark_feedback_area_three .feedback_slider_two .vfx_feed_back_item .ratting a:nth-child(3) {
    color: #fbc509;
}

.f_dark_feedback_area_three .feedback_slider_two .vfx_feed_back_item p {
    line-height: 28px;
}

.f_dark_feedback_area_three .feedback_slider_two .owl-nav {
    right: 15px;
}

.f_dark_feedback_area_three .feedback_slider_two .owl-nav i {
    border-color: #dfe3ed;
    color: #677294;
}

.f_dark_feedback_area_three .feedback_slider_two .owl-nav i:hover {
    border-color: #237efd;
    background: #237efd;
    color: #fff;
}

/*=============== expert_testimonia_appl_area css =============*/

.expert_testimonia_appl_area {
    background: #fbfbfd;
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
    position: relative;
}

.app_testimonial_slider {
    max-width: 690px;
    margin: 0 auto;
}

.nav_container {
    position: relative;
    z-index: 1;
}

.nav_container .owl-prev,
.nav_container .owl-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    -webkit-box-shadow: 0px 3px 4px 0px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 3px 4px 0px rgba(12, 0, 46, 0.06);
    font-size: 20px;
    color: #222d39;
    border: 0px;
    line-height: 56px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    cursor: pointer;
}

.nav_container .owl-prev:hover,
.nav_container .owl-next:hover {
    background: #237efd;
    color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.nav_container .owl-prev {
    left: 15px;
}

.nav_container .owl-next {
    right: 15px;
}

.nav_container .owl-dots {
    margin-top: 30px;
}

.nav_container .owl-dots .owl-dot span {
    background: #cfcfe7;
    border: 0px;
}

.nav_container .owl-dots .owl-dot.active span {
    background: #237efd;
}

.shap {
    position: absolute;
    opacity: 0.02;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 4px;
    left: 0px;
    z-index: -1;
}

.shap.one {
    background-image: -moz-linear-gradient(140deg, #7d0df0 0%, #0cb6e7 100%);
    background-image: -webkit-linear-gradient(140deg, #7d0df0 0%, #0cb6e7 100%);
    background-image: -ms-linear-gradient(140deg, #7d0df0 0%, #0cb6e7 100%);
    width: 700px;
    height: 530px;
    top: -140%;
    border-radius: 70%;
}

.shap.two {
    background-image: -moz-linear-gradient(140deg, #7d0df0 0%, #0cb6e7 100%);
    background-image: -webkit-linear-gradient(140deg, #7d0df0 0%, #0cb6e7 100%);
    background-image: -ms-linear-gradient(140deg, #7d0df0 0%, #0cb6e7 100%);
    width: 700px;
    height: 350px;
    top: -130%;
    left: 150px;
    border-radius: 70%;
}

.app_testimonial_item .author-img {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    overflow: hidden;
    margin: 0 auto 15px;
}

.app_testimonial_item .author-img img {
    width: auto;
    border-radius: 100%;
    max-width: 100%;
}

.app_testimonial_item .author_info {
    margin-bottom: 25px;
}

.app_testimonial_item .author_info h6 {
    background: #237efd;
    display: inline-block;
    padding: 5px 20px;
    color: #fff;
    border-radius: 30px;
}

.app_testimonial_item .author_info p {
    color: #959cb1;
    font-size: 14px;
    margin-bottom: 0px;
    font-weight: 400;
}

/*=========== team_area css ==========*/

.vfx_team_member_area .learn_btn:hover {
    color: #4069eb;
}

.vfx_team_member_area .learn_btn:hover:before {
    background: #4069eb;
}

.vfx_ex_team_member_item {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    -webkit-box-shadow: 0px 15px 25px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 15px 25px 0px rgba(0, 0, 0, 0.15);
}

.vfx_ex_team_member_item img {
    max-width: 100%;
}

.vfx_ex_team_member_item .hover_content,
.vfx_ex_team_member_item .team_content {
    position: absolute;
    width: 100%;
}

.vfx_ex_team_member_item h3 {
    margin-bottom: 3px;
}

.vfx_ex_team_member_item h5 {
    font: 400 14px/24px "Poppins", sans-serif;
    color: #677294;
    margin-bottom: 0px;
}

.vfx_ex_team_member_item .team_content a h3,
.vfx_ex_team_member_item .team_content h5 {
    color: #fff;
}

.vfx_ex_team_member_item .team_content {
    bottom: 0;
    background-image: -moz-linear-gradient(140deg, #237efd 0%, #24b0fe 46%, #47bcfe 100%);
    background-image: -webkit-linear-gradient(140deg, #237efd 0%, #24b0fe 46%, #47bcfe 100%);
    background-image: -ms-linear-gradient(140deg, #237efd 0%, #24b0fe 46%, #47bcfe 100%);
    padding: 17px 0px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.vfx_ex_team_member_item .hover_content {
    top: 0;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px 33px;
    background-image: -moz-linear-gradient(140deg, #237efd 0%, #24b0fe 46%, #47bcfe 100%);
    background-image: -webkit-linear-gradient(140deg, #237efd 0%, #24b0fe 46%, #47bcfe 100%);
    background-image: -ms-linear-gradient(140deg, #237efd 0%, #24b0fe 46%, #47bcfe 100%);
    opacity: 0;
    visibility: visible;
    z-index: -1;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

.vfx_ex_team_member_item .hover_content .vfx_n_hover_content_area {
    width: 100%;
}

.vfx_ex_team_member_item .hover_content .vfx_n_hover_content_area ul {
    margin-bottom: 0px;
}

.vfx_ex_team_member_item .hover_content .vfx_n_hover_content_area ul li {
    display: inline-block;
}

.vfx_ex_team_member_item .hover_content .vfx_n_hover_content_area ul li a {
    font-size: 13px;
    color: #fff;
    margin: 0px 3px;
    background: #ffffff;
    color: #237efd;
    border: 2px solid transparent;
    padding: 4px 10px;
    display: inline-block;
    width: 38px;
    height: 38px;
    border-radius: 20px;
}

.vfx_ex_team_member_item .hover_content .vfx_n_hover_content_area ul li a:hover {
    background: transparent;
    border: 2px solid #fff;
    color: #ffffff;
}

.vfx_ex_team_member_item .hover_content .vfx_n_hover_content_area .br {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    display: block;
    border-radius: 30px;
    margin: 15px 0px 20px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    transition: all 0.6s linear;
}

.vfx_ex_team_member_item .hover_content .vfx_n_hover_content_area h3 {
    -webkit-transform: translateY(12px);
    -ms-transform: translateY(12px);
    transform: translateY(12px);
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.vfx_ex_team_member_item .hover_content .vfx_n_hover_content_area h5 {
    color: #fff;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    transition: all 0.6s linear;
}

.vfx_ex_team_member_item:hover .hover_content {
    opacity: 1;
    visibility: visible;
    z-index: 0;
    border-radius: 6px;
}

.vfx_ex_team_member_item:hover .hover_content .br {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.vfx_ex_team_member_item:hover .hover_content h3,
.vfx_ex_team_member_item:hover .hover_content h5 {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.vfx_ex_team_member_item:hover .team_content {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

/*=============== payment_clients_area  css =============*/

.payment_clients_area {
    background: #fafbff;
    padding: 130px 0px;
    position: relative;
}

.payment_clients_area .clients_bg_shape_right {
    width: 1600px;
    height: 1253px;
    background-color: white;
    -webkit-box-shadow: 0px 0px 59px 0px rgba(91, 82, 254, 0.05);
    box-shadow: 0px 0px 59px 0px rgba(91, 82, 254, 0.05);
    position: absolute;
    right: -44.5%;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-radius: 150px;
    top: -375px;
}

.payment_clients_area .payment_clients_inner {
    position: relative;
}

.payment_clients_area .payment_clients_inner .clients_item {
    border-width: 5px;
    border-color: #f6f6fa;
    border-style: solid;
    border-radius: 10px;
    background-color: white;
    -webkit-box-shadow: 0px 1px 30px 0px rgba(55, 125, 162, 0.2);
    box-shadow: 0px 1px 30px 0px rgba(55, 125, 162, 0.2);
    position: absolute;
    text-align: center;
}

.payment_clients_area .payment_clients_inner .clients_item img {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.payment_clients_area .payment_clients_inner .clients_item.one {
    width: 120px;
    height: 120px;
    top: 170px;
}

.payment_clients_area .payment_clients_inner .clients_item.two {
    width: 180px;
    height: 180px;
    top: 325px;
    left: 150px;
}

.payment_clients_area .payment_clients_inner .clients_item.three {
    width: 128px;
    height: 128px;
    left: 245px;
}

.payment_clients_area .payment_clients_inner .clients_item.four {
    width: 142px;
    height: 142px;
    left: 450px;
    top: 400px;
}

.payment_clients_area .payment_clients_inner .clients_item.five {
    width: 110px;
    height: 110px;
    left: 621px;
    top: 260px;
}

.payment_clients_area .payment_clients_inner .clients_item.six {
    width: 100px;
    height: 100px;
    left: 425px;
    top: 180px;
}

.payment_clients_area .payment_clients_inner .clients_item.seven {
    width: 80px;
    height: 80px;
    left: 550px;
    top: 0px;
}

.payment_clients_area .payment_clients_inner .clients_item.eight {
    width: 95px;
    height: 95px;
    left: 745px;
    top: 35px;
}

.payment_testimonial_area {
    background: #fafbff;
    padding-top: 150px;
}

.payment_testimonial_area .testimonial_img {
    margin-bottom: -82px;
    position: relative;
    z-index: 1;
}

.payment_testimonial_info .testimonial_content {
    padding-left: 80px;
    position: relative;
    margin-top: 100px;
}

.payment_testimonial_info .testimonial_content .icon {
    font-size: 300px;
    color: #ebeff9;
    position: absolute;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    left: -35px;
    top: 0;
    font-family: "Poppins", sans-serif;
    height: 133px;
}

.payment_testimonial_info .testimonial_content p {
    line-height: 34px;
    margin-bottom: 45px;
}

.payment_testimonial_info .testimonial_content .vfx_author_description {
    color: #6781a9;
    font-weight: 300;
    padding-top: 5px;
}

/*================ payment_action_area css ===================*/

.payment_action_area {
    padding: 120px 0px 120px;
    position: relative;
}

.payment_action_content .pay_icon {
    margin: 0 auto 50px;
}

.payment_action_content h2 {
    font-size: 26px;
}

.payment_action_content p {
    line-height: 30px;
    font-size: 18px;
    margin: 25px 0px 60px;
}

.payment_action_content .pay_btn {
    margin: 0px;
}

.part_trusted_worldwide_logo_part,
.vfx_map_area,
.vfx_features_subscribe_area {
    background: #fbfcfe;
}

/*=========== subscribe_area css ==========*/

.vfx_features_subscribe_area .vfx_action_content {
    max-width: 970px;
    margin: 0 auto;
    border-radius: 6px;
    background-color: white;
    -webkit-box-shadow: 0px 22px 95px 0px rgba(55, 168, 237, 0.1);
    box-shadow: 0px 22px 95px 0px rgba(55, 168, 237, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 60px;
    margin-bottom: -50px;
    position: relative;
    z-index: 2;
}

.vfx_features_subscribe_area .vfx_action_content .gr_btn {
    min-width: 200px;
    padding: 20px 0px;
    text-align: center;
    color: #fff;
}

.vfx_features_subscribe_area .vfx_action_content .gr_btn:before {
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.vfx_features_subscribe_area .vfx_action_content .gr_btn:hover {
    color: #23b1fe;
}

.vfx_features_subscribe_area .vfx_action_content .gr_btn:hover:before {
    opacity: 1;
}

/*============ payment_subscribe_area css ===========*/

.payment_subscribe_info {
    border-radius: 6px;
    background-image: -moz-linear-gradient(50deg, #237efd 0%, #767cfd 64%, #8ca7ff 100%);
    background-image: -webkit-linear-gradient(50deg, #237efd 0%, #767cfd 64%, #8ca7ff 100%);
    background-image: -ms-linear-gradient(50deg, #237efd 0%, #767cfd 64%, #8ca7ff 100%);
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 60px;
    margin-bottom: -100px;
    position: relative;
}

.payment_subscribe_info .payment_subscribe_content {
    padding-top: 0px;
}

.payment_subscribe_info .payment_subscribe_content h2 {
    font: 600 26px "Poppins", sans-serif;
    color: #fff;
}

.payment_subscribe_info .payment_subscribe_content p {
    margin-bottom: 0;
    font-weight: 300;
    color: #fff;
}

.payment_subscribe_info .subscribe-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.payment_subscribe_info .subscribe-form .form-control {
    width: 430px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 45px;
    background: rgba(247, 248, 252, 0.059);
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    padding-left: 30px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.payment_subscribe_info .subscribe-form .form-control.placeholder {
    color: #d3d3f2;
}

.payment_subscribe_info .subscribe-form .form-control:-moz-placeholder {
    color: #d3d3f2;
}

.payment_subscribe_info .subscribe-form .form-control::-moz-placeholder {
    color: #d3d3f2;
}

.payment_subscribe_info .subscribe-form .form-control::-webkit-input-placeholder {
    color: #d3d3f2;
}

.payment_subscribe_info .subscribe-form .btn_four {
    background: #237efd;
    color: #fff;
    border: #5f51fd;
    margin-left: 20px;
}

.payment_subscribe_info .subscribe-form .btn_four:hover {
    background: #fff;
    border-color: #fff;
    color: #5f51fd;
}

/*========== testimonial_area css ==========*/

.testimonial_area_four {
    position: relative;
}

.testimonial_shap_img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.testimonial_title {
    position: relative;
    padding-bottom: 90px;
}

.testimonial_title h6 {
    font-size: 16px;
    color: #563bd1;
    font-family: "Poppins", sans-serif;
    font-style: italic;
}

.testimonial_title .owl-prev,
.testimonial_title .owl-next {
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 50px;
    border: 2px solid #e0e4ed;
    text-align: center;
    font-size: 14px;
    color: #677294;
    border-radius: 6px;
    line-height: 50px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    cursor: pointer;
    background: transparent;
}

.testimonial_title .owl-prev:hover,
.testimonial_title .owl-next:hover {
    background: #237efd;
    color: #fff;
    border-color: #237efd;
}

.testimonial_title .owl-next {
    left: 60px;
}

.f_new_startup_testimonial_info {
    height: 576px;
    position: relative;
}

.f_new_startup_testimonial_info:before {
    content: "";
    background: url("../img/new/testimonial_bg.png") no-repeat scroll center 0/contain;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.testimonial_slider_four {
    padding: 0px 70px;
}

.testimonial_slider_four .item {
    text-align: center;
    color: #fff;
}

.testimonial_slider_four .item .author_img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-block;
    overflow: hidden;
    margin-bottom: 25px;
}

.testimonial_slider_four .item img {
    width: 100%;
}

.testimonial_slider_four .item p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 40px;
    color: #fff;
}

.testimonial_slider_four .item h5 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
}

.testimonial_slider_four .item h6 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
    color: #fff;
}

.testimonial_area_five {
    position: relative;
}

.testimonial_area_five .f_new_startup_testimonial_info:before {
    background: url("../img/new/testimonial_bg.png") no-repeat scroll center 0/contain;
}

.testimonial_area_five .testimonial_title h6 {
    color: #26c4e5;
}

.testimonial_area_five .testimonial_title .owl-next:hover,
.testimonial_area_five .testimonial_title .owl-prev:hover {
    background: #26c4e5;
}

/*========== video_area css ============*/

.video_area {
    position: relative;
    z-index: 1;
}

.video_content {
    position: relative;
}

.video_leaf {
    position: absolute;
    left: 85px;
    top: -80px;
    background: url("../img/new/leaf.png") no-repeat scroll;
    z-index: -2;
}

.cup {
    position: absolute;
    right: 98px;
    bottom: 40px;
}

.video_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 4px;
    background: -webkit-linear-gradient(40deg, rgba(58, 43, 220, 0.9) 0%, rgba(23, 199, 189, 0.9) 100%), url("../img/new/video_bg.jpg") no-repeat;
    background: -o-linear-gradient(40deg, rgba(58, 43, 220, 0.9) 0%, rgba(23, 199, 189, 0.9) 100%), url("../img/new/video_bg.jpg") no-repeat;
    background: linear-gradient(50deg, rgba(58, 43, 220, 0.9) 0%, rgba(23, 199, 189, 0.9) 100%), url("../img/new/video_bg.jpg") no-repeat;
    background-size: cover;
    -webkit-box-shadow: 0px 50px 70px 0px rgba(0, 11, 40, 0.24);
    box-shadow: 0px 50px 70px 0px rgba(0, 11, 40, 0.24);
    height: 450px;
    max-width: 770px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.video_info h2 {
    position: absolute;
    top: 58%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 100px;
    opacity: 0.10;
    font-weight: 700;
    z-index: -1;
}

.video_icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: white;
    -webkit-box-shadow: 0px 20px 40px 0px rgba(1, 16, 58, 0.14);
    box-shadow: 0px 20px 40px 0px rgba(1, 16, 58, 0.14);
    text-align: center;
    line-height: 85px;
    font-size: 30px;
    position: relative;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    display: inline-block;
}

.video_icon:before,
.video_icon:after {
    content: "";
    width: 100%;
    height: 100%;
    border: 0.2px solid #fff;
    border-radius: 50%;
    opacity: 0.10;
    position: absolute;
    left: 0;
}

.video_icon:before {
    -webkit-transform: scale(2.5);
    -ms-transform: scale(2.5);
    transform: scale(2.5);
}

.video_icon:after {
    -webkit-transform: scale(3.8);
    -ms-transform: scale(3.8);
    transform: scale(3.8);
}

.video_icon i {
    color: #17c7bd;
    text-shadow: 0px 6px 25px rgba(16, 147, 140, 0.9);
    position: relative;
}

.video_icon i:after {
    width: 300%;
    height: 300%;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0px 1px 15px 1px rgba(255, 255, 255, 0.5);
    box-shadow: 0px 1px 15px 1px rgba(255, 255, 255, 0.5);
    content: "";
    -webkit-animation: pulse 2s infinite;
    -webkit-transform: scale(8);
    -ms-transform: scale(8);
    transform: scale(8);
    animation: pulse 2s infinite;
}

.video_icon:hover {
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
}

/*============ fact_area css ===========*/

.smtp_fact_area_part {
    background: #f9f7fd;
    position: relative;
}

.smtp_fact_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.smtp_fact_info .smtp_fact_item {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: #fff;
    -webkit-box-shadow: 0px 20px 40px 0px rgba(38, 59, 94, 0.1);
    box-shadow: 0px 20px 40px 0px rgba(38, 59, 94, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.smtp_fact_info .smtp_fact_item .counter {
    font-size: 50px;
    line-height: 44px;
    font-weight: 600;
    margin-bottom: 15px;
}

.smtp_fact_info .smtp_fact_item:nth-child(1) {
    border: 4px dotted rgba(84, 37, 228, 0.5);
}

.smtp_fact_info .smtp_fact_item:nth-child(2) {
    border: 4px dotted rgba(245, 43, 22, 0.5);
}

.smtp_fact_info .smtp_fact_item:nth-child(3) {
    border: 4px dotted rgba(0, 118, 201, 0.5);
}

.smtp_fact_info .smtp_fact_item:nth-child(4) {
    border: 4px dotted rgba(231, 25, 234, 0.5);
}

.smtp_fact_info .smtp_fact_item .counter.one {
    color: #5425e4;
}

.smtp_fact_info .smtp_fact_item .counter.two {
    color: #f52b16;
}

.smtp_fact_info .smtp_fact_item .counter.three {
    color: #0076c9;
}

.smtp_fact_info .smtp_fact_item .counter.four {
    color: #e719ea;
}

.smtp_fact_info .smtp_fact_item p {
    margin-bottom: 0;
    font-weight: 400;
    color: #6a7695;
    font-size: 16px;
}

.smtp_call_action_features_area {
    background: #2e3d62;
    position: relative;
    z-index: 1
}

.smtp_call_action_features_area .overlay_bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    z-index: -1;
    opacity: 0.1;
}

.smtp_call_features_action_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.smtp_call_features_action_text h2 {
    font-size: 38px;
    line-height: 52px;
    color: #fff;
    font-weight: 700;
}

.smtp_call_features_action_text .about_btn {
    border: 2px solid #fff;
}

/*================= app_screenshot_area css =============*/

.app_screenshot_area {
    overflow: hidden;
}

.app_screenshot_area .vfx_app_screen_info {
    margin-left: -20px;
    margin-right: -20px;
    margin-top: -10px;
}

.app_screenshot_area .vfx_app_screenshot_slider .item {
    padding: 10px 20px 20px;
}

.app_screenshot_area .vfx_app_screenshot_slider .item .vfx_screenshot_img {
    border-radius: 0px;
}

.app_screenshot_area .vfx_app_screenshot_slider .item .vfx_screenshot_img img {
    max-width: 100%;
    border-radius: 10px;
}

.app_screenshot_area .vfx_app_screenshot_slider .owl-dots {
    margin-top: 10px;
}

.app_screenshot_area .vfx_app_screenshot_slider .owl-dots .owl-dot span {
    background: #cfcfe7;
    border: 0px;
}

.app_screenshot_area .vfx_app_screenshot_slider .owl-dots .owl-dot.active span {
    background: #237efd;
}

.app_screenshot_area .vfx_app_screenshot_slider .owl-prev,
.app_screenshot_area .vfx_app_screenshot_slider .owl-next {
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 50px;
    border: 1px solid #d9e1ea;
    background: #fbfbfd;
    border-radius: 25px;
    font-size: 20px;
    line-height: 50px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    cursor: pointer;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.app_screenshot_area .vfx_app_screenshot_slider .owl-prev:hover,
.app_screenshot_area .vfx_app_screenshot_slider .owl-next:hover {
    background: #4069eb;
    border-color: #4069eb;
    color: #fff;
}

.app_screenshot_area .vfx_app_screenshot_slider .owl-prev {
    left: calc(50% - 60px);
}

.app_screenshot_area .vfx_app_screenshot_slider .owl-next {
    right: calc(50% - 60px);
}

/*=============== get_started_area_css ===============*/

.get_started_area {
    background-image: -moz-linear-gradient(140deg, #5c28c5 0%, #355cd5 100%);
    background-image: -webkit-linear-gradient(140deg, #5c28c5 0%, #355cd5 100%);
    background-image: -ms-linear-gradient(140deg, #5c28c5 0%, #355cd5 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.get_started_area .shap {
    opacity: 0.03;
}

.get_started_area .shap.one {
    background: white;
    top: -290px;
    left: -50px;
}

.get_started_area .shap.two {
    background: white;
    top: auto;
    left: 47%;
    bottom: -300px;
}

.get_content h3 {
    font-size: 24px;
    color: #fff;
}

.get_content h2,
.get_content p {
    color: #fff;
}

.get_content .app_btn {
    font: 500 16px "Poppins", sans-serif;
    padding: 12px 34px;
    border-color: #fff;
    background: #fff;
    line-height: 27px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    min-width: 200px;
    text-align: center;
}

.get_content .app_btn.app_btn_one {
    color: #4069eb;
    vertical-align: middle;
}

.get_content .app_btn.app_btn_one img {
    padding-right: 12px;
}

.get_content .app_btn.app_btn_one:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.get_content .app_btn.app_btn_two {
    background: rgba(255, 255, 255, 0.1);
    vertical-align: middle;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: 20px;
}

.get_content .app_btn.app_btn_two i {
    font-size: 25px;
    padding-right: 10px;
    vertical-align: sub;
}

.get_content .app_btn.app_btn_two:hover {
    color: #4069eb;
    background: #fff;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(12, 0, 46, 0.1);
    box-shadow: 0px 20px 30px 0px rgba(12, 0, 46, 0.1);
}

.get_started_three .startup_tab_img .web_img,
.get_started_three .startup_tab_img .phone_img {
    opacity: 1;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}

.get_started_three .get_btn_info {
    margin-top: 50px;
}

.get_started_three .get_btn_info .get_btn_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 110px;
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.get_started_three .get_btn_info .get_btn_item .get_icon {
    height: 100px;
    width: 100px;
    line-height: 100px;
    font-size: 45px;
    text-align: center;
    border-radius: 3px;
    background: #fff1f3;
    color: #ff738b;
    margin-right: 25px;
}

.get_started_three .get_btn_info .get_btn_item h3 {
    font-size: 20px;
    line-height: 34px;
    color: #051441;
    font-weight: 400;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.get_started_three .get_btn_info .get_btn_item .icon_two {
    background: #f1f5ff;
}

.get_started_three .get_btn_info .get_btn_item .icon_two .small {
    color: #46d779;
    font-size: 25px;
    position: relative;
    top: -25px;
    left: 6px;
    padding-top: 0;
}

.get_started_three .get_btn_info .get_btn_item .icon_two i {
    color: #73a1ff;
    padding-top: 30px;
    display: inline-block;
}

/*===================== vfx_job_listing_area css ======================*/

.vfx_job_listing_area .sec_title h2 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
}

.vfx_job_listing_area .sec_title h2::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    right: auto;
    margin: 0;
    position: absolute;
    bottom: -5px;
    width: 60px;
    border-radius: 30px;
}

.vfx_job_listing_area .sec_title {
    max-width: 100%;
}

.vfx_job_listing_area .app_service_info {
    margin-bottom: -30px;
}

.job_listing {
    margin-top: 80px;
}

.job_listing .job_list_tab {
    border-bottom: 2px solid #e7e7f6;
}

.job_listing .job_list_tab .list_item_tab {
    font: 400 16px/26px "Poppins", sans-serif;
    color: #454b5e;
    padding: 10px 20px 10px;
    border: 0px;
    border-radius: 10px 10px 0 0;
    position: relative;
    display: inline-block;
    cursor: pointer;
    background: #e1e3ed;
}

.job_listing .job_list_tab .list_item_tab:before {
    content: "";
    width: 0;
    height: 2px;
    background: #237efd;
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.job_listing .job_list_tab .list_item_tab.active,
.job_listing .job_list_tab .list_item_tab:hover {
    color: #ffffff;
    background: #237efd;
}

.job_listing .job_list_tab .list_item_tab.active:before {
    width: 100%;
    right: auto;
    left: 0;
}

.job_listing .job_list_tab .list_item_tab+.list_item_tab {
    margin-left: 10px;
}

.job_listing .listing_tab {
    margin-bottom: 0px;
    margin-top: 50px;
    overflow: hidden;
}

.job_listing .listing_tab .item {
    width: 100%;
}

.job_listing .listing_tab .list_item {
    display: table;
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0px 2px 8px 0px rgba(12, 0, 46, 0.04);
    box-shadow: 0px 2px 8px 0px rgba(12, 0, 46, 0.04);
    padding: 20px 25px 20px 20px;
    margin-bottom: 30px;
    cursor: pointer;
    border: 2px solid #e7e7f6;
    border-radius: 6px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.job_listing .listing_tab .list_item figure {
    float: left;
    width: 70px;
    margin-bottom: 0px;
    margin-right: 20px;
}

.job_listing .listing_tab .list_item figure a,
.job_listing .listing_tab .list_item figure img {
    float: left;
    width: 100%;
}

.job_listing .listing_tab .list_item .vfx_joblisting_text {
    display: table-cell;
    vertical-align: middle;
    border-left: 1px solid #eeebf7;
    width: 100%;
    padding-left: 25px;
}

.job_listing .listing_tab .list_item .vfx_joblisting_text .vfx_job_list_table {
    display: table;
    width: 100%;
}

.job_listing .listing_tab .list_item .vfx_joblisting_text .vfx-jobsearch-table-cell {
    display: table-cell;
    vertical-align: middle;
    width: 75%;
    line-height: 46px;
}

.job_listing .listing_tab .list_item .vfx_joblisting_text h4 a {
    font-size: 20px;
    margin-bottom: 5px;
    display: inline-block;
}

.job_listing .listing_tab .list_item .vfx_joblisting_text h4 a:hover {
    color: #237efd;
}

.job_listing .listing_tab .list_item .vfx_joblisting_text ul {
    margin-bottom: 0px;
}

.job_listing .listing_tab .list_item .vfx_joblisting_text ul li {
    float: left;
    font: 400 14px/15px "Poppins", sans-serif;
    color: #677294;
    padding: 0px 10px;
    border-left: 2px solid #aeb3c3;
}

.job_listing .listing_tab .list_item .vfx_joblisting_text ul li:first-child {
    padding-left: 0px;
    border: none;
}

.job_listing .listing_tab .list_item .vfx_joblisting_text ul li.p_color {
    color: #237efd;
}

.job_listing .listing_tab .list_item .vfx_joblisting_text ul li.g_color {
    color: #61bd17;
}

.job_listing .listing_tab .list_item .vfx_joblisting_text ul li.gold_color {
    color: #d7ad1e;
}

.job_listing .listing_tab .list_item .vfx_joblisting_text .vfx-jobsearch-job-userlist {
    float: right;
}

.job_listing .listing_tab .list_item .vfx_joblisting_text .vfx-jobsearch-job-userlist .apply_btn {
    font: 400 14px/36px "Poppins", sans-serif;
    color: #5c6789;
    border: 2px solid #e7e7f6;
    border-radius: 3px;
    display: inline-block;
    padding: 4px 22px;
    background: #f9f9fc;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.job_listing .listing_tab .list_item .vfx_joblisting_text .vfx-jobsearch-job-userlist .apply_btn:hover {
    background: #237efd;
    border-color: #237efd;
    color: #fff;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.job_listing .listing_tab .list_item .vfx_joblisting_text .vfx-jobsearch-job-userlist .like-btn {
    font-size: 18px;
    line-height: 46px;
    float: right;
    margin-left: 20px;
}

.job_listing .listing_tab .list_item .vfx_joblisting_text .vfx-jobsearch-job-userlist .like-btn a {
    display: inline-block;
    color: #5c6789;
    background: #f9f9fc;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 52px;
    border-radius: 4px;
    border: 2px solid #e7e7f6;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.job_listing .listing_tab .list_item .vfx_joblisting_text .vfx-jobsearch-job-userlist .like-btn a:hover {
    color: #fff;
    background: #237efd;
    border: 2px solid #237efd;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.job_listing .listing_tab .list_item:hover {
    -webkit-box-shadow: 0px 25px 30px -8px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 25px 30px -8px rgba(12, 0, 46, 0.06);
}

.job_listing .pagination {
    display: block;
}

.job_listing .pagination .nav-links .page-numbers {
    width: 40px;
    height: 40px;
    border: 2px solid #e7e7f6;
    display: inline-block;
    text-align: center;
    line-height: 37px;
    color: #677294;
    font-size: 16px;
    border-radius: 4px;
    background-color: #fbfbfd;
    margin: 0px 3px;
}

.job_listing .pagination .nav-links .page-numbers i {
    font-size: 14px;
}

.job_listing .pagination .nav-links .page-numbers.current {
    background: #237efd;
    color: #fff;
    border-radius: 6px;
}

/*============== job_details_area css =============*/

.details_content .f_size_22 {
    font-size: 22px;
}

.details_content .sec_title h3,
.details_content .vfx_job_deatails_content h3 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
}

.details_content .sec_title h3::before,
.details_content .vfx_job_deatails_content h3::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    right: auto;
    margin: 0;
    position: absolute;
    bottom: -5px;
    width: 60px;
    border-radius: 30px;
}

.details_content .btn_three {
    min-width: 150px;
    text-align: center;
    background: #237efd;
    border-color: #237efd;
    color: #fff;
}

.details_content .btn_three:hover {
    color: #fff;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(61, 100, 244, 0.16);
    box-shadow: 0px 20px 30px 0px rgba(61, 100, 244, 0.16);
}

.vfx_job_deatails_content {
    padding-bottom: 40px;
}

.vfx_job_deatails_content ul li {
    position: relative;
    padding-left: 35px;
    font-weight: 400;
    font-size: 15px;
    color: #677294;
    margin-bottom: 10px;
}

.vfx_job_deatails_content ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #237efd;
}

.vfx_job_deatails_content:nth-child(3) {
    border-bottom: 1px solid #eeebf6;
}

.job_info {
    background-color: #237efd;
    border-radius: 6px;
    -webkit-box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.06);
    padding: 25px 30px;
}

.job_info .info_head {
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 15px;
    border-radius: 3px;
}

.job_info .info_head i {
    font-size: 40px;
    color: #9979f7;
    text-shadow: 0px 14px 30px rgba(94, 44, 237, 0.4);
    padding-bottom: 0;
    float: left;
    margin-right: 20px;
}

.job_info .info_head h6 {
    font-size: 20px;
    display: inline-block;
    margin-top: 10px;
    color: #ffffff;
}

.job_info .info_item {
    position: relative;
    padding-left: 60px;
    margin-top: 25px;
}

.job_info .info_item i {
    background: #ffffff;
    color: #237efd;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 30px;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 0px;
}

.job_info .info_item h6 {
    font-size: 18px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    margin-bottom: 5px;
}

.job_info .info_item p {
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 400;
    color: #ececec;
}

/*========== job_apply_area css =========*/

.apply_form .form-group {
    margin-bottom: 20px;
}

.job_apply .sec_title h3 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.job_apply .sec_title h3::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    right: auto;
    margin: 0;
    position: absolute;
    bottom: -5px;
    width: 60px;
    border-radius: 30px;
}

.apply_form input[type="text"],
.apply_form textarea,
.apply_form .selectpickers {
    border-radius: 4px;
    background-color: white;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    font: 400 15px/50px "Poppins", sans-serif;
    color: #9ca3b9;
    width: 100%;
    height: 54px;
    padding-left: 20px;
    border: 2px solid #ebeef4;
}

.apply_form input[type="text"]:focus,
.apply_form textarea:focus,
.apply_form .selectpickers:focus {
    -webkit-box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.06);
    border-color: #68a6fe;
    outline: none;
}

.apply_form input[type="text"].placeholder,
.apply_form textarea.placeholder,
.apply_form .selectpickers.placeholder {
    color: #9ca3b9;
}

.apply_form input[type="text"]:-moz-placeholder,
.apply_form textarea:-moz-placeholder,
.apply_form .selectpickers:-moz-placeholder {
    color: #9ca3b9;
}

.apply_form input[type="text"]::-moz-placeholder,
.apply_form textarea::-moz-placeholder,
.apply_form .selectpickers::-moz-placeholder {
    color: #9ca3b9;
}

.apply_form input[type="text"]::-webkit-input-placeholder,
.apply_form textarea::-webkit-input-placeholder,
.apply_form .selectpickers::-webkit-input-placeholder {
    color: #9ca3b9;
}

.apply_form textarea {
    height: 130px;
}

.apply_form .selectpickers {
    width: 100%;
}

.apply_form .upload_box {
    background: #ffffff;
    width: 100%;
    border: 2px solid #ebeef4;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    font: 400 15px/26px "Poppins", sans-serif;
    color: #9ca3b9;
    position: relative;
    border-radius: 6px;
    padding: 30px 20px;
}

.apply_form .upload_box .upload_image_item {
    position: absolute;
    right: 30px;
    top: 32px;
}

.apply_form .upload_box input[type="file"] {
    font: 400 15px/26px "Poppins", sans-serif;
    color: #9ca3b9;
    display: block;
    margin-top: 45px;
}

.apply_form .upload_box input[type="file"]:focus {
    outline: none;
}

.apply_form p {
    font: 400 15px/28px "Poppins", sans-serif;
    color: #677294;
}

.apply_form p a {
    color: #222d39;
}

.apply_form p a:hover {
    color: #237efd;
}

.apply_form .btn_three {
    font-size: 14px;
    font-weight: 500;
    background: #237efd;
    padding: 14px 37px;
    border-radius: 3px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    cursor: pointer;
    margin-top: 20px;
}

.apply_form .btn_three:hover {
    color: #fff;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(61, 100, 244, 0.16);
    box-shadow: 0px 20px 30px 0px rgba(61, 100, 244, 0.16);
}

/*============== vfx_faq_area_css =============*/

.vfx_faq_area .tab-pane h3 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 8px;
}

.vfx_faq_area .tab-pane h3::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    right: auto;
    margin: 0;
    position: absolute;
    bottom: -5px;
    width: 60px;
    border-radius: 30px;
}

.faq_tab {
    border: 1px solid #f4f4f9;
    background-color: white;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    padding: 50px 40px;
}

.faq_tab .nav-tabs {
    border: 0px;
    margin-bottom: 0px;
    display: block;
}

.faq_tab .nav-item {
    margin: 0px;
}

.faq_tab .nav-item .nav-link {
    font: 400 16px/22px "Poppins", sans-serif;
    color: #677294;
    padding: 0px;
    border: 0px;
    border-radius: 0px;
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}

.faq_tab .nav-item .nav-link:before {
    content: "";
    width: 0;
    height: 1px;
    background: #237efd;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: width 0.2s linear;
    -o-transition: width 0.2s linear;
    transition: width 0.2s linear;
}

.faq_tab .nav-item .nav-link.active {
    color: #237efd;
}

.faq_tab .nav-item .nav-link.active:before {
    width: 100%;
}

.faq_content .tab-pane .card {
    border: 0px;
    border-radius: 0px;
    background: transparent;
    border-bottom: 1px solid #e4e0ee;
}

.faq_content .tab-pane .card .card-header {
    padding: 0px;
    border: 0px;
    background: transparent;
}

.faq_content .tab-pane .card .card-header .btn {
    color: #237efd;
    display: block;
    width: 100%;
    text-align: left;
    font: 500 18px/26px "Poppins", sans-serif;
    padding: 20px 30px 20px 0px;
    position: relative;
    white-space: normal;
}

.faq_content .tab-pane .card .card-header .btn i {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
    font-size: 20px;
    background: transparent;
    padding: 6px;
    border-radius: 30px;
    border: 2px solid #68a6fe;
    color: #68a6fe;
}

.faq_content .tab-pane .card .card-header .btn i+i {
    display: block;
}

.faq_content .tab-pane .card .card-header .btn.collapsed {
    color: #576370;
}

.faq_content .tab-pane .card .card-header .btn.collapsed i {
    display: block;
}

.faq_content .tab-pane .card .card-header .btn.collapsed i+i {
    display: none;
}

.faq_content .tab-pane .card .card-body {
    padding: 0px 0px 20px;
    font: 400 15px/26px "Poppins", sans-serif;
    color: #677294;
}

/*============= vfx_portfolio_area_css ============*/

.vfx_portfolio_area {
    overflow: hidden;
}

.vfx_portfolio_area .price_btn {
    border-color: #237efd;
    color: #237efd;
    background: transparent;
    margin-top: 50px;
    line-height: 48px;
    padding: 0px 30px;
}

.vfx_portfolio_area .price_btn:hover {
    background: #237efd;
    color: #fff;
}

.portfolio_filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.portfolio_filter .vfx_work_portfolio_item {
    font: 400 16px/22px "Poppins", sans-serif;
    color: #677294;
    background: #ffffff;
    border: 2px solid #f6f7fa;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    border-radius: 3px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    position: relative;
    cursor: pointer;
}

.portfolio_filter .vfx_work_portfolio_item:before {
    content: "";
    width: 0;
    height: 2px;
    bottom: -2px;
    border-radius: 20px;
    background: transparent;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    border: 2px solid #237efd;
    -webkit-transition: width 0.3s linear;
    -o-transition: width 0.3s linear;
    transition: width 0.3s linear;
}

.portfolio_filter .vfx_work_portfolio_item.active,
.portfolio_filter .vfx_work_portfolio_item:hover {
    color: #237efd;
}

.portfolio_filter .vfx_work_portfolio_item.active:before,
.portfolio_filter .vfx_work_portfolio_item:hover:before {
    width: 100%;
    background: #237efd;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.portfolio_filter .vfx_work_portfolio_item+.vfx_work_portfolio_item {
    margin-left: 20px;
}

.portfolio_filter_blue .vfx_work_portfolio_item.active,
.portfolio_filter_blue .vfx_work_portfolio_item:hover {
    color: #26c4e5;
}

.portfolio_filter_blue .vfx_work_portfolio_item.active:before,
.portfolio_filter_blue .vfx_work_portfolio_item:hover:before {
    width: 100%;
    background: #26c4e5;
}

.pr_btn {
    margin-top: 70px;
    background: transparent;
    color: #26c4e5;
    border-color: #26c4e5;
}

.pr_btn:hover {
    background: #26c4e5;
    color: #fff;
}

.vfx_portfolio_gallery .portfolio_item .vfx_portfolio_img {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    text-align: center;
    border-radius: 10px;
}

.vfx_portfolio_gallery .portfolio_item .vfx_portfolio_img img {
    max-width: 100%;
    width: 100%;
}

.mfp-figure img {
    border-radius: 10px;
    padding: 0;
    border: 8px solid rgba(0, 0, 0, 0.2);
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    right: 0;
    padding-right: 6px;
    top: -35px;
}

.mfp-bottom-bar {
    margin-top: 5px;
    left: -10px;
}

.vfx_portfolio_gallery .portfolio_item .vfx_portfolio_img .img_rounded {
    border-radius: 6px;
}

.vfx_portfolio_gallery .portfolio_item .vfx_portfolio_img .hover_content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(44, 44, 57, 0.7);
    opacity: 0;
    border: 12px solid rgba(0, 0, 0, 0.3);
    -webkit-transition: opacity 300ms linear;
    -o-transition: opacity 300ms linear;
    transition: opacity 300ms linear;
}

.portfolio_details_gallery img {
    border-radius: 10px;
}

.vfx_portfolio_gallery .portfolio_item .vfx_portfolio_img .hover_content .img_popup {
    width: 40px;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    right: 33px;
    bottom: 30px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.vfx_portfolio_gallery .portfolio_item .vfx_portfolio_img .hover_content .img_popup:hover {
    background: #fff;
    color: #282835;
}

.vfx_portfolio_gallery .portfolio_item .vfx_portfolio_img .hover_content .vfx-portfolio-description {
    top: 10px;
    padding-left: 35px;
    padding-bottom: 0px;
    width: 100%;
    text-align: left;
}

.vfx_portfolio_gallery .portfolio_item .vfx_portfolio_img .hover_content .vfx-portfolio-description h3 {
    -webkit-transform: translateY(25px);
    -ms-transform: translateY(25px);
    transform: translateY(25px);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    color: #fff;
}

.vfx_portfolio_gallery .portfolio_item .vfx_portfolio_img .hover_content .vfx-portfolio-description .links {
    overflow: hidden;
    color: #fff;
}

.vfx_portfolio_gallery .portfolio_item .vfx_portfolio_img .hover_content .vfx-portfolio-description .links a {
    -webkit-transform: translateY(25px);
    -ms-transform: translateY(25px);
    transform: translateY(25px);
    color: #fff;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.vfx_portfolio_gallery .portfolio_item .vfx_portfolio_img .hover_content .vfx-portfolio-description .links a:before {
    background: #fff;
}

.vfx_portfolio_gallery .portfolio_item .vfx_portfolio_img .hover_content.h_content_two .img_popup {
    right: 35px;
    bottom: 35px;
}

.vfx_portfolio_gallery .portfolio_item .vfx_portfolio_img .hover_content.h_content_two .vfx-portfolio-description {
    padding-left: 30px;
    padding-top: 0px;
}

.vfx_portfolio_gallery .portfolio_item .vfx_portfolio_img .hover_content.h_content_two .vfx-portfolio-description .links a {
    font-size: 14px;
}

.vfx_portfolio_gallery .portfolio_item .vfx_portfolio_img:hover .hover_content {
    opacity: 1;
    border-radius: 10px;
}

.vfx_portfolio_gallery .portfolio_item .vfx_portfolio_img:hover .hover_content .img_popup {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.vfx_portfolio_gallery .portfolio_item .vfx_portfolio_img:hover .hover_content .vfx-portfolio-description h3,
.vfx_portfolio_gallery .portfolio_item .vfx_portfolio_img:hover .hover_content .vfx-portfolio-description a {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.vfx-portfolio-description .vfx-portfolio-title {
    overflow: hidden;
    display: inline-block;
}

.vfx-portfolio-description h3 {
    margin-top: 22px;
    margin-bottom: 0px;
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
    color: #282835;
}

.vfx-portfolio-description h3:hover {
    color: #237efd;
}

.vfx-portfolio-description .links {
    overflow: hidden;
}

.vfx-portfolio-description .links a {
    font-size: 15px;
    color: #677294;
    font-weight: 400;
    position: relative;
    display: inline-block;
    margin-right: 8px;
    -webkit-transition: color 0.01s linear;
    -o-transition: color 0.01s linear;
    transition: color 0.01s linear;
}

.vfx-portfolio-description .links a:before {
    content: "";
    width: 0;
    height: 2px;
    bottom: 0;
    background: #237efd;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: width 0.3s linear;
    -o-transition: width 0.3s linear;
    transition: width 0.3s linear;
}

.vfx-portfolio-description .links a:hover {
    color: #237efd;
}

.vfx-portfolio-description .links a:hover:before {
    width: 100%;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.vfx_portfolio_fullwidth_area {
    padding-top: 100px;
    padding-bottom: 120px;
}

/*============== portfolio_details_area css ==============*/

.p_category_item .social_icon,
.icon .social_icon {
    padding-top: 8px;
}

.portfolio_details_info h5,
.portfolio_details_gallery_two h5 {
    position: relative;
    padding-bottom: 10px;
}

.portfolio_details_info h5::before,
.portfolio_details_gallery_two h5::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    margin: 8px 0 10px;
    position: absolute;
    bottom: -10px;
    width: 45px;
    border-radius: 30px;
}

.p_category_item .social_icon a,
.icon .social_icon a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
    line-height: 43px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin-right: 5px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    color: #fff;
}

.p_category_item .social_icon a:nth-child(1),
.icon .social_icon a:nth-child(1) {
    background: #4779de;
}

.p_category_item .social_icon a:nth-child(2),
.icon .social_icon a:nth-child(2) {
    background: #e43e30;
}

.p_category_item .social_icon a:nth-child(3),
.icon .social_icon a:nth-child(3) {
    background: #1da1f3;
}

.p_category_item .social_icon a:hover,
.icon .social_icon a:hover {
    -webkit-box-shadow: 0px 5px 12px 2px rgba(0, 11, 40, 0.2);
    box-shadow: 0px 5px 12px 2px rgba(0, 11, 40, 0.2);
}

.portfolio_pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.portfolio_pagination .prev,
.portfolio_pagination .next {
    font-size: 14px;
    font-weight: 400;
    color: #9ca3b9;
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

.portfolio_pagination .prev:hover,
.portfolio_pagination .next:hover {
    color: #222d39;
}

.portfolio_pagination .prev i {
    padding-right: 8px;
}

.portfolio_pagination .next i {
    padding-left: 8px;
}

.pr_slider .owl-prev,
.pr_slider .owl-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    background: transparent;
    border: 0px;
    background: transparent;
    padding: 0px;
    font-size: 20px;
    color: #677294;
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
    cursor: pointer;
}

.pr_slider .owl-prev:hover,
.pr_slider .owl-next:hover {
    background: #f9f9f9;
    color: #237efd;
    border: 4px solid rgba(0, 0, 0, 0.15);
}

.pr_slider .owl-prev {
    left: 40px;
    background: #237efd;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    line-height: 48px;
    border: 4px solid rgba(0, 0, 0, 0.2);
}

.pr_slider .owl-next {
    right: 40px;
    background: #237efd;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    line-height: 48px;
    border: 4px solid rgba(0, 0, 0, 0.2);
}

.p_details_three .portfolio_category {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 50px;
}

.p_details_three .portfolio_category .p_category_item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.p_details_three .portfolio_pagination {
    margin-top: 190px;
}

.p_details_three .icon {
    margin-top: 120px;
}

/*============== map_area css ==============*/

.map_area {
    height: 552px;
    position: relative;
}

.map_area iframe {
    height: 100%;
    width: 100%;
    border: 0px;
    pointer-events: none;
    margin: 0px;
    padding: 0px;
}

.app_contact_info {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 600px;
    background-color: white;
    -webkit-box-shadow: 0px 40px 50px 0px rgba(12, 0, 46, 0.2);
    box-shadow: 0px 40px 50px 0px rgba(12, 0, 46, 0.2);
    padding: 45px 45px 15px;
}

.app_contact_info .triangle {
    position: absolute;
    width: 15px;
    height: 15px;
    right: 55px;
    background: #fff;
    bottom: -7px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.app_contact_info .info_item {
    padding-left: 55px;
    position: relative;
    margin-bottom: 35px;
}

.app_contact_info .info_item i {
    position: absolute;
    left: 0;
    font-size: 30px;
    color: #237efd;
    background-image: -moz-linear-gradient(0deg, #237efd 0%, #a485fd 100%);
    background-image: -webkit-linear-gradient(0deg, #237efd 0%, #a485fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 0px;
    left: 0;
}

.app_contact_info .info_item h6 {
    color: #051441;
    margin-bottom: 5px;
}

.app_contact_info .info_item p,
.app_contact_info .info_item a {
    color: #677294;
    line-height: 24px;
    margin-bottom: 0px;
}

.app_contact_info .info_item a:hover {
    color: #4069eb;
}

/*================== vfx_contact_info_area css ================*/

.vfx_contact_info_item {
    border-bottom: 1px solid #eeebf6;
    padding-bottom: 20px;
}

.vfx_contact_info_item h6 {
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 30px;
}

.vfx_contact_info_item h6::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    right: auto;
    margin: 0;
    position: absolute;
    bottom: -5px;
    width: 50px;
    border-radius: 30px;
}

.vfx_contact_info_item p {
    color: #677294;
    margin-bottom: 8px;
}

.vfx_contact_info_item p span:first-child {
    padding-left: 0;
}

.vfx_contact_info_item a {
    color: #677294;
    padding-left: 3px;
    display: inline-block;
}

.vfx_contact_info_item a:hover {
    color: #237efd;
}

.vfx_contact_info_item+.vfx_contact_info_item {
    border: 0px;
    margin-top: 33px;
}

.mapbox {
    height: 380px;
    -webkit-box-shadow: 0px 3px 4px 0px rgba(12, 0, 46, 0.05);
    box-shadow: 0px 3px 4px 0px rgba(12, 0, 46, 0.05);
    border: 2px solid #fff;
    border-radius: 10px;
}

#mapBox {
    height: 100% !important;
    border-radius: 10px;
}

.text_box {
    margin-bottom: 30px;
}

.text_box input[type="text"],
.text_box textarea,
.text_box input[type="password"],
.text_box input[type="email"] {
    font: 400 15px/54px "Poppins", sans-serif;
    color: #222d39;
    height: 54px;
    border-radius: 4px;
    background-color: white;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    width: 100%;
    border: 2px solid #ebeef4;
    padding-left: 20px;
}

.text_box input[type="text"].placeholder,
.text_box textarea.placeholder,
.text_box input[type="password"].placeholder,
.text_box input[type="email"].placeholder {
    color: #9ca3b9;
}

.text_box input[type="text"]:-moz-placeholder,
.text_box textarea:-moz-placeholder,
.text_box input[type="password"]:-moz-placeholder,
.text_box input[type="email"]:-moz-placeholder {
    color: #9ca3b9;
}

.text_box input[type="text"]::-moz-placeholder,
.text_box textarea::-moz-placeholder,
.text_box input[type="password"]::-moz-placeholder,
.text_box input[type="email"]::-moz-placeholder {
    color: #9ca3b9;
}

.text_box input[type="text"]::-webkit-input-placeholder,
.text_box textarea::-webkit-input-placeholder,
.text_box input[type="password"]::-webkit-input-placeholder,
.text_box input[type="email"]::-webkit-input-placeholder {
    color: #9ca3b9;
}

.text_box input[type="text"]:focus,
.text_box textarea:focus,
.text_box input[type="password"]:focus,
.text_box input[type="email"]:focus {
    border-color: #68a6fe;
    -webkit-box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.06);
    outline: none;
}

.text_box textarea {
    height: 220px;
}

.vfx_contact_form h2 {
    position: relative;
    padding-bottom: 5px;
}

.vfx_contact_form h2::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    right: auto;
    margin: 0;
    position: absolute;
    bottom: -5px;
    width: 60px;
    border-radius: 30px;
}

.vfx_contact_form_box .btn_three {
    min-width: 180px;
    text-align: center;
    background: #237efd;
    border-color: #237efd;
    margin-top: 0px;
}

.vfx_contact_form_box .btn_three:hover {
    background: transparent;
    color: #237efd;
}

.mapbox2 {
    height: 440px;
    border-top: 10px solid #fff;
}

/*============= login_area css =============*/

.login_area {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.login_area .vfx_login_info {
    padding: 160px 100px 160px 0px;
}

.vfx_login_info h2 {
    position: relative;
}

.vfx_login_info h2:before {
    background: #237efd;
    content: "";
    height: 3px;
    border-radius: 8px;
    width: 50px;
    position: absolute;
    bottom: -12px;
}

.login_area .vfx_login_info:before {
    content: "";
    position: absolute;
    width: 2500px;
    right: 0;
    height: 100%;
    background: #fbfbfb;
    top: 0;
    z-index: -1;
}

.login_area .vfx_login_info p a {
    color: #677294;
}

.login-form .text_box .text_c {
    color: #161341;
    font-size: 14px;
    margin-bottom: 10px;
}

.login-form .text_box input[type="password"] {
    padding: 10px 20px;
    line-height: 50px;
}

.login-form .extra {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font: 400 14px/30px "Poppins", sans-serif;
    margin-top: 25px;
}

.login-form .extra a {
    color: #F12C15;
    font-weight: 400;
}

.login-form .extra a:hover {
    color: #161341;
}

.login-form .extra p {
    font-size: 14px;
    margin-bottom: 0;
}

.login-form .extra p a {
    color: #F12C15;
    font-weight: 400;
}

.login-form .extra p a:hover {
    color: #161341;
}

.login-form .extra .checkbox label {
    margin-bottom: 0px;
    color: #161341;
}

.login-form .extra .checkbox input[type="checkbox"] {
    position: relative;
    width: 18px;
    height: 18px;
    top: 4px;
    margin-right: 10px;
}

.login-form .extra .checkbox input[type="checkbox"]:before {
    content: "";
    display: block;
    position: absolute;
    width: 18px;
    height: 18px;
    top: 0px;
    left: 0;
    border: 2px solid #237efd;
    border-radius: 4px;
    background-color: white;
}

.login-form .extra .checkbox input[type="checkbox"]:checked:after {
    content: "";
    display: block;
    width: 5px;
    height: 11px;
    border: solid #237efd;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 2px;
    left: 7px;
}

.login-form .extra .vfx-forgot-password a {
    color: #677294;
}

.login-form .btn_three {
    width: 100%;
    background: #237efd;
    color: #fff;
    margin-top: 40px;
}

.login-form .btn_three:hover {
    -webkit-box-shadow: 0px 20px 30px 0px rgba(61, 100, 244, 0.16);
    box-shadow: 0px 20px 30px 0px rgba(61, 100, 244, 0.16);
}

.login-form .alter-login {
    font: 400 15px/26px "Poppins", sans-serif;
    color: #9ca3b9;
}

.login-form .alter-login a {
    color: #237efd;
    display: inline-block;
    margin-left: 6px;
}

.login_img {
    padding-left: 100px;
    margin-right: -250px;
}

.login_img img {
    max-width: 100%;
}

.vfx_sign_info {
    border: 10px solid #fff;
    background: #fbfbfd;
    padding: 40px 30px;
    width: 450px;
    border-radius: 40px;
    margin: 0 auto;
    -webkit-box-shadow: 0px 50px 100px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 50px 100px 0px rgba(0, 0, 0, 0.1);
}

.vfx_sign_info .vfx_sign_info_content h2 {
    font-size: 30px;
    color: #677294;
}

.vfx_sign_info .vfx_sign_info_content ul li {
    font: 400 16px/34px "Poppins", sans-serif;
    color: #677294;
}

.vfx_sign_info .vfx_sign_info_content ul li i {
    color: #237efd;
    margin-right: 10px;
}

.vfx_sign_info .login-form .text_box {
    margin-bottom: 20px;
}

.vfx_sign_info .lead-text {
    font: 400 14px/40px "Poppins", sans-serif;
    color: #677294;
    padding-right: 20px;
}

.vfx_sign_info .social_tag li {
    display: inline-block;
}

.vfx_sign_info .social_tag li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: block;
    line-height: 44px;
    color: #fff;
    font-size: 13px;
    text-align: center;
    margin-left: 7px;
}

.vfx_sign_info .social_tag li:first-child a {
    background: #4779de;
}

.vfx_sign_info .social_tag li:nth-child(2) a {
    background: #1da1f3;
}

.vfx_sign_info .social_tag li:nth-child(3) a {
    background: #e43e30;
}

.vfx_sign_info .social_tag li:nth-child(4) a {
    background: #0e76a8;
}

.vfx_sign_info .vfx-signin-form .btn_three {
    width: auto;
    margin-top: 0;
}

.vfx_sign_info .vfx-signin-form .extra .vfx-forgot-password a {
    color: #F12C15;
    font-weight: 400;
}

.vfx_sign_info .vfx-signin-form .extra .vfx-forgot-password a:hover {
    color: #161341;
}

.sign_btn_transparent {
    display: inline-block;
    background: transparent;
    border-color: #237efd;
    color: #237efd;
}

.sign_btn_transparent:hover {
    background: #237efd;
    color: #fff;
}

/*============= get_quote_form css============*/

.get_quote_form .form-group {
    margin-bottom: 30px;
}

.get_quote_form .form-group .form-control {
    font: 400 15px "Poppins", sans-serif;
    color: #677294;
    border-radius: 4px;
    background-color: white;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    border: 2px solid transparent;
    height: 54px;
    padding: 0px 20px;
}

.get_quote_form .form-group .form-control.placeholder {
    color: #9ca3b9;
}

.get_quote_form .form-group .form-control:-moz-placeholder {
    color: #9ca3b9;
}

.get_quote_form .form-group .form-control::-moz-placeholder {
    color: #9ca3b9;
}

.get_quote_form .form-group .form-control::-webkit-input-placeholder {
    color: #9ca3b9;
}

.get_quote_form .form-group .form-control:focus {
    border-color: #68a6fe;
    -webkit-box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.06);
}

.get_quote_form .form-group textarea.form-control {
    height: 210px;
    padding-top: 15px;
}

.get_quote_form .btn_three {
    margin-top: 10px;
}

/*=========== comingsoon css ============*/

.coming-soon-page {
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    position: relative
}

.coming-soon-page .container {
    z-index: 15;
    position: relative;
    text-align: center;
    top: 50%;
    transform: translateY(-50%)
}

.gray-style.main-search-input {
    box-shadow: none;
    background-color: #f7f7f7;
    top: -10px;
    position: relative;
}

.main-search-input-item {
    flex: 1;
    border-right: 1px solid #e9e9e9;
    margin-top: 3px;
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
}

.main-search-input .main-search-input-item:nth-last-child(2) {
    border-right: none;
    padding-left: 15px;
    padding-right: 15px
}

.gray-style.main-search-input input,
.gray-style.main-search-input input:focus {
    background: #f7f7f7;
}

.main-search-input {
    margin-top: 50px;
    border-radius: 50px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .12);
    display: flex;
    text-align: left;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 9px;
    max-height: 68px;
}

.main-search-input input,
.main-search-input input:focus {
    font-size: 16px;
    border: none;
    background: #fff;
    margin: 0;
    padding: 0;
    height: 44px;
    line-height: 44px;
    box-shadow: none;
}

.main-search-input button.button {
    background-color: #237efd;
    font-size: 16px;
    font-weight: 600;
    padding: 0 40px;
    margin-right: 1px;
    height: 50px;
    border: 0;
    color: #fff;
    border-radius: 30px;
    outline: none;
}

.main-search-input button.button:hover {
    background: #68a6fe
}

button.button::before,
a.button::before {
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all .2s;
}

button.button,
input[type="button"],
input[type="submit"],
a.button.border,
a.button {
    background-color: #66676b;
    top: 0;
    padding: 10px 20px;
    color: #fff;
    position: relative;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    transition: all .2s ease-in-out;
    cursor: pointer;
    margin-right: 6px;
    overflow: hidden;
    border: none;
    border-radius: 50px;
}

@media(max-width:992px) {
    .coming-soon-page {
        min-height: 100vh;
        height: auto
    }
    .coming-soon-page .container {
        padding-top: 50px;
        padding-bottom: 50px;
        top: auto;
        transform: translateY(0%)
    }
}

.coming-soon-page:before {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 10;
    content: "";
    background-color: rgba(26, 26, 26, 0.5)
}

.coming-soon-page h2,
.coming-soon-page h3 {
    margin: 0;
    padding: 0
}

.coming-soon-page h2 {
    font-size: 46px;
    color: #fff
}

.coming-soon-page h3 {
    font-size: 34px;
    font-weight: 500;
    margin: 30px 0;
    color: rgba(255, 255, 255, .95)
}

.coming-soon-page .main-search-input-item input {
    font-size: 16px;
    font-weight: 500
}

.coming-soon-page .gray-style.main-search-input {
    max-width: 650px;
    margin: 0 auto;
    margin-top: 40px;
}

.coming-soon-page .main-search-input button.button {
    font-size: 16px
}

#countdown {
    font-weight: 600;
    float: none;
    display: inline-block
}

#countdown div {
    display: inline-block;
    margin: 0 5px;
    float: left
}

#countdown div:first-child i {
    border: none
}

#countdown span {
    background-color: rgba(255, 255, 255, .1);
    font-size: 40px;
    color: #fff;
    width: 130px;
    display: inline-block;
    padding: 40px 0 35px 0;
    font-weight: 500;
    letter-spacing: -1px;
    border-radius: 6px 6px 0 0
}

#countdown i {
    display: block;
    font-style: normal;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    padding: 5px 0 4px 0;
    letter-spacing: 1px;
    background-color: #237efd;
    color: #fff;
    border-radius: 0 0 6px 6px
}

.countdown-text {
    font-size: 24px;
    margin-top: 15px;
    line-height: 36px;
    font-weight: 300
}

@media(max-width:550px) {
    #countdown,
    #countdown div,
    #countdown span {
        width: 100%
    }
    #countdown div {
        padding: 10px 0;
        margin-left: 0;
        margin-right: 0;
    }
}

/*=============== subscribe_area css ============*/

.smtp_subscribe_features_area {
    background-color: #2e3d62;
    padding: 120px 0px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.smtp_subscribe_features_area .smtp_sec_title h2,
.smtp_subscribe_features_area .smtp_sec_title p {
    color: #fff;
}

.smtp_subscribe_features_area .smtp_sec_title h2 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.smtp_subscribe_features_area .smtp_sec_title h2::before {
    background: #ffffff;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    bottom: -3px;
    width: 60px;
    border-radius: 30px;
}

.smtp_subscribe_features_area .overlay_img {
    background: url("../img/home10/cloud_bg.png") no-repeat scroll center 0/cover;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.2;
}

.smtp_features_service_block {
    background: #f9f7fd;
    padding-top: 4%;
    padding-bottom: 4%;

}

.smtp_subscribe_features_area .cloud_img {
    position: absolute;
    right: 0;
    bottom: -7px;
    width: 300px;
    height: 250px;
}

.smtp_features_subscribe_form {
    max-width: 970px;
    margin: 0 auto;
}

.smtp_features_subscribe_form .input-group {
    padding: 0px 10px;
}

.smtp_features_subscribe_form .input-group input {
    font-size: 16px;
    line-height: 58px;
    font-weight: 400;
    border-radius: 4px;
    padding: 0px 25px 0px;
}

.smtp_features_subscribe_form .input-group .form-control:focus {
    border: 2px solid #237efd;
}

.smtp_features_subscribe_form .input-group .form-control {
    max-width: 400px;
    color: #949db5;
    background: #fff;
    border: 2px solid #ebeef4;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.smtp_features_subscribe_form .input-group .form-control.placeholder {
    color: #949db5;
}

.smtp_features_subscribe_form .input-group .form-control:-moz-placeholder {
    color: #949db5;
}

.smtp_features_subscribe_form .input-group .form-control::-moz-placeholder {
    color: #949db5;
}

.smtp_features_subscribe_form .input-group .form-control::-webkit-input-placeholder {
    color: #949db5;
}

.smtp_features_subscribe_form .input-group .check-btn {
    padding-left: 40px;
    padding-right: 40px;
    background-color: #237efd;
    border: 0px;
    border-radius: 4px;
    font-weight: 500;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(18, 2, 86, 0.2);
    box-shadow: 0px 10px 30px 0px rgba(18, 2, 86, 0.2);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    color: #fff;
    cursor: pointer;
}

.smtp_features_subscribe_form .input-group .check-btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

/*================= vfx_error_page_area css ==================*/

.vfx_error_page_area {
    background-image: -moz-linear-gradient(-50deg, #237efd 0%, #24b0fe 46%, #47bcfe 100%);
    background-image: -webkit-linear-gradient(-50deg, #237efd 0%, #24b0fe 46%, #47bcfe 100%);
    background-image: -ms-linear-gradient(-50deg, #237efd 0%, #24b0fe 46%, #47bcfe 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
    height: 100%;
}

.vfx_error_page_shap {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    opacity: 0.3
}

.vfx_error_page_contain h1 {
    font-size: 15vw;
    line-height: 14vw;
    margin-bottom: 0px;
}

.vfx_error_page_contain h2 {
    letter-spacing: 0;
    margin-bottom: 25px;
    font-size: 38px;
    margin-top: 50px;
    font-weight: 600;
}

.vfx_error_page_contain .about_btn {
    min-width: 180px;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(15, 0, 57, 0.1);
    box-shadow: 0px 20px 30px 0px rgba(15, 0, 57, 0.1);
}

.error_two_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
    height: 100vh;
    min-height: 750px;
}

.error_content_two h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
    color: #051441;
    margin-top: 40px;
}

.error_content_two p {
    font-size: 20px;
    line-height: 30px;
}

.error_content_two .search {
    margin: 45px 0px 40px;
}

.error_content_two .search .form-control {
    background-color: white;
    -webkit-box-shadow: 0px 4px 22px 0px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 4px 22px 0px rgba(12, 0, 46, 0.06);
    border: 1px solid transparent;
    border-radius: 4px;
    height: 60px;
    padding: 0px 30px;
    color: #677294;
    font-size: 15px;
    font-weight: 300;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.error_content_two .search .form-control.placeholder {
    color: #677294;
}

.error_content_two .search .form-control:-moz-placeholder {
    color: #677294;
}

.error_content_two .search .form-control::-moz-placeholder {
    color: #677294;
}

.error_content_two .search .form-control::-webkit-input-placeholder {
    color: #677294;
}

.error_content_two .search .form-control:focus {
    border-color: #237efd;
}

.error_content_two .about_btn {
    background: #051441;
    color: #fff;
    border-radius: 3px;
    padding: 17px 35px;
    font-weight: 400;
}

.error_content_two .about_btn i {
    vertical-align: middle;
    padding-left: 5px;
}

.error_content_two .about_btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

/*================= vfx_download_area css ==================*/

.vfx_download_area {
    height: 100vh;
    min-height: 700px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    position: relative;
    z-index: 1;
}

.vfx_download_content .download_btn {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1px solid #f6f5fc;
    display: inline-block;
    text-align: center;
    position: relative;
    z-index: 0;
    margin-bottom: 60px;
}

.vfx_download_content .download_btn:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: #f7f4ff;
    border-radius: 50%;
    z-index: -2;
}

.vfx_download_content .download_btn:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: #f1ecff;
    border-radius: 50%;
    z-index: -1;
}

.vfx_download_content .download_btn .pulse-x {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #f1ecff;
    width: 110px;
    height: 110px;
    border-radius: 100%;
    z-index: -2;
    -webkit-animation: pulsate 3s infinite;
    animation: pulsate 3s infinite;
}

.vfx_download_content .download_btn i {
    width: 120px;
    height: 120px;
    display: inline-block;
    background-image: -moz-linear-gradient(50deg, #237efd 0%, #a485fd 100%);
    background-image: -webkit-linear-gradient(50deg, #237efd 0%, #a485fd 100%);
    background-image: -ms-linear-gradient(50deg, #237efd 0%, #a485fd 100%);
    -webkit-box-shadow: inset 2px -3.464px 6px 0px rgba(34, 10, 104, 0.2);
    box-shadow: inset 2px -3.464px 6px 0px rgba(34, 10, 104, 0.2);
    border-radius: 50%;
    line-height: 120px;
    font-size: 55px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.vfx_download_content h2 {
    font-size: 60px;
    color: #051441;
    font-weight: 400;
    margin-bottom: 35px;
}

.vfx_download_content p {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 400;
    color: #051441;
}

.vfx_download_content p a {
    color: #237efd;
    position: relative;
}

.vfx_download_content p a:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #237efd;
    position: absolute;
    left: 0;
    bottom: 0;
}

.thanks_content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    margin-top: 50px;
    font-weight: 600;
}

.thanks_content p {
    color: #677294;
    font-size: 16px;
}

.thanks_content a {
    background: #237efd;
    font: 500 14px/47px "Poppins", sans-serif;
    color: #ffffff;
    border: 2px solid #237efd;
    border-radius: 4px;
    margin-top: 45px;
    position: relative;
    text-transform: uppercase;
    -webkit-box-shadow: 0px 20px 24px 0px rgba(0, 11, 40, 0.1);
    box-shadow: 0px 20px 24px 0px rgba(0, 11, 40, 0.1);
    padding: 0px 30px;
    text-align: center;
    display: inline-block;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-property: color;
    -o-transition-property: color;
    transition-property: color;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.thanks_content a:hover {
    color: #237efd;
    background: transparent;
    border-color: #237efd;
    -webkit-box-shadow: 0px 10px 24px 0px rgba(0, 11, 40, 0.05);
    box-shadow: 0px 10px 24px 0px rgba(0, 11, 40, 0.05);
}

.thanks_content a i {
    vertical-align: middle;
    display: inline-block;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    padding-left: 5px;
}

.thanks_content a:hover {
    color: #237efd;
}

.thanks_content a:hover:before {
    border-color: #237efd;
}

.thanks_content a:hover i {
    -webkit-transform: translateX(8px);
    -ms-transform: translateX(8px);
    transform: translateX(8px);
}

/*================= typography_area css ==================*/

.typography_breacrumb {
    background: #f9f9f9;
}

.typography_breacrumb h1 {
    color: #222d39;
    font-weight: 400;
}

.typography_breacrumb h1 span {
    font-weight: 700;
}

.typography_breacrumb p {
    color: #677294;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #4b505e;
}

p {
    font-size: 16px;
    color: #677294;
}

.vfx_contact_info_item p span {
    padding: 0px;
    border-radius: 0px;
}

p span {
    padding: 3px 5px;
    border-radius: 4px;
}

.bg-dark {
    background: #1a232d !important;
}

.bg-purpple {
    background: #6e3ef8;
}

.bg-blue {
    background: #237efd;
}

.h_title {
    font-size: 24px;
    color: #677294;
    font-weight: 400;
    margin-bottom: 50px;
}

.vfx_heading_style h1,
.vfx_heading_style h2,
.vfx_heading_style h3,
.vfx_heading_style h4,
.vfx_heading_style h5,
.vfx_heading_style h6 {
    color: #4b505e;
    font-weight: 700;
}

.vfx_heading_style .h_title {
    font-size: 24px;
    color: #677294;
    font-weight: 500;
}

.vfx_heading_style h1 {
    font-size: 50px;
}

.vfx_heading_style h2 {
    font-size: 44px;
}

.vfx_heading_style h3 {
    font-size: 36px;
}

.vfx_heading_style h4 {
    font-size: 30px;
}

.vfx_heading_style h5 {
    font-size: 24px;
}

.vfx_heading_style h6 {
    font-size: 18px;
}

.vfx_heading_style.medium h1,
.vfx_heading_style.medium h2,
.vfx_heading_style.medium h3,
.vfx_heading_style.medium h4,
.vfx_heading_style.medium h5,
.vfx_heading_style.medium h6 {
    font-weight: 500;
}

.vfx_heading_style.medium .h_title {
    font-weight: 500;
}

.vfx_heading_style.regular .h_title {
    font-weight: 500;
}

.vfx_heading_style.regular h1,
.vfx_heading_style.regular h2,
.vfx_heading_style.regular h3,
.vfx_heading_style.regular h4,
.vfx_heading_style.regular h5,
.vfx_heading_style.regular h6 {
    font-weight: 400;
}

.tooltip_p .text-green {
    color: #49c10e;
}

.tooltip_p .text-red {
    color: #f0368d;
}

.tooltip>.tooltip-inner {
    background-color: #237efd;
    color: #fff;
}

.tooltip>.tooltip-inner .arrow:before {
    border-bottom-color: #237efd;
}

.drop_text span {
    float: left;
    font-size: 54px;
    color: #2cabed;
    font-weight: 700;
    line-height: 50px;
}

.nested {
    font-size: 16px;
    color: #627387;
    line-height: 36px;
    font-weight: 400;
}

.blockquote {
    color: #237efd;
    font-style: italic;
    border-left: 6px solid #237efd;
    padding-left: 30px;
    background: #f3f4f9;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    border-radius: 4px;
}

.blockquote p {
    font-size: 18px;
    color: #4b505e;
    font-style: italic;
    font-weight: 400;
    line-height: 30px;
}

.blockquote_two {
    background: #f9fafb;
    padding: 20px 20px 20px 40px;
    font-size: 22px;
    font-style: italic;
    color: #627387;
}

.blockquote_two img {
    margin-right: 40px;
}

.blockquote_three {
    background: #f3f4f9;
    padding: 34px;
    font-weight: 400;
    font-size: 20px;
    border-left: 6px solid #237efd;
    color: #677294;
    border-radius: 4px;
    font-style: italic;
    line-height: 40px;
}

.blockquote_three img {
    margin-right: 30px;
}

.typography_promo_area {
    position: relative;
    z-index: 1;
    height: 400px;
    background-color: #237efd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.typography_promo_area .bg_overlay {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-attachment: fixed;
    opacity: 0.1;
}

.typography_promo_area h2 {
    color: #fff;
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
}

.typography_promo_area .btn_get {
    color: #fff;
    border: 1px solid #fff;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    margin-top: 30px;
}

.typography_promo_area .btn_get:hover {
    background: #fff;
    color: #051441;
}

.alert {
    font-size: 16px;
    line-height: 34px;
    position: relative;
    border-width: 1px;
    font-weight: 400;
    border-style: dashed;
    border-radius: 60px;
    margin-bottom: 30px;
}

.alert i {
    float: left;
    font-size: 20px;
    line-height: 32px;
    margin-right: 20px;
}

.alert .vfx_alert_close {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
    cursor: pointer;
    border: 1px dashed rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    background: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
}

.alert .vfx_alert_close i {
    margin-right: 0;
    width: 36px;
    height: 36px;
    line-height: 36px;
}

.alert.notice {
    background: #f9f8fc;
    border-color: #e9e6f5;
    color: #677294;
}

.alert.error {
    background: #ffebeb;
    border-color: #f4bdbd;
    color: #eb4a4a;
}

.alert.warning {
    background: #fffaeb;
    border-color: #edd796;
    color: #e7b931;
}

.alert.info {
    background: #ebfcff;
    border-color: #aee9f3;
    color: #49cbe1;
}

.alert.success {
    background: #ecffeb;
    border-color: #b0efac;
    color: #4acc43;
}

.alert.message {
    background: #f5f1fd;
    border-color: #d7caf5;
    color: #8d62e3;
}

.big_alert {
    padding: 40px;
    font-size: 20px;
}

.big_alert i {
    font-size: 24px;
}

.box_alert {
    border: 2px dashed #e9e6f5;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    margin-bottom: 30px;
}

.box_alert .icon {
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    font-size: 26px;
    color: #677294;
    border: 2px dashed #e9e6f5;
    background: #f9f8fc;
    border-radius: 50%;
    margin-right: 30px;
}

.box_alert .media-body h5 {
    font-size: 20px;
    line-height: 28px;
    color: #222d39;
    font-weight: 500;
    margin-bottom: 10px;
}

.box_alert .media-body p {
    font-size: 15px;
    line-height: 28px;
    font-weight: 400;
    color: #677294;
    margin-bottom: 5px;
}

.box_alert .vfx_alert_close {
    position: absolute;
    right: 10px;
    top: 30px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
    cursor: pointer;
    border: 1px dashed rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    background: #fff;
    width: 34px;
    height: 34px;
    text-align: center;
}

.box_alert .vfx_alert_close i {
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.box_alert.box_warning .icon {
    background: #fffaeb;
    border-color: #edd796;
    color: #e7b931;
}

.box_alert.box_success .icon {
    background: #ecffeb;
    border-color: #b0efac;
    color: #4acc43;
}

.box_alert.box_error .icon {
    background: #ffebeb;
    border-color: #f4bdbd;
    color: #eb4a4a;
}

.box_alert.box_info .icon {
    background: #ebfcff;
    border-color: #aee9f3;
    color: #49cbe1;
}

.box_alert.box_info_two .icon {
    background: #f5f1fd;
    border-color: #d7caf5;
    color: #8d62e3;
}

.button_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.button_item .btn_hover {
    margin-top: 0;
}

.button_item+.button_item {
    margin-top: 20px;
}

.btn_s {
    padding: 9px 44px;
}

.btn_m {
    padding: 16px 50px;
}

.btn_l {
    padding: 24px 86px;
}

.btn_c {
    padding: 16px 50px;
}

.btn_border {
    border-width: 1px;
    border-style: solid;
    border-color: #222d39;
    color: #222d39;
}

.btn_border:hover {
    background: #7444fd;
    border-color: #7444fd;
    color: #fff;
}

.border2 {
    border-width: 2px;
}

.border3 {
    border-width: 3px;
}

.border4 {
    border-width: 4px;
}

.btn_r {
    border-radius: 4px;
}

.btn_r_n {
    border-radius: 0px;
}

.btn_r_two {
    border-radius: 8px;
}

.btn_r_three {
    border-radius: 45px;
}

.box_s {
    background: #237efd;
    -webkit-box-shadow: 0 6px #8057f8;
    box-shadow: 0 6px #8057f8;
}

.box_s:hover {
    background: #237efd;
    color: #fff;
}

.box_s:hover:hover {
    -webkit-box-shadow: 0 4px #8057f8;
    box-shadow: 0 4px #8057f8;
}

.btn-style2 {
    position: relative;
    overflow: visible;
    z-index: auto;
    background: #237efd;
    -webkit-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

.btn-style2:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #dfd5fb;
    position: absolute;
    right: -5px;
    bottom: -5px;
    z-index: -2;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.btn-style2:hover {
    background: #237efd;
    margin-right: 0;
    margin-bottom: 0;
    color: #fff;
}

.btn-style2:hover:before {
    right: 0;
    bottom: 0;
}

.btn-style3 {
    position: relative;
    background: transparent;
}

.btn-style3:before {
    content: "";
    left: 5px;
    right: 5px;
    bottom: 5px;
    top: 5px;
    background: #237efd;
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.btn-style3:hover {
    color: #fff;
}

.btn-style3:hover:before {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.btn-style4 {
    position: relative;
    background: #dfd5fb;
    border: 0px;
}

.btn-style4:before {
    content: "";
    left: 2px;
    right: 2px;
    bottom: 2px;
    top: 2px;
    background: #237efd;
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.btn-style4:hover {
    color: #fff;
}

.btn-style4:hover:before {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.i_btn_one {
    padding: 16px 50px;
}

.i_btn_one i {
    margin-right: 10px;
}

.i_btn_two {
    padding: 16px 50px;
}

.i_btn_two i {
    margin-left: 14px;
}

.i_btn_three {
    padding: 0 50px 0px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.i_btn_three i {
    width: 50px;
    float: left;
    text-align: center;
    height: 100%;
    line-height: 53px;
    margin-right: 35px;
    border-right: 1.2px solid rgba(255, 255, 255, 0.2);
}

.i_btn_three:hover i {
    border-color: #7444fd;
}

.i_btn_four {
    padding: 0 0px 0px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.i_btn_four i {
    width: 50px;
    float: left;
    text-align: center;
    height: 100%;
    line-height: 53px;
    margin-left: 35px;
    border-left: 1.2px solid rgba(255, 255, 255, 0.2);
}

.i_btn_four:hover i {
    border-color: #7444fd;
}

.btn_blue {
    background: #2e95ed;
    border-color: #2e95ed;
}

.btn_blue:hover {
    background: #2e95ed;
    color: #fff;
    -webkit-box-shadow: 0px 20px 34px 0px rgba(0, 11, 40, 0.1);
    box-shadow: 0px 20px 34px 0px rgba(0, 11, 40, 0.1);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.btn_red {
    background: #db247f;
    border-color: #db247f;
}

.btn_red:hover {
    background: #db247f;
    color: #fff;
    -webkit-box-shadow: 0px 20px 34px 0px rgba(0, 11, 40, 0.1);
    box-shadow: 0px 20px 34px 0px rgba(0, 11, 40, 0.1);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.btn_green {
    background: #62be09;
    border-color: #62be09;
    padding: 16px 64px;
}

.btn_green:hover {
    background: #62be09;
    color: #fff;
    -webkit-box-shadow: 0px 20px 34px 0px rgba(0, 11, 40, 0.1);
    box-shadow: 0px 20px 34px 0px rgba(0, 11, 40, 0.1);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.btn_yellow {
    background: #e4a817;
    border-color: #e4a817;
    padding: 16px 64px;
}

.btn_yellow:hover {
    background: #e4a817;
    color: #fff;
    -webkit-box-shadow: 0px 20px 34px 0px rgba(0, 11, 40, 0.1);
    box-shadow: 0px 20px 34px 0px rgba(0, 11, 40, 0.1);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.btn_purple {
    background: #b715f3;
    border-color: #b715f3;
}

.btn_purple:hover {
    background: #b715f3;
    color: #fff;
    -webkit-box-shadow: 0px 20px 34px 0px rgba(0, 11, 40, 0.1);
    box-shadow: 0px 20px 34px 0px rgba(0, 11, 40, 0.1);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.btn_violte {
    background: #237efd;
    border-color: #237efd;
}

.btn_violte:hover {
    background: #237efd;
    color: #fff;
    -webkit-box-shadow: 0px 20px 34px 0px rgba(0, 11, 40, 0.1);
    box-shadow: 0px 20px 34px 0px rgba(0, 11, 40, 0.1);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.btn_orange {
    background: #f05b2d;
    border-color: #f05b2d;
    padding: 16px 64px;
}

.btn_orange:hover {
    background: #f05b2d;
    color: #fff;
    -webkit-box-shadow: 0px 20px 34px 0px rgba(0, 11, 40, 0.1);
    box-shadow: 0px 20px 34px 0px rgba(0, 11, 40, 0.1);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.btn_nill {
    background: #1bbbce;
    border-color: #1bbbce;
    padding: 16px 64px;
}

.btn_nill:hover {
    background: #1bbbce;
    color: #fff;
    -webkit-box-shadow: 0px 20px 34px 0px rgba(0, 11, 40, 0.1);
    box-shadow: 0px 20px 34px 0px rgba(0, 11, 40, 0.1);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

/*=========== blog_area_css ===========*/

.vfx_blog_grid_item {
    cursor: pointer;
}

.vfx_blog_grid_item img {
    -webkit-transition: opacity 600ms linear;
    -o-transition: opacity 600ms linear;
    transition: opacity 600ms linear;
}

.vfx_blog_grid_item:hover .blog_img img {
    opacity: 0.70;
}

.blog_img {
    background: #000022;
    border-radius: 6px 6px 0 0;
}

.blog_img img {
    max-width: 100%;
    border-radius: 4px 4px 0 0;
}

.blog_content {
    background-color: white;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.06);
    padding: 30px;
    border-radius: 0 0 6px 6px;
    position: relative;
}

.vfx_vfx-blog-sidebar img {
    border-radius: 6px 6px 0 0;
}

.vfx_vfx-blog-sidebar .blog_content {
    padding: 40px 30px 30px 30px;
}

.vfx_blog_area_item_two .blog_content {
    padding: 30px;
}

.blog_content .post_date {
    border-radius: 6px;
    -webkit-box-shadow: 0px 3px 5px 0px rgba(12, 0, 46, 0.20);
    box-shadow: 0px 3px 5px 0px rgba(12, 0, 46, 0.20);
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 30px;
    top: -20px;
    padding: 10px 15px;
    background: #237efd;
}

.blog_content .post_date h2 {
    font: 500 14px/20px "Poppins", sans-serif;
    margin-bottom: 0px;
    color: #ffffff;
    padding-top: 0px;
}

.blog_content .post_date h2 i {
    padding-right: 5px
}

.blog_content .post_date span {
    display: inline-block;
    font-weight: 500;
}

.blog_content p {
    font-weight: 400;
    font-size: 15px;
}

.blog_content h5:hover {
    color: #237efd;
}

.blog_content .learn_btn_two {
    font: 400 14px "Poppins", sans-serif;
    color: #282835;
}

.blog_content .learn_btn_two i {
    font-size: 14px;
}

.blog_content .learn_btn_two:hover {
    color: #237efd;
}

.entry_post_info {
    font: 400 14px/25px "Poppins", sans-serif;
    color: #677294;
    padding-bottom: 5px;
}

.entry_post_info a {
    color: #677294;
}

.entry_post_info a+a:before {
    content: "/";
    display: inline-block;
    margin: 0px 7px 0px 2px;
}

.blog_sidebar_left .blog_single img {
    border-radius: 10px;
}

.blog_single .blog_content {
    padding-left: 0px;
    padding-right: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.blog_single .blockquote {
    color: #237efd;
    font-style: italic;
    border-left: 6px solid #237efd;
    padding-left: 30px;
    background: #f3f4f9;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    border-radius: 4px;
}

.post_share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #d8dceb;
    padding-bottom: 10px;
}

.post_share a {
    background: #237efd;
    font: 400 14px/26px "Poppins", sans-serif;
    width: 36px;
    height: 36px;
    color: #fff;
    padding: 0 9px;
    border: 2px solid transparent;
    display: inline-block;
    border-radius: 40px;
    text-align: center;
    vertical-align: middle;
    line-height: 35px;
    margin-right: 3px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.post_share a:hover {
    background: transparent;
    border: 2px solid#237efd;
    color: #237efd;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.post_share a i {
    padding-right: 12px;
}

.post_share a:hover {
    color: #237efd;
}

.post_share .flex {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: right;
}

.post-nam {
    font: 400 15px/26px "Poppins", sans-serif;
    color: #282835;
}

.post_tag {
    padding-top: 20px;
}

.post_tag .post-nam {
    padding-right: 10px;
}

.post_tag a {
    font: 400 13px/26px "Poppins", sans-serif;
    color: #595b64;
    background: #f3f5fa;
    border: 2px solid #f3f5fa;
    border-radius: 4px;
    padding: 0px 10px;
    display: inline-block;
    margin-left: 10px;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.post_tag a:hover {
    background: #237efd;
    border: 2px solid #237efd;
    color: #ffffff;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.post_author .media-body {
    padding-left: 20px;
}

.post_author .media-body h6 {
    color: #677294;
}

.post_author .media-body p {
    color: #677294;
    margin-bottom: 0px;
}

.blog_post_item .blog_content {
    padding: 22px 22px 35px;
}

.blog_post_item .blog_content h5 {
    margin-bottom: 15px;
}

.comment-box .post_comment .post_author {
    margin-bottom: 30px;
}

.comment-box .post_comment .post_author .media-left {
    margin-right: 30px;
}

.comment-box .post_comment .post_author .media-left img {
    border-radius: 10px;
}

.comment-box .post_comment .post_author .replay {
    display: block;
    text-align: center;
    font-size: 20px;
    color: #525c7c;
    padding-top: 14px;
    -webkit-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

.comment-box .post_comment .post_author .replay:hover {
    color: #237efd;
}

.comment-box .post_comment .post_author .media-body {
    border-bottom: 1px solid #e8ebf4;
    padding-left: 0;
    padding-bottom: 25px;
}

.comment-box .post_comment .reply-comment {
    padding-left: 110px;
}

.comment-box .post_comment .reply-comment .post_author {
    margin-bottom: 0px;
}

/*=========== blog_sidebar_css ===========*/

.widget_title {
    margin-bottom: 35px;
}

.blog_inner_title {
    position: relative;
}

.blog_inner_title h3::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    margin: 8px 0 10px;
    position: absolute;
    top: 22px;
    border-radius: 30px;
    width: 40px;
}

.sidebar_widget {
    position: relative;
}

.sidebar_widget .widget_title h3 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 0px;
}

.sidebar_widget .widget_title h3::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    bottom: 0px;
    border-radius: 30px;
    width: 40px;
}

.widget_title .border_bottom {
    width: 100%;
    height: 2px;
    background: #677294;
    display: block;
}

.widget_title_two {
    font-size: 20px;
    font-weight: 600;
    color: #282835;
    margin-bottom: 30px;
}

.blog-sidebar {
    padding-left: 20px;
}

.blog-sidebar .widget.widget_search .search-form {
    position: relative;
}

.blog-sidebar .widget.widget_search .search-form .form-control {
    font: 300 14px "Poppins", sans-serif;
    color: #677294;
    border-radius: 3px;
    background-color: white;
    -webkit-box-shadow: 0px 2px 3px 0px rgba(12, 0, 46, 0.08);
    box-shadow: 0px 2px 3px 0px rgba(12, 0, 46, 0.08);
    border-radius: 0px;
    border: 0px;
    padding-left: 30px;
    height: 55px;
    z-index: 0;
    border: 1px solid transparent;
}

.blog-sidebar .widget.widget_search .search-form .form-control.placeholder {
    color: #677294;
}

.blog-sidebar .widget.widget_search .search-form .form-control:-moz-placeholder {
    color: #677294;
}

.blog-sidebar .widget.widget_search .search-form .form-control::-moz-placeholder {
    color: #677294;
}

.blog-sidebar .widget.widget_search .search-form .form-control::-webkit-input-placeholder {
    color: #677294;
}

.blog-sidebar .widget.widget_search .search-form .form-control:focus {
    border-color: #ccc5fa;
    border-radius: 3px;
}

.blog-sidebar .widget.widget_search .search-form button {
    border: 0px;
    border-radius: 0px;
    font-size: 16px;
    color: #282835;
    background: transparent;
    position: absolute;
    right: 20px;
    height: 100%;
    padding: 0px;
    z-index: 1;
    cursor: pointer;
}

.blog-sidebar .widget.widget_search .search-form button:hover {
    color: #237efd;
}

.blog-sidebar .widget.widget_recent_post .post_item img {
    border-radius: 6px;
    width: 90px;
    height: 90px;
}

.blog-sidebar .widget.widget_recent_post .post_item .media-body {
    padding-left: 20px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.blog-sidebar .widget.widget_recent_post .post_item .media-body h3 {
    color: #282835;
    line-height: 22px;
    font-weight: 500;
}

.blog-sidebar .widget.widget_recent_post .post_item .media-body h3:hover {
    color: #237efd;
}

.blog-sidebar .widget.widget_recent_post .post_item .media-body .entry_post_info {
    padding-bottom: 0px;
}

.blog-sidebar .widget.widget_recent_post .post_item+.post_item {
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
    margin-top: 20px;
}

.blog-sidebar .widget.widget_recent_post .post_item+.post_item:last-child {
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.blog-sidebar .widget.widget_categorie .widget_title {
    margin-bottom: 28px;
}

.blog-sidebar .widget.widget_categorie ul {
    margin-bottom: 0px;
}

.blog-sidebar .widget.widget_categorie ul li:first-child {
    border-top: 1px solid #e8e8e8;
}

.blog-sidebar .widget.widget_categorie ul li {
    border-bottom: 1px solid #e8e8e8;
    padding: 6px 0;
}

.blog-sidebar .widget.widget_categorie ul li i {
    font-size: 12px;
    padding-right: 5px;
}

.blog-sidebar .widget.widget_categorie ul li a {
    font: 400 16px/35px "Poppins", sans-serif;
    color: #282835;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.blog-sidebar .widget.widget_categorie ul li a span {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.blog-sidebar .widget.widget_categorie ul li a em {
    float: right;
    font-style: normal;
}

.blog-sidebar .widget.widget_categorie ul li a:hover span {
    color: #237efd;
    padding-left: 8px;
}

.blog-sidebar .widget.widget_tag_cloud .post-tags {
    margin-top: -5px;
    margin-left: -5px;
    margin-right: -5px;
}

.blog-sidebar .widget.widget_tag_cloud .post-tags a {
    font: 500 13px/27px "Poppins", sans-serif;
    color: #595b64;
    border: 2px solid #cfcfe6;
    border-radius: 3px;
    padding: 6px 18px;
    float: left;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    margin: 5px;
}

.blog-sidebar .widget.widget_tag_cloud .post-tags a:hover {
    background: #237efd;
    border-color: #237efd;
    color: #fff;
}

.blog-sidebar .widget.search_widget_two .search-form .form-control {
    padding: 0px 60px 0 20px;
    background: #f3f4f9;
    border-radius: 4px;
    height: 60px;
    font-size: 15px;
    color: #677294;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
    z-index: 0;
    border: 2px solid #ebeef4;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.blog-sidebar .widget.search_widget_two .search-form .form-control.placeholder {
    color: #677294;
}

.blog-sidebar .widget.search_widget_two .search-form .form-control:-moz-placeholder {
    color: #677294;
}

.blog-sidebar .widget.search_widget_two .search-form .form-control::-moz-placeholder {
    color: #677294;
}

.blog-sidebar .widget.search_widget_two .search-form .form-control::-webkit-input-placeholder {
    color: #677294;
}

.blog-sidebar .widget.search_widget_two .search-form .form-control:focus {
    border: 2px solid #237efd;
    background: #f0f2f9;
}

.blog-sidebar .widget.search_widget_two .search-form button {
    position: absolute;
    background: #237efd;
    padding: 0px;
    border: 0px;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
    color: #fff;
    z-index: 0;
    height: 60px;
    width: 60px;
    line-height: 66px;
    font-weight: bold;
    border-radius: 0 4px 4px 0;
}

.blog-sidebar .widget.recent_post_widget_two .post_item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-sidebar .widget.recent_post_widget_two .post_item img {
    border-radius: 6px;
    margin-right: 20px;
    height: 90px;
    width: 90px;
}

.blog-sidebar .widget.recent_post_widget_two .post_item .media-body h3 {
    font: 500 16px/22px "Poppins", sans-serif;
    color: #222d39;
    margin-bottom: 0;
}

.blog-sidebar .widget.recent_post_widget_two .post_item .media-body h3:hover {
    color: #237efd;
}

.blog-sidebar .widget.recent_post_widget_two .post_item .media-body .entry_post_info {
    text-transform: none;
    background: #f7f8fb;
    border: 2px solid #ebeef4;
    margin-top: 0px;
    padding: 2px 10px;
    border-radius: 4px;
    margin-bottom: 5px;
    display: inline-block;
    font: 400 14px "Poppins", sans-serif;
    color: #85859c;
}

.blog-sidebar .widget.recent_post_widget_two .post_item .media-body .entry_post_info i {
    margin-right: 5px;
    color: #237efd;
}

.blog-sidebar .widget.recent_post_widget_two .post_item {
    padding-top: 15px;
    border-top: 1px solid #e8e8e8;
    margin-top: 15px;
}

.blog-sidebar .widget.recent_post_widget_two .post_item:last-child {
    padding-bottom: 15px;
    border-bottom: 1px solid #e8e8e8;
}

.blog-sidebar .widget.categorie_widget_two ul {
    margin-bottom: 0;
}

.blog-sidebar .widget.categorie_widget_two ul li {
    border-bottom: 1px solid #e8e8e8;
    padding: 5px 0;
}

.blog-sidebar .widget.categorie_widget_two ul li a {
    font: 400 16px/35px "Poppins", sans-serif;
    line-height: 36px;
    color: #282835;
    text-transform: none;
}

.blog-sidebar .widget.categorie_widget_two ul li a em {
    font-style: normal;
    color: #282835;
    padding-left: 10px;
}

.blog-sidebar .widget.categorie_widget_two ul li a:hover {
    color: #237efd;
}

.blog-sidebar .widget.tag_widget_two .post-tags {
    margin: -5px -4px;
}

.blog-sidebar .widget.tag_widget_two .post-tags a {
    padding: 6px 20px;
    font: 500 13px/27px "Poppins", sans-serif;
    color: #5a5a77;
    background: #f0f2f9;
    border-radius: 4px;
    margin: 5px 4px;
    display: inline-block;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.blog-sidebar .widget.tag_widget_two .post-tags a:hover {
    background: #237efd;
    color: #fff;
}

.blog-sidebar .widget.instagram_widget ul {
    margin: -7px;
}

.blog-sidebar .widget.instagram_widget ul li {
    display: inline-block;
    padding: 7px 5px;
}

.blog-sidebar .widget.instagram_widget ul li a {
    display: block;
    position: relative;
}

.blog-sidebar .widget.instagram_widget ul li a:before {
    content: "\e73d";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: 'themify';
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 22px;
    background: rgba(104, 166, 254, 0.6);
    border-radius: 4px;
    opacity: 0;
    -webkit-transition: opacity 0.4s linear;
    -o-transition: opacity 0.4s linear;
    transition: opacity 0.4s linear;
    color: #fff;
}

.blog-sidebar .widget.instagram_widget ul li a img {
    max-width: 100%;
    border-radius: 4px;
}

.blog-sidebar .widget.instagram_widget ul li a:hover:before {
    opacity: 1;
}

.vfx_blog_area_item_two .vfx_vfx-blog-sidebar:not(:last-child) {
    margin-bottom: 40px;
}

.vfx_blog_grid_item .blog_content a h5 {
    margin-bottom: 15px;
}

.vfx_blog_area_item_two .vfx_shop_pagination_number {
    border-top: 1px solid #ebe8f1;
    padding-top: 35px;
    margin-top: 0px;
    text-align: center !important;
}

.vfx_vfx-blog-sidebar_two {
    position: relative;
}

.vfx_vfx-blog-sidebar_two .post_date {
    position: absolute;
    left: 20px;
    top: 20px;
    border-radius: 6px;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 14px 30px 0px rgba(68, 28, 183, 0.25);
    box-shadow: 0px 14px 30px 0px rgba(68, 28, 183, 0.25);
    text-align: center;
    color: #ffffff;
    padding: 8px 15px;
    z-index: 1;
}

.vfx_vfx-blog-sidebar_two .post_date h2 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    color: #237efd;
}

.vfx_vfx-blog-sidebar_two .post_date h2 i {
    font-size: 14px;
    margin-right: 5px;
}

.vfx_vfx-blog-sidebar_two .post_date span {
    display: inline-block;
    font-weight: 500;
}

.vfx_vfx-blog-sidebar_two a img {
    border-radius: 6px;
}

.vfx_vfx-blog-sidebar_two .video_post {
    position: relative;
    z-index: 0;
}

.vfx_vfx-blog-sidebar_two .video_post:before {
    content: "";
    background: #282835;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
    border-radius: 6px;
}

.vfx_vfx-blog-sidebar_two .video_post img {
    border-radius: 6px;
}

.vfx_vfx-blog-sidebar_two .video_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.vfx_vfx-blog-sidebar_two .video_icon:after {
    display: none;
}

.vfx_vfx-blog-sidebar_two .video_icon:before {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.vfx_vfx-blog-sidebar_two .video_icon i {
    font-size: 54px;
    line-height: 80px;
    color: #237efd;
    text-shadow: 0px 6px 25px rgba(121, 74, 253, 0.9);
}

.vfx_vfx-blog-sidebar_two .blog_content {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

.vfx_vfx-blog-sidebar_two .blog_content p {
    font-size: 16px;
    margin-bottom: 25px;
}

.vfx_vfx-blog-sidebar_two .blog_content .vfx_post_info_bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.vfx_vfx-blog-sidebar_two .blog_content .vfx_post_info_bottom .post-info-comments {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    color: #237efd;
    height: 36px;
    background: #f0f2f9;
    padding: 8px 15px;
    border-radius: 40px;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.vfx_vfx-blog-sidebar_two .blog_content .vfx_post_info_bottom .post-info-comments:hover {
    color: #f0f2f9;
    background: #237efd;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.06);
}

.vfx_vfx-blog-sidebar_two .blog_content .vfx_post_info_bottom .post-info-comments:hover i {
    color: #f0f2f9;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.vfx_vfx-blog-sidebar_two .blog_content .vfx_post_info_bottom .post-info-comments i {
    color: #237efd;
    padding-right: 3px;
}

.vfx_vfx-blog-sidebar_two .blog_content .learn_btn_two {
    text-transform: none;
    font-size: 14px;
    margin-top: 0px;
    line-height: 20px;
    display: inline-block;
    font-weight: 500;
    background: #237efd;
    padding: 8px 15px;
    border-radius: 20px;
    color: #f0f2f9;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.vfx_vfx-blog-sidebar_two .blog_content .learn_btn_two:hover {
    background: #f0f2f9;
    color: #237efd;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.06);
}

.vfx_vfx-blog-sidebar_two .blog_content .post-info-comments {
    text-transform: none;
    line-height: 20px;
    display: inline-block;
}

.blog_title {
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    color: #222d39;
    font-family: "Poppins", sans-serif;
    margin-bottom: 15px;
}

.blog_title:hover {
    color: #237efd;
}

.qutoe_post .blog_content {
    background-color: white;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(20, 3, 67, 0.08);
    box-shadow: 0px 10px 30px 0px rgba(20, 3, 67, 0.08);
    border-radius: 6px;
    padding: 28px 40px 42px 40px;
    position: relative;
    overflow: hidden;
    border-left: 6px solid #237efd;
    z-index: 0;
}

.qutoe_post .blog_content:after {
    content: "\f10d";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: #f2effd;
    font-size: 100px;
    -webkit-transform: rotate(190deg);
    -ms-transform: rotate(190deg);
    transform: rotate(190deg);
    z-index: -1;
}

.qutoe_post .blog_content i {
    font-size: 30px;
    color: #237efd;
    padding-bottom: 12px;
    display: inline-block;
}

.qutoe_post .blog_content h6 {
    font-size: 20px;
    color: #525c7c;
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 0;
}

.qutoe_post .blog_content .author_name {
    font-size: 14px;
    color: #848ca5;
    line-height: 20px;
    letter-spacing: 1px;
    margin-top: 22px;
    font-weight: 400;
    display: inline-block;
    text-transform: none;
}

.qutoe_post.qutoe_post_two .blog_content:after {
    content: "\e02c";
    font-family: 'ElegantIcons';
    font-size: 150px;
    right: 0;
    bottom: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.qutoe_post.qutoe_post_two .blog_content .blog_title {
    font-weight: 500;
}

.vfx_blog_grid_info .vfx_vfx-blog-sidebar {
    margin-bottom: 40px;
}

.vfx_blog_grid_info .vfx_vfx-blog-sidebar .post_date {
    padding: 8px 15px;
}

.vfx_blog_grid_info .vfx_vfx-blog-sidebar .post_date h2 {
    font-size: 14px;
    line-height: 20px;
    color: #237efd;
}

.vfx_blog_grid_info .vfx_vfx-blog-sidebar .blog_content {
    padding-top: 25px;
}

.vfx_blog_grid_info .vfx_vfx-blog-sidebar .blog_content .blog_title {
    font-size: 20px;
    margin-bottom: 10px;
}

.vfx_blog_grid_info .vfx_vfx-blog-sidebar.qutoe_post .blog_content {
    padding-bottom: 80px;
}

.vfx_blog_grid_info .vfx_vfx-blog-sidebar.qutoe_post .blog_content:after {
    bottom: 0px;
    font-size: 90px;
    line-height: 90px;
}

.vfx_blog_grid_info .vfx_vfx-blog-sidebar.qutoe_post_two .blog_content:after {
    bottom: auto;
    top: 80%;
}

.blog_single_info .vfx_vfx-blog-sidebar_two .blog_content {
    padding-top: 50px;
}

.blog_single_info .vfx_vfx-blog-sidebar_two .blog_content .qutoe_post {
    margin: 45px 0px;
}

.blog_single_info .vfx_vfx-blog-sidebar_two .blog_content .vfx_post_info_bottom {
    padding-top: 20px;
}

.blog_single_info .vfx_vfx-blog-sidebar_two .blog_content .vfx_post_info_bottom .social_icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-transform: uppercase;
    font-size: 13px;
    color: #424255;
    padding-top: 5px;
    font-weight: 500;
    letter-spacing: 1px;
}

.blog_single_info .vfx_vfx-blog-sidebar_two .blog_content .vfx_post_info_bottom .social_icon ul {
    margin-top: -5px;
    display: inline-block;
}

.blog_single_info .vfx_vfx-blog-sidebar_two .blog_content .vfx_post_info_bottom .social_icon ul li {
    display: inline-block;
    margin-left: 4px;
}

.blog_single_info .vfx_vfx-blog-sidebar_two .blog_content .vfx_post_info_bottom .social_icon ul li a {
    font-size: 14px;
    color: #fff;
    padding: 5px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    background: #237efd;
    width: 36px;
    height: 36px;
    border: 2px solid transparent;
    display: inline-block;
    border-radius: 40px;
    text-align: center;
    vertical-align: middle;
    line-height: 26px;
}

.blog_single_info .vfx_vfx-blog-sidebar_two .blog_content .vfx_post_info_bottom .social_icon ul li a:hover {
    background: transparent;
    border: 2px solid #237efd;
    color: #237efd;
}

.blog_single_info .blog_titles {
    font: 600 20px "Poppins", sans-serif;
    color: #282835;
    margin-bottom: 30px;
}

.blog_single_info blockquote {
    background-color: white;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(20, 3, 67, 0.08);
    box-shadow: 0px 10px 30px 0px rgba(20, 3, 67, 0.08);
    border-radius: 6px;
    padding: 28px 40px 22px 40px;
    position: relative;
    overflow: hidden;
    border-left: 6px solid #237efd;
    z-index: 0;
    margin: 40px 0px 45px;
}

.blog_single_info blockquote:before {
    content: "\f10d";
    font-size: 30px;
    color: #237efd;
    padding-bottom: 12px;
    display: inline-block;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.blog_single_info blockquote:after {
    content: "\f10d";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    bottom: auto;
    top: 80%;
    color: #f2effd;
    font-size: 70px;
    -webkit-transform: rotate(190deg);
    -ms-transform: rotate(190deg);
    transform: rotate(190deg);
    z-index: -1;
}

.blog_single_info blockquote i {
    font-size: 30px;
    color: #237efd;
    padding-bottom: 12px;
    display: inline-block;
}

.blog_single_info blockquote h6 {
    font-size: 20px;
    color: #525c7c;
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 0;
}

.blog_single_info blockquote .author_name {
    font-size: 14px;
    color: #848ca5;
    line-height: 20px;
    letter-spacing: 1px;
    margin-top: 22px;
    font-weight: 400;
    display: inline-block;
    text-transform: none;
}

.post_author_two {
    background: #f3f5fa;
    border-radius: 6px;
    padding: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.post_author_two .img_rounded {
    border-radius: 6px;
    width: 100px;
    height: 100px;
    margin-right: 30px;
}

.post_author_two .media-body .comment_info h3 {
    font: 500 18px/24px "Poppins", sans-serif;
    color: #282835;
}

.post_author_two .media-body .comment_info .comment-date {
    background: #237efd;
    border: 2px solid #237efd;
    margin-top: 10px;
    padding: 0px 10px;
    border-radius: 4px;
    display: inline-block;
    font: 400 14px "Poppins", sans-serif;
    color: #ffffff;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.06);
}

.post_author_two .media-body p {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 400;
    color: #525c7c;
}

.blog_related_post {
    margin-top: 60px;
}

.blog_related_post.vfx_blog_grid_info .vfx_vfx-blog-sidebar .blog_content {
    padding-top: 25px;
}

.blog_related_post.vfx_blog_grid_info .vfx_vfx-blog-sidebar .blog_content h5 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 8px;
}

.blog_related_post.vfx_blog_grid_info .vfx_vfx-blog-sidebar .blog_content p {
    font-size: 15px;
}

.comment_inner {
    margin-top: 40px;
}

.comment_inner .comment_box {
    margin-bottom: 0;
}

.comment_inner .comment_box .post_comment {
    background: #f3f5fa;
    padding: 30px 30px 30px;
    border-radius: 6px;
}

.comment_inner .comment_box .post_comment .post_author_two {
    padding: 0px;
    background: transparent;
    -webkit-box-align: inherit;
    -ms-flex-align: inherit;
    align-items: inherit;
}

.comment_inner .comment_box .post_comment .post_author_two .comment_info {
    display: inline-block;
}

.comment_inner .comment_box .post_comment .post_author_two .comment_info h3 {
    margin-bottom: 0px;
}

.comment_inner .comment_box .post_comment .post_author_two .img_rounded {
    width: 70px;
    height: 70px;
}

.comment_inner .comment_box .post_comment .post_author_two .comment_reply {
    background: #ffffff;
    padding: 7px 12px 4px 12px;
    border-radius: 4px;
    float: right;
    font: 500 13px "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #237efd;
    border: 2px solid #ebeef4;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.06);
}

.comment_inner .comment_box .post_comment .post_author_two .comment_reply i {
    vertical-align: middle;
    font-size: 16px;
    padding-left: 5px;
    margin-top: -6px;
    display: inline-block;
}

.comment_inner .comment_box .post_comment .post_author_two .comment_reply:hover {
    background: #237efd;
    color: #ffffff;
    border: 2px solid #237efd;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.comment_inner .comment_box .post_comment .post_author_two p {
    padding-top: 12px;
}

.comment_inner .comment_box .post_comment .reply_comment {
    margin-left: 100px;
    border-top: 1px solid #e8ebf4;
    margin-top: 30px;
}

.comment_inner .comment_box .post_comment .reply_comment .post_author_two {
    padding-left: 0px;
    padding-right: 0;
    padding-top: 30px;
}

.comment_inner .comment_box .post_comment:not(:last-child) {
    margin-bottom: 30px;
}

.blog_comment_box {
    margin-top: 10px;
}

.blog_comment_box .get_quote_form .form-group .form-control {
    background: #f7f8fb;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 2px solid #ebeef4;
}

.blog_comment_box .get_quote_form .form-group .form-control.placeholder {
    color: #9ca3b9;
}

.blog_comment_box .get_quote_form .form-group .form-control:-moz-placeholder {
    color: #9ca3b9;
}

.blog_comment_box .get_quote_form .form-group .form-control::-moz-placeholder {
    color: #9ca3b9;
}

.blog_comment_box .get_quote_form .form-group .form-control::-webkit-input-placeholder {
    color: #9ca3b9;
}

.blog_comment_box .get_quote_form .form-group .form-control:focus {
    border-color: #237efd;
    background: #fff;
}

.comments_widget ul {
    margin-bottom: 0;
}

.comments_widget ul li .comments_items .round_img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    margin-right: 20px;
    margin-top: 7px;
}

.comments_widget ul li .comments_items .media-body p {
    font-size: 15px;
    line-height: 26px;
    color: #282835;
    font-weight: 400;
    margin-bottom: 0px;
}

.comments_widget ul li .comments_items .media-body p:hover {
    color: #237efd;
}

.comments_widget ul li .comments_items .media-body span {
    font-size: 14px;
    line-height: 20px;
    text-transform: none;
    padding-left: 0;
    color: #848ca5;
    display: block;
    padding-top: 10px;
}

.comments_widget ul li:not(:last-child) {
    margin-bottom: 30px;
}

.widget_recent_comments #recentcomments {
    padding: 0px;
    list-style: none;
    margin-bottom: 0;
}

.widget_recent_comments #recentcomments .recentcomments {
    position: relative;
    padding-left: 90px;
    font-size: 15px;
    line-height: 26px;
    color: #282835;
    font-family: "Poppins", sans-serif;
    min-height: 66px;
}

.widget_recent_comments #recentcomments .recentcomments:before {
    content: "\76";
    font-family: eleganticons;
    border: 1px solid #237efd;
    text-align: center;
    line-height: 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 20px;
    color: #237efd;
    -webkit-transition: background 0.3s linear, color 0.3s linear;
    -o-transition: background 0.3s linear, color 0.3s linear;
    transition: background 0.3s linear, color 0.3s linear;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 6px;
}

.widget_recent_comments #recentcomments .recentcomments .comment-author-link {
    font-size: 13px;
    line-height: 20px;
    text-transform: uppercase;
    color: #848ca5;
}

.widget_recent_comments #recentcomments .recentcomments a {
    color: #282835;
}

.widget_recent_comments #recentcomments .recentcomments a:hover {
    color: #237efd;
}

.widget_recent_comments #recentcomments .recentcomments:hover:before {
    background: #237efd;
    color: #fff;
}

.widget_recent_comments #recentcomments .recentcomments:not(:last-child) {
    margin-bottom: 30px;
}

/*============= vfx_shop_grid_area css ==============*/

.vfx_shop_menu_left p {
    margin-bottom: 0px;
    font: 500 16px "Poppins", sans-serif;
    color: #282835;
}

.vfx_shop_menu_right h5 {
    font: 500 16px "Poppins", sans-serif;
    color: #282835;
    margin-bottom: 5px;
}

.vfx_shop_menu_right .selectpickers {
    background-color: #fff;
    border-radius: 5px;
    border: 2px solid #e8e8e8;
    margin: 0px 8px;
}

.vfx_shop_menu_right .selectpickers:after {
    width: 8px;
    height: 8px;
    top: 42%;
}

.vfx_shop_menu_right .selectpickers .current {
    font: 400 16px "Poppins", sans-serif;
    color: #677294;
    padding-right: 5px;
    margin-top: 5px;
}

.vfx_shop_menu_right .shop_grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.vfx_shop_menu_right .shop_grid .grid-style a,
.vfx_shop_menu_right .shop_grid .list-style a {
    background: #ffffff;
    border: 2px solid #e8e8e8;
    height: 42px;
    width: 42px;
    display: block;
    text-align: center;
    line-height: 42px;
    border-radius: 4px;
    margin-left: 6px;
}

.vfx_shop_menu_right .shop_grid a {
    font-size: 16px;
    color: #677294;
}

.vfx_shop_menu_right .shop_grid .grid-style a:hover,
.vfx_shop_menu_right .shop_grid .list-style a:hover {
    color: #ffffff;
    background: #237efd;
    border: 2px solid #237efd;
}

.vfx_shop_menu_right .shop_grid .active a {
    color: #ffffff;
    background: #237efd;
    border: 2px solid #237efd;
}

.vfx_shop_grid_area .vfx_shop_pagination_number {
    margin-top: 70px;
}

.vfx_single_product_item {
    text-align: center;
    margin-top: 25px;
}

.vfx_single_product_item .product_img {
    position: relative;
    border-radius: 10px;
}

.vfx_single_product_item .product_img img {
    border-radius: 6px 6px 0 0;
}

.vfx_shop_list_item .vfx_shop_list_img img {
    border-radius: 10px;
}

.product_slider .owl-stage-outer .owl-item img {
    border-radius: 10px;
}

.vfx_single_product_item .product_img .hover_content {
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 0;
    text-align: center;
    border-radius: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.8)));
    background-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    height: 20%;
    -webkit-transform: translateZ(20px);
    -ms-transform: translateZ(20px);
    transform: translateZ(20px);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    overflow: hidden;
    opacity: 0;
}

.vfx_single_product_item .product_img .hover_content a {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    text-align: center;
    line-height: 42px;
    background: #fff;
    margin: 0px 4px;
    color: #677294;
    font-size: 16px;
    display: inline-block;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.vfx_single_product_item .product_img .hover_content a:hover {
    background: #237efd;
    color: #fff;
}

.vfx_single_product_item .product_img .hover_content .cart_btn {
    font: 400 14px/20px "Poppins", sans-serif;
    color: #677294;
    border: 2px solid transparent;
    border-radius: 4px;
    background: #f9f9fc;
    padding: 8px 20px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    cursor: pointer;
    margin-right: 5px;
    top: -2px;
    display: inline-block;
    position: relative;
}

.vfx_single_product_item .product_img .hover_content .cart_btn:hover {
    color: #fff;
    background: #237efd;
    border-color: transparent;
}

.vfx_single_product_item .product_img:hover .hover_content {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.vfx_single_product_item .vfx_single_pare_details {
    background: #ffffff;
    padding: 25px 20px 20px 20px;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.1);
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.1);
    border-radius: 0 0 6px 6px;
    text-align: left;
}

.shop_list_area .vfx_single_product_item .vfx_single_pare_details {
    background: transparent;
    padding: 20px 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
}

.vfx_single_product_item .vfx_single_pare_details h3 {
    color: #282835;
    margin-bottom: 10px;
}

.vfx_shop_grid_area .vfx_single_product_item .vfx_single_pare_details h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.vfx_single_product_item .vfx_single_pare_details h3:hover {
    color: #237efd;
}

.vfx_single_product_item .vfx_single_pare_details .price {
    display: inline-block;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    font: 400 14px/28px "Poppins", sans-serif;
    color: #677294;
}

.vfx_single_product_item .vfx_single_pare_details .price ins {
    font-weight: 500;
    color: #282835;
    text-decoration: none;
    padding-right: 12px;
}

.vfx_single_product_item .ratting a {
    font-size: 14px;
    color: #f3ad16;
}

.vfx_single_product_item .ratting a:before {
    content: "\e60a\e60a\e60a\e60a\e60a";
    font-family: 'themify';
    letter-spacing: 3px;
}

.hr {
    width: 100%;
    height: 1px;
    background: #e7e7f6;
    margin-bottom: 40px;
}

.vfx_shop_pagination_number {
    text-align: center !important;
    margin-bottom: 0px;
}

.vfx_shop_pagination_number li {
    display: inline-block;
    margin: 0px 3px;
}

.vfx_shop_pagination_number li .page-numbers {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: 2px solid #e7e7f6;
    font-size: 16px;
    line-height: 38px;
    font-weight: 400;
    color: #677294;
    text-align: center;
    display: block;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.vfx_shop_pagination_number li .page-numbers:hover {
    border-color: #237efd;
    color: #237efd;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.1);
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.1);
}

.vfx_shop_pagination_number li .page-numbers.current {
    background: #237efd;
    border-color: #237efd;
    color: #fff;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.1);
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.1);
}

.shop_list_area .vfx_shop_pagination_number {
    margin-top: 70px;
}

.vfx_shop_list_item {
    padding-top: 40px;
}

.vfx_shop_list_item .vfx_single_product_item .vfx_single_pare_details {
    padding-bottom: 0px;
}

.vfx_shop_list_item .vfx_single_product_item .vfx_single_pare_details .price {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.vfx_shop_list_item .vfx_single_product_item .vfx_single_pare_details .s_list_title {
    display: inline-block;
}

.vfx_shop_list_item .vfx_single_product_item .vfx_single_pare_details .ratting {
    float: right;
}

.vfx_shop_list_item .vfx_single_product_item .vfx_single_pare_details .pr_button .cart_btn {
    font: 400 15px/22px "Poppins", sans-serif;
    color: #677294;
    border: 2px solid #e7e7f6;
    border-radius: 4px;
    background: #f9f9fc;
    padding: 10px 28px;
    float: left;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    cursor: pointer;
}

.vfx_shop_list_item .vfx_single_product_item .vfx_single_pare_details .pr_button .cart_btn:hover {
    color: #fff;
    background: #237efd;
    border-color: #237efd;
}

.vfx_shop_list_item .vfx_single_product_item .vfx_single_pare_details .pr_button a {
    width: 46px;
    height: 46px;
    border-radius: 4px;
    border: 2px solid #e7e7f6;
    background: #f9f9fc;
    display: inline-block;
    float: left;
    text-align: center;
    line-height: 46px;
    font-size: 16px;
    color: #282835;
    margin-left: 10px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    cursor: pointer;
}

.vfx_shop_list_item .vfx_single_product_item .vfx_single_pare_details .pr_button a:hover {
    color: #fff;
    background: #237efd;
    border-color: #237efd;
}

.product_details_area .product_slider {
    padding-right: 20px;
}

.product_details_area .product_slider .owl-thumbs {
    display: table;
    width: 102.6%;
    text-align: center;
    padding: 0;
    margin-top: 24px;
    margin-left: -7px;
    margin-right: -7px;
}

.product_details_area .product_slider .owl-thumbs .owl-thumb-item {
    display: table-cell;
    border: none;
    background: none;
    padding: 7px;
    width: calc(100% / 4);
}

.product_details_area .product_slider .owl-thumbs .owl-thumb-item img {
    max-width: 100%;
    border: 2px solid transparent;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.product_details_area .product_slider .owl-thumbs .owl-thumb-item.active img {
    border-color: #c8b6fc;
}

.pr_details .pr_title {
    color: #282835;
}

.pr_details .ratting {
    float: right;
    text-align: right;
}

.pr_details .ratting .star-rating {
    color: #237efd;
    line-height: 20px;
}

.pr_details .ratting .star-rating:before {
    content: "\e60a\e60a\e60a\e60a\e60a";
    font-family: 'themify';
    font-size: 16px;
}

.pr_details .ratting .woocommerce-review-link {
    font-size: 14px;
    font-weight: 400;
    color: #677294;
}

.pr_details .price {
    font: 400 18px "Poppins", sans-serif;
    color: #677294;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    padding-top: 8px;
}

.pr_details .price ins {
    text-decoration: none;
    font-weight: 600;
    color: #282835;
    padding-right: 18px;
}

.pr_details .stock {
    font: 400 16px "Poppins", sans-serif;
    color: #237efd;
    vertical-align: middle;
    padding-top: 20px;
    display: inline-block;
}

.pr_details .stock:before {
    content: "\e64c";
    font-family: 'themify';
    color: #237efd;
    padding-right: 10px;
}

.pr_details p {
    margin-bottom: 0px;
    padding: 20px 0px 30px;
}

.pr_details .vfx-product-qty {
    display: inline-block;
    position: relative;
    float: left;
    margin-right: 5px;
}

.pr_details .vfx-product-qty .manual-adjust {
    width: 95px;
    border: 2px solid #e7e7f6;
    border-radius: 4px;
    background: #fff;
    text-align: center;
    height: 52px;
}

.pr_details .vfx-product-qty .ar_top,
.pr_details .vfx-product-qty .ar_down {
    position: absolute;
    background: #fff;
    border: 0px;
    font-size: 12px;
    color: #677294;
    right: 2px;
    border-radius: 0;
    padding: 0px 15px 0px 0px;
}

.pr_details .vfx-product-qty .ar_top:hover,
.pr_details .vfx-product-qty .ar_down:hover {
    color: #237efd;
}

.pr_details .vfx-product-qty .ar_top {
    top: 4px;
}

.pr_details .vfx-product-qty .ar_down {
    bottom: 2px;
}

.pr_details .cart_button {
    display: inline-block;
}

.pr_details .cart_button .cart_btn {
    border-radius: 4px;
    font: 400 15px/48px "Poppins", sans-serif;
    color: #677294;
    border: 2px solid #e7e7f6;
    background: #f8f8fc;
    min-width: 140px;
    text-align: center;
    display: inline-block;
    margin: 0px 5px;
    float: left;
    margin-right: 10px;
}

.pr_details .cart_button .wish_list {
    height: 52px;
    line-height: 52px;
    text-align: center;
    color: #282835;
    width: 52px;
    border-radius: 4px;
    display: inline-block;
    border: 2px solid #e7e7f6;
}

.pr_details .cart_button .cart_btn,
.pr_details .cart_button .wish_list {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.pr_details .cart_button .cart_btn:hover,
.pr_details .cart_button .wish_list:hover {
    background: #237efd;
    color: #fff;
    border-color: #237efd;
}

.pr_details .product_meta {
    margin-bottom: 0;
}

.pr_details .product_meta li {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #677294;
    margin-bottom: 10px;
}

.pr_details .product_meta li a {
    color: #677294;
    padding-right: 5px;
}

.pr_details .product_meta li a:hover {
    color: #237efd;
}

.pr_details .product_meta li span {
    font-weight: 500;
    color: #282835;
    padding-right: 8px;
}

.pr_details .share-link label {
    margin-bottom: 0px;
    font: 400 15px "Poppins", sans-serif;
    color: #282835;
}

.pr_details .share-link .social-icon {
    margin-bottom: 0px;
    display: inline-block;
    padding-left: 8px;
}

.pr_details .share-link .social-icon li {
    display: inline-block;
}

.pr_details .share-link .social-icon li a {
    font-size: 14px;
    color: #fff;
    padding: 8px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    background: #237efd;
    width: 36px;
    height: 36px;
    border: 2px solid transparent;
    display: inline-block;
    border-radius: 40px;
    text-align: center;
    vertical-align: middle;
    line-height: 18px;
    margin-right: 3px;
}

.pr_details .share-link .social-icon li a:hover {
    background: transparent;
    border: 2px solid #237efd;
    color: #237efd;
}

.pr_details_area {
    padding-top: 120px;
}

.product_info_details {
    border-bottom: 1px solid #e2e5ef;
}

.product_info_details .pr_tab {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 0px;
    margin: 0 auto 50px;
}

.product_info_details .pr_tab .nav-item {
    float: left;
    margin: 0px;
    border: 2px solid #237efd;
    overflow: hidden;
}

.product_info_details .pr_tab .nav-item .nav-link {
    font: 500 16px/40px "Poppins", sans-serif;
    color: #237efd;
    padding: 5px 25px;
    min-width: 148px;
    text-align: center;
    border: 0px;
    border-radius: 0px;
}

.product_info_details .pr_tab .nav-item .nav-link.active {
    background: #237efd;
    color: #fff;
}

.product_info_details .pr_tab .nav-item:first-child {
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
    border-left: 2px solid #237efd;
}

.product_info_details .pr_tab .nav-item:last-child {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}

.aditional_info {
    margin-bottom: 30px;
}

.aditional_info h6 {
    position: relative;
    padding-bottom: 10px;
}

.aditional_info h6::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    margin: 8px 0 10px;
    position: absolute;
    bottom: -10px;
    width: 45px;
    border-radius: 30px;
}

.product_info_details .aditional_info h6 {
    color: #282835;
    font-size: 22px;
    font-weight: 600;
}

.product_info_details .comment-box .comment-content {
    padding-left: 95px;
    position: relative;
    margin-top: 20px;
}

.product_info_details .comment-box .comment-content .avatar {
    position: absolute;
    left: 0;
}

.product_info_details .comment-box .comment-content .avatar img {
    border-radius: 4px;
}

.product_info_details .comment-box .comment-content .comment-header {
    font: 400 14px "Poppins", sans-serif;
    display: inline-block;
}

.product_info_details .comment-box .comment-content .comment-header a {
    font-size: 15px;
    font-weight: 500;
    color: #3d3f45;
}

.product_info_details .comment-box .comment-content .comment-header a:after {
    content: "/";
    display: inline-block;
    margin: 0px 5px 0px 6px;
    font-weight: 400;
    color: #abb0bb;
}

.product_info_details .comment-box .comment-content .ratting a {
    font-size: 12px;
    color: #c9ccd1;
}

.product_info_details .comment-box .comment-content .ratting a:nth-child(1),
.product_info_details .comment-box .comment-content .ratting a:nth-child(2),
.product_info_details .comment-box .comment-content .ratting a:nth-child(3) {
    color: #237efd;
}

.pr_slider .owl-stage-outer {
    border-radius: 10px;
}

.car_get_quote_content {
    padding-bottom: 35px;
}

.car_get_quote_content h2 {
    color: #282835;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.car_get_quote_content h2::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    margin: 8px 0 10px;
    position: absolute;
    bottom: -10px;
    width: 45px;
    border-radius: 30px;
}

.car_get_quote_content .get_quote_form .form-group .form-control {
    height: 54px;
    border: 2px solid #ebeef4;
    border-radius: 4px;
    background: #f7f8fb;
    font: 400 16px "Poppins", sans-serif;
    color: #282835;
    padding-left: 20px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.car_get_quote_content .get_quote_form .form-group .form-control.placeholder {
    color: #a7adbe;
}

.car_get_quote_content .get_quote_form .form-group .form-control:-moz-placeholder {
    color: #a7adbe;
}

.car_get_quote_content .get_quote_form .form-group .form-control::-moz-placeholder {
    color: #a7adbe;
}

.car_get_quote_content .get_quote_form .form-group .form-control::-webkit-input-placeholder {
    color: #a7adbe;
}

.car_get_quote_content .get_quote_form .form-group .form-control:focus {
    border-color: #ddd1fe;
    background-color: white;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 21, 46, 0.1);
    box-shadow: 0px 10px 20px 0px rgba(0, 21, 46, 0.1);
}

.car_get_quote_content .get_quote_form .form-group textarea.form-control {
    height: 200px;
    padding-top: 20px;
}

form.get_quote_form .ratting {
    border: 2px solid #ebeef4;
    padding: 6px 15px;
    border-radius: 6px;
    background: #f7f8fb;
}

.car_get_quote_content .ratting span {
    font-size: 15px;
    color: #282835;
    font-weight: 400;
}

.car_get_quote_content .ratting a {
    font-size: 14px;
    color: #c9ccd1;
}

.car_get_quote_content .ratting a:nth-child(4),
.car_get_quote_content .ratting a:nth-child(2),
.car_get_quote_content .ratting a:nth-child(3) {
    color: #237efd;
}

.car_get_quote_content .agency_banner_btn {
    float: right;
    border-radius: 4px;
    height: 46px;
    line-height: 45px;
    padding: 0px;
    min-width: 120px;
    text-align: center;
}

input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
}

/*============ vfx_shopping_cart_area css =============*/

.vfx_shopping_cart_area .cart_title {
    border-bottom: 1px solid #e7e7f6;
}

.vfx_shopping_cart_area h6 {
    font-size: 15px;
    color: #282835;
    line-height: 30px;
}

.vfx_shopping_cart_area .cart_table {
    padding-top: 30px;
}

.vfx_shopping_cart_area .cart_table tbody {
    width: 100%;
}

.vfx_shopping_cart_area .cart_table td {
    vertical-align: middle;
    font: 400 16px/28px "Poppins", sans-serif;
    color: #282835;
    border: 0px;
    padding-top: 0px;
    padding-bottom: 30px;
}

.vfx_shopping_cart_area .cart_table .product {
    padding-top: 0px;
}

.vfx_shopping_cart_area .cart_table .product .media .media-left {
    width: 100px;
    height: 100px;
}

.vfx_shopping_cart_area .cart_table .product .media .media-left img {
    max-width: 100%;
    border-radius: 6px;
    margin-left: 3px;
}

.vfx_shopping_cart_area .cart_table .product .media .media-body {
    padding-left: 30px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.vfx_shopping_cart_area .cart_table .product .media .media-body h5 {
    font: 500 16px/28px "Poppins", sans-serif;
    color: #282835;
}

.vfx_shopping_cart_area .cart_table .total {
    width: 175px;
}

.vfx_shopping_cart_area .cart_table .quantity {
    width: 175px;
}

.vfx_shopping_cart_area .cart_table .quantity p {
    color: #677294;
    margin-bottom: 0px;
}

.vfx_shopping_cart_area .cart_table .del-item {
    white-space: nowrap;
    vertical-align: middle;
    width: 140px;
}

.vfx_shopping_cart_area .cart_table .del-item a {
    color: #677294;
}

.vfx_shopping_cart_area .cart_table .del-item a:hover {
    color: #237efd;
}

.vfx_shopping_cart_area .cart_table .del-item a i {
    font-size: 22px;
    background: #237efd;
    position: relative;
    top: 0px;
    color: #fff;
    width: 32px;
    height: 32px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    border-radius: 30px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.vfx_shopping_cart_area .cart_table .del-item a i:hover {
    background: #eaeaea;
    color: #237efd;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.vfx_shopping_cart_area .cart_table .del-item a+a {
    position: relative;
    top: 3px;
}

.vfx_shopping_cart_area .cart_table .del-item .total {
    margin-right: 85px;
}

.vfx_shopping_cart_area .cart_table .vfx-product-qty {
    position: relative;
    display: inline-block;
}

.vfx_shopping_cart_area .cart_table .vfx-product-qty .ar_top,
.vfx_shopping_cart_area .cart_table .vfx-product-qty .ar_down {
    position: absolute;
    background: #fff;
    border: 0px;
    font-size: 12px;
    color: #677294;
    right: 3px;
    border-radius: 0px;
    padding: 0px 15px 0px 0px;
    line-height: 12px;
    cursor: pointer;
}

.vfx_shopping_cart_area .cart_table .vfx-product-qty .ar_top:hover,
.vfx_shopping_cart_area .cart_table .vfx-product-qty .ar_down:hover {
    color: #237efd;
}

.vfx_shopping_cart_area .cart_table .vfx-product-qty .ar_top {
    top: 9px;
}

.vfx_shopping_cart_area .cart_table .vfx-product-qty .ar_down {
    bottom: 8px;
}

.vfx_shopping_cart_area .cart_table .vfx-product-qty .manual-adjust {
    width: 95px;
    border: 2px solid #e7e7f6;
    height: 44px;
    border-radius: 4px;
    text-align: center;
    color: #677294;
}

.vfx_shopping_cart_area .cart_table .vfx-product-qty .manual-adjust.placeholder {
    color: #677294;
}

.vfx_shopping_cart_area .cart_table .vfx-product-qty .manual-adjust:-moz-placeholder {
    color: #677294;
}

.vfx_shopping_cart_area .cart_table .vfx-product-qty .manual-adjust::-moz-placeholder {
    color: #677294;
}

.vfx_shopping_cart_area .cart_table .vfx-product-qty .manual-adjust::-webkit-input-placeholder {
    color: #677294;
}

.vfx_shopping_cart_area .cart_btn {
    font: 500 14px "Poppins", sans-serif;
    color: #fff;
    border: 2px solid #237efd;
    margin: 0px;
    background: #237efd;
    padding: 10px 25px;
    border-radius: 4px;
}

.vfx_shopping_cart_area .cart_btn.cart_btn_two {
    border: 2px solid #e7e7f6;
    background: transparent;
    color: #5c6789;
    margin-left: 15px;
}

.vfx_shopping_cart_area .action_btn {
    width: 100%;
}

.vfx_shopping_cart_area h5 {
    color: #282835;
}

.vfx_shopping_cart_area .wislist_table .total,
.vfx_shopping_cart_area .wislist_table .del-item {
    width: 178px;
}

.vfx_shopping_cart_area .wislist_table .quantity {
    width: 140px;
}

.vfx_shopping_cart_area .wislist_table .add_cart {
    font: 500 14px "Poppins", sans-serif;
    border: 2px solid #e7e7f6;
    background: transparent;
    color: #5c6789;
    margin-right: 20px;
    padding: 10px 20px;
    border-radius: 4px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.vfx_shopping_cart_area .wislist_table .add_cart:hover {
    background: #237efd;
    color: #fff !important;
    border-color: #237efd;
}

.cart_box {
    width: 370px;
    border: 1px solid #f4f4f9;
    background-color: white;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    padding: 20px 25px;
}

.cart_box .shop_table {
    width: 100%;
}

.cart_box .shop_table tbody tr {
    border-bottom: 1px solid #e7e7f6;
}

.cart_box .shop_table tbody tr th {
    width: 70%;
}

.cart_box .shop_table tbody tr td,
.cart_box .shop_table tbody tr th {
    font: 400 16px/28px "Poppins", sans-serif;
    color: #282835;
    padding: 10px 0px;
}

.cart_box .shop_table tbody tr td {
    text-align: right;
}

.cart_box .shop_table tbody tr td .amount {
    color: #677294;
}

.cart_box .shop_table tbody tr:last-child {
    border: 0px;
}

.coupon {
    width: 370px;
    position: relative;
}

.coupon .input_text {
    width: 100%;
    border: 2px solid #f4f4f9;
    border-radius: 4px;
    background-color: white;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    font: 400 15px "Poppins", sans-serif;
    color: #9ca3b9;
    height: 55px;
    padding-left: 15px;
    padding-right: 90px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.coupon .input_text:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.coupon .button {
    position: absolute;
    right: 4px;
    top: 50%;
    margin-right: 0;
    font: 500 14px/38px "Poppins", sans-serif;
    color: #282835;
    height: 48px;
    padding: 0px 25px;
    border: 0px;
    background: #eff2f7;
    border-radius: 3px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.coupon .button:hover {
    background: #237efd;
    color: #fff;
}

.checkout_button {
    font: 500 15px/30px "Poppins", sans-serif;
    color: #fff;
    background: #237efd;
    border-radius: 0px;
    display: block;
    text-align: center;
    padding: 10px 0px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border: 2px solid #237efd;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.checkout_button:hover {
    background: transparent;
    color: #237efd;
}

/*================== vfx_return_customer_check_list_css ======================*/

.vfx_return_customer {
    font: 400 15px/40px "Poppins", sans-serif;
    color: #3d3f45;
    padding-bottom: 20px;
}

.vfx_return_customer i {
    color: #237efd;
    padding-right: 8px;
    font-size: 14px;
}

.vfx_return_customer a {
    color: #fff;
    background: #237efd;
    padding: 6px 10px;
    border-radius: 4px;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
}

.vfx_return_customer a.collapsed {
    color: #237efd;
    background: #f6f6f9;
    padding: 6px 10px;
    border-radius: 4px;
    border: 2px solid #e7e7f6;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
}

.vfx_checkout_content {
    margin-bottom: -22px;
}

.vfx_checkout_content h3.vfx_checkout_title {
    position: relative;
    padding-bottom: 15px;
}

.vfx_checkout_content h3.vfx_checkout_title::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    margin: 8px 0 10px;
    position: absolute;
    bottom: -10px;
    width: 45px;
    border-radius: 30px;
}

.vfx_checkout_content .vfx_checkout_title {
    margin-top: 40px;
    color: #282835;
}

.vfx_checkout_content input {
    -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    background: #fff;
    padding: 0px 20px;
    font: 400 14px/50px "Poppins", sans-serif;
    color: #9ca3b9;
    border: 2px solid #ebeef4;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 20px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.vfx_checkout_content input.placeholder {
    color: #9ca3b9;
}

.vfx_checkout_content input:-moz-placeholder {
    color: #9ca3b9;
}

.vfx_checkout_content input::-moz-placeholder {
    color: #9ca3b9;
}

.vfx_checkout_content input::-webkit-input-placeholder {
    color: #9ca3b9;
}

.job_apply .selectpickers ul {
    width: 100%;
}

.vfx_checkout_content input:focus {
    -webkit-box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.06);
    border-color: #68a6fe;
    outline: none;
}

.form_apply .selectpickers {
    border: 2px solid transparent;
}

.form_apply .selectpickers:focus {
    -webkit-box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.06);
    outline: none;
    line-height: 46px;
    border: 2px solid #68a6fe;
}

.vfx_checkout_content label {
    font: 600 16px/40px "Poppins", sans-serif;
    display: block;
    color: #282835;
    position: relative;
    margin-bottom: 20px;
}

.vfx_checkout_content label .required {
    font-size: 16px;
    color: #ff2525;
    text-decoration: none;
}

.vfx_checkout_content .selectpickers {
    width: 100%;
    border-radius: 4px;
    border: 2px solid #ebeef4;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    font: 400 14px/46px "Poppins", sans-serif;
    background: #fff;
    height: 54px;
    color: #9ca3b9;
    padding-left: 20px;
    margin-bottom: 20px;
}

.vfx_checkout_content .selectpickers:after {
    right: 20px;
}

.vfx_checkout_content .selectpickers ul {
    width: 100%;
}

.vfx_checkout_content input[type="checkbox"] {
    position: relative;
    margin-top: 18px;
    width: 20px;
    height: 16px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.vfx_checkout_content input[type="checkbox"]:before {
    content: "";
    display: block;
    position: absolute;
    width: 22px;
    height: 22px;
    border: 2px solid #9ca3b9;
    top: -2px;
    left: -2px;
    border-radius: 30px;
    background-color: #fbfbfb;
}

.vfx_checkout_content input[type="checkbox"]:checked:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 54%;
    left: 45%;
    border-radius: 30px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #9ca3b9;
}

.vfx_checkout_content .l_text {
    display: inline-block;
    font: 400 15px/26px "Poppins", sans-serif;
    color: #9ca3b9;
    padding-left: 8px;
}

.vfx_checkout_content textarea {
    width: 100%;
    border: 0px;
    border-radius: 4px;
    -webkit-box-shadow: 0px 2px 3px 0px rgba(0, 11, 40, 0.06);
    box-shadow: 0px 2px 3px 0px rgba(0, 11, 40, 0.06);
    height: 130px;
    font: 400 14px/20px "Poppins", sans-serif;
    color: #505257;
    border: 2px solid #ebeef4;
    padding-left: 20px;
    padding-top: 20px;
    margin-bottom: 20px;
}

.vfx_checkout_content input.placeholder {
    color: #9ca3b9;
}

.vfx_checkout_content input:-moz-placeholder {
    color: #9ca3b9;
}

.vfx_checkout_content input::-moz-placeholder {
    color: #9ca3b9;
}

.vfx_checkout_content input::-webkit-input-placeholder {
    color: #9ca3b9;
}

.vfx_checkout_content textarea.placeholder {
    color: #9ca3b9;
}

.vfx_checkout_content textarea:-moz-placeholder {
    color: #9ca3b9;
}

.vfx_checkout_content textarea::-moz-placeholder {
    color: #9ca3b9;
}

.vfx_checkout_content textarea::-webkit-input-placeholder {
    color: #9ca3b9;
}

.vfx_checkout_area #coupon,
.vfx_checkout_area #coupon_two {
    background: #f6f6f9;
    padding: 20px;
    border: 2px solid #e7e7f6;
    margin-bottom: 30px;
    border-radius: 6px;
    -webkit-box-shadow: 0px 2px 3px 0px rgba(0, 11, 40, 0.06);
    box-shadow: 0px 2px 3px 0px rgba(0, 11, 40, 0.06);
}

.vfx_checkout_content textarea:focus {
    outline: none;
    border-color: #68a6fe;
}

.vfx_checkout_content .tab_content p {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    margin-bottom: 0px;
    padding: 0px 0px 25px;
}

.vfx_checkout_content .tab_content .login_button {
    overflow: hidden;
    margin-bottom: 5px;
}

.vfx_checkout_content .tab_content .login_button label {
    display: inline-block;
    margin-bottom: 0px;
    margin-top: -2px;
    vertical-align: middle;
}

.vfx_checkout_content .tab_content .login_button label input {
    margin-bottom: 0px;
}

.vfx_checkout_content .tab_content .login_btn {
    float: left;
    font: 400 16px/48px "Poppins", sans-serif;
    background: #237efd;
    border: 2px solid #237efd;
    color: #fff;
    border-radius: 4px;
    padding: 0px 20px;
    margin-right: 20px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.vfx_checkout_content .tab_content .login_btn:hover {
    background: transparent;
    color: #237efd;
}

.vfx_checkout_content .tab_content .vfx_coupon_form {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 8px;
}

.vfx_checkout_content .tab_content .vfx_coupon_form input {
    max-width: 380px;
    margin-bottom: 0px;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
    box-shadow: 0px 2px 4px 0px rgba(12, 0, 46, 0.04);
}

.vfx_checkout_content .tab_content .vfx_coupon_form .login_btn {
    line-height: 50px;
    margin-left: 20px;
}

.vfx_cart_total_box {
    margin-left: 20px;
    background: #fff;
    border-radius: 6px;
    -webkit-box-shadow: 0px 2px 3px 0px rgba(0, 11, 40, 0.06);
    box-shadow: 0px 2px 3px 0px rgba(0, 11, 40, 0.06);
    padding: 40px;
}

.vfx_cart_total_box .vfx_checkout_title {
    border-bottom: 2px solid #e7e7f6;
    padding-bottom: 10px;
    color: #282835;
}

.vfx-shopping-checkout-order-review .shop_table {
    width: 100%;
    margin-bottom: 30px;
}

.vfx-shopping-checkout-order-review .shop_table tbody tr td {
    font: 400 15px/30px "Poppins", sans-serif;
    color: #677294;
}

.vfx-shopping-checkout-order-review .shop_table tbody tr td.price {
    color: #282835;
}

.vfx-shopping-checkout-order-review .shop_table tbody tr td.total {
    color: #237efd;
    font-size: 20px;
}

.vfx-shopping-checkout-order-review .shop_table tbody tr td+td {
    text-align: right;
}

.vfx-shopping-checkout-order-review .shop_table tbody tr.subtotal {
    border-top: 1px solid #dfe2f1;
}

.vfx-shopping-checkout-order-review .shop_table tbody tr.subtotal td {
    line-height: 56px;
    padding-bottom: 0px;
}

.vfx-shopping-checkout-order-review h6 {
    font-size: 15px;
    color: #282835;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    margin: 0px;
    line-height: 30px;
    margin-bottom: 6px;
}

.vfx-shopping-checkout-order-review .note {
    font-size: 15px;
    line-height: 26px;
    color: #677294;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    margin-bottom: 25px;
}

.vfx-shopping-checkout-order-review ul li.payment {
    padding-left: 25px;
    position: relative;
}

.vfx-shopping-checkout-order-review ul li.payment .radio-btn {
    position: absolute;
    left: 0;
}

.vfx-shopping-checkout-order-review ul li.payment span {
    float: none;
    font-size: 12px;
    color: #ff5f6d;
    padding-top: 15px;
    display: block;
}

.vfx-shopping-checkout-order-review ul li input[type="checkbox"] {
    position: relative;
    border: 0px;
    visibility: hidden;
    display: none;
}

.vfx-shopping-checkout-order-review ul li input[type="checkbox"]:checked+label:after {
    opacity: 1;
}

.vfx-shopping-checkout-order-review ul li input[type="checkbox"]:checked+label:before {
    border-color: #237efd;
}

.vfx-shopping-checkout-order-review ul li .radio-btn {
    line-height: 20px;
}

.vfx-shopping-checkout-order-review ul li .radio-btn label {
    color: #8f8f8f;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    padding-left: 20px;
}

.vfx-shopping-checkout-order-review ul li .radio-btn label:before {
    content: "";
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid #9ca3b9;
    top: 0px;
    left: 0;
    border-radius: 50%;
}

.vfx-shopping-checkout-order-review ul li .radio-btn label:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 50%;
    background: #237efd;
    opacity: 0;
}

.vfx-shopping-checkout-order-review .condition {
    border-top: 1px solid #dfe2f1;
    padding-top: 25px;
    margin-top: 50px;
}

.vfx-shopping-checkout-order-review .condition p {
    font-size: 15px;
    font-weight: 400;
}

.vfx-shopping-checkout-order-review .condition input[type="checkbox"] {
    position: relative;
    border: 0px;
    visibility: hidden;
    display: none;
}

.vfx-shopping-checkout-order-review .condition input[type="checkbox"]:checked+label:after {
    opacity: 1;
}

.vfx-shopping-checkout-order-review .condition input[type="checkbox"]:checked+label:before {
    border-color: #237efd;
}

.vfx-shopping-checkout-order-review .condition .l_text {
    position: relative;
    padding-left: 35px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    color: #282835;
}

.vfx-shopping-checkout-order-review .condition .l_text span {
    color: #ff1e1e;
}

.vfx-shopping-checkout-order-review .condition .l_text:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #878a8e;
    top: 8px;
    left: 0;
    border-radius: 30px;
    background-color: white;
}

.vfx-shopping-checkout-order-review .condition .l_text:after {
    content: "";
    display: block;
    width: 6px;
    height: 10px;
    border: solid #237efd;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 12px;
    left: 7px;
    opacity: 0;
}

.vfx-shopping-checkout-order-review .button {
    width: 100%;
    background: #237efd;
    border: 2px solid #237efd;
    font: 500 16px/34px "Poppins", sans-serif;
    color: #fff;
    cursor: pointer;
    margin-top: 25px;
    border-radius: 4px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.vfx-shopping-checkout-order-review .button:hover {
    background: transparent;
    color: #237efd;
}

.pr_sidebar .widget+.widget {
    margin-top: 60px;
}

.pr_sidebar .sp_widget_title {
    color: #282835;
    font-size: 20px;
    font-weight: 500;
    position: relative;
    margin-bottom: 30px;
}

.pr_sidebar .filter_slider_area {
    padding-top: 10px;
}

.pr_sidebar .filter_slider_area .ui-slider {
    height: 6px;
    background: #dbe2e9;
    border: 0px;
    border-radius: 0px;
}

.pr_sidebar .filter_slider_area .ui-slider .ui-slider-range {
    background: #9f7efd;
    border-radius: 0px;
}

.pr_sidebar .filter_slider_area .ui-slider .ui-slider-handle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #237efd;
    border: 0px;
    margin-left: 0;
    top: -7px;
}

.pr_sidebar .filter_slider_area .ui-slider .ui-slider-handle:focus {
    outline: none;
}

.pr_sidebar .filter_slider_area .filter_content {
    font-size: 16px;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
    color: #282835;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
}

.pr_sidebar .filter_slider_area .filter_content #amount {
    border: 0px;
    font-size: 16px;
    display: inline-block;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 5px;
}

.pr_sidebar .widget_category ul {
    margin-bottom: 0;
}

.pr_sidebar .widget_category ul li a {
    font-size: 16px;
    color: #677294;
    display: inline-block;
    position: relative;
}

.pr_sidebar .widget_category ul li a:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #237efd;
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.pr_sidebar .widget_category ul li a:hover {
    color: #237efd;
}

.pr_sidebar .widget_category ul li a:hover:before {
    opacity: 1;
}

.pr_sidebar .widget_category ul li:not(:last-child) {
    margin-bottom: 15px;
}

.pr_sidebar .woocommerce-widget-layered-nav-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.pr_sidebar .woocommerce-widget-layered-nav-list li {
    position: relative;
    padding-left: 30px;
    color: #333;
}

.pr_sidebar .woocommerce-widget-layered-nav-list li::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    border: 1px solid #333333;
    left: 0;
    top: 50%;
    margin-top: -7.5px;
}

.pr_sidebar .woocommerce-widget-layered-nav-list li a {
    color: #333;
}

.pr_sidebar .woocommerce-widget-layered-nav-list li:not(:last-child) {
    margin-bottom: 12px;
}

.pr_sidebar .widget_size ul {
    margin-bottom: 0;
    list-style: none;
    padding-left: 0;
}

.pr_sidebar .widget_size ul li {
    font-size: 16px;
    color: #333333;
}

.pr_sidebar .widget_size ul li a {
    color: #333333;
}

.pr_sidebar .widget_color ul li:first-child:before {
    background: #1c1c1c;
    border-color: #1c1c1c;
}

.pr_sidebar .widget_color ul li:nth-child(2):before {
    background: #ff934c;
    border-color: #ff934c;
}

.pr_sidebar .widget_color ul li:nth-child(3):before {
    background: #fb53a7;
    border-color: #fb53a7;
}

.pr_sidebar .widget_color ul li:nth-child(4):before {
    background: #ff4949;
    border-color: #ff4949;
}

.pr_sidebar .widget_color ul li:nth-child(6):before {
    background: #ffeb50;
    border-color: #ffeb50;
}

.pr_sidebar .widget_product ul {
    margin-bottom: 0;
}

.pr_sidebar .widget_product ul li .media {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.pr_sidebar .widget_product ul li .media img {
    padding-right: 30px;
}

.pr_sidebar .widget_product ul li .media .media-body h3 {
    font-size: 16px;
    color: #282835;
}

.pr_sidebar .widget_product ul li .media .media-body .rate {
    color: #677294;
    font-size: 16px;
}

.pr_sidebar .widget_product ul li:not(:last-child) {
    margin-bottom: 20px;
}

.pr_sidebar .widget_tag ul li {
    display: inline-block;
    margin-bottom: 6px;
}

.pr_sidebar .widget_tag ul li a {
    font-size: 16px;
    color: #677294;
    position: relative;
    display: block;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.pr_sidebar .widget_tag ul li a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #237efd;
    opacity: 0;
    -webkit-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

.pr_sidebar .widget_tag ul li a:hover {
    color: #237efd;
}

.pr_sidebar .widget_tag ul li a:hover:before {
    opacity: 1;
}

/*=============== search_boxs_css =================*/

.search_boxs {
    z-index: 20000;
    position: fixed;
    top: -105%;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
}

.search_boxs:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: rgba(27, 29, 34, 0.95);
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    border-radius: 100%;
    -webkit-transform: scale(0.04), translateY(9999px);
    -ms-transform: scale(0.04), translateY(9999px);
    transform: scale(0.04), translateY(9999px);
    overflow: hidden;
}

.search_boxs .close_icon {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out, -webkit-transform 0.2s ease-out;
    opacity: 0;
}

.search_boxs .input-group {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    max-width: 800px;
    width: 20%;
    opacity: 0;
    -webkit-transition: all 900ms linear;
    -o-transition: all 900ms linear;
    transition: all 900ms linear;
    -webkit-transition-delay: 0.75s;
    -o-transition-delay: 0.75s;
    transition-delay: 0.75s;
}

.search_boxs .input-group input {
    border: none;
    height: 55px;
    padding: 0px 15px;
    font-size: 16px;
    padding-left: 0px;
    width: 100%;
    color: #fff;
    background: transparent;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 0px;
    outline: none;
}

.search_boxs .input-group input.placeholder {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.search_boxs .input-group input:-moz-placeholder {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.search_boxs .input-group input::-moz-placeholder {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.search_boxs .input-group input::-webkit-input-placeholder {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.search_boxs .input-group .input-group-append {
    margin-left: 0px;
    position: absolute;
    right: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 4;
}

.search_boxs .input-group .input-group-append button {
    border: none;
    background: transparent;
    border-radius: 0px;
    height: 55px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    padding: 0px;
    font-family: "Poppins", sans-serif;
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    cursor: pointer;
}

.search_boxs .input-group .input-group-append button i {
    cursor: pointer;
}

input[type="text"] {
    -webkit-appearance: none;
    outline: none;
}

.open .search_boxs {
    top: 0px;
}

.open .search_boxs:before {
    -webkit-animation: menu-animation 0.8s ease-out forwards;
    animation: menu-animation 0.8s ease-out forwards;
    height: 100%;
}

.open .search_boxs .close_icon {
    -webkit-transition-delay: 0.75s;
    -o-transition-delay: 0.75s;
    transition-delay: 0.75s;
    opacity: 1;
}

.open .search_boxs .input-group {
    width: 100%;
    opacity: 1;
}

@-webkit-keyframes menu-animation {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.04) translateY(300%);
        transform: scale(0.04) translateY(300%);
    }
    40% {
        -webkit-transform: scale(0.04) translateY(0);
        transform: scale(0.04) translateY(0);
        -webkit-transition: ease-out;
        -o-transition: ease-out;
        transition: ease-out;
    }
    40% {
        -webkit-transform: scale(0.04) translateY(0);
        transform: scale(0.04) translateY(0);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(0.02) translateY(0px);
        transform: scale(0.02) translateY(0px);
    }
    61% {
        -webkit-transform: scale(0.04);
        transform: scale(0.04);
    }
    99.9% {
        height: 0;
        padding-bottom: 100%;
        border-radius: 100%;
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        height: 100%;
        padding-bottom: 0;
        border-radius: 0;
    }
}

@keyframes menu-animation {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.04) translateY(300%);
        transform: scale(0.04) translateY(300%);
    }
    40% {
        -webkit-transform: scale(0.04) translateY(0);
        transform: scale(0.04) translateY(0);
        -webkit-transition: ease-out;
        -o-transition: ease-out;
        transition: ease-out;
    }
    40% {
        -webkit-transform: scale(0.04) translateY(0);
        transform: scale(0.04) translateY(0);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale(0.02) translateY(0px);
        transform: scale(0.02) translateY(0px);
    }
    61% {
        -webkit-transform: scale(0.04);
        transform: scale(0.04);
    }
    99.9% {
        height: 0;
        padding-bottom: 100%;
        border-radius: 100%;
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        height: 100%;
        padding-bottom: 0;
        border-radius: 0;
    }
}

/*====================== split_slider_content_css =======================*/

.ms-section.section_1 {
    background-image: -moz-linear-gradient(40deg, #6712a8 0%, #5f28fb 100%);
    background-image: -webkit-linear-gradient(40deg, #6712a8 0%, #5f28fb 100%);
    background-image: -ms-linear-gradient(40deg, #6712a8 0%, #5f28fb 100%);
}

.ms-section.section_2 {
    background-image: -moz-linear-gradient(40deg, #6712a8 0%, #5f28fb 100%);
    background-image: -webkit-linear-gradient(40deg, #6712a8 0%, #5f28fb 100%);
    background-image: -ms-linear-gradient(40deg, #6712a8 0%, #5f28fb 100%);
}

.ms-section.section_4 {
    background-image: -moz-linear-gradient(40deg, #6712a8 0%, #5f28fb 100%);
    background-image: -webkit-linear-gradient(40deg, #6712a8 0%, #5f28fb 100%);
    background-image: -ms-linear-gradient(40deg, #6712a8 0%, #5f28fb 100%);
}

.ms-section.section_6 {
    background-image: -webkit-linear-gradient(310deg, #6712a8 0%, #5f28fb 100%);
    background-image: -o-linear-gradient(310deg, #6712a8 0%, #5f28fb 100%);
    background-image: -webkit-linear-gradient(50deg, #6712a8 0%, #5f28fb 100%);
    background-image: -o-linear-gradient(50deg, #6712a8 0%, #5f28fb 100%);
    background-image: linear-gradient(40deg, #6712a8 0%, #5f28fb 100%);
}

.height {
    height: 100%;
}

.split_banner,
.split_banner_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.square {
    width: 50px;
    height: 50px;
}

.square.one {
    top: 200px;
    left: 50px;
    -webkit-animation: spin2 2s infinite alternate;
    animation: spin2 2s infinite alternate;
}

.square.two {
    top: 220px;
    left: 70px;
    -webkit-animation: spin2 2.5s infinite alternate;
    animation: spin2 2.5s infinite alternate;
}

.square.three {
    height: 102px;
    width: 102px;
    top: auto;
    left: 20px;
    bottom: -10%;
    -webkit-animation: spin1 3s infinite alternate;
    animation: spin1 3s infinite alternate;
}

.square.four {
    bottom: 43%;
    left: 80px;
    -webkit-animation: spin2 2s infinite alternate;
    animation: spin2 2s infinite alternate;
}

.intro {
    width: 70%;
    margin-left: auto;
    margin-right: 100px;
    position: relative;
}

.split_slider_content {
    color: #fff;
    padding: 70px 0px 70px 120px;
    position: relative;
    z-index: 0;
}

.split_slider_content .br_shap {
    position: absolute;
    left: 0;
    top: 0;
    width: 330px;
    border: 10px solid #8429c9;
    height: 100%;
    z-index: -1;
}

.split_slider_content h2 {
    font-size: 50px;
    line-height: 66px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 0;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 1s linear;
    -o-transition: all 1s linear;
    transition: all 1s linear;
    color: #fff;
}

.split_slider_content h2:before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    opacity: 0.8;
    position: absolute;
    z-index: 0;
    -webkit-transition: all 1s linear;
    -o-transition: all 1s linear;
    transition: all 1s linear;
}

.split_slider_content p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 45px;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0;
}

.split_slider_content .btn_get {
    border: 1px solid #fff;
    border-radius: 3px;
    color: #fff;
    padding: 3px 33px;
    font-size: 15px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0;
}

.split_slider_content .btn_get:hover {
    background: #fff;
    color: #5f28fb;
}

.split_slider_content .content {
    overflow: hidden;
}

.spliet_slider_img .phone_one {
    position: absolute;
    top: -23%;
    z-index: 0;
    left: 111px;
    -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    -webkit-animation-name: animateUpDown;
    animation-name: animateUpDown;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.spliet_slider_img .phone_two {
    position: relative;
    left: 40px;
    top: 112px;
    -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    -webkit-animation-name: animateUpDown;
    animation-name: animateUpDown;
    -webkit-animation-duration: 3.3s;
    animation-duration: 3.3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.border_shap {
    position: absolute;
    width: 400px;
    height: 700px;
    background: rgba(255, 255, 255, 0.05);
    top: 0;
    left: 100px;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    opacity: 0;
    visibility: hidden;
}

.border_shap.two {
    left: 36%;
    top: -20%;
}

.square {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
}

.active .border_shap {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    -webkit-transition: 1.5s ease-in-out;
    -o-transition: 1.5s ease-in-out;
    transition: 1.5s ease-in-out;
}

.active .border_shap.two {
    -webkit-transition: -webkit-transform 2.5s linear;
    transition: -webkit-transform 2.5s linear;
    -o-transition: transform 2.5s linear;
    transition: transform 2.5s linear;
    transition: transform 2.5s linear, -webkit-transform 2.5s linear;
}

.active .split_slider_content h2 {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 1.5s linear;
    -o-transition: all 1.5s linear;
    transition: all 1.5s linear;
}

.active .split_slider_content h2:before {
    right: 0;
    left: auto;
    width: 0;
    -webkit-transition: all 2s linear;
    -o-transition: all 2s linear;
    transition: all 2s linear;
}

.active .split_slider_content p {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity 1s 1.5s linear, -webkit-transform 1s 1.5s linear;
    transition: opacity 1s 1.5s linear, -webkit-transform 1s 1.5s linear;
    -o-transition: transform 1s 1.5s linear, opacity 1s 1.5s linear;
    transition: transform 1s 1.5s linear, opacity 1s 1.5s linear;
    transition: transform 1s 1.5s linear, opacity 1s 1.5s linear, -webkit-transform 1s 1.5s linear;
}

.active .split_slider_content .btn_get {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: opacity 1s 1.7s linear, -webkit-transform 1s 1.8s linear;
    transition: opacity 1s 1.7s linear, -webkit-transform 1s 1.8s linear;
    -o-transition: transform 1s 1.8s linear, opacity 1s 1.7s linear;
    transition: transform 1s 1.8s linear, opacity 1s 1.7s linear;
    transition: transform 1s 1.8s linear, opacity 1s 1.7s linear, -webkit-transform 1s 1.8s linear;
    opacity: 1;
}

.split_app_content h2 {
    margin-bottom: 38px;
}

.split_app_content p {
    font-size: 18px;
    line-height: 30px;
    color: #7e86a1;
    margin-bottom: 0;
}

.split_app_content .btn_three {
    font-size: 15px;
    padding: 15px 33px;
}

.split_app_content .s_app_btn {
    background: #5f28fb;
    border-color: #5f28fb;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.split_app_content .s_app_btn i {
    margin-right: 10px;
    font-size: 22px;
}

.split_app_content .s_app_btn+.s_app_btn {
    background: transparent;
    color: #5f28fb;
    margin-left: 16px;
}

.split_app_content .s_app_btn+.s_app_btn:hover {
    background: #5f28fb;
    color: #fff;
}

.split_app_content .s_app_btn:hover {
    background: transparent;
    color: #5f28fb;
}

.split_title {
    font-size: 40px;
    line-height: 50px;
    color: #051441;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}

.split_title span {
    font-weight: 400;
}

.web_skill_content {
    max-width: 540px;
}

.web_skill_content .split_title {
    margin-bottom: 45px;
}

.web_skill_content .skillbar-bg {
    width: 100%;
    height: 5px;
    background: #e7e9f0;
    position: relative;
}

.web_skill_content .skillbar-bg .custom-skillbar {
    background: #7a4cfa;
    height: 100%;
    position: absolute;
    left: 0;
    width: 0;
}

.web_skill_content .custom-skillbar-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 500;
    color: #051441;
    padding-bottom: 8px;
}

.web_skill_content .skillbar-box {
    padding-left: 0px;
    list-style: none;
    margin-bottom: 0;
}

.web_skill_content .skillbar-box li {
    margin-bottom: 25px;
}

.web_skill_content .skillbar-box li:nth-child(1) .custom-skillbar-title .skill-bar-percent {
    color: #7a4cfa;
}

.web_skill_content .skillbar-box li:nth-child(1) .skillbar-bg .custom-skillbar {
    background: #7a4cfa;
}

.web_skill_content .skillbar-box li:nth-child(2) .custom-skillbar-title .skill-bar-percent {
    color: #00d8e6;
}

.web_skill_content .skillbar-box li:nth-child(2) .skillbar-bg .custom-skillbar {
    background: #00d8e6;
}

.web_skill_content .skillbar-box li:nth-child(3) .custom-skillbar-title .skill-bar-percent {
    color: #e6c300;
}

.web_skill_content .skillbar-box li:nth-child(3) .skillbar-bg .custom-skillbar {
    background: #e6c300;
}

.web_skill_content .btn_three {
    margin-top: 35px;
    background: transparent;
    color: #7a4cfa;
}

.web_skill_content .btn_three:hover {
    background: #7a4cfa;
    color: #fff;
}

.split_banner .contact_bg {
    position: absolute;
    top: 0;
    background: url("../img/new/home-split/contact.png");
    width: 100%;
    height: 100%;
    background-size: cover;
}

.split_banner .app_img {
    margin-left: 118px;
}

.split_content .vfx_contact_form_box {
    padding-top: 45px;
}

.split_content .vfx_contact_form_box .text_box input[type="text"],
.split_content .vfx_contact_form_box .text_box textarea,
.split_content .vfx_contact_form_box .text_box input[type="password"] {
    background: #f7f8fb;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.split_content .vfx_contact_form_box .text_box input[type="text"]:focus,
.split_content .vfx_contact_form_box .text_box textarea:focus,
.split_content .vfx_contact_form_box .text_box input[type="password"]:focus {
    -webkit-box-shadow: 0px 20px 20px 0px rgba(0, 11, 40, 0.1);
    box-shadow: 0px 20px 20px 0px rgba(0, 11, 40, 0.1);
    background: #fff;
    border-color: rgba(95, 40, 251, 0.4);
}

.split_content .vfx_contact_form_box .text_box {
    margin-bottom: 20px;
}

#multiscroll-nav ul li a span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e6e7ec;
    border: 0px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

#multiscroll-nav ul li a.active span {
    background: #5f28fb;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

#multiscroll-nav.white ul li a span {
    background: #8051f1;
}

#multiscroll-nav.white ul li a.active span {
    background: #fff;
}

/*============ main_menu_part css =============*/

.main_menu_part.menu_four .btn_get {
    background: transparent;
    border-color: #818198;
    color: #fff;
    line-height: 42px;
}

.main_menu_part.menu_four .btn_get:hover {
    background: #fc4751;
    border-color: #fc4751;
}

.main_menu_part.menu_four .w_menu>.nav-item>.nav-link:before {
    display: none;
}

.main_menu_part.menu_four .w_menu>.nav-item:hover>.nav-link,
.main_menu_part.menu_four .w_menu>.nav-item.active>.nav-link {
    color: #fc4751;
}

.main_menu_part.menu_four .w_menu>.nav-item.submenu .dropdown-menu .nav-item:hover>.nav-link,
.main_menu_part.menu_four .w_menu>.nav-item.submenu .dropdown-menu .nav-item:focus>.nav-link,
.main_menu_part.menu_four .w_menu>.nav-item.submenu .dropdown-menu .nav-item.active>.nav-link {
    color: #fc4751;
}

.main_menu_part.menu_four .menu>.nav-item.submenu.mega_menu.mega_menu_two .mega_menu_inner .dropdown-menu .nav-item .item .text:hover {
    color: #fc4751;
}

.navbar_fixed .main_menu_part.menu_four .btn_get {
    background: #fc4751;
    border-color: #fc4751;
    color: #fff;
}

.navbar_fixed .main_menu_part.menu_four .btn_get:hover {
    background: #fc4751;
    border-color: #fc4751;
}

.menu_vrop_area .er_btn {
    margin-left: 0;
    margin-top: 0;
}

.menu_vrop_area .menu>.nav-item>.nav-link:before {
    display: none;
}

.menu_vrop_area .menu>.nav-item:hover>.nav-link,
.menu_vrop_area .menu>.nav-item.active>.nav-link {
    color: #4e78f4;
}

.menu_vrop_area .menu>.nav-item.submenu .dropdown-menu .nav-item:hover>.nav-link,
.menu_vrop_area .menu>.nav-item.submenu .dropdown-menu .nav-item:focus>.nav-link,
.menu_vrop_area .menu>.nav-item.submenu .dropdown-menu .nav-item.active>.nav-link {
    color: #4e78f4;
}

.menu_vrop_area .menu>.nav-item.submenu.mega_menu.mega_menu_two .mega_menu_inner .dropdown-menu .nav-item .item .text:hover {
    color: #4e78f4;
}

/*================= home_banner_area_block_part css ==============*/

.home_banner_area_block_part {
    background: #2e3d62;
    min-height: 650px;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.home_banner_area_block_part img.img-fluid {
    -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    -webkit-animation-name: animateUpDown;
    animation-name: animateUpDown;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.home_banner_area_block_part img.img-fluid {
    -webkit-animation-duration: 1.9s;
    animation-duration: 1.9s;
}

.hosting_content h2 {
    font-size: 50px;
    line-height: 70px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.hosting_content p {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 50px;
}

.hosting_content .hosting_area_btn {
    -webkit-box-shadow: 0px 10px 50px 0px rgba(248, 99, 107, 0.3);
    box-shadow: 0px 10px 50px 0px rgba(248, 99, 107, 0.3);
}

.hosting_content .hosting_area_btn:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.b_line li {
    position: absolute;
}

.hosting_area_btn {
    background: #fc4751;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-right: 10px;
    border-radius: 4px;
    padding: 11px 34px;
    -webkit-box-shadow: 0px 10px 50px 0px rgba(248, 99, 107, 0.3);
    box-shadow: 0px 10px 50px 0px rgba(248, 99, 107, 0.3);
}

.hosting_area_btn:hover {
    background: #fe4c55;
}

/*================= search_domain_area_block css ==============*/

.search_domain_area_block {
    background: #fffafa;
    position: relative;
    z-index: 1;
}

.map_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/home5/map.png") no-repeat scroll center 0/cover;
    z-index: -1;
}

.search_domain_box_area_info {
    max-width: 1030px;
    margin: 0 auto;
    text-align: center;
}

.search_domain_box_area_info h3 {
    font-size: 30px;
    color: #2c2c51;
    font-weight: 600;
    padding-bottom: 5px;
    margin-bottom: 40px;
    position: relative;
}

.search_domain_box_area_info h3::before {
    background: #fc4751;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    bottom: -5px;
    width: 60px;
    border-radius: 30px;
}

.search_domain_form_inner_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 8px;
    background-color: white;
    -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1);
    box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1);
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    border: 5px solid rgba(248, 99, 107, 0.8);
}

.search_domain_form_inner_area input {
    width: 70%;
    border: 0px;
    border-radius: 0px;
    padding: 0px;
    font-size: 18px;
    font-weight: 400;
    padding-left: 10px;
}

.search_domain_form_inner_area input.placeholder {
    color: #9d9db0;
}

.search_domain_form_inner_area input:-moz-placeholder {
    color: #9d9db0;
}

.search_domain_form_inner_area input::-moz-placeholder {
    color: #9d9db0;
}

.search_domain_form_inner_area input::-webkit-input-placeholder {
    color: #9d9db0;
}

.search_domain_form_inner_area input:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.search_domain_form_inner_area .domain_select {
    width: 15%;
}

.search_domain_form_inner_area .domain_select .selectpickers {
    border: 0px;
    width: 100%;
    padding: 0px;
    text-align: center !important;
    border-left: 1px solid #d8dcea;
    border-radius: 0px;
    font-size: 18px;
    color: #9d9db0;
    font-weight: 400;
    background: transparent;
}

.search_domain_form_inner_area .domain_select .selectpickers:after {
    border-bottom: 1px solid #9d9db0;
    border-right: 1px solid #9d9db0;
    right: 35px;
    width: 6px;
    height: 6px;
}

.search_domain_form_inner_area .domain_select .selectpickers ul {
    width: 100%;
}

.search_domain_form_inner_area .domain_select .selectpickers ul li {
    color: #9d9db0;
}

.search_domain_form_inner_area .domain_select .selectpickers:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.search_domain_form_inner_area button {
    width: 14%;
    border: 0px;
    padding: 12px 10px;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.search_domain_price_area {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 45px;
}

.search_domain_price_area li {
    font-size: 16px;
    font-weight: 500;
    color: #7b7b93;
    background: #fff;
    border: 2px solid rgba(248, 99, 107, 0.3);
    padding: 3px 10px;
    border-radius: 4px;
    -webkit-box-shadow: 0px 20px 50px 0px rgba(64, 1, 4, 0.1);
    box-shadow: 0px 20px 50px 0px rgba(64, 1, 4, 0.1);
}

.search_domain_price_area li+li {
    margin-left: 25px;
}

.search_domain_price_area li span {
    font-weight: 500;
    font-size: 16px;
    color: #fc4751;
    margin-left: 8px;
}

.search_domain_price_area li del {
    font-weight: 500;
    font-size: 16px;
    padding-left: 6px;
    color: #6d70a6;
}

/*================= search_domain_area_block css ==============*/

.service_hosting_area_block {
    position: relative;
}

.vfx_hosting_title {
    margin-bottom: 70px;
}

.f_hosting_pricing_area_part .vfx_hosting_title h2 {
    position: relative;
    margin-bottom: 20px;
}

.f_hosting_pricing_area_part .vfx_hosting_title h2::before {
    background: #fc4751;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    bottom: -5px;
    width: 60px;
    border-radius: 30px;
}

.vfx_hosting_title h2 {
    font-size: 40px;
    line-height: 55px;
    font-weight: 600;
    color: #2c2c51;
    margin-bottom: 15px;
}

.service_hosting_area_block .vfx_hosting_title h2 {
    position: relative;
    margin-bottom: 20px;
}

.service_hosting_area_block .vfx_hosting_title h2::before {
    background: #fc4751;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    bottom: -5px;
    width: 60px;
    border-radius: 30px;
}

.vfx_hosting_title p {
    color: #7b7b93;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin-bottom: 0;
    width: auto;
}

.vfx_hosting_title .w_color {
    color: #fff;
}

.service_hosting_item_area {
    padding: 50px 25px;
    border: 6px solid rgba(246, 98, 106, 0.1);
    margin-bottom: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    cursor: pointer;
    -webkit-box-shadow: 0px 30px 50px 0px rgba(5, 1, 64, 0.05), 0px -5px 0px 0px rgba(95, 84, 253, 0.004);
    box-shadow: 0px 30px 50px 0px rgba(5, 1, 64, 0.05), 0px -5px 0px 0px rgba(95, 84, 253, 0.004);
}

.service_hosting_item_area:before {
    position: absolute;
    content: '';
    top: 50%;
    left: -90px;
    width: 540px;
    height: 540px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transition: all .5s ease;
    -webkit-transform: translateY(100%) rotate(-10deg);
    -moz-transform: translateY(100%) rotate(-10deg);
    -ms-transform: translateY(100%) rotate(-10deg);
    -o-transform: translateY(100%) rotate(-10deg);
    transform: translateY(100%) rotate(-10deg)
}

.service_hosting_item_area:hover:before {
    transition-delay: .2s;
    -webkit-transform: translateY(0) rotate(-10deg);
    -moz-transform: translateY(0) rotate(-10deg);
    -ms-transform: translateY(0) rotate(-10deg);
    -o-transform: translateY(0) rotate(-10deg);
    transform: translateY(0) rotate(-10deg)
}

.service_hosting_item_area:hover .hover-overlay:before,
.service_hosting_item_area:hover .hover-overlay:after {
    -webkit-transform: translateY(0) rotate(-10deg);
    -moz-transform: translateY(0) rotate(-10deg);
    -ms-transform: translateY(0) rotate(-10deg);
    -o-transform: translateY(0) rotate(-10deg);
    transform: translateY(0) rotate(-10deg)
}

.service_hosting_item_area:hover .hover-overlay:after {
    transition-delay: .1s
}

.service_hosting_item_area .hover-overlay:before,
.service_hosting_item_area .hover-overlay:after {
    position: absolute;
    content: '';
    top: 70%;
    left: -90px;
    width: 540px;
    height: 540px;
    z-index: -1;
    transition: all .5s ease;
    -webkit-transform: translateY(100%) rotate(-10deg);
    -moz-transform: translateY(100%) rotate(-10deg);
    -ms-transform: translateY(100%) rotate(-10deg);
    -o-transform: translateY(100%) rotate(-10deg);
    transform: translateY(100%) rotate(-10deg);
    background-color: rgba(255, 255, 255, 0.2)
}

.service_hosting_item_area .hover-overlay:after {
    top: 90%;
    background-color: rgba(255, 255, 255, 0.15)
}

.service_hosting_item_area .icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50px;
    background: #ffeaea;
    text-align: center;
    display: inline-block;
    margin-bottom: 35px;
}

.service_hosting_item_area .icon img {
    width: 60px;
    height: 60px;
    line-height: 60px;
    display: inline-block;
}

.service_hosting_item_area p {
    color: #7b7b93;
    margin-bottom: 0;
    font-weight: 400;
}

.service_hosting_item_area:hover {
    background: #f6626a;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.service_hosting_item_area:hover div.icon {
    background: #ffffff;
}

.service_hosting_item_area:hover a h4,
.service_hosting_item_area:hover p {
    color: #fff;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.pattern_shap {
    position: absolute;
    width: 125px;
    height: 225px;
    left: 0;
    top: 200px;
}

.pos_service_info .service_hosting_item_area {
    padding: 45px 25px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-color: rgba(94, 83, 201, 0.1);
    -webkit-box-shadow: 0px 30px 50px 0px rgba(5, 1, 64, 0.05), 0px -5px 0px 0px rgba(95, 84, 253, 0.004);
    box-shadow: 0px 30px 50px 0px rgba(5, 1, 64, 0.05), 0px -5px 0px 0px rgba(95, 84, 253, 0.004);
}

.pos_service_info .service_hosting_item_area:before {
    position: absolute;
    content: '';
    top: 50%;
    left: -90px;
    width: 540px;
    height: 540px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transition: all .5s ease;
    -webkit-transform: translateY(100%) rotate(-10deg);
    -moz-transform: translateY(100%) rotate(-10deg);
    -ms-transform: translateY(100%) rotate(-10deg);
    -o-transform: translateY(100%) rotate(-10deg);
    transform: translateY(100%) rotate(-10deg)
}

.pos_service_info .service_hosting_item_area:hover:before {
    transition-delay: .2s;
    -webkit-transform: translateY(0) rotate(-10deg);
    -moz-transform: translateY(0) rotate(-10deg);
    -ms-transform: translateY(0) rotate(-10deg);
    -o-transform: translateY(0) rotate(-10deg);
    transform: translateY(0) rotate(-10deg)
}

.pos_service_info .service_hosting_item_area:hover .hover-overlay:before,
.pos_service_info .service_hosting_item_area:hover .hover-overlay:after {
    -webkit-transform: translateY(0) rotate(-10deg);
    -moz-transform: translateY(0) rotate(-10deg);
    -ms-transform: translateY(0) rotate(-10deg);
    -o-transform: translateY(0) rotate(-10deg);
    transform: translateY(0) rotate(-10deg)
}

.pos_service_info .service_hosting_item_area:hover .hover-overlay:after {
    transition-delay: .1s
}

.pos_service_info .service_hosting_item_area .hover-overlay:before,
.pos_service_info .service_hosting_item_area .hover-overlay:after {
    position: absolute;
    content: '';
    top: 70%;
    left: -90px;
    width: 540px;
    height: 540px;
    z-index: -1;
    transition: all .5s ease;
    -webkit-transform: translateY(100%) rotate(-10deg);
    -moz-transform: translateY(100%) rotate(-10deg);
    -ms-transform: translateY(100%) rotate(-10deg);
    -o-transform: translateY(100%) rotate(-10deg);
    transform: translateY(100%) rotate(-10deg);
    background-color: rgba(255, 255, 255, 0.2)
}

.pos_service_info .service_hosting_item_area .hover-overlay:after {
    top: 90%;
    background-color: rgba(255, 255, 255, 0.15)
}

.pos_service_info .service_hosting_item_area h4:hover {
    color: #5e53fb;
}

.pos_service_info .service_hosting_item_area img {
    margin-bottom: 33px;
}

.pos_service_info .service_hosting_item_area:hover {
    background: #237efd;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0px 50px 100px 0px rgba(5, 1, 64, 0.1), 0px -5px 0px 0px rgba(95, 84, 253, 0.004);
    box-shadow: 0px 50px 100px 0px rgba(5, 1, 64, 0.1), 0px -5px 0px 0px rgba(95, 84, 253, 0.004);
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.pos_service_info .service_hosting_item_area:hover h4,
.pos_service_info .service_hosting_item_area:hover p {
    color: #fff;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.h_head {
    font-size: 20px;
    font-weight: 600;
    color: #2e3d62;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a .h_head:hover {
    color: #f6626a;
}

/*========== features_hosting_area_block css ========*/

.features_hosting_area_block {
    padding-bottom: 140px;
}

.f_features_content_part {
    padding-right: 20px;
}

.f_features_content_part .vfx_hosting_title {
    margin-bottom: 40px;
}

.f_features_content_part .vfx_hosting_title h2 {
    font-weight: 600;
}

.f_features_item_part {
    padding-right: 25px;
}

.f_features_item_part img {
    margin-right: 20px;
}

.features_hosting_area_block .h_features_img {
    -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    -webkit-animation-name: animateUpDown;
    animation-name: animateUpDown;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.features_hosting_area_block .h_features_img {
    -webkit-animation-duration: 1.9s;
    animation-duration: 1.9s;
}

.f_features_content_part .f_features_item_part i {
    font-size: 24px;
    color: #ffffff;
    margin-right: 15px;
    background: #f6626a;
    padding: 15px;
    border-radius: 4px;
}

.f_features_item_part .h_head {
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.f_features_content_part .f_features_item_part .h_head::before {
    background: #f6626a;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    bottom: 0px;
    width: 40px;
    border-radius: 30px;
}

.f_features_item_part p {
    margin-bottom: 0;
    font-weight: 400;
}

.f_features_item_part+.f_features_item_part {
    margin-top: 35px;
}

/*========== f_features_action_block_area css ========*/

.f_features_action_block_area {
    background: #2e3d62;
    padding: 80px 0px;
}

.f_features_action_content h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.f_features_action_content h2::before {
    background: #f6626a;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    bottom: 0px;
    width: 60px;
    border-radius: 30px;
}

.f_features_action_block_area .h_action_img {
    -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    -webkit-animation-name: animateUpDown;
    animation-name: animateUpDown;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.f_features_action_block_area .h_action_img {
    -webkit-animation-duration: 1.9s;
    animation-duration: 1.9s;
}

.f_features_action_content p {
    color: #b4b4d3;
    font-weight: 400;
    margin-bottom: 42px;
}

/*========== blog_area css ========*/

.vfx_blog_item {
    background-color: white;
    border-radius: 10px;
    -webkit-box-shadow: 0px 30px 50px 0px rgba(64, 1, 4, 0.06);
    box-shadow: 0px 30px 50px 0px rgba(64, 1, 4, 0.06);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.vfx_blog_item img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.vfx_blog_item .vfx_blog_content {
    padding: 30px;
}

.vfx_blog_item .vfx_blog_content h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
    color: #2c2c51;
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

.vfx_blog_item .vfx_blog_content h3:hover {
    color: #fc4751;
}

.vfx_blog_item .vfx_blog_content .post_time {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    text-transform: none;
    margin-bottom: 15px;
    display: inline-block;
    background: #237efd;
    padding: 3px 12px;
    border-radius: 4px;
    -webkit-box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.08);
}

.vfx_hosting_blog_area .vfx_blog_content .post_time {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    text-transform: none;
    margin-bottom: 15px;
    display: inline-block;
    background: #fc4751;
    padding: 3px 12px;
    border-radius: 4px;
    -webkit-box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.08);
}

.vfx_blog_item .vfx_blog_content .post_time i {
    color: #ffffff;
    margin-right: 8px;
}

.vfx_blog_item .vfx_blog_content .vfx_post_info_bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 15px;
}

.vfx_blog_item .vfx_blog_content .vfx_post_info_bottom .learn_btn_two {
    margin-top: 0;
    font-size: 14px;
    line-height: 16px;
    color: #7b7b93;
    text-transform: none;
    font-weight: 500;
    position: relative;
}

.vfx_blog_item .vfx_blog_content .vfx_post_info_bottom .learn_btn_two:hover {
    color: #fc4751;
}

.vfx_blog_item .vfx_blog_content .vfx_post_info_bottom .learn_btn_two:hover:before {
    width: 100%;
}

.vfx_blog_item .vfx_blog_content .vfx_post_info_bottom .learn_btn_two:hover i {
    padding-left: 5px;
}

.vfx_blog_item .vfx_blog_content .vfx_post_info_bottom .learn_btn_two i {
    vertical-align: inherit;
    padding-left: 0;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.vfx_blog_item .vfx_blog_content .vfx_post_info_bottom .post-info-comments {
    color: #7b7b93;
    text-transform: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
}

.vfx_blog_item .vfx_blog_content .vfx_post_info_bottom .post-info-comments span:hover {
    color: #237efd;
}

.vfx_hosting_blog_area .vfx_blog_content .vfx_post_info_bottom .post-info-comments span:hover {
    color: #fc4751;
}

.vfx_blog_item .vfx_blog_content .vfx_post_info_bottom .post-info-comments i {
    color: #fc4751;
    padding-right: 3px;
}

.vfx_blog_item:hover {
    -webkit-box-shadow: 0px 30px 50px 0px rgba(64, 1, 4, 0.08);
    box-shadow: 0px 30px 50px 0px rgba(64, 1, 4, 0.08);
}

.pos_blog_item {
    border-radius: 10px;
    background-color: white;
    -webkit-box-shadow: 0px 30px 50px 0px rgba(5, 1, 64, 0.06);
    box-shadow: 0px 30px 50px 0px rgba(5, 1, 64, 0.06);
}

.pos_blog_item .vfx_blog_content .post_time i {
    color: #ffffff;
}

.pos_blog_item .vfx_blog_content h3 {
    font-size: 20px;
    line-height: 30px;
}

.pos_blog_item .vfx_blog_content h3:hover {
    color: #237efd;
}

.pos_blog_item .vfx_blog_content .vfx_post_info_bottom .learn_btn_two:before {
    background: #237efd;
}

.pos_blog_item .vfx_blog_content .vfx_post_info_bottom .learn_btn_two:hover {
    color: #237efd;
}

.pos_blog_item .vfx_blog_content .vfx_post_info_bottom .post-info-comments i {
    color: #237efd;
}

.pos_blog_item:hover {
    -webkit-box-shadow: 0px 30px 50px 0px rgba(5, 1, 64, 0.08);
    box-shadow: 0px 30px 50px 0px rgba(5, 1, 64, 0.08);
}

.vfx_action_features_area {
    background: #2e3d62;
    position: relative;
    padding: 120px 0px;
    z-index: 1;
}

.vfx_action_features_area .overlay_bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    z-index: -1;
    opacity: 0.1;
}

.vfx_action_features_area .hosting_area_btn {
    background: #fff;
    color: #fc4751;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(57, 35, 125, 0.1);
    box-shadow: 0px 20px 30px 0px rgba(57, 35, 125, 0.1);
    border-radius: 2px;
    padding: 16px 34px;
    margin-top: 10px;
    text-align: center;
}

.vfx_action_features_area .hosting_area_btn:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.vfx_features_promo_content h2 {
    margin-bottom: 0;
    margin-bottom: 10px;
    color: #fff;
    font-size: 40px;
    font-weight: 600;
}

.vfx_features_promo_content p {
    margin-bottom: 0;
    font-size: 20px;
    color: #fff;
    font-weight: 400;
}

/*=========== map_area ==========*/

.vfx_map_area_block {
    background: #fffafa;
    padding-top: 120px;
}

.vfx_map_area_block .vfx_hosting_title {
    margin-bottom: 0;
}

.vfx_map_area_block .vfx_hosting_title h2 {
    position: relative;
    margin-bottom: 20px;
}

.vfx_map_area_block .vfx_hosting_title h2::before {
    background: #fc4751;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    bottom: -5px;
    width: 60px;
    border-radius: 30px;
}

.f_map_part {
    background: url("../img/home5/region_map.png") no-repeat scroll center top;
    height: 595px;
}

.f_map_part ul {
    height: 100%;
    margin-bottom: 0;
    position: relative;
}

.f_map_part ul li {
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.f_map_part ul li .place_name {
    font-size: 12px;
    font-weight: 500;
    line-height: 25px;
    color: #fff;
    border-radius: 20px;
    background: #2e3d62;
    padding: 0px 15px;
    text-transform: none;
    position: absolute;
    top: -100%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(46, 61, 98, 0.2);
    box-shadow: 0px 20px 30px 0px rgba(46, 61, 98, 0.2);
}

.f_map_part ul li .place_name:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: #2e3d62 transparent transparent transparent;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -5px;
}

.f_map_part ul li .round {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2e3d62;
    position: relative;
}

.f_map_part ul li .round:before,
.f_map_part ul li .round:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 50%;
    background: #2e3d62;
}

.f_map_part ul li .round:before {
    -webkit-transform: scale(2.6);
    -ms-transform: scale(2.6);
    transform: scale(2.6);
    opacity: 0.4;
}

.f_map_part ul li .round:after {
    -webkit-transform: scale(5);
    -ms-transform: scale(5);
    transform: scale(5);
    opacity: 0.2;
}

.f_map_part ul li .round .dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(46, 61, 98, 0.35);
    -webkit-animation: pulsate 3s infinite;
    animation: pulsate 3s infinite;
    -webkit-animation-delay: 1.5s;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    animation-delay: 1.5s;
    will-change: transform;
}

.f_map_part ul li:nth-child(1) {
    top: 80px;
    left: 100px;
}

.f_map_part ul li:nth-child(2) {
    top: 220px;
    left: 250px;
}

.f_map_part ul li:nth-child(3) {
    top: 180px;
    left: 50%;
}

.f_map_part ul li:nth-child(4) {
    top: 250px;
    left: 70%;
}

.f_map_part ul li:nth-child(5) {
    top: 100px;
    left: 80%;
}

.f_map_part ul li:nth-child(6) {
    top: 70%;
    left: 350px;
}

.f_map_part ul li:nth-child(7) {
    top: 60%;
    left: 54%;
}

.f_map_part ul li:nth-child(8) {
    top: 75%;
    left: 85%;
}

.h_footer_dark {
    background: #010e28;
    padding: 100px 0px 120px;
}

.h_footer_dark .company_widget p {
    font-size: 16px;
    font-weight: 400;
    margin-top: 32px;
    margin-bottom: 0;
}

.h_footer_dark .company_widget .f_social_icon {
    margin-top: 50px;
}

.h_footer_dark .company_widget .f_social_icon a {
    background: transparent;
    font-size: 14px;
    color: #7b7b93;
    border: 1px solid #2c3445;
}

.h_footer_dark .company_widget .f_social_icon a:hover {
    background: #fc4751;
    color: #fff;
    border-color: #fc4751;
}

.h_footer_dark .f_widget.about-widget .f_list li a,
.h_footer_dark .f_widget.company_widget p {
    color: #7b7b93;
    font-weight: 400;
}

.h_footer_dark .f_widget.about-widget .f_list li {
    margin-bottom: 10px;
}

.h_footer_dark .f_widget.about-widget .f_list li a:before {
    background: #fc4751;
}

.h_footer_dark .f_widget.about-widget .f_list li a:hover {
    color: #fc4751;
}

.h_footer_dark_two .company_widget .f_social_icon a:hover {
    background: #4f79f6;
    border-color: #4f79f6;
}

.h_footer_dark_two .f_widget.about-widget .f_list li a:before {
    display: none;
}

.h_footer_dark_two .f_widget.about-widget .f_list li a:hover {
    color: #4f79f6;
}

.pos_footer_area {
    background: #413c85;
    padding-bottom: 120px;
    padding-top: 120px;
    position: relative;
    z-index: 0;
}

.pos_footer_area .leaf_left,
.pos_footer_area .leaf_right {
    position: absolute;
    bottom: 0;
}

.pos_footer_area .leaf_left {
    left: 0;
}

.pos_footer_area .leaf_right {
    right: 0;
}

.pos_footer_area .top_shap {
    position: absolute;
    bottom: 100%;
    height: 100%;
    left: 0;
    width: 100%;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: -1;
}

.pos_footer_area:before {
    content: "";
    width: 100%;
    height: 40px;
    background: #49458c;
    position: absolute;
    bottom: 0;
    left: 0;
}

.pos_footer_area .f_widget.company_widget p {
    color: #bab5df;
}

.pos_footer_area .f_widget.company_widget .f_social_icon a {
    color: #bab5df;
    border-color: #6e679b;
}

.pos_footer_area .f_widget.company_widget .f_social_icon a:hover {
    background: #fff;
    border-color: #fff;
    color: #5f54fd;
}

.pos_footer_area .f_widget.about-widget .f_list li a {
    color: #bab5df;
}

.pos_footer_area .f_widget.about-widget .f_list li a:before {
    background: #fff;
}

.pos_footer_area .f_widget.about-widget .f_list li a:hover {
    color: #fff;
}

.pos_footer_bottom_content_area {
    padding-top: 80px;
    padding-bottom: 30px;
}

.pos_footer_bottom_content_area .pos_women {
    position: relative;
    bottom: -12px;
}

.wave_shap {
    width: 100%;
    position: absolute;
    height: 212px;
    bottom: 0;
    z-index: -1;
}

/*============== banner_area_css =============*/

.vrop_banner_area_block {
    background: #f9f9fe;
    position: relative;
    z-index: 0;
}

.vrop_banner_area_block+section {
    position: relative;
    z-index: 1;
}

.vrop_banner_area_block .animation_img {
    margin-top: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.vrop_banner_area_block .cloud_animation {
    margin-bottom: 0;
}

.vrop_banner_area_block .cloud_animation li {
    position: absolute;
}

.vrop_banner_area_block .vrop_shap {
    content: '';
    display: block;
    position: absolute;
    top: calc(100% - 190px);
    background-color: white;
    min-height: 390px;
    width: 2000px;
    left: -77px;
    -webkit-transform: rotate(-6deg);
    -webkit-transform-origin: 0 0 0;
    -moz-transform: rotate(-6deg);
    -moz-transform-origin: 0 0 0;
    -o-transform: rotate(-6deg);
    -o-transform-origin: 0 0 0;
    -ms-transform: rotate(-6deg);
    -ms-transform-origin: 0 0 0;
    transform: rotate(-6deg);
    z-index: -1;
}

.vrop_banner_area_block .vrop_area_shap_item {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.vrop_banner_area_block .animation_img img {
    display: block;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding-bottom: 0;
}

.vrop_banner_area_block .section_container .intro_content h1 {
    font-size: 50px;
    line-height: 66px;
    color: #2c2c51;
    font-weight: 700;
}

.vrop_banner_area_block .section_container .intro_content p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
}

.vrop_banner_area_block .section_container .intro_content .er_btn {
    padding: 10px 37px;
    margin-top: 0;
}

@-webkit-keyframes cloud {
    0% {
        left: 14%;
        top: 200px;
        opacity: 0;
    }
    20% {
        left: 44%;
        top: 100px;
        opacity: 1;
    }
    40% {
        left: 65%;
        top: 50px;
        opacity: 1;
    }
    60% {
        left: 80%;
        top: 130px;
        opacity: 1;
    }
    80% {
        left: 90%;
        top: 180px;
        opacity: .5;
    }
    100% {
        left: 100%;
        top: 230px;
        opacity: 0;
    }
}

@keyframes cloud {
    0% {
        left: 14%;
        top: 200px;
        opacity: 0;
    }
    20% {
        left: 44%;
        top: 100px;
        opacity: 1;
    }
    40% {
        left: 65%;
        top: 50px;
        opacity: 1;
    }
    60% {
        left: 80%;
        top: 130px;
        opacity: 1;
    }
    80% {
        left: 90%;
        top: 180px;
        opacity: .5;
    }
    100% {
        left: 100%;
        top: 230px;
        opacity: 0;
    }
}

@-webkit-keyframes animateCloud {
    0% {
        left: -20%;
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 1;
    }
}

@keyframes animateCloud {
    0% {
        left: -20%;
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 1;
    }
}

@-webkit-keyframes jurk {
    0% {
        -webkit-transform: translate3d(-10px, -10px, 0);
        transform: translate3d(-10px, -10px, 0);
        opacity: 1;
    }
    50% {
        -webkit-transform: translate3d(-20px, 20px, 0);
        transform: translate3d(-20px, 20px, 0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate3d(30px, 0px, 0);
        transform: translate3d(30px, 0px, 0);
        opacity: 1;
    }
}

@keyframes jurk {
    0% {
        -webkit-transform: translate3d(-10px, -10px, 0);
        transform: translate3d(-10px, -10px, 0);
        opacity: 1;
    }
    50% {
        -webkit-transform: translate3d(-20px, 20px, 0);
        transform: translate3d(-20px, 20px, 0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate3d(30px, 0px, 0);
        transform: translate3d(30px, 0px, 0);
        opacity: 1;
    }
}

/*============== service_area_css =============*/

.vrop_service_features_area {
    padding-top: 80px;
}

.vrop_service_features_area .row {
    margin-bottom: -80px;
}

.vrop_title h2 {
    font-size: 32px;
}

.vrop_title h2 span {
    color: #ff0000;
}

.vrop_service_item {
    margin-bottom: 60px;
    text-align: center;
}

.vrop_service_item img {
    margin-bottom: 35px;
}

.vrop_service_item .h_head:hover {
    color: #4e78f4;
}

.vrop_service_item p {
    font-weight: 400;
    margin-bottom: 0;
}

.part_service_item_block .part_service_img {
    -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    -webkit-animation-name: animateUpDown;
    animation-name: animateUpDown;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.part_service_item_block .part_service_img {
    -webkit-animation-duration: 1.9s;
    animation-duration: 1.9s;
}

.vrop_features_action_area_item {
    background-image: -moz-linear-gradient(240deg, #237efd 0%, #fd609b 70%);
    background-image: -webkit-linear-gradient(240deg, #237efd 0%, #fd609b 60%);
    background-image: -ms-linear-gradient(240deg, #237efd 0%, #fd609b 100%);
    padding: 58px 0px;
}

.erp_content h2 {
    color: #fff;
    font-size: 40px;
    line-height: 54px;
    text-align: center;
    letter-spacing: 0.25px;
    font-weight: 300;
}

.erp_content h2 strong {
    font-weight: 700;
}

.h_price_inner {
    max-width: 100%;
    margin: 0 auto;
    border: 2px solid #f7f0f0;
}

.hosting_tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.hosting_tab .nav-item {
    width: calc(100% / 4);
}

.hosting_tab .nav-item .nav-link {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #7b7b93;
    background: #faf7f8;
    border-radius: 0px;
    border: 0px;
    line-height: 64px;
    border-left: 2px solid #f7f0f0;
    border-bottom: 2px solid #f7f0f0;
}

.hosting_tab .nav-item .nav-link.active {
    background: #fff;
    border-bottom-color: #fff;
}

.hosting_tab .nav-item:first-child .nav-link {
    border-left: 0px;
}

#myTabContent {
    margin-top: 10px;
}

.f_price_tab p {
    font-size: 16px;
    color: #7b7b93;
    padding: 50px;
    font-weight: 400;
    margin-bottom: 0;
}

.f_price_body .price_head {
    display: table;
    width: 100%;
    background: #faf7f8;
    height: 50px;
    padding-right: 50px;
    border-top: 1px solid #f7f0f0;
}

.f_price_body .price_head .p_head {
    width: calc(100% / 6);
    text-align: center;
    vertical-align: middle;
    display: table-cell;
}

.f_price_body .price_head .p_head h5 {
    font-size: 14px;
    font-weight: 500;
    color: #2c2c51;
    margin-bottom: 0;
    text-transform: uppercase;
}

.f_price_body .h_p_list {
    display: table;
    width: 100%;
    padding-right: 50px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-top: 1px solid #f7f0f0;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    cursor: pointer;
}

.f_price_body .h_p_list .h_vfx_price_item {
    width: calc(100% / 6);
    text-align: center;
    vertical-align: middle;
    display: table-cell;
}

.f_price_body .h_p_list .h_vfx_price_item h5 {
    margin-bottom: 0;
    font-size: 16px;
    color: #7b7b93;
    font-weight: 400;
}

.f_price_body .h_p_list .h_vfx_price_item h5 span {
    font-weight: 600;
    display: inline-block;
}

.f_price_body .h_p_list .h_vfx_price_item.memory h5 {
    font-weight: 600;
}

.f_price_body .h_p_list .h_vfx_price_item .h_price_btn {
    border: 2px solid #f8c0c3;
    font-size: 14px;
    font-weight: 500;
    color: #fc4751;
    border-radius: 4px;
    padding: 11px 20px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    display: inline-block;
}

.f_price_body .h_p_list .h_vfx_price_item .h_price_btn:hover {
    background: #fc4751;
    border-color: #fc4751;
    color: #fff;
}

.f_price_body .h_p_list:hover {
    background: #fdfafa;
}

/*=========== features_area_css =============*/

.vrop_item_features+.vrop_item_features {
    margin-top: 0px;
}

.vrop_service_features_img {
    position: relative;
    padding-top: 0px;
}

.vrop_service_features_img {
    -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    -webkit-animation-name: animateUpDown;
    animation-name: animateUpDown;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.vrop_service_features_img {
    -webkit-animation-duration: 1.9s;
    animation-duration: 1.9s;
}

.pare_product_developer_area_block .vfx_hosting_title h2::before {
    background: transparent;
}

.vfx_hosting_title h2 {
    position: relative;
    margin-bottom: 20px;
}

.vfx_hosting_title h2::before {
    background: #ffffff;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    bottom: -5px;
    width: 60px;
    border-radius: 30px;
}

.vfx_blog_area_block h2 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 12px;
}

.vfx_blog_area_block .vfx_hosting_title h2::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    bottom: -5px;
    width: 60px;
    border-radius: 30px;
}

.vfx_blog_area_block .vfx_hosting_title h2 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 0px;
}

.vfx_hosting_blog_area .vfx_hosting_title h2 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 0px;
}

.vfx_hosting_blog_area .vfx_hosting_title h2::before {
    background: #fc4751;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    bottom: -5px;
    width: 60px;
    border-radius: 30px;
}

.vrop_service_features_img .img_icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    color: #fff;
    line-height: 112px;
    font-size: 24px;
    text-align: center;
    position: absolute;
    top: 0px;
    right: -55px;
    z-index: 1;
}

.vrop_service_features_img .img_icon .pluse_1,
.vrop_service_features_img .img_icon .pluse_2 {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(243, 186, 14, 0.102);
}

.vrop_service_features_img .img_icon .pluse_1:before,
.vrop_service_features_img .img_icon .pluse_1:after,
.vrop_service_features_img .img_icon .pluse_2:before,
.vrop_service_features_img .img_icon .pluse_2:after {
    content: '';
    position: absolute;
    background: rgba(243, 186, 14, 0.13);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
}

.vrop_service_features_img .img_icon .pluse_1:before,
.vrop_service_features_img .img_icon .pluse_2:before {
    width: 80px;
    height: 80px;
}

.vrop_service_features_img .img_icon .pluse_1:after,
.vrop_service_features_img .img_icon .pluse_2:after {
    width: 60px;
    height: 60px;
    background: #f3ba0e;
    margin-left: -30px;
    margin-top: -30px;
}

.vrop_service_features_img .img_icon.red .pluse_1,
.vrop_service_features_img .img_icon.red .pluse_2 {
    background: rgba(249, 62, 94, 0.102);
}

.vrop_service_features_img .img_icon.red .pluse_1:before,
.vrop_service_features_img .img_icon.red .pluse_1:after,
.vrop_service_features_img .img_icon.red .pluse_2:before,
.vrop_service_features_img .img_icon.red .pluse_2:after {
    background: rgba(249, 62, 94, 0.13);
}

.vrop_service_features_img .img_icon.red .pluse_1:after,
.vrop_service_features_img .img_icon.red .pluse_2:after {
    background: #f93e5e;
}

.vrop_service_features_img .img_icon.green .pluse_1,
.vrop_service_features_img .img_icon.green .pluse_2 {
    background: rgba(112, 215, 21, 0.102);
}

.vrop_service_features_img .img_icon.green .pluse_1:before,
.vrop_service_features_img .img_icon.green .pluse_1:after,
.vrop_service_features_img .img_icon.green .pluse_2:before,
.vrop_service_features_img .img_icon.green .pluse_2:after {
    background: rgba(112, 215, 21, 0.13);
}

.vrop_service_features_img .img_icon.green .pluse_1:after,
.vrop_service_features_img .img_icon.green .pluse_2:after {
    background: #70d715;
}

.vrop_service_features_img .img_icon .pluse_1 {
    -webkit-animation: pulsates 3s infinite linear;
    animation: pulsates 3s infinite linear;
}

.vrop_service_features_img .img_icon .pluse_2 {
    background: transparent !important;
}

.vrop_service_features_img .img_icon .pluse_2:before {
    -webkit-animation: pulsates 3s infinite linear;
    animation: pulsates 3s infinite linear;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    margin-left: 0;
    margin-top: 0;
}

.vrop_service_features_img img {
    /* -webkit-box-shadow: 0px 25px 100px 0px rgba(1, 1, 64, 0.1);
    box-shadow: 0px 25px 100px 0px rgba(1, 1, 64, 0.1); */
}

@-webkit-keyframes pulsates {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

@keyframes pulsates {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

.vrop_service_content_features {
    padding-left: 80px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.vrop_service_content_features .vrop_title {
    margin-bottom: 20px;
    padding-top: 10px;
}

.vrop_service_content_features .vrop_title h2 {
    line-height: 44px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
}

.vrop_service_content_features .vrop_title h2::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    margin: 10px 0 10px;
    position: absolute;
    bottom: -5px;
    width: 60px;
    border-radius: 30px;
}

.vrop_service_content_features .vrop_title h5 {
    font-size: 18px;
    font-weight: 400;
    color: #263b5e;
    line-height: 30px;
    margin-bottom: 30px;
}

.vrop_service_content_features .vrop_item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 28px;
}

.vrop_service_content_features .vrop_item .icon {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    background-color: #f93e5e;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(172, 20, 46, 0.24);
    box-shadow: 0px 20px 30px 0px rgba(172, 20, 46, 0.24);
    text-align: center;
    font-size: 20px;
    line-height: 56px;
    color: #fff;
    margin-right: 20px;
}

.vrop_service_content_features .vrop_item .icon.green {
    background: #70d715;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(91, 171, 21, 0.24);
    box-shadow: 0px 20px 30px 0px rgba(91, 171, 21, 0.24);
}

.vrop_service_content_features .vrop_item .icon.blue {
    background: #3e89f9;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(21, 81, 171, 0.24);
    box-shadow: 0px 20px 30px 0px rgba(21, 81, 171, 0.24);
}

.vrop_service_content_features .vrop_item .icon.yellow {
    -webkit-box-shadow: 0px 20px 30px 0px rgba(171, 133, 21, 0.24);
    box-shadow: 0px 20px 30px 0px rgba(171, 133, 21, 0.24);
    background: #f3ba0e;
}

.vrop_service_content_features .vrop_item .icon.purple {
    -webkit-box-shadow: 0px 20px 30px 0px rgba(138, 21, 171, 0.24);
    box-shadow: 0px 20px 30px 0px rgba(138, 21, 171, 0.24);
    background: #d02cff;
}

.vrop_service_content_features .vrop_item .icon.green_two {
    -webkit-box-shadow: 0px 20px 30px 0px rgba(21, 168, 171, 0.24);
    box-shadow: 0px 20px 30px 0px rgba(21, 168, 171, 0.24);
    background: #17d2d4;
}

.vrop_service_content_features .vrop_item .media-body h5 {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 22px;
    color: #2c2c51;
}

.vrop_service_content_features .erp_btn_learn {
    font-size: 16px;
    line-height: 20px;
    color: #4e78f4;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
}

.vrop_service_content_features .erp_btn_learn i {
    vertical-align: middle;
    padding-left: 8px;
}

.flex-row-reverse .vrop_service_features_img .img_icon {
    left: -53px;
    right: auto;
}

.flex-row-reverse .vrop_service_content_features {
    padding-right: 80px;
    padding-left: 0;
}

/*=========== analytics_area_css ============*/

.vrop_analytics_service_area_features {
    background: #f7f6fa;
    padding: 120px 0px;
}

.vrop_analytics_item_part p {
    font-size: 20px;
    color: #2c2c51;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 25px;
    line-height: 30px;
}

.vrop_testimonial_area_part {
    position: relative;
    z-index: 2;
}

.vrop_testimonial_area_part .row {
    margin-right: -25px;
    margin-left: -25px;
}

.er_btn {
    border: 2px solid #c8d4fa;
    font-size: 16px;
    font-weight: 500;
    color: #4e78f4;
    font-family: "Poppins", sans-serif;
    border-radius: 4px;
    line-height: 26px;
    padding: 8px 27px;
    display: inline-block;
    margin-top: 60px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.er_btn:hover {
    background: #4e78f4;
    border-color: #4e78f4;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(45, 93, 237, 0.1);
    box-shadow: 0px 20px 30px 0px rgba(45, 93, 237, 0.1);
    color: #fff;
}

.vrop_testimonial_info {
    position: relative;
}

.vrop_testimonial_info .owl-nav button.owl-prev,
.vrop_testimonial_info .owl-nav button.owl-next {
    position: absolute;
    top: 35%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 30px;
    color: #ffffff;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.vrop_testimonial_info .owl-nav button.owl-prev:hover,
.vrop_testimonial_info .owl-nav button.owl-next:hover {
    background: #f0f1f2;
    color: #4e78f4;
}

.vrop_testimonial_info .owl-nav button.owl-prev {
    left: -50px;
    background: #4e78f4;
    border-radius: 30px;
    width: 50px;
    height: 50px;
    line-height: 60px;
}

.vrop_testimonial_info .owl-nav button.owl-next {
    right: -50px;
    background: #4e78f4;
    border-radius: 30px;
    width: 50px;
    height: 50px;
    line-height: 60px;
}

.vrop_testimonial_item {
    padding: 10px 25px;
}

.vrop_testimonial_item .content {
    background-color: white;
    -webkit-box-shadow: 0px 20px 40px 0px rgba(1, 1, 64, 0.06);
    box-shadow: 0px 20px 40px 0px rgba(1, 1, 64, 0.06);
    padding: 50px;
    border-radius: 20px;
    position: relative;
}

.vrop_testimonial_item .content:before {
    content: "";
    width: 14px;
    height: 14px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    bottom: -8px;
    left: 70px;
}

.vrop_testimonial_item .content p {
    font-weight: 400;
    font-size: 16px;
    color: #7b7b93;
    line-height: 30px;
    margin-bottom: 0;
}

.vrop_testimonial_item .ratting {
    padding-top: 0px;
}

.vrop_testimonial_item .ratting a {
    font-size: 15px;
    color: #f5c10d;
}

.vrop_testimonial_item .media {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
    padding-left: 35px;
}

.vrop_testimonial_item .media img {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    margin-right: 20px;
}

.vrop_testimonial_item .media .media-body h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 3px;
    background: #237efd;
    display: inline-block;
    padding: 5px 10px;
    color: #fff;
    border-radius: 4px;
}

.vrop_testimonial_item .media .media-body h5 span {
    color: #7b7b93;
    font-weight: 400;
    font-size: 16px;
}

.vrop_testimonial_item .media .media-body p {
    margin-bottom: 0;
    color: #7b7b93;
    font-weight: 400;
}

.erp_call_action_area {
    padding-bottom: 120px;
    background: #fafafd;
    position: relative;
    z-index: 1;
}

.erp_call_action_area:before {
    content: "";
    position: absolute;
    background: url("../img/home1/shape.png") no-repeat scroll center bottom/cover;
    width: 100%;
    left: 0;
    height: 100%;
    z-index: -1;
}

.erp_call_action_area:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 10;
    top: -80%;
    background-color: #fafafd;
    min-height: 560px;
    width: 2000px;
    -webkit-transform: rotate(-6.8deg);
    -ms-transform: rotate(-6.8deg);
    transform: rotate(-6.8deg);
    left: -1.5%;
    z-index: -2;
}

.erp_action_content img {
    margin-bottom: 32px;
}

.erp_action_content h3 {
    font-size: 40px;
    font-weight: 600;
    color: #2c2c51;
    line-height: 44px;
    margin-bottom: 18px;
}

.erp_action_content p {
    font-size: 18px;
    line-height: 26px;
    color: #7b7b93;
    font-weight: 400;
}

.erp_action_content p span {
    font-weight: 700;
    color: #4e78f4;
}

.erp_action_content .er_btn {
    margin-top: 40px;
}

.er_btn_two {
    background: #4e78f4;
    border-color: #4e78f4;
    color: #fff;
    -webkit-box-shadow: 0px 20px 30px 0px rgba(45, 93, 237, 0.1);
    box-shadow: 0px 20px 30px 0px rgba(45, 93, 237, 0.1);
}

.er_btn_two:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #c8d4fa;
    background: transparent;
    color: #4e78f4;
}

.erp_customer_logo_area {
    padding-top: 120px;
}

.erp_customer_logo_area .er_btn {
    margin-top: 140px;
}

.animation_inner {
    height: 370px;
    position: relative;
}

.animation_inner li {
    border-radius: 10px;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(2, 45, 79, 0.1);
    box-shadow: 0px 2px 4px 0px rgba(2, 45, 79, 0.1);
    position: absolute;
    -webkit-transform: matrix(0.97029, 0.34192, -0.84486, 0.9425, 0, 0);
    -ms-transform: matrix(0.97029, 0.34192, -0.84486, 0.9425, 0, 0);
    transform: matrix(0.97029, 0.34192, -0.84486, 0.9425, 0, 0);
}

.animation_inner li img {
    border-radius: 10px;
}

.animation_inner li:nth-child(1) {
    top: 0;
    left: 35px;
    -webkit-box-shadow: 0px 30px 30px 0px rgba(2, 45, 79, 0.1);
    box-shadow: 0px 30px 30px 0px rgba(2, 45, 79, 0.1);
}

.animation_inner li:nth-child(2) {
    top: 55px;
    left: 170px;
}

.animation_inner li:nth-child(3) {
    top: 130px;
    left: 270px;
}

.animation_inner li:nth-child(4) {
    top: 35px;
    left: 410px;
}

.animation_inner li:nth-child(5) {
    top: 109px;
    left: 495px;
}

.animation_inner li:nth-child(6) {
    top: 40px;
    left: 700px;
}

.animation_inner li:nth-child(7) {
    top: 0;
    left: 890px;
}

.animation_inner li:nth-child(8) {
    top: 40%;
    left: 35px;
}

.animation_inner li:nth-child(9) {
    top: 182px;
    left: 585px;
    -webkit-box-shadow: 10px 30px 30px 0px rgba(2, 45, 79, 0.15);
    box-shadow: 10px 30px 30px 0px rgba(2, 45, 79, 0.15);
}

.animation_inner li:nth-child(10) {
    top: 130px;
    left: 780px;
}

.animation_inner li:nth-child(11) {
    top: 128px;
    left: 950px;
}

.animation_inner li:nth-child(12) {
    top: 85px;
    left: 95%;
}

.animation_inner li:nth-child(13) {
    bottom: 0;
    left: -35px;
}

.animation_inner li:nth-child(14) {
    bottom: 30px;
    left: 150px;
    -webkit-box-shadow: 10px 30px 30px 0px rgba(2, 45, 79, 0.15);
    box-shadow: 10px 30px 30px 0px rgba(2, 45, 79, 0.15);
}

.animation_inner li:nth-child(15) {
    bottom: 20px;
    left: 310px;
}

.animation_inner li:nth-child(16) {
    bottom: -25px;
    left: 460px;
}

.animation_inner li:nth-child(17) {
    bottom: 35px;
    left: 690px;
}

.animation_inner li:nth-child(18) {
    bottom: -30px;
    left: 800px;
}

.animation_inner li:nth-child(19) {
    bottom: 45px;
    left: 940px;
}

.animation_inner li:nth-child(20) {
    bottom: 0px;
    right: 0;
}

/*============= pare_banner_area_block_css ===========*/

.pare_banner_area_block {
    height: 100vh;
    min-height: 650px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.pare_slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.pare_slider:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #1a1a3a;
    opacity: 0.70;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.pare_slider .owl-stage-outer,
.pare_slider .owl-stage,
.pare_slider .owl-item {
    height: 100%;
}

.pare_slider .owl-stage-outer .pare_banner_item,
.pare_slider .owl-stage .pare_banner_item,
.pare_slider .owl-item .pare_banner_item {
    background-size: cover !important;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.pare_banner_text_area {
    max-width: 820px;
    margin: 0 auto;
}

.pare_banner_text_area h6 {
    font-size: 14px;
    line-height: 30px;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.pare_banner_text_area h6,
.pare_banner_text_area h2 {
    color: #fff;
}

.pare_banner_text_area h2 {
    font-size: 50px;
    font-weight: 400;
    color: #fff;
}

.pare_banner_text_area h2 span {
    font-weight: 700;
}

.pare_banner_text_area .action_btn {
    margin-top: 40px;
}

.pare_banner_text_area .software_banner_btn {
    border-radius: 6px;
    background: #237efd;
    padding: 14px 42px;
    border: 2px solid #237efd;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.pare_banner_text_area .software_banner_btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.pare_banner_text_area .video_btn .icon {
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 60px;
    width: 60px;
    color: #fff;
    border: 3px solid #fff;
    background: rgba(255, 255, 255, 0.2);
    font-size: 20px;
    line-height: 58px;
    margin-right: 15px;
}

.pare_banner_text_area .video_btn span:before {
    display: none;
}

.pare_ticket_block_area {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.pare_ticket_block_area .pare_ticket_shap {
    content: "";
    width: 100%;
    height: 570px;
    position: absolute;
    right: 0;
    top: 0;
    background-position: center, center !important;
    background-repeat: no-repeat !important;
}

.pare_ticket_block_area .pattern {
    position: absolute;
    right: 0;
    top: 0;
    width: 225px;
    height: 125px;
}

.pare_ticket_block_area .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pare_ticket_item {
    background: #fff;
    padding: 50px 40px;
    -webkit-box-shadow: 0px 50px 100px 0px rgba(5, 1, 64, 0.1);
    box-shadow: 0px 50px 100px 0px rgba(5, 1, 64, 0.1);
    border-radius: 10px;
    display: inline-block;
    width: calc(95% / 3);
    position: relative;
    text-align: center;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.pare_ticket_item:hover {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.pare_ticket_item .icon img {
    width: 120px;
    height: auto;
    text-align: center;
    margin: 0 auto 40px auto;
}

.pare_ticket_item h2 {
    font-size: 44px;
    line-height: 35px;
    font-weight: 600;
    color: #2c2c51;
    text-transform: uppercase;
}

.pare_ticket_item h2 span {
    font-weight: 500;
    color: #7b7b93;
    font-size: 18px;
    line-height: 30px;
    display: block;
    padding-top: 10px;
}

.pare_ticket_item p {
    margin-bottom: 0;
    margin-top: 15px;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 500;
    background: #237efd;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 4px;
    -webkit-box-shadow: 0px 3px 10px 0px rgba(38, 59, 94, 0.1);
    box-shadow: 0px 3px 10px 0px rgba(38, 59, 94, 0.1);
}

.pare_ticket_item+.pare_ticket_item {
    margin-left: 28px;
}

.pare_product_developer_area_block {
    background: #fafafc;
}

.pare_product_developer_area_block .tab_img_info {
    z-index: 1;
}

.pare_product_developer_area_block .tab_img_info .tab_img {
    padding-bottom: 30px;
    overflow: visible;
    margin-left: -50px;
}

.pare_product_developer_area_block .tab_img_info .tab_img img {
    position: relative;
    z-index: 1;
    opacity: 0;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: all 0.9s linear, opacity 0.2s linear;
    -o-transition: all 0.9s linear, opacity 0.2s linear;
    transition: all 0.9s linear, opacity 0.2s linear;
}

.pare_product_developer_area_block .tab_img_info .tab_img .square {
    content: "";
    background: url(../img/new/new_shape.png) no-repeat scroll center left;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    background-size: 100% 100%;
    z-index: -1;
    width: auto;
}

.pare_product_developer_area_block .tab_img_info .tab_img .bg_circle {
    width: 220px;
    background: #f4cfe5;
    height: 220px;
    border-radius: 50%;
    position: absolute;
    bottom: 15px;
    left: 5px;
    z-index: 0;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
    -webkit-transition: all 0.7s linear;
    -o-transition: all 0.7s linear;
    transition: all 0.7s linear;
}

.pare_product_developer_area_block .tab_img_info .tab_img .bg_circle.green {
    background: #c8ede9;
}

.pare_product_developer_area_block .tab_img_info .tab_img .bg_circle.pink {
    background: #f93e5e;
}

.pare_product_developer_area_block .tab_img_info .tab_img .bg_circle.yellow {
    background: #f9edcf;
}

.pare_product_developer_area_block .tab_img_info .tab_img .pattern_shap {
    top: auto;
    bottom: -30px;
    left: 100px;
    z-index: -1;
}

.pare_product_developer_area_block .tab_img_info .tab_img.active img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.pare_product_developer_area_block .tab_img_info .tab_img.active .square {
    opacity: 1;
    width: 100%;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.pare_product_developer_area_block .tab_img_info .tab_img.active .bg_circle {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.pare_product_developer_area_block .tab_img_info .tab_img .tab_round {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 5px solid #f9edcf;
    position: absolute;
    top: 100px;
    left: -20px;
}

.pare_product_developer_area_block .tab_img_info .tab_img .tab_triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12.5px 0 12.5px 20px;
    border-color: transparent transparent transparent #c8ede9;
    position: absolute;
    top: -15px;
    left: 170px;
    border-radius: 4px;
}

.pare_product_developer_area_block .developer_product_content {
    padding-right: 0px;
}

.pare_product_developer_area_block .developer_product_content .develor_tab {
    padding-left: 0;
    margin-bottom: 30px;
}

.pare_product_developer_area_block .developer_product_content .develor_tab .nav-item .nav-link:before {
    background: #5f54fd;
}

.pare_product_developer_area_block .developer_product_content h4 {
    font-size: 30px;
    line-height: 40px;
    color: #2c2c51;
    font-weight: 600;
    margin-bottom: 25px;
}

.pare_product_developer_area_block .developer_product_content p {
    font-size: 16px;
    line-height: 28px;
    color: #7b7b93;
    margin-bottom: 20px;
}

.pos_item+.pos_item {
    margin-top: 30px;
}

.flex-row-reverse .pare_features_content_part {
    padding-right: 50px;
}

.pare_features_content_part {
    padding-top: 50px;
}

.pare_features_content_part h2 {
    font-size: 34px;
    color: #2c2c51;
    line-height: 44px;
    font-weight: 500;
    margin-bottom: 50px;
}

.pare_features_content_part .f_features_item_part {
    padding-right: 0;
}

.pare_features_content_part .f_features_item_part i {
    font-size: 24px;
    color: #ffffff;
    margin-right: 15px;
    background: #237efd;
    padding: 15px;
    border-radius: 4px;
}

.pare_features_content_part .f_features_item_part i.orange {
    color: #ffffff;
}

.pare_features_content_part .f_features_item_part i.green {
    color: #0ed1ca;
}

.pare_features_content_part .f_features_item_part i.red {
    color: #f826c0;
}

.pare_features_content_part .f_features_item_part i.check {
    color: #1ad90b;
}

.pare_features_content_part .f_features_item_part .h_head {
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.pare_features_content_part .f_features_item_part .h_head::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    bottom: 0px;
    width: 40px;
    border-radius: 30px;
}

.pare_features_content_part .f_features_item_part p {
    color: #7b7b93;
}

.pare_features_img {
    padding: 50px 0px;
    position: relative;
    text-align: center;
}

.pare_features_img .shap_img:before {
    content: "";
    background: url(../img/new/shape_bg.png) no-repeat scroll center left;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    background-size: 100% 100%;
    z-index: -1;
    width: auto;
}

.pare_features_img .shap_img {
    -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    -webkit-animation-name: animateUpDown;
    animation-name: animateUpDown;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.pare_features_img .shap_img.yellow {
    padding-top: 0;
    margin-top: -30px;
}

.pare_features_img .shap_img {
    padding: 30px 0;
    -webkit-animation-duration: 1.9s;
    animation-duration: 1.9s;
}

.pare_features_img .shape_img.blue {
    background: #e5f6ff;
}

.pare_about_features_area_part {
    background: #2e3d62;
    padding-top: 120px;
    padding-bottom: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 1
}

.pare_about_features_area_part .overlay_img {
    background: url("../img/home10/cloud_bg.png") no-repeat scroll center 0/cover;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.pos_about_img {
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 82px;
    margin-bottom: -140px;
}

.pare_features_about_list {
    -webkit-column-count: 4;
    column-count: 4;
    margin-bottom: 65px;
}

.pare_features_about_list li {
    font-size: 16px;
    color: #d0cfe6;
    font-weight: 400;
    line-height: 28px;
    position: relative;
    padding-left: 60px;
}

.pare_features_about_list li:before {
    content: "\e693";
    width: 40px;
    height: 40px;
    position: absolute;
    left: 0;
    top: 8px;
    color: #237efd;
    font-size: 18px;
    font-family: 'themify';
    background: rgba(255, 255, 255, 0.1);
    border: 2px dotted #237efd;
    border-radius: 40px;
    text-align: center;
    vertical-align: middle;
    line-height: 36px;
}

.pare_features_about_list li+li {
    margin-top: 40px;
}

.pare_subscribe .form-group {
    margin-bottom: 0;
}

.pare_subscribe .form-group input {
    width: 100%;
    border: 0px;
    height: 60px;
    border-radius: 5px;
    border: 2px solid #ebeef4;
    font-size: 16px;
    color: #2c2c51;
    font-weight: 400;
    padding-left: 25px;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.pare_subscribe .form-group input:focus {
    border: 2px solid #5f54fd;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.pare_subscribe .form-group input.placeholder {
    color: #2c2c51;
}

.pare_subscribe .form-group input:-moz-placeholder {
    color: #2c2c51;
}

.pare_subscribe .form-group input::-moz-placeholder {
    color: #2c2c51;
}

.pare_subscribe .form-group input::-webkit-input-placeholder {
    color: #2c2c51;
}

.pare_subscribe .btn_pos {
    background: #237efd;
    font-size: 16px;
    font-weight: 500;
    padding: 17px 37px;
    color: #fff;
}

.pare_subscribe .btn_pos:hover {
    background: #3588fd;
    color: #fff;
}

.chat_area {
    padding: 60px 0px 150px;
    position: relative;
    z-index: 1;
}

.chat_content {
    padding-top: 40px;
}

.chat_content h2 {
    font-size: 34px;
    color: #2c2c51;
    font-weight: 500;
    line-height: 44px;
}

.chat_content .pos_btn {
    margin-top: 45px;
}

.chat_info {
    background: #fafaff;
    border-radius: 6px;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 77px 45px;
    border-left: 6px solid #5f54fd;
}

.chat_info img {
    margin-right: 46px;
}

.chat_info .date {
    font-size: 40px;
    font-weight: 700;
    color: #5f54fd;
    padding-bottom: 32px;
}

.chat_info .date span {
    font-weight: 400;
}

.chat_info h3 {
    font-size: 26px;
    line-height: 36px;
    color: #2c2c51;
    font-weight: 500;
}

.chat_info .pos_service_btn {
    margin-top: 32px;
}

.pos_service_btn {
    font-size: 16px;
    font-weight: 500;
    color: #5f54fd;
    line-height: 18px;
    display: inline-block;
    position: relative;
}

.pos_service_btn:before {
    content: "";
    width: 0;
    height: 2px;
    background: #5f54fd;
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: width 0.3s linear;
    -o-transition: width 0.3s linear;
    transition: width 0.3s linear;
}

.pos_service_btn i {
    vertical-align: middle;
    padding-left: 10px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.pos_service_btn:hover {
    color: #5f54fd;
}

.pos_service_btn:hover:before {
    width: 100%;
}

.pos_service_btn:hover i {
    padding-left: 15px;
}

.pos_btn {
    font-size: 16px;
    color: #5f54fd;
    font-weight: 500;
    padding: 9px 24px;
    border: 2px solid #aba6f9;
    border-radius: 4px;
    display: inline-block;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.pos_btn:hover {
    background: #5f54fd;
    color: #fff;
    border-color: #5f54fd;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(95, 84, 253, 0.15);
    box-shadow: 0px 10px 30px 0px rgba(95, 84, 253, 0.15);
}

.pos_action_area {
    position: relative;
    z-index: 3;
    margin-bottom: -30px;
}

.pos_action_area .pos_action_content {
    border-radius: 20px;
    background-color: white;
    -webkit-box-shadow: 0px 30px 80px 0px rgba(5, 1, 64, 0.1), 0px -4px 0px 0px rgba(95, 84, 253, 0.004);
    box-shadow: 0px 30px 80px 0px rgba(5, 1, 64, 0.1), 0px -4px 0px 0px rgba(95, 84, 253, 0.004);
    border: 4px solid #5d52f9;
    padding: 77px 20px;
}

.pos_action_area .pos_action_content h2 {
    font-size: 40px;
    color: #2c2c51;
    line-height: 44px;
    font-weight: 600;
    margin-bottom: 15px;
}

.pos_action_area .pos_action_content p {
    font-size: 24px;
    line-height: 35px;
    font-weight: 400;
    color: #7b7b93;
    margin-bottom: 52px;
}

.pos_action_area .pos_action_content .pos_btn {
    background: #5f54fd;
    color: #fff;
    border-color: #5f54fd;
    padding: 7px 33px;
    font-weight: 400;
}

.menu_pare_area .container {
    position: relative;
}

.menu_pare_area .container .header_search_cart_area {
    background: transparent;
}

.menu_pare_area .container .menu_toggle .hamburger span,
.menu_pare_area .container .menu_toggle .hamburger-cross span {
    background: #fff;
}

/*============== footer_area css ==============*/

.f_bg {
    background: #eff2f9 url("../img/footer_shape.png") no-repeat 100% 100%;
    -webkit-box-shadow: 0px -1px 0px 0px rgba(231, 236, 246, 0.004);
    box-shadow: 0px -1px 0px 0px rgba(231, 236, 246, 0.004);
}



.f_widget .widget-wrap {
    margin-top: 25px;
}

.f_widget p {
    font-weight: 400;
}

.f_widget .widget-wrap p span:first-child {
    padding-left: 0;
}

.f_widget .widget-wrap p span {
    color: #051441;
}

.f_widget .widget-wrap p a {
    color: #677294;
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

.f_widget .widget-wrap p a:hover {
    color: #237efd;
}

.f_widget.company_widget .mchimp-errmessage,
.f_widget.company_widget .mchimp-sucmessage {
    position: absolute;
}

.f_widget.about-widget .f_list {
    margin-bottom: 0px;
}

.about-widget h3 {
    position: relative;
}

.about-widget h3::before {
    background: #237efd;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    margin: 8px 0 10px;
    position: absolute;
    top: 22px;
    width: 45px;
    border-radius: 30px;
}

.footer_dark_one ul.list-unstyled li i {
    color: #fff;
    font-size: 12px;
    padding-right: 5px;
}

.f_widget.about-widget .f_list li {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
}

.f_widget.about-widget .f_list li i {
    font-size: 12px;
    padding-right: 5px;
}

.f_widget.about-widget .f_list li a {
    font: 400 16px/20px "Poppins", sans-serif;
    color: #677294;
    position: relative;
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
    display: inline-block;
}

.f_widget.about-widget .f_list li a:before {
    content: "";
    width: 0;
    height: 2px;
    background: #237efd;
    right: 0;
    left: 0;
    border-radius: 20px;
    bottom: -5px;
    margin: 0 auto;
    position: absolute;
    -webkit-transition: width 0.2s linear;
    -o-transition: width 0.2s linear;
    transition: width 0.2s linear;
}

.f_widget.about-widget .f_list li a:hover {
    color: #237efd;
}

.f_widget.about-widget .f_list li a:hover:before {
    width: 100%;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.f_widget.about-widget .f_list li:last-child {
    margin-bottom: 0px;
}

.f_subscribe {
    position: relative;
    margin-top: 40px;
}

.f_subscribe .form-control {
    font: 400 14px "Poppins", sans-serif;
    color: #333;
    padding: 8px 52px;
    border: 2px solid #e2e7f3;
    border-radius: 6px;
    background: #fbfbfb;
    padding-left: 18px;
    height: 54px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.f_subscribe .form-control.placeholder {
    color: #9ba2b5;
}

.f_subscribe .form-control:-moz-placeholder {
    color: #9ba2b5;
}

.f_subscribe .form-control::-moz-placeholder {
    color: #9ba2b5;
}

.f_subscribe .form-control::-webkit-input-placeholder {
    color: #9ba2b5;
}

.f_subscribe .form-control:focus {
    border-color: #237efd;
    -webkit-box-shadow: 0px 4px 6px 0px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 4px 6px 0px rgba(12, 0, 46, 0.06);
}

.f_subscribe button {
    position: absolute;
    right: 0;
    background: #237efd;
    padding: 0;
    color: #ffffff;
    font-size: 18px;
    top: 50%;
    border-radius: 0 4px 4px 0px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 54px;
    width: 54px;
    line-height: 56px;
}

.footer_bottom_content_area {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    color: #7f88a6;
    padding: 27px 0px;
}

.footer_bottom_content_area p a {
    color: #237efd;
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

.footer_bottom_content_area .f_menu {
    margin-bottom: 0px;
}

.footer_bottom_content_area .f_menu li {
    display: inline-block;
    position: relative;
}

.footer_bottom_content_area .f_menu li a {
    color: #7f88a6;
    font-weight: 400;
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

.footer_bottom_content_area .f_menu li a:hover {
    color: #237efd;
}

.footer_bottom_content_area .f_menu li+li {
    margin-left: 16px;
}

.footer_bottom_content_area .f_menu li+li:before {
    content: "";
    width: 1px;
    height: 12px;
    background: #b1b7ca;
    display: inline-block;
    margin-right: 18px;
    vertical-align: middle;
}

.footer_bottom_content_area a:hover {
    color: #237efd;
}

.vfx_social_icon_area_bottom a {
    font-size: 14px;
    color: #fff;
    padding: 5px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    background: #237efd;
    width: 36px;
    height: 36px;
    border: 2px solid transparent;
    display: inline-block;
    border-radius: 4px;
    text-align: center;
    vertical-align: middle;
    line-height: 25px;
    margin-right: 5px;
}

.vfx_social_icon_area_bottom a:hover {
    background: transparent;
    border: 2px solid #237efd;
    color: #237efd;
}

.vfx_social_icon_area_bottom a:hover i {
    color: #237efd;
}

.footer_area_two {
    background: #fbfbfd;
}



.footer_area_two .footer_top_two .f_widget.about-widget .f_list li a:before {
    background: #00aff0;
}

.footer_area_two .footer_top_two .f_widget.about-widget .f_list li a:hover {
    color: #00aff0;
}

.footer_area_two .footer_top_two .f_widget .widget-wrap p a:hover {
    color: #00aff0;
}

.footer_area_two .footer_bottom_content_area {
    position: relative;
}

.footer_area_two .footer_bottom_content_area p a {
    color: #00aff0;
}

.footer_area_two .footer_bottom_content_area .f_menu li a:hover {
    color: #00aff0;
}

.footer_area_two .footer_bottom_content_area .f_menu li+li:before {
    background: #7f88a6;
}

.f_social_icon a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 14px;
    line-height: 44px;
    color: #686868;
    display: inline-block;
    background: #ebeef5;
    text-align: center;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.f_social_icon a:hover {
    background: #237efd;
    color: #fff;
}

.f_social_icon a+a {
    margin-left: 6px;
}

.pagescroll_btn {
    width: 44px;
    height: 44px;
    border: 1px solid #1d1d42;
    font-size: 16px;
    color: #00aff0;
    text-align: center;
    line-height: 44px;
    position: absolute;
    border-radius: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -22px;
    background: #121233;
}


.dark_f_bottom a {
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

.dark_f_bottom a:hover {
    color: #4069eb;
}

.dark_f_bottom p {
    color: #9ca5c1;
}

.dark_f_bottom p a {
    color: #4069eb;
}

.dark_f_bottom .f_menu li a {
    color: #9ca5c1;
}

.dark_f_bottom .f_menu li a:hover {
    color: #4069eb;
}

.dark_f_bottom .f_menu li+li:before {
    background: #5e6482;
}

.dark_widget .f-title {
    color: #fff;
}

.dark_widget.company_widget .vfx_social_icon_area_bottom {
    margin-top: 25px;
}

.dark_widget.company_widget .vfx_social_icon_area_bottom a:first-child {
    margin-left: 0px;
}

.dark_widget.company_widget .vfx_social_icon_area_bottom a:hover {
    color: #4069eb;
}

.dark_widget .widget-wrap p span {
    color: #fff;
    padding-left: 0;
}

.dark_widget .widget-wrap p a:hover {
    color: #4069eb;
}

.dark_widget.about-widget .f_list li a:before {
    background: #4069eb;
}

.dark_widget.about-widget .f_list li a:hover {
    color: #4069eb;
}

.dark_widget .f_subscribe .form-control {
    background: transparent;
    border-color: #202430;
}

.dark_widget .f_subscribe button {
    color: #fff;
}

.footer_dark_two {
    background: #13112d;
}

.footer_dark_two .footer_top {
    border-color: #1f1d48;
}

.footer_dark_two .dark_widget.company_widget .vfx_social_icon_area_bottom a:hover {
    color: #237efd;
}

.footer_dark_two .dark_widget .widget-wrap p a:hover {
    color: #237efd;
}

.footer_dark_two .dark_widget.about-widget .f_list li a:before {
    background: #237efd;
}

.footer_dark_two .dark_widget.about-widget .f_list li a:hover {
    color: #237efd;
}

.footer_dark_two .dark_f_bottom a {
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

.footer_dark_two .dark_f_bottom a:hover {
    color: #237efd;
}

.footer_dark_two .dark_f_bottom p a {
    color: #237efd;
}

.footer_dark_two .dark_f_bottom .f_menu li a:hover {
    color: #237efd;
}

.footer_dark_three {
    background: #1b1e29;
}

.footer_dark_three .footer_top {
    border-color: #212532;
}

.footer_dark_three .dark_widget .widget-wrap p a {
    color: #6d738c;
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

.footer_dark_three .dark_widget .widget-wrap p a:hover {
    color: #237efd;
}

.footer_dark_three .dark_widget.about-widget .f_list li a {
    color: #6d738c;
}

.footer_dark_three .dark_widget.about-widget .f_list li a:before {
    background: #237efd;
}

.footer_dark_three .dark_widget.about-widget .f_list li a:hover {
    color: #237efd;
}

.footer_dark_three .dark_f_bottom a {
    color: #6d738c;
}

.footer_dark_three .dark_f_bottom a:hover {
    color: #237efd;
}

.footer_dark_three .dark_f_bottom p {
    color: #6d738c;
}

.footer_dark_three .dark_f_bottom p a {
    color: #237efd;
}

.footer_dark_three .dark_f_bottom .f_menu li a {
    color: #6d738c;
}

.footer_dark_three .dark_f_bottom .f_menu li a:hover {
    color: #237efd;
}

.footer_dark_four {
    background: #16143a;
}

.footer_dark_five {
    background: #121233;
}

.footer_dark_five .footer_top_two {
    border-color: #1d1d42;
}

.footer_dark_five .f_widget .widget-wrap p span {
    color: #fff;
}

.footer_dark_five .f_widget .f_social_icon a {
    background: #1c1c42;
}

.footer_dark_five .f_widget .f_social_icon a:hover {
    background: #00aff0;
}

.footer_nine_area {
    position: relative;
}

.footer_nine_top {
    padding-bottom: 150px;
    position: relative;
    padding-top: 150px;
}

.footer_nine_top .f_widget .f-title {
    color: #051441;
    text-transform: uppercase;
}

.footer_nine_top .f_widget .f-title:after {
    content: "";
    width: 100px;
    height: 2px;
    display: block;
    background: #ebeefa;
    margin-top: 15px;
}

.footer_nine_top .f_widget.about-widget .f_list li a:before {
    background: #0479f7;
}

.footer_nine_top .f_widget.about-widget .f_list li a:hover {
    color: #0479f7;
}

.footer_nine_top .company_widget .vfx_social_icon_area_bottom a:first-child {
    margin-left: 0;
}

.footer_nine_top .company_widget .vfx_social_icon_area_bottom a:hover {
    color: #0479f7;
}

.footer_nine_bottom {
    background: #051441;
    padding: 27px 0px;
}

.footer_nine_bottom p {
    font: 300 14px "Poppins", sans-serif;
    color: #7f88a6;
}

.footer_nine_bottom p a {
    color: #fff;
}

.footer_nine_bottom .flag_selector {
    float: right;
}

.footer_nine_bottom .flag_selector .dropdown-toggle {
    background-color: transparent !important;
    border: 0px !important;
    border-radius: 0px;
    padding: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    font: 400 14px "Poppins", sans-serif;
    color: #7f88a6;
}

.footer_nine_bottom .flag_selector .dropdown-toggle:after {
    display: none;
}

.footer_nine_bottom .flag_selector .dropdown-toggle:focus {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.footer_nine_bottom .flag_selector .text {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.footer_nine_bottom .flag_selector .text .flag-icon {
    margin-left: 0px;
    margin-right: 20px;
    float: none;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.footer_nine_bottom .flag_selector .flag-icon {
    position: relative;
    display: inline-block;
    width: 39px;
    line-height: 1em;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%;
    height: 22px;
    margin-left: 27px;
    float: right;
}

.footer_nine_bottom .flag_selector .flag-icon:before {
    content: "";
    width: 1px;
    height: 100%;
    position: relative;
    display: inline-block;
    background: #18295c;
    left: -15px;
}

.footer_nine_bottom .flag_selector .dropdown-menu {
    padding: 0px;
    border-radius: 0px;
    border: 0px;
}

.footer_nine_bottom .flag_selector .dropdown-menu .flag-icon:before {
    display: none;
}

.footer_nine_bottom .flag_selector .dropdown-menu li .dropdown-item {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.footer_nine_bottom .flag_selector .dropdown-menu li .dropdown-item:hover {
    background: #21d4fd;
    color: #fff;
}

.footer_dark_ten .f_widget .widget-wrap p a:hover {
    color: #23b1fe;
}

.footer_dark_ten .f_widget.about-widget .f_list li a:before {
    background: #23b1fe;
}

.footer_dark_ten .f_widget.about-widget .f_list li a:hover {
    color: #23b1fe;
}

.footer_dark_ten .dark_f_bottom .f_menu li a:hover,
.footer_dark_ten .dark_f_bottom a {
    color: #23b1fe;
}

.payment_footer_area {
    background: #07112d;
    border: 0px;
    padding: 220px 0px 100px;
}

.payment_footer_area .f_widget.company_widget p {
    color: #7f88a6;
}

.payment_footer_area .f_widget.company_widget a {
    color: #237efd;
}

.payment_footer_area .f_widget.about-widget .f_list li a {
    color: #959eb8;
}

.payment_footer_area .social-widget .f_social_icon a {
    background: #182240;
}

.payment_footer_area .social-widget .f_social_icon a:hover {
    background: #237efd;
}

.payment_footer_area_two {
    padding: 100px 0px;
}

.new_footer_area {
    background: #fbfbfd;
}

.new_footer_area .footer_bottom_content_area {
    padding-top: 5px;
    padding-bottom: 50px;
}

.new_footer_area .footer_bottom_content_area p {
    font-size: 16px;
    color: #6a7695;
    line-height: 28px;
    margin-bottom: 0;
}

.new_footer_area .footer_bottom_content_area p i {
    color: #fd2f51;
}

.new_footer_top {
    padding: 120px 0px 270px;
    position: relative;
}

.new_footer_top .f-title {
    margin-bottom: 30px;
    color: #263b5e;
}

.new_footer_top .company_widget p {
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    color: #6a7695;
    margin-bottom: 20px;
}

.new_footer_top .company_widget .f_subscribe_two .form-control {
    border: 1px solid #e2e2eb;
    border-radius: 4px;
    height: 55px;
    background: #fff;
    font-size: 15px;
    font-weight: 300;
    line-height: 55px;
    padding-left: 30px;
}

.new_footer_top .company_widget .f_subscribe_two .btn_get {
    border-width: 2px;
    margin-top: 20px;
}

.new_footer_top .f_widget.about-widget .f_list li {
    margin-bottom: 11px;
}

.new_footer_top .f_widget.about-widget .f_list li a {
    color: #6a7695;
}

.new_footer_top .f_widget.about-widget .f_list li a:before {
    display: none;
}

.new_footer_top .f_widget.about-widget .f_list li a:hover {
    color: #237efd;
}

.new_footer_top .f_social_icon a {
    width: 44px;
    height: 44px;
    line-height: 43px;
    background: transparent;
    border: 1px solid #e2e2eb;
    font-size: 12px;
}

.new_footer_top .f_social_icon a:hover {
    background: #237efd;
    border-color: #237efd;
}

.new_footer_top .f_social_icon a+a {
    margin-left: 4px;
}

/*----New Added by me--------*/

/* ==========================================
   Dubai Website Design Hero Section
========================================== */

.vrop_banner_area_block {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.vrop_banner_area_block .section_container {
    max-width: 100%;
    height: auto;
    text-align: center;
}

.vrop_banner_area_block .section_container .intro {
    height: auto;
}

.vrop_banner_area_block .section_container .intro_content {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 18px;
    text-align: center;
}

/* Main Heading */
.intro_content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 1.5px;
    padding-top: 0;
    margin-top: 30px;
    color: #0f172a;
    margin-bottom: 20px;
    animation: fadeUp 0.9s ease-out;
    text-align: center;
}

/* Sub Heading */
.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 1.5px;
    color: #1f2937;
    margin-bottom: 25px;
    animation: fadeUp 1s ease-out;
    text-align: center;
}

/* Description */
.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    max-width: 980px;
    letter-spacing: 1.5px;
    margin: 0 auto 35px;
    animation: fadeUp 1.2s ease-out;
    text-align: center;
}

/* Button */
.hero-btns {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    animation: fadeUp 1.4s ease-out;
    letter-spacing: 1.5px;
}

.hero-btns .er_btn {
    min-width: 220px;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-btns .er_btn:hover {
    transform: translateY(-3px);
}

.hero-note {
    font-size: 18px;
    color: #6b7280;
    font-weight: 900px;
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
    margin-top: 15px;
    letter-spacing: 1.5px;
    text-align: center;
}

/* Fade Up Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dashboard Image Animation */
.vrop_banner_area_block .animation_img {
    margin-top: 28px !important;
    padding-top: 0 !important;
    position: relative;
    z-index: 1;
}

.vrop_banner_area_block .animation_img img {
    display: block;
    width: 100%;
    max-width: 860px;
    height: auto;
    margin: 0 auto;
}

.animation_img {
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive Design */

@media (max-width: 1200px) {
    .intro_content h1 {
        font-size: 56px;
    }
}

@media (max-width: 991px) {
    .vrop_banner_area_block {
        padding: 150px 0 80px;
    }

    .intro_content h1 {
        padding-top: 0;
        margin-top: 0;
    }

    .section_container {
        height: auto;
    }

    .intro_content h1 {
        font-size: 46px;
        padding-top: 20px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        max-width: 100%;
        font-size: 16px;
    }

    .animation_img {
        margin-top: 30px;
    }

    .animation_img .container {
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    .vrop_banner_area_block {
        padding: 120px 0 60px;
    }

    .intro_content h1 {
        padding-top: 0;
        margin-top: 0;
    }

    .intro_content h1 {
        font-size: 32px;
        line-height: 1.25;
        text-align: left;
    }

    .hero-subtitle {
        font-size: 17px;
        line-height: 1.5;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.8;
    }

    .hero-btns {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-btns .er_btn {
        width: 100%;
        min-width: 0;
    }

    .animation_img img {
        max-height: 260px;
        object-fit: contain;
    }
}

@media (max-width: 1199px) {
    .vfx_section_pad {
        padding: 80px 0;
    }

    .services_content h2,
    .why_upgro_content h2,
    .sec_title h2,
    .vrop_service_content_features h2,
    .erp_content h2 {
        font-size: 32px;
        line-height: 1.25;
    }
}

@media (max-width: 991px) {
    .vfx_section_pad {
        padding: 70px 0;
    }

    .vrop_service_features_img,
    .vfx_service_details_img,
    .why_upgro_image {
        margin-bottom: 24px;
    }

    .strategy_timeline {
        padding-left: 0;
    }

    .timeline_item {
        padding: 18px;
    }

    .upgro_cta_box .contact_panel {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .vfx_section_pad {
        padding: 60px 0;
    }

    .sec_title.mb_70 {
        margin-bottom: 30px;
    }

    .services_content h2,
    .why_upgro_content h2,
    .sec_title h2,
    .vrop_service_content_features h2,
    .erp_content h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-description,
    .strategy_content p,
    .feature_card p,
    .industry_description p,
    .contact_panel p,
    .card-body {
        font-size: 14px;
        line-height: 1.75;
    }

    .feature_cards {
        grid-template-columns: 1fr;
    }

    .timeline_item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline_icon {
        margin-bottom: 10px;
    }

    .why_feature {
        flex-direction: column;
        gap: 10px;
    }

    .upgro_cta_box {
        padding: 25px;
    }

    .contact_panel .cta_btn {
        width: 100%;
        text-align: center;
    }

    .industry_tags span {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .header {
        padding: 10px 0;
    }

    .logo {
        flex: 1;
    }

    .logo img {
        max-height: 38px;
    }

    .btn-getstarted {
        padding: 10px 14px;
        font-size: 13px;
    }

    .vrop_banner_area_block {
        padding-top: 110px;
    }

    .intro_content h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .feature_icon {
        width: 56px;
        height: 56px;
    }

    .feature_icon i {
        font-size: 18px;
    }
}

.audit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,.1);
}

.audit-icon {
    font-size: 38px;
    margin-bottom: 20px;
}

.audit-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #111827;
}

.audit-card p {
    color: #6b7280;
    line-height: 1.7;
}

.audit-cta {
    margin-top: 70px;
    text-align: center;
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,.06);
}

.audit-cta h3 {
    font-size: 34px;
    font-weight: 700;
     letter-spacing: 1.5px;
    color: #111827;
    margin-bottom: 20px;
}

.audit-cta p {
    max-width: 750px;
    margin: 0 auto 30px;
    color: #6b7280;
    line-height: 1.8;
    letter-spacing: 1.5px; 
}

.audit-note {
    margin-top: 15px;
     letter-spacing: 1.5px;
    font-style: italic;
    color: #6b7280;
}

@media(max-width:768px){
    .section-header h2{
        font-size:34px;
    }

    .audit-cta{
        padding:40px 25px;
    }

    .audit-cta h3{
        font-size:28px;
    }
}

.website-issues-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 25px;
    margin: 30px 0;
}

.issue-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px 18px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.issue-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.issue-item i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: rgba(94, 44, 237, 0.1);
    color: #4e78f4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.issue-item span {
    font-size: 18px;
    font-weight: 500;
    color: #222;
    line-height: 1.5;
    letter-spacing: 1.2px;
}

.impact-box {
    background: #f8f9ff;
    border-left: 4px solid #4e78f4;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
}

@media (max-width: 767px) {
    .website-issues-list {
        grid-template-columns: 1fr;
    }
}

.smtp_features_img img {
    animation: floatImage 5s ease-in-out infinite;
}

@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}
.issue-item {
    transition: all 0.4s ease;
}

.issue-item:hover {
    transform: translateY(-8px);
}

.issue-item:hover i {
    transform: rotate(360deg);
}

.issue-item i {
    transition: all 0.6s ease;
}

.btn_four {
    position: relative;
}

.btn_four:hover {
    animation: pulseBtn 1s infinite;
}

@keyframes pulseBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(94,44,237,0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(94,44,237,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(94,44,237,0);
    }
}

/* ==========================================
   WHY WEBSITE DESIGN MATTERS IN DUBAI
========================================== */

.website_design_dubai_area{
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: hidden;
}

/* Section Tag */

.section_tag{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(94,44,237,0.1);
    color: #4e78f4;
    padding: 10px 20px;
    border-radius: 30px;
     letter-spacing: 1.5px;
    font-size: 14px;
    font-weight: 600;
}

.section_tag i{
    font-size: 14px;
}

/* Image */

.vfx_service_details_img{
    position: relative;
}

.vfx_service_details_img img{
    width: 100%;
    /* border-radius: 20px; */
    /* box-shadow: 0 25px 60px rgba(0,0,0,0.10); */
    animation: imageFloat 5s ease-in-out infinite;
}

/* Floating Badge */

.floating-badge{
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: #fff;
    padding: 16px 25px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    font-weight: 600;
    color: #222;
    animation: badgeFloat 4s ease-in-out infinite;
    z-index: 2;
}

.floating-badge i{
    color: #4e78f4;
    margin-right: 8px;
}

/* Benefits Grid */

.dubai-benefits{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 30px;
}

.benefit-item{
    display: flex;
    align-items: center;
    padding: 18px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all .4s ease;
    border: 1px solid #f4f4f4;
}

.benefit-item:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.benefit-item i{
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(94,44,237,0.1);
    color: #4e78f4;
    border-radius: 50%;
    margin-right: 15px;
    transition: all .5s ease;
}

.benefit-item:hover i{
    background: ;
    color: #fff;
    transform: rotate(360deg);
}

.benefit-item span{
    color: #222;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 1.2px;
}

/* Outcome Box */

.outcome-box{
    margin-top: 35px;
    background: linear-gradient(135deg,#f8f9ff,#ffffff);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #4e78f4;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.outcome-box h5{
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
}

.outcome-box h5 i{
    color: #4e78f4;
    margin-right: 8px;
}

.outcome-box p{
    margin-bottom: 15px;
}

.outcome-highlight{
    font-size: 18px;
    font-weight: 600;
    color: #4e78f4;
    line-height: 1.7;
    letter-spacing: 1.2px;
}

/* CTA highlight inside outcome box */

.outcome-cta{
    margin-top: 18px;
    display: inline-block;
    padding: 10px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(94, 44, 237, 0.10), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(94, 44, 237, 0.12);
    box-shadow: 0 10px 24px rgba(94, 44, 237, 0.10);
}

.outcome-cta-btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #4e78f4, #7a63ff);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 12px 25px rgba(94, 44, 237, 0.28);
}

.outcome-cta-btn:hover{
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(94, 44, 237, 0.35);
}

/* Button */

.btn_four{
    transition: all .3s ease;
}

.btn_four:hover{
    transform: translateY(-3px);
}

/* Floating Image Animation */

@keyframes imageFloat{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-15px);
    }
    100%{
        transform: translateY(0);
    }
}

/* Floating Badge Animation */

@keyframes badgeFloat{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-8px);
    }
    100%{
        transform: translateY(0);
    }
}

/* Responsive */

@media (max-width: 991px){

    .dubai-benefits{
        grid-template-columns: 1fr;
    }

    .floating-badge{
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        display: inline-block;
    }

    .vfx_service_details_img{
        margin-bottom: 50px;
    }
}

@media (max-width: 767px){

    .outcome-box{
        padding: 20px;
    }

    .benefit-item{
        padding: 15px;
    }

    .benefit-item span{
        font-size: 14px;
    }

    .floating-badge{
        width: 100%;
        text-align: center;
    }
}
.dubai-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-top: 45px;
    margin-bottom: 25px;
    position: relative;
    padding-left: 18px;
}

.dubai-subtitle:before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 4px;
    height: 24px;
    background: #4e78f4;
    border-radius: 10px;
}

/* ==========================================
   WEBSITE STRATEGY TIMELINE SECTION
========================================== */

.website_strategy_timeline_area {
    position: relative;
    padding-top: 100px;
    padding-bottom: 60px;
    background: #f8fafc;
    overflow: hidden;
}

/* Left Content */

.strategy_content {
    padding-right: 40px;
}

.strategy_label {
    display: inline-block;
    background: rgba(94, 44, 237, 0.1);
    color: #4e78f4;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.strategy_content h2 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 600;
    color: #222;
    margin-bottom: 25px;
}

.strategy_content p {
    font-size: 18px;
    line-height: 1.9;
    letter-spacing: 1.2px;
    color: #666;
    margin-bottom: 20px;
}

/* Outcome Box */

.strategy_outcome_box {
    margin-top: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    border-left: 5px solid #4e78f4;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all .3s ease;
}

.strategy_outcome_box:hover {
    transform: translateY(-5px);
}

.strategy_outcome_box h5 {
    margin-bottom: 15px;
    font-weight: 600;
    color: #222;
}

.strategy_outcome_box h5 i {
    color: #4e78f4;
    margin-right: 8px;
}

.strategy_outcome_box p {
    margin-bottom: 0;
    font-weight: 500;
}

/* Timeline */

.strategy_timeline {
    position: relative;
    padding-left: 40px;
}

.strategy_timeline:before {
    content: "";
    position: absolute;
    left: 28px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: linear-gradient(
        to bottom,
        #4e78f4,
        rgba(94, 44, 237, 0.15)
    );
}

/* Timeline Item */

.timeline_item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.timeline_item:last-child {
    margin-bottom: 0;
}

.timeline_icon {
    position: absolute;
    left: -40px;
    width: 56px;
    height: 56px;
    background: #fff;
    border: 3px solid #4e78f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all .4s ease;
    z-index: 2;
}

.timeline_icon i {
    color: #4e78f4;
    font-size: 20px;
    transition: all .4s ease;
}

.timeline_content {
    width: 100%;
    background: #fff;
    padding: 25px 25px 25px 40px;
    border-radius: 15px;
    margin-left: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all .4s ease;
}

.timeline_content h4 {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.timeline_content p {
    margin-bottom: 0;
    color: #666;
    line-height: 1.8;
}

/* Hover Effects */

.timeline_item:hover .timeline_content {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.timeline_item:hover .timeline_icon {
    background: #4e78f4;
    transform: scale(1.08);
}

.timeline_item:hover .timeline_icon i {
    color: #fff;
    transform: rotate(360deg);
}

/* UpGro Statement */

.upgro_statement {
    margin-top: 30px;
    padding: 35px;
    background: linear-gradient(
        135deg,
        #4e78f4,
        #7b61ff
    );
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(94,44,237,0.25);
}

.upgro_statement p {
    color: #fff;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 0;
}

.upgro_statement strong {
    color: #fff;
}

/* Floating Animation */

.timeline_icon {
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive */

@media (max-width: 1199px) {
    .strategy_content h2 {
        font-size: 36px;
    }
}

@media (max-width: 991px) {

    .strategy_content {
        padding-right: 0;
        margin-bottom: 60px;
    }

    .strategy_content h2 {
        font-size: 32px;
    }

    .strategy_timeline {
        padding-left: 30px;
    }

    .timeline_icon {
        left: -30px;
        width: 50px;
        height: 50px;
    }

    .timeline_content {
        padding: 20px 20px 20px 35px;
    }
}

@media (max-width: 767px) {

    .strategy_content h2 {
        font-size: 28px;
    }

    .timeline_content h4 {
        font-size: 18px;
    }

    .timeline_content {
        margin-left: 20px;
        padding: 20px;
    }

    .upgro_statement {
        padding: 25px;
    }

    .upgro_statement p {
        font-size: 16px;
    }
}

/* ===================================
   STRATEGY APPROACH SECTION
=================================== */

.strategy_approach_section {
    background: #f8fafc;
}

.strategy_approach_section .row {
    justify-content: center;
}

.custom_tag {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(94,44,237,.1);
    color: #4e78f4;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.strategy_approach_section .col-lg-4,
.strategy_approach_section .col-md-6 {
    margin-bottom: 30px;
}
.strategy_card {
    height: 100%;
    padding: 40px 30px;
    border-radius: 20px;
    background: #fff;
    transition: all .4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,.05);
    text-align: center;
}

.strategy_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

.feature_icon {
    width: 80px;
    height: 80px;
    background: rgba(94,44,237,.1);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.feature_icon i {
    font-size: 30px;
    color: #4e78f4;
    transition: .4s;
}

.strategy_card:hover .feature_icon {
    background: #4e78f4;
}

.strategy_card:hover .feature_icon i {
    color: #fff;
    transform: rotate(360deg);
}

.strategy_card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
}

.strategy_card p {
    margin-bottom: 0;
    line-height: 1.8;
}

/* Growth Card */

.strategy_card {
    background: #fff;
    transition: all .4s ease;
    overflow: hidden;
    position: relative;
}

.strategy_card:hover {
    background: linear-gradient(
        135deg,
        #4e78f4,
        #7b61ff
    );
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(94,44,237,.25);
}

.strategy_card h3,
.strategy_card p,
.feature_icon,
.feature_icon i {
    transition: all .4s ease;
}

/* Text Color */

.strategy_card:hover h3,
.strategy_card:hover p {
    color: #fff;
}

/* Icon Background */

.strategy_card:hover .feature_icon {
    background: rgba(255,255,255,.15);
}

/* Icon Color */

.strategy_card:hover .feature_icon i {
    color: #fff;
    transform: rotate(360deg);
}

.strategy_card h3,
.strategy_card p,
.feature_icon,
.feature_icon i {
    transition: all .4s ease;
}

/* Bottom Text */

.strategy_bottom_text {
    margin-top: 90px;
    margin-bottom: 30px;
}

.strategy_bottom_text p {
    font-size: 18px;
    line-height: 1.9;
    max-width: 900px;
    margin: auto;
    font-weight: 500;
}
/* ==================================
   SECTION
================================== */

.dubai_web_services{
    padding:120px 0;
    background:#f8faff;
    overflow:hidden;
}

/* ==================================
   LEFT IMAGE AREA
================================== */

.service_showcase{
    position:relative;
    min-height:600px;
}

.shape_bg{
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:linear-gradient(135deg,#4e78f4,#7b61ff);
    opacity:.08;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.main_image{
    position:absolute;
    width:100%;
    max-width:500px;
    top:50%;
    left:0;
    transform:translateY(-50%);
    z-index:2;
}

.floating_icon{
    position:absolute;
    width:70px;
    height:70px;
    background:#fff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    z-index:3;
    animation:float 4s ease-in-out infinite;
}

.floating_icon img{
    width:35px;
}

.icon1{
    top:40px;
    left:20px;
}

.icon2{
    top:120px;
    right:10px;
    animation-delay:.5s;
}

.icon3{
    top:280px;
    right:-10px;
    animation-delay:1s;
}

.icon4{
    bottom:100px;
    left:10px;
    animation-delay:1.5s;
}

.icon5{
    bottom:20px;
    right:50px;
    animation-delay:2s;
}

/* ==================================
   HEADING
================================== */

.section_heading h2{
    font-size:42px;
    font-weight:700;
    color:#051441;
    line-height:1.3;
    margin-bottom:0;
}

/* ==================================
   SERVICE GRID
================================== */

.service_grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

/* ==================================
   SERVICE CARD
================================== */

.service_card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.35s;
    display:flex;
    flex-direction:column;
    height:100%;
    position:relative;
    overflow:hidden;
}

.service_card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#4e78f4,#7b61ff);
    transform:scaleX(0);
    transition:.35s;
}

.service_card:hover::before{
    transform:scaleX(1);
}

.service_card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.10);
}

.service_card h4{
    font-size:22px;
    font-weight:600;
    color:#051441;
    margin-bottom:15px;
    line-height:1.4;
}

.service_card p{
    color:#666;
    font-size:15px;
    line-height:1.8;
    margin-bottom:20px;
}

/* ==================================
   OUTCOME
================================== */

.outcome{
    margin-top:auto;
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:15px;
    background:linear-gradient(
        135deg,
        rgba(94,44,237,.05),
        rgba(123,97,255,.10)
    );
    border-left:4px solid #4e78f4;
    border-radius:12px;
}

.outcome_icon{
    width:34px;
    height:34px;
    min-width:34px;
    border-radius:50%;
    background:#4e78f4;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
}

.outcome_label{
    display:block;
    font-weight:700;
    color:#4e78f4;
    margin-bottom:4px;
    font-size:14px;
}

.outcome_text{
    display:block;
    color:#444;
    font-size:14px;
    line-height:1.7;
}

@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0);
    }
}

/* ==================================
   RESPONSIVE
================================== */

@media(max-width:991px){

    .service_showcase{
        min-height:450px;
        margin-bottom:60px;
    }

    .service_grid{
        grid-template-columns:1fr;
    }

    .section_heading h2{
        font-size:34px;
    }

    .main_image{
        max-width:380px;
        left:50%;
        transform:translate(-50%,-50%);
    }
}

@media(max-width:767px){

    .dubai_web_services{
        padding:80px 0;
    }

    .service_showcase{
        min-height:320px;
    }

    .floating_icon{
        width:55px;
        height:55px;
    }

    .floating_icon img{
        width:28px;
    }

    .service_card{
        padding:25px;
    }

    .service_card h4{
        font-size:20px;
    }

    .section_heading h2{
        font-size:28px;
    }
}
.dubai_web_services_new{
    position:relative;
    padding:8px 0 30px;
    overflow:hidden;
    background:#fff;
}

.service_shapes .shape_one{
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(94,44,237,.05);
    border-radius:50%;
    top:-150px;
    left:-150px;
}

.service_shapes .shape_two{
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(123,97,255,.05);
    border-radius:50%;
    right:0px;
    bottom:-200px;
}

/* IMAGE */

.services_image_wrap{
    position:relative;
    padding:25px;
}

.main_service_img{
    width:100%;
    margin-bottom: -300px;
    height: 800px;
        object-fit: ;
        animation: floatImage 10s ease-in-out infinite;
        transition: all .8s ease;
    /* border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,.12); */
}

/* FLOATING BOXES */

.experience_box,
.projects_box{
    position:absolute;
    background:#fff;
    border-radius:18px;
    padding:18px 25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    z-index:2;
}

.experience_box{
    top:0;
    left:0;
}

.projects_box{
    bottom:0;
    right:0;
}

.experience_box h2,
.projects_box h2{
    color:#4e78f4;
    font-size:34px;
    font-weight:700;
    margin-bottom:5px;
}

.experience_box span,
.projects_box span{
    color:#666;
    font-size:14px;
}

/* CONTENT */

.section_tag{
    display:inline-block;
    background:#f3efff;
    color:#4e78f4;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.services_content h2{
    font-size:30px;
    padding-top:80px;
    line-height:1.2;
    font-weight:600;
    color:#1d1d1d;
    margin-bottom:24px;
}

.services_content p{
    color:#666;
    margin-bottom:35px;
}

/* FEATURE CARDS */

.feature_cards{
    display:grid;
    grid-template-columns:repeat(2, minmax(280px, 1fr));
    gap:3px;
    align-items:stretch;
    margin-bottom:24px;
}

.feature_card{
    display:flex;
    flex-direction:column;
    height:100%;
    min-height:210px;
    background:#fff;
    padding:22px 20px 18px;
    border-radius:20px;
    border:1px solid #eee;
    box-shadow:0 10px 24px rgba(15,23,42,.04);
    transition:.35s;
}

.feature_card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(94,44,237,.12);
    border-color:#4e78f4;
}

.feature_icon{
    width:65px;
    height:65px;
    background:linear-gradient(135deg,#4e78f4,#7b61ff);
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
}

.feature_icon i{
    color:#fff;
    font-size:24px;
}

.feature_card h4{
    font-size:18px;
    line-height:1.35;
    margin-bottom:10px;
}

.feature_card p{
    margin:0 0 12px;
    font-size:15px;
    line-height:1.6;
    flex:1;
}

/* BUTTON */

.theme_btn{
    display:inline-block;
    padding:14px 32px;
    border-radius:50px;
    background:linear-gradient(
        135deg,
        #4e78f4,
        #7b61ff
    );
    color:#fff;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.theme_btn:hover{
    transform:translateY(-3px);
    color:#fff;
}

/* MOBILE */

@media(max-width:991px){

    .services_content{
        margin-top:50px;
    }

    .feature_cards{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:14px;
    }

    .services_content h2{
        font-size:32px;
    }

    .services_image_wrap {
        padding: 0 0 18px;
    }

}

@media(max-width:767px){
    .services_content h2 {
        font-size: 24px;
        line-height: 1.25;
        padding-top: 370px;
        margin-bottom: 18px;
        text-align: center;
    }

    .feature_cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature_card {
        padding: 18px;
        min-height: auto;
    }

    .why_feature {
        flex-direction: column;
        gap: 10px;
    }

    .why_upgro_content h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .industry_tags {
        gap: 10px;
    }

    .industry_tags span {
        padding: 10px 14px;
        font-size: 13px;
    }
}
.feature_icon{
    animation:pulseGlow 3s infinite;
}

@keyframes pulseGlow{
    0%{
        box-shadow:0 0 0 0 rgba(94,44,237,.4);
    }
    70%{
        box-shadow:0 0 0 18px rgba(94,44,237,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(94,44,237,0);
    }
}

.service_outcome{
    margin-top:auto;
    padding-top:15px;
    border-top:1px solid #f1f1f1;
    font-size:14px;
    line-height:1.7;
    color:#555;
    position:relative;
    padding-left:28px;
}

.service_outcome::before{
    content:"✓";
    position:absolute;
    left:0;
    top:15px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#4e78f4;
    color:#fff;
    font-size:11px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.service_outcome strong{
    color:#4e78f4;
    font-weight:700;
}

.feature_list{
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.feature_list li{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.list_circle{
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: #4e78f4;
}

.industry_simple_area{
    background: #f7f6fa;
    
}

.industry_tags{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0px;
}

.industry_tags span{
    padding: 2px 24px;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    background: #fff;
    color: #444;
    font-size: 15px;
    font-weight: 500;
    transition: all .3s ease;
}

.industry_tags span:hover{
    border-color: #4e78f4;
    color: #4e78f4;
}

.industry_description{
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ececec;
}

.industry_description p{
    margin: 0;
    line-height: 1.9;
    color: #666;
    padding-bottom: 20px;
    font-size: 17px;
}

@media(max-width:767px){

    .industry_tags{
        gap: 10px;
    }

    .industry_tags span{
        font-size: 14px;
        padding: 10px 18px;
    }
}

.why_upgro_section{
    background:#fff;
    position:relative;
    margin-bottom:60px;
}

.why_upgro_image{
    position:relative;
}

.why_upgro_image img{
    border-radius:20px;
    width:100%;
}
.why_feature{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:25px;
    padding:18px;
    border-radius:15px;
    transition:all .35s ease;
}

.why_feature:hover{
    transform:translateX(10px);
    background:#f8faff;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}
.why_feature span{
    transition:all .35s ease;
}

.why_feature:hover span{
    transform:scale(1.15) rotate(8deg);
}
.why_upgro_content h2{
    position:relative;
    padding-top: 40px;
    
}

.why_upgro_content h2::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-12px;
    width:80px;
    height:4px;
    background:#4e78f4;
    border-radius:10px;
    animation:lineGrow 3s infinite alternate;
}

@keyframes lineGrow{
    from{
        width:80px;
    }
    to{
        width:130px;
    }
}
.why_upgro_image img{
    border-radius:20px;
    width:100%;
    transition:all .5s ease;
}

.why_upgro_image:hover img{
    transform:scale(1.03);
}
.upgro_cta_box{
    position:relative;
    overflow:hidden;
}

.upgro_cta_box::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-100px;
    right:-50px;
    animation:ctaFloat 8s ease-in-out infinite;
    z-index:0;
}

.upgro_cta_box::after{
    content:'';
    position:absolute;
    inset:0;
    background-image:url('../img/pictures/dubai\ img');
    background-size:cover;
    background-position:center;
    opacity:0.08;
    z-index:0;
    pointer-events:none;
}

@keyframes ctaFloat{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(25px);
    }
}
.why_upgro_section{
    position:relative;
    overflow:hidden;
}

.why_upgro_section::before,
.why_upgro_section::after{
    content:'';
    position:absolute;
    border-radius:50%;
    background:#4e78f4;
    opacity:.08;
}

.why_upgro_section::before{
    width:15px;
    height:15px;
    top:15%;
    right:8%;
    animation:particleMove 6s infinite ease-in-out;
}

.why_upgro_section::after{
    width:0%;
    height:50px;
    bottom:15%;
    left:5%;
    animation:particleMove 8s infinite ease-in-out;
}

@keyframes particleMove{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-20px);
    }
}

.why_feature{
    display:flex;
    gap:20px;
    margin-top:40px;
    margin-bottom:30px;
}

.why_feature span{
    font-size:38px;
    font-weight:700;
    color:#4e78f4;
    opacity:.15;
}

.upgro_cta_box{
    margin-top:100px;
    background: linear-gradient(135deg, rgba(238,242,247,0.98), rgba(223,229,236,0.98));
    padding:20px;
    border-radius:25px;
    color:#fff;
    box-shadow:0 18px 40px rgba(31,41,55,0.08);
}

.upgro_cta_box .row,
.upgro_cta_box .contact_panel,
.upgro_cta_box h2,
.upgro_cta_box p{
    position:relative;
    z-index:1;
}

.contact_panel{
    background: rgba(128, 128, 128, 0.12);
    backdrop-filter:blur(10px);
    padding:30px;
    border-radius:20px;
}

.cta_btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    text-align:center;
    margin-top:15px;
    padding:14px 16px;
    border-radius:14px;
    background:#fff;
    color:#4e78f4;
    font-weight:700;
    text-decoration:none;
    border:1px solid rgba(94, 44, 237, 0.12);
    box-shadow:0 10px 20px rgba(94, 44, 237, 0.10);
    transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.contact_panel .cta_btn:hover,
.cta_btn:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 28px rgba(94, 44, 237, 0.18);
}

.cta_btn i{
    font-size:1rem;
}

.cta_btn.whatsapp_btn{
    background:linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color:#fff;
    border-color:transparent;
}

.cta_btn.whatsapp_btn:hover{
    box-shadow:0 16px 30px rgba(18, 140, 126, 0.28);
}

.cta_btn.email_btn{
    background:linear-gradient(135deg, #4e78f4 0%, #237efd 100%);
    color:#fff;
    border-color:transparent;
}

.cta_btn.email_btn:hover{
    box-shadow:0 16px 30px rgba(94, 44, 237, 0.28);
}

.floating-actions{
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-btn{
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.18);
    transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.floating-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.24);
}

.floating-btn i{
    font-size: 22px;
}

.whatsapp-float{
    background: linear-gradient(135deg, #2dd4bf 0%, #10b981 100%);
    color: #fff;
}

.scroll-top-btn{
    background: linear-gradient(135deg, #4e78f4 0%, #7c3aed 100%);
    color: #fff;
}

@media (max-width: 576px) {
    .floating-actions{
        right: 12px;
        bottom: 12px;
        gap: 10px;
    }

    .floating-btn{
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .floating-btn i{
        font-size: 18px;
    }
}

.vfx_faq_area{
    background:#f8f9fb;
}

#vfx_accordion .card{
    border:none;
    border-radius:12px;
    overflow:hidden;
    margin-bottom:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.04);
}

#vfx_accordion .card-header{
    background:#fff;
    border:none;
}

#vfx_accordion .btn-link{
    width:100%;
    text-align:left; 
    color:#222;
    padding:15px 20px;
    font-weight:600;
    text-decoration:none;
    position:relative;
}

#vfx_accordion .btn-link:hover{
    color:#4e78f4;
    text-decoration:none;
}

#vfx_accordion .card-body{
    color:#666;
    line-height:1.8;
    padding: 15px 20px;
    max-width: 700px;
    margin-top: auto;
    
}

#vfx_accordion .ti-plus,
#vfx_accordion .ti-minus{
    float:right;
    margin-top:4px;
}

.faq_bottom_cta{
    max-width:700px;
    margin:80px auto 0;
    padding-top:50px;
    border-top:1px solid #e8e8e8;
}

.faq_bottom_cta p{
    margin:15px 0 25px;
    color:#666;
}

.faq_bottom_cta .smtp_btn,
.faq_bottom_cta .btn_hover,
.faq_bottom_cta .smtp_btn.smtp_btn_one {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #4e78f4 0%, #237efd 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(94, 44, 237, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq_bottom_cta .smtp_btn:hover,
.faq_bottom_cta .btn_hover:hover,
.faq_bottom_cta .smtp_btn.smtp_btn_one:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(94, 44, 237, 0.28);
    color: #fff;
}

.faq_icon{
    position:absolute;
    right:25px;
    top:50%;
    transform:translateY(-50%);
    width:24px;
    height:24px;
}

.faq_icon:before{
    content:"+";
    font-size:22px;
    font-weight:600;
    color:#4e78f4;
}

.btn-link[aria-expanded="true"] 
.faq_icon:before{
    content:"−";
}

.faq_bottom_cta h3:before,
.faq_bottom_cta h3:after{
    display:none !important;
}
.email_btn {
    position: relative;
    z-index: 9999;
}
