/*==============================================================

 * Template Name: Qude - Cleaner Business html Template
 * Author: extratheme - (https://themeforest.net/user/extratheme)
 * Version: 1.0
 * Copyright 2020 extratheme

 ===============================================================*/


/*============================
 
        Content table
    --------------------
    01. Google fonts
    02. Basic css
    03. Preloader css
    04. hamburger menu
    05. header top start
    06. header area start
    07. home area start
    08. about area start
    09. get every area start
    10. service area start
    11. team area start
    12. project area start
    13. we provide area start
    14. how work area start
    15. client say area start
    16. blog area start
    17. subscribe area start
    18. footer area start
    19. header area start
    20. about area start
    21. want free area start
    22. team two area start
    23. blog details area start
    24. blog details right area start
    25. contact area start
    26. map area start
    27. pricing area start
    28. feature area start
    29. back to top area start

 ===============================*/


/*======================
   01. Google fonts
========================*/

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@700&display=swap');

/*======================
   02. Basic css
========================*/

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}

body {
    line-height: 28px;
    font-size: 16px;
    background: #fff;
    color: #292561;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

ol,
ul {
    list-style: none;
}

a:hover {
    text-decoration: none;
    color: #292561;
}

button:focus,
input:focus,
textarea:focus {
    outline: 0;
}


/*======================
   03. Preloader css
========================*/

#preloader {
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    height: 100vh;
    width: 100vw;
    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;
}

.loader3 {
    width: 50px;
    height: 50px;
    display: inline-block;
    padding: 0px;
    text-align: left;
}

.loader3 span {
    position: absolute;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #F05A2B;
    -webkit-animation: loader3 1.5s linear infinite;
    animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
    animation-delay: -0.9s;
    -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
    0% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 0.8;
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 0;
    }
}

@-webkit-keyframes loader3 {
    0% {
        -webkit-transform: scale(0, 0);
        opacity: 0.8;
    }
    100% {
        -webkit-transform: scale(1, 1);
        opacity: 0;
    }
}


/*======================
   04. hamburger menu
========================*/

.hamburger-menu {
    cursor: pointer;
    position: absolute;
    right: 15px;
    display: none;
    z-index: 999;
    top: -15px;
}

.hamburger-menu span {
    background: #0B3E3A;
    width: 30px;
    height: 3px;
    display: block;
    margin: 5px 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hamburger-menu:hover span.current {
    background: #ffffff;
}

.hamburger-menu:hover .line-top {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.hamburger-menu:hover .line-bottom {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.hamburger-menu:hover .line-top.current,
.hamburger-menu:hover .line-bottom.current {
    -webkit-transform: 0;
    -ms-transform: 0;
    transform: 0;
}

.hamburger-menu .line-top.current {
    -webkit-transform: translateY(200%) rotate(135deg);
    -ms-transform: translateY(200%) rotate(135deg);
    transform: translateY(200%) rotate(135deg);
}

.hamburger-menu .line-center.current {
    opacity: 0;
}

.hamburger-menu .line-bottom.current {
    -webkit-transform: translateY(-325%) rotate(-135deg);
    -ms-transform: translateY(-325%) rotate(-135deg);
    transform: translateY(-325%) rotate(-135deg);
}


/*======================
   05. header top start
========================*/

.header-top-wrapper {
    background: #F05A2B;
    padding: 20px 0;
}

.header-top a {
    color: #ffffff;
    font-family: 'Heebo', sans-serif;
}

.header-top a img {
    margin-right: 10px;
}

.mobile-text {
    margin-right: 35px;
}


/*======================
   06. header area start
========================*/

header {
    position: fixed;
    height: 80px;
    top: 68px;
    left: 0;
    z-index: 1000;
    width: 100%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
}

header.sticky {
    top: 0;
    background: #292561;
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.10);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.10);
    border-bottom: 1px solid transparent;
}

header.sticky .sub-menu li a {
    color: #292561 !important;
}

.default-logo {
    display: none;
}

.logo-sizing {
    max-width: 210px;
}

header.sticky .logo {
    display: none !important;
}

header.sticky .default-logo {
    display: block !important;
}

header.sticky #menu li a {
    color: #ffffff;
}

header.sticky .hamburger-menu span {
    background: #ffffff;
}

#menu {
    margin-top: -1px;
    text-align: right;
}

#menu li {
    display: inline-block;
    color: #fff;
}

#menu li a.active, #menu li a:hover {
    color: #F05A2B !important;
}

#menu li:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    top: 79px;
}

#menu li:hover::before,
#menu li:hover::after {
    width: 50%;
}

#menu li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    background: #f3590e;
}

#menu li a:hover::before {
    width: 100%;
}

#menu li a {
    text-transform: capitalize;
    padding: 28px 25px;
    font-weight: 700;
    font-size: 15px;
    line-height: 24px;
    color: #292561;
    position: relative;
}

#menu li:last-child a {
    padding-right: 0;
}

#menu li a i {
    margin-left: 7px;
    font-size: 12px;
}

.sub-menu {
    -webkit-box-shadow: 0px 0px 12px rgb(0 0 0 / 18%);
    box-shadow: 0px 0px 12px rgb(0 0 0 / 18%);
    width: 200px;
    position: absolute;
    text-align: left;
    background: #fff;
    padding: 20px 25px;
    border-radius: 4px;
    top: 120px;
    right: 0;
    left: auto;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.sub-menu li {
    line-height: 45px !important;
    display: block !important;
}

.sub-menu li a {
    padding: 4px 17px 4px 0 !important;
    display: block;
    line-height: 30px !important;
}


/*======================
   07. home area start
========================*/

.home-wrapper {
    height: 720px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 80px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    overflow-x: hidden;
}

.home-wrapper .container,
.home-wrapper .row {
    height: 100%;
}

.home-content {
    color: #fff;
}

.home-content span {
    font-size: 20px;
    font-weight: 500;
}

.home-content h2 {
    font-size: 70px;
    line-height: 87px;
    font-weight: 700;
    margin-top: 10px;
}

.home-content p {
    margin-top: 30px;
    font-size: 20px;
    line-height: 30px;
}

.how-btn {
    color: #292561;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    margin-left: 15px;
}

.how-btn:hover {
    color: #F05A2B;
}

.how-btn span {
    width: 60px;
    height: 60px;
    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: 50%;
    color: #F05A2B;
    background: #ffffff;
    -webkit-box-shadow: 2px 3.464px 60px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 2px 3.464px 60px 0px rgba(0, 0, 0, 0.12);
    margin-right: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.home-ab {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}


/*======================
   08. about area start
========================*/

.most-img-content {
    width: 290px;
    padding: 25px 30px;
    background-color: #ffffff;
    -webkit-box-shadow: 1.5px 4.33px 36px 0px rgba(0, 0, 0, 0.28);
    box-shadow: 1.5px 4.33px 36px 0px rgba(0, 0, 0, 0.28);
    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;
    position: absolute;
    right: 6%;
    top: 5%;
    z-index: 9;
}

.most-img-content::before {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 44px;
    background: #efefef;
    -webkit-clip-path: polygon(48% 50%, 9% 100%, 100% 100%);
    clip-path: polygon(48% 50%, 9% 100%, 100% 100%);
    width: 35px;
    height: 35px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.most-shape {
    position: absolute;
    right: 20px;
    top: 0;
}

.most-img-content h3 {
    color: #182c44;
    font-size: 65px;
    line-height: 28px;
    font-weight: 700;
    margin-right: 20px;
}

.most-img-content p {
    color: #182c44;
    font-size: 22px;
    font-weight: 500;
}

.most-para {
    color: #606060;
    margin-top: 20px;
    font-family: 'Heebo', sans-serif;
}

.most-award-content ul li {
    width: 50%;
    float: left;
    margin-top: 20px;
    font-size: 18px;
}

.most-award-content ul li a {
    font-weight: 500;
    color: #292561;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: 'Heebo', sans-serif;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.most-award-content ul li a:hover {
    color: #F05A2B;
}

.most-award-content ul li a i {
    font-size: 12px;
    margin-right: 10px;
}

.call-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 30px;
}

.call-btn p {
    margin: 0;
    font-size: 20px;
    color: #292561;
    font-weight: 500;
    margin-left: 15px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.most-award-btn {
    overflow: hidden;
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.most-award-btn a {
    margin-top: 30px;
}

.call-btn:hover p {
    color: #F05A2B;
}


/*======================
   09. get every area start
========================*/

.get-every-wrapper {
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.get-every-wrapper .container,
.get-every-wrapper .row {
    height: 100%;
}

.get-para-one {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Heebo', sans-serif;
}

.get-para-two {
    font-family: 'Heebo', sans-serif;
    font-weight: 400;
    color: #606060;
}

.get-every-icon {
    width: 70px;
    height: 70px;
    background: #F05A2B;
    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: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 15px;
}

.get-every-sub-content h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 34px;
}

.get-every-ab {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    padding-top: 15px;
    position: relative;
}

.get-every-shape {
    position: absolute;
    right: -7%;
    z-index: -1;
}


/*======================
   10. service area start
========================*/

.default-head {
    margin-bottom: 30px;
}

.what-we-item {
    -webkit-box-shadow: 0.5px 0.866px 60px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 0.5px 0.866px 60px 0px rgba(0, 0, 0, 0.12);
    padding: 40px 20px;
    border-bottom-left-radius: 55px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    position: relative;
}

.what-we-item:hover {
    -webkit-box-shadow: -0.5px 1.866px 25px 0px rgb(254 84 0 / 70%);
    box-shadow: -0.5px 1.866px 25px 0px rgb(254 84 0 / 70%);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    background: #fe5400;
}

.what-we-item:hover .service-icon {
    -webkit-filter: invert(541);
    filter: invert(541);
}

.provide-shape {
    position: absolute;
    right: 0;
    top: 30px;
}

.service-icon {
    height: 80px;
}

.what-we-item:hover h3 {
    color: #ffffff;
}

.what-we-item h3 {
    font-size: 24px;
    font-weight: 700;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    margin-top: 40px;
}

.what-we-item:hover p {
    color: #ffffff;
}

.what-we-item p {
    color: #606060;
    margin-top: 35px;
    font-family: 'Heebo', sans-serif;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.read-more {
    font-size: 18px;
    font-weight: 700;
    color: #F05A2B;
    font-family: 'Heebo', sans-serif;
    margin-top: 30px;
    display: inline-block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.read-more i {
    margin-right: 6px;
}

.what-we-item:hover .read-more {
    color: #ffffff;
}


/*======================
   11. team area start
========================*/

.meet-team-ab {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
}

.team-item {
    text-align: center;
    background: #ffffff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    padding-bottom: 30px;
}

.team-item:hover {
    -webkit-box-shadow: 2px 3.464px 60px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 2px 3.464px 60px 0px rgba(0, 0, 0, 0.12);
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
}

.team-img {
    padding: 30px;
}

.team-item h2 {
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
}

.team-item p {
    color: #888888;
    text-transform: capitalize;
    margin-top: 15px;
    font-family: 'Heebo', sans-serif;
}

.team-social a {
    background: #f9f9f9;
    width: 40px;
    height: 40px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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: 50%;
    text-decoration: none;
    color: #F05A2B;
    margin: 15px 5px 0 5px;
    position: relative;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    overflow: hidden;
}

.team-social a:hover {
    color: #ffffff;
}

.team-social a:hover::before {
    top: 0;
}

.team-social a::before {
    content: "";
    position: absolute;
    top: -45px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F05A2B;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.team-social a i {
    position: relative;
    z-index: 1;
}


/*======================
   12. project area start
========================*/

.project-item:hover::before {
    opacity: 1;
    visibility: visible;
}

.project-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.project-item:hover .project-open {
    top: 50%;
    opacity: 1;
    visibility: visible;
}

.project-open {
    width: 90px;
    height: 90px;
    background: #F05A2B;
    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;
    color: #ffffff;
    font-size: 30px;
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}

.project-open:hover {
    color: #ffffff;
}


/*======================
   13. we provide area start
========================*/

.we-provide-wrapper {
    padding: 60px 0 120px 0;
    margin-top: 120px;
    position: relative;
    z-index: 1;
}

.we-provide-item p {
    color: #606060;
    font-family: 'Heebo', sans-serif;
}

.counter-box {
    margin-top: 120px;
}

.counter-box img {
    margin-right: 25px;
}

.counter-box h3 {
    color: #F05A2B;
    font-size: 30px;
    line-height: 44px;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
}

.counter-box p {
    color: #182c44;
    font-size: 20px;
    font-weight: 700;
}

.we-provide-img {
    top: -180px;
}

.we-provide-img::before {
    content: "";
    position: absolute;
    top: 60px;
    left: -60px;
    width: 70%;
    height: 100%;
    background: #ffffff;
    -webkit-box-shadow: 2px 3.464px 60px 0px rgba(0, 0, 0, 0.10);
    box-shadow: 2px 3.464px 60px 0px rgba(0, 0, 0, 0.10);
    z-index: -1;
}

.we-play {
    width: 55px;
    height: 55px;
    background: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #F05A2B;
    text-decoration: none;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate( -50%, -50%);
    -ms-transform: translate( -50%, -50%);
    transform: translate( -50%, -50%);
    font-size: 20px;
}

.we-play:hover {
    color: #F05A2B;
}

.we-play::before,
.we-play::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.378);
    -webkit-animation: ripple-1 2s infinite ease-in-out;
    animation: ripple-1 2s infinite ease-in-out;
    z-index: -1;
}

.we-play::after {
    background: rgba(255, 255, 255, 0.302);
    -webkit-animation: ripple-2 2s infinite ease-in-out;
    animation: ripple-2 2s infinite ease-in-out;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}


/*======================
   14. how work area start
========================*/

.line-shape {
    position: absolute;
    top: 43%;
    left: 25%;
}

.how-work-item:hover .how-work-icon {
    background: #fe5400;
}

.how-work-icon {
    width: 80px;
    height: 80px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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: 50%;
    background: #fef3ee;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.how-work-item:hover img {
    -webkit-filter: brightness(4.5);
    -ms-filter: brightness(4.5);
    -o-filter: brightness(4.5);
    -moz-filter: brightness(4.5);
    -webkit-filter: brightness(4.5);
    filter: brightness(4.5);
}

.how-work-icon img {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    height: 40px;
}

.how-work-item h2 {
    color: #182c44;
    margin-top: 25px;
    font-size: 22px;
    font-weight: 700;
}

.how-work-item p {
    font-size: 16px;
    color: #606060;
    line-height: 25px;
    font-family: 'Heebo', sans-serif;
    margin-top: 20px;
}


/*======================
   15. client say area start
========================*/

.client-say-wrapper {
    padding: 100px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}

.client-say-wrapper .sub-head-two,
.client-say-wrapper .head-text-two {
    color: #ffffff;
}

.client-active .owl-item.active.center .client-say-item {
    background: #ffffff;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.client-active .owl-item.active.center .client-say-item p,
.client-active .owl-item.active.center .client-say-item span {
    color: #606060;
}

.client-active .owl-item.active.center .client-say-item h3 {
    color: #292561;
}

.client-active .owl-dots {
    position: absolute;
    bottom: -60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.client-active .owl-dot {
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    padding: 0;
    margin: 0 3px;
}

.client-active .owl-dot.active {
    background: #292561;
    width: 30px;
    border-radius: 15px;
}

.client-say-item {
    padding: 35px 20px;
    margin-top: 30px;
}

.client-say-item img {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50%;
    margin-right: 15px;
    display: inline-flex !important;
    flex-shrink: 0 !important;
}

.client-say-item p {
    color: #ffffff;
    line-height: 26px;
    font-size: 15px;
    font-family: 'Heebo', sans-serif;
}

.client-say-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 25px;
}

.client-say-item span {
    font-size: 15px;
    color: #ffffff;
    display: block;
    line-height: 24px;
    font-family: 'Heebo', sans-serif;
}


/*======================
   16. blog area start
========================*/

.blog-item {
    -webkit-box-shadow: 2px 3.464px 60px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 2px 3.464px 60px 0px rgba(0, 0, 0, 0.16);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    display: block;
}

.blog-item:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.blog-content {
    padding: 25px 30px;
}

.blog-content p {
    color: #F05A2B;
    font-weight: 500;
}

.blog-content h2 {
    font-size: 26px;
    font-weight: 700;
    line-height: 38px;
    margin-top: 15px;
    color: #292561;
}


/*======================
   17. subscribe area start
========================*/

.subscribre-wrapper {
    margin-bottom: -80px;
    position: relative;
}

.subscribe-box {
    padding: 50px 30px;
    -webkit-box-shadow: 2px 3.464px 60px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 2px 3.464px 60px 0px rgba(0, 0, 0, 0.16);
    background: #ffffff;
}

.subscribe-box h2 {
    font-size: 30px;
    font-weight: 700;
}

.subscribe-box p {
    color: #606060;
    line-height: 26px;
    margin-top: 20px;
    font-family: 'Heebo', sans-serif;
}

.email-box input {
    border: 2px solid #f2f2f2;
    width: 100%;
    padding-left: 30px;
    height: 70px;
    border-radius: 40px;
    color: #606060;
    font-family: 'Heebo', sans-serif;
}

.email-box input::-webkit-input-placeholder {
    color: #606060;
}

.email-box input::-moz-placeholder {
    color: #606060;
}

.email-box input:-ms-input-placeholder {
    color: #606060;
}

.email-box input::-ms-input-placeholder {
    color: #606060;
}

.email-box input::placeholder {
    color: #606060;
}

.email-box button {
    position: absolute;
    right: 8px;
    top: 7px;
    background: #F05A2B;
    border: none;
    color: #ffffff;
    padding: 14px 40px;
    font-size: 18px;
    border-radius: 40px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    font-family: 'Heebo', sans-serif;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.email-box button:hover {
    background: #292561;
}


/*======================
   18. footer area start
========================*/

footer {
    padding: 160px 0 40px 0;
    background-color: #ff5400;
}

.footer-wrap {
    padding-bottom: 80px;
}

.footer-head {
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
}

.footer-para {
    color: #ffffff;
    line-height: 25px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    font-family: 'Heebo', sans-serif;
}

.footer-para a {
    color: #fff;
}
.footer-para a:hover {
    color: #292561;
}

.footer-first p {
    margin-bottom: 10px;
}

.footer-social a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.footer-social a:hover {
    color: #292561;
}

.footer-social a span {
    background: #292561;
    height: 40px;
    width: 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;
    border-radius: 50%;
    margin-right: 25px;
    color: #ffffff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.footer-social a:hover span {
    background: #292561;
}

.footer-item li {
    margin-top: 5px;
}

.footer-third {
    overflow: hidden;
}

.footer-third ul {
    width: 50%;
    float: left;
}

.footer-second ul li a:hover,
.footer-third ul li a:hover {
    color: #292561;
}

.all-day {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid rgba(96, 96, 96, 0.36);
    padding-bottom: 5px;
}

.all-day-top {
    margin-top: 7px;
}

.footer-bottom li {
    display: inline-block;
    margin-left: 30px;
}

.footer-wrap-two {
    border-top: 1px solid rgba(96, 96, 96, 0.36);
    padding-top: 40px;
}

.footer-bottom {
    text-align: right;
}

.footer-bottom li a:hover {
    color: #292561;
}


/*======================
   19. header area start
========================*/

.default-header.sticky .logo {
    display: block !important;
}

.default-header #menu li a {
    color: #ffffff;
}

.default-header .sub-menu li a {
    color: #292561 !important;
}


/*======================
   20. about area start
========================*/

.default-header {
    top: 0 !important;
    border-bottom: 1px solid transparent;
}

.about-team-wrapper .meet-team-ab {
    display: none;
}

.default-wrapper {
    height: 490px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    background-position: center;
    padding-top: 80px;
}

.default-wrapper .head-text-two {
    color: #ffffff;
    margin-bottom: 15px;
}

.default-wrapper .breadcrumb {
    padding: 0;
    background: transparent;
    margin: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.default-wrapper .breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: #ffffff !important;
}

.default-wrapper .breadcrumb .breadcrumb-item,
.default-wrapper .breadcrumb .breadcrumb-item a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Heebo', sans-serif;
}


/*======================
   21. want free area start
========================*/

.want-wrapper {
    overflow: hidden;
    padding: 110px 0;
}



.want-shape {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.want-wrapper h2 {
    font-size: 45px;
    line-height: 53px;
    color: #ffffff;
}

.want-wrapper p {
    font-size: 20px;
    line-height: 35px;
    color: #ffffff;
    font-family: 'Heebo', sans-serif;
}

.want-wrapper .make-btn {
    background: #ffffff;
}

.want-wrapper .make-btn:hover span {
    color: #ffffff;
}

.want-wrapper .make-btn span {
    color: #F05A2B;
}


/*======================
   22. team two area start
========================*/

.default-team-wrapper .team-item,
.team-item-two {
    -webkit-box-shadow: 2px 3.464px 60px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 2px 3.464px 60px 0px rgba(0, 0, 0, 0.06);
}

.team-item-two {
    overflow: hidden;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.team-item-two:hover {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
}

.team-sub-item-two h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
}

.team-sub-item-two p {
    font-size: 17px;
    line-height: 22px;
    color: #ffffff;
    font-family: 'Heebo', sans-serif;
}

.team-sub-item-two {
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 100%;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    padding: 20px 20px 20px 20px;
}

.team-item-two:hover .team-sub-item-two {
    bottom: 0;
}

.team-sub-item-two::before {
    content: "";
    position: absolute;
    bottom: 0;
    background: rgba(255, 84, 0, 0.82);
    left: 0;
    -webkit-clip-path: polygon(100% 0, 72% 0%, 90% 100%, 0 100%, 0 0);
    clip-path: polygon(100% 0, 72% 0%, 90% 100%, 0 100%, 0 0);
    height: 100%;
    width: 100%;
}

.team-item-two:hover .team-social {
    right: 30px;
}

.team-item-two .team-social {
    position: absolute;
    top: 30px;
    right: -50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.team-item-two .team-social a {
    color: #031888;
    margin: 0 0 10px 0;
}

.team-item-two .team-social a:hover {
    color: #ffffff;
}


/*======================
   23. blog details area start
========================*/

.blog-head {
    font-size: 32px;
    line-height: 24px;
    font-weight: 700;
    color: #292561;
}

.custom-mt {
    margin-top: 20px;
}

.mini-man-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -o-object-fit: cover;
       object-fit: cover
}

.blog-first p {
    color: #6b6b84;
    margin-right: 25px;
    font-family: 'Heebo', sans-serif;
}

.blog-details-para {
    color: #606060;
    font-family: 'Heebo', sans-serif;
}

.queto-box {
    padding: 30px 50px;
    background: #F05A2B;
    text-align: center;
    margin-top: 40px;
}

.queto-box p {
    color: #ffffff;
    margin-top: 30px;
    font-family: 'Heebo', sans-serif;
}

.blog-social {
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    padding: 30px 0;
    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;
    margin-top: 80px;
}

.blog-social p {
    color: #151920;
    font-weight: 600;
    font-size: 18px;
    margin-right: 5px;
    font-family: 'Poppins', sans-serif;
}

.blog-social a {
    color: #151920;
    margin: 0 15px;
    font-size: 18px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.blog-social a:hover {
    color: #F05A2B;
}

.custom-comment {
    padding: 55px 0 45px 0;
}

.media-man {
    width: 80px;
    height: 80px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 20px;
}

.media-body h5 {
    color: #001e3c;
    font-size: 14px;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}

.media-body span {
    color: #6b6b84;
    font-size: 12px;
    text-transform: uppercase;
    margin-left: 10px;
    font-family: 'Heebo', sans-serif;
}

.reply-text {
    color: #666666;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.reply-text:hover {
    color: #666666;
}

.reply-text img {
    margin-right: 10px;
}

.input-info {
    width: 100%;
    height: 45px;
    border: 1px solid #e5e5e5;
    background: #f8f8f8;
    border-radius: 5px;
    font-size: 15px;
    padding-left: 20px;
    margin-top: 30px;
    color: #a7a7a7;
    font-weight: 300;
    font-family: 'Heebo', sans-serif;
}

.input-info::-webkit-input-placeholder {
    color: #a7a7a7;
}

.input-info::-moz-placeholder {
    color: #a7a7a7;
}

.input-info:-ms-input-placeholder {
    color: #a7a7a7;
}

.input-info::-ms-input-placeholder {
    color: #a7a7a7;
}

.input-info::placeholder {
    color: #a7a7a7;
}

.textarea-info {
    resize: none;
    height: 185px;
    padding-top: 10px;
}

.submit-btn {
    border: none;
    background: #F05A2B;
    padding: 15px 50px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 20px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border: 1px solid transparent;
}

.submit-btn:hover {
    border: 1px solid #F05A2B;
    color: #F05A2B;
    background: transparent;
}


/*======================
   24. blog details right area start
========================*/

.search-box {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 10px;
}

.search-box-sub {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.search-box input {
    width: 100%;
    border: none;
    color: #333333;
    font-size: 18px;
    height: 45px;
    padding-left: 20px;
}

.search-box button {
    position: absolute;
    background: #F05A2B;
    border: none;
    color: #ffffff;
    width: 55px;
    height: 45px;
    right: 0;
    top: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.search-box button:hover {
    background: #de5d1e
}

.post-box {
    background: #f8f9ff;
    border-radius: 10px;
    margin-top: 30px;
    padding: 25px;
}

.blog-sub-head {
    font-size: 22px;
    color: #151a33;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-sub-head span {
    width: 30px;
    height: 1px;
    background: #F05A2B;
    margin-left: 20px;
    display: inline-block;
}

.post-box .media img {
    margin-right: 20px;
    border-radius: 5px;
    height: 70px;
    width: 70px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -o-object-fit: cover;
       object-fit: cover;
}

.post-box .media-body p {
    color: #6b6b84;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 24px;
    font-family: 'Heebo', sans-serif;
}

.post-box .media-body h5 {
    color: #1b0238;
    font-size: 15px;
    font-weight: 500;
    margin-top: 8px !important;
}

.category-box .blog-sub-head {
    margin-bottom: 20px;
}

.category-box a {
    margin-top: 10px;
    color: #1b0238;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 20px;
}

.category-box a img {
    margin-right: 10px;
}

.tag-btn {
    color: #6b6b84;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 10px;
    background: #ffffff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 20px 20px 0 0;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    line-height: 22px;
    font-family: 'Heebo', sans-serif;
}

.tag-btn:hover {
    background: #F05A2B;
    color: #ffffff;
}


/*======================
   25. contact area start
========================*/

.form-item {
    display: block;
    padding: 50px 30px;
    background: #f9f9f9;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.form-item:hover {
    background: #F05A2B;
}

.form-item:hover i,
.form-item:hover h3,
.form-item:hover p {
    color: #ffffff;
}

.form-item i {
    color: #06163a;
    font-size: 35px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.form-item h3 {
    color: #06163a;
    font-size: 22px;
    line-height: 23px;
    margin-top: 20px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.form-item p {
    color: #06163a;
    font-size: 15px;
    line-height: 23px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    font-family: 'Heebo', sans-serif;
}

.input-file {
    width: 100%;
    height: 45px;
    border: 1px solid #dddddd;
    padding-left: 15px;
    font-size: 14px;
    font-weight: 500;
    color: #06163a;
    font-family: 'Poppins', sans-serif;
}

.input-file::-webkit-input-placeholder {
    color: #06163a;
}

.input-file::-moz-placeholder {
    color: #06163a;
}

.input-file:-ms-input-placeholder {
    color: #06163a;
}

.input-file::-ms-input-placeholder {
    color: #06163a;
}

.input-file::placeholder {
    color: #06163a;
}

.input-textarea {
    height: 280px;
    padding-top: 10px;
    resize: none;
}

.submit-new-btn {
    background: transparent;
    border: 1px solid #F05A2B;
    padding: 20px 35px;
    border-radius: 25px;
    display: inline-block;
    line-height: 18px;
    font-weight: 500;
    margin-top: 30px;
    color: #F05A2B;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.submit-new-btn:hover {
    background: #F05A2B;
    color: #ffffff;
}


/*======================
   26. map area start
========================*/

.map-wrapper {
    margin-bottom: 120px;
}

.map-wrapper iframe {
    height: 500px;
    width: 100%;
    border: none;
}

.we-provide-project {
    margin-bottom: 120px;
}


/*======================
   27. pricing area start
========================*/

.simple-wrapper {
    overflow: hidden;
}

.tab-box li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tab-custom li a {
    font-size: 15px;
    line-height: 12px;
    letter-spacing: 0.833333px;
    color: #292561;
    padding: 17px 30px;
    border-radius: 28px;
}

.tab-custom li a.active {
    background: -o-linear-gradient(right, #8743FF 0%, #4136F1 100%);
    background: -webkit-gradient(linear, right top, left top, from(#8743FF), to(#4136F1));
    background: linear-gradient(270deg, #8743FF 0%, #4136F1 100%);
    -webkit-box-shadow: 0px 15px 30px rgba(20, 102, 204, 0.16);
    box-shadow: 0px 15px 30px rgba(20, 102, 204, 0.16);
    color: #ffffff;
}

.tab-box {
    width: 300px;
    margin: 60px auto auto auto;
}

.tab-box.active {
    background: -o-linear-gradient(187.37deg, #FE9A1A 0%, #FF1E74 100%);
    background: linear-gradient(262.63deg, #FE9A1A 0%, #FF1E74 100%);
    border-radius: 32px;
    padding: 60px 30px 40px 30px;
    -webkit-box-shadow: 0px 7px 30px rgba(255, 51, 101, 0.47);
    box-shadow: 0px 7px 30px rgba(255, 51, 101, 0.47);
}

.choose-shape {
    right: 0;
    top: 0;
    width: 120px;
    pointer-events: none;
}

.most-popular {
    background: #FFFFFF;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 32px;
    font-size: 10px;
    line-height: 12px;
    font-weight: 700;
    letter-spacing: 0.833333px;
    color: #FE9A1A;
    position: absolute;
    top: 20px;
    right: 20px;
}

.tab-box.active h2,
.tab-box.active h2 span,
.tab-box.active h3,
.tab-box.active p,
.tab-box.active ul li {
    color: #ffffff;
}

.tab-box.active ul li span {
    background: rgb(255, 255, 255, 0.1);
    color: #ffffff;
}

.tab-box.active .choose-btn {
    background: #ffffff;
}

.tab-box h2 {
    font-size: 42px;
    line-height: 46px;
    color: #100020;
    font-weight: 600;
}

.tab-box h2 span {
    font-size: 17px;
    line-height: 20px;
    color: #848199;
    margin-left: 10px;
}

.tab-box h3 {
    font-size: 24px;
    line-height: 18px;
    color: #100020;
}

.tab-box p {
    line-height: 24px;
    color: #848199;
}

.tab-box ul li span {
    background: rgba(82, 67, 194, 0.103693);
    width: 20px;
    height: 20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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: 50%;
    font-size: 12px;
    color: #5243C2;
    margin-right: 10px;
}

.choose-btn {
    background: rgba(254, 154, 26, 0.1);
    border-radius: 32px;
    padding: 15px 60px;
    display: inline-block;
    color: #FE9A1A;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.choose-btn:hover {
    color: #ffffff;
    background: #F05A2B;
}

.tab-box.active .choose-btn {
    background: #ffffff;
    color: #5243C2;
    width: 100%;
    text-align: center;
}

.tab-box.active .choose-btn:hover {
    background: #F05A2B;
    color: #ffffff;
}


/*======================
   28. feature area start
========================*/

.feature-wrapper {
    padding-bottom: 120px;
}

.make-table {
    margin-top: 55px;
    overflow-x: auto;
    -webkit-box-shadow: 0px 7px 30px rgba(20, 102, 204, 0.24);
    box-shadow: 0px 7px 30px rgba(20, 102, 204, 0.24);
}

.make-table table {
    width: 100%;
    min-width: 970px;
    border: 1px solid #8743FF;
}

.make-table tbody tr td {
    padding: 30px 0 30px 20px;
    border-bottom: 1px solid #F1F1F1;
    vertical-align: middle;
}

.make-table thead tr th {
    background: rgba(132, 129, 153, 0.08);
    padding: 20px 0 20px 20px;
    font-size: 16px;
}

.ok-icon {
    width: 25px;
    height: 25px;
    background: rgba(132, 132, 132, 0.2);
    -webkit-box-shadow: 0px 15px 30px rgba(20, 102, 204, 0.16);
    box-shadow: 0px 15px 30px rgba(20, 102, 204, 0.16);
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
}

.ok-icon:hover {
    color: #ffffff;
}

.ok-icon-color {
    background: -o-linear-gradient(right, #8743FF 0%, #4136F1 100%);
    background: -webkit-gradient(linear, right top, left top, from(#8743FF), to(#4136F1));
    background: linear-gradient(270deg, #8743FF 0%, #4136F1 100%);
}

.question-icon {
    margin-left: 10px;
}

.table-width-1 {
    width: 20%;
}

.table-width {
    width: 26.66%;
}

.table-text {
    color: #100020;
}

.analytics-text {
    color: #848484;
}

.feature-border-none td {
    border-bottom: 1px solid #8743FF !important;
}


/*======================
   29. back to top area start
========================*/

.back-to-top {
    font-size: 24px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    display: none;
    position: fixed;
    bottom: 30px;
    right: 27px;
    z-index: 99;
    border-radius: 50%;
    background: #F05A2B;
}

.back-to-top i {
    color: #ffffff;
    font-weight: 500;
}
.full-center {
    justify-content: center;
    width: 100%;
}

.mb_100 {
    margin-bottom: 100px;
}