@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');

body {
    position: relative;
    scroll-behavior: smooth;

    /* overflow-x: hidden; */
    font-family: 'Poppins', sans-serif;
    height: 100%;
    width: 100%;
    color: #1a1c25;
    line-height: 24px;
}

a:hover {
    text-decoration: none;
}

.main_bg {
  background-color: #f6f6f6;
}
.main_color {
  color: #677788;
}

.color_0d0d0d {
    color: #0d0d0d;
}
.color_1a1c25 {
    color: #1a1c25;
}
.color_938b8b {
    color: #938b8b;
}
.color_2f1c6a {
    color: #2f1c6a;
}
.color_575655 {
    color: #575655!important;
}


.fs_14 {
  font-size: 14px;
}
.fs_15 {
  font-size: 15px;
}
.fs_16 {
  font-size: 16px;
}
.fs_17 {
  font-size: 17px;
}
.fs_18 {
  font-size: 18px;
}
.fs_19 {
  font-size: 19px;
}
.fs_20 {
  font-size: 20px;
}
.fs_22 {
  font-size: 22px;
}
.fs_30 {
  font-size: 30px;
}
.fs_35 {
  font-size: 35px;
}

.fs_40 {
  font-size: 40px;
}

.fs_44 {
  font-size: 44px;
}


.lh_26 {
  line-height: 26px;
}
.lh_28 {
  line-height: 28px;
}
.lh_36 {
  line-height: 36px;
}
.lh_35 {
  line-height: 35px!important;
}
.lh_45 {
  line-height: 45px;
}
.lh_50 {
  line-height: 50px;
}

.mb_30 {
    margin-bottom: 30px!important;
}

.service_shadow {
    box-shadow: 0 0 62px 0 rgb(0 22 106 / 12%);
}

.free_trial_purple {
    background-color: #f15f3c;
    border-color: #f15f3c;
    border-radius: 4px;
    color: #ffff;
    padding: 8px 70px;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: 0.3s;
    font-weight: bolder;
    letter-spacing: 1px;
}
.free_trial_purple:hover {
    background-color: #007bff;
    border-color: #007bff;
    text-decoration: none;
    color: #ffff;
}

/* scrollbar start */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: #0d56a2;
}
/* scrollbar end */



/* header part start */
/* sticky header start */
.sticky {
  width: 100%;
  background-color: #FFF;
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
  transition: 0.3s;
  -webkit-transform: translateY(-15px) translateZ(0);
  transform: translateY(-15px) translateZ(0);
}
.sticky_block {
  visibility: visible;
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}
/* sticky header end */


/* header top social start */
.login_signup {
    color: #0d56a2;
    font-size: 14px;
    font-weight: 500;
}
.login_signup:hover {
    color: #f15f3c;
}
/* header top social end */

/* menu start */
.header_menu {
  box-shadow: 0 1px 8px rgba(0,0,0,.2);
}
.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu ul li {
  float: left;
  /* border-right: 1px solid rgba(129,129,129,.2); */
}
.menu ul li:last-child {
  border-right: none;
}
.menu ul li a {
  display: block;
  color: #333;
  text-align: center;
  padding: 9px 15px;
  font-weight: 500;
}

.services_menu,
.resources_menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99999;
  white-space: nowrap;
  background-color: #ffffff;
  visibility: hidden;
  opacity: 0;
  transition: all .2s ease;
  -webkit-transform: translateY(15px) translateZ(0);
  transform: translateY(15px) translateZ(0);
  box-shadow: 0 8px 15px rgb(0 0 0 / 30%);
  border: 1px inset #e1e1e1;
}
.services_menu a,
.resources_menu a,
.heading_hover_none {
    text-align: left!important;
    padding: 8px 16px!important;
    font-weight: normal!important;
    text-transform: capitalize;
    font-size: 15px;
    border-bottom: 1px solid #dadbdc;
}
.services_menu a:last-child,
.resources_menu a:last-child {
    border: none;
}
.services:hover .services_menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: none;
    transform: none;
}
.resources:hover .resources_menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: none;
    transform: none;
}
.menu ul li a:hover,
.services_menu a:hover,
.services:hover > a {
  background-color: #e6e6e6;
  color: #86c440;
}

.services_menu a:hover,
.resources:hover > a,
.services:hover > a {
  background-color: #e6e6e6;
  color: #86c440;
}

.free_trial:hover {
    background-color: #f15f3c!important;
    border-color: #f15f3c!important;
    color: #ffff!important;
}
.free_trial:hover b {
    color: #ffff!important;
}


/* live chat animation start */
.live_chat_animation {
  animation: live_chat_animation 1s infinite;
}

@keyframes live_chat_animation {
  50% {color: red;}
  100% {color: green;}
}
/* live chat animation end */

/* menu end */


/* mobile header part start */
.mobile_device {
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: #ffff;
}
.menu_layer {
  width: 0;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}
.menu_layer .mobile_menu {
  width: 300px;
  height: 100%;
  background-color: #ffff;
  overflow-y: auto;
}
.mobile_menus {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  border: 1px solid rgba(129,129,129,.2);
  background-color: #FFF;

  list-style-type: none;
  margin: 0;
  padding: 0;
}
.mobile_menus li {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(129,129,129,.15);
}
.mobile_menus li a {
  display: block;
  color: #494949;
  font-size: 14px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  padding: 12px 18px;
  text-transform: none;
  line-height: 20px;
  transition: 0.3s;
  text-transform: uppercase;
}
.mobile_menus li a:hover {
  background-color: #F9F9F9;
}
/* mobile header part end */
/* header part end */

/* ================================= */


/* home page start */
#header_banner {
    padding: 120px 0px;
}

.breadcumbs {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.breadcumbs li {
    float: left;
    margin-right: 10px;
}
.breadcumbs li a {
    font-size: 14px;
    line-height: 22px;
    color: #1a1c25;
    font-family: Poppins,sans-serif;
    font-weight: bold;
}

/* section header start */
.heading_border {
    background: #00b4fc;
    display: inline-block;
    height: 5px;
    width: 100px;
    margin-bottom: 10px;
}
/* section header end */

.editing_item {
    border: 1px solid transparent;
    transition: all .4s ease;
}
.editing_item:hover {
    background-color: #fff;
    border: 1px solid #e7eaf3;
    box-shadow: 0 0 35px rgb(140 152 164 / 13%);
}
.editing_item:hover h3 {
    color: #377dff;
}

.feature_list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}
.feature_list li {
    color: #677788;
    font-size: 16px;
    margin-bottom: 10px;
}

.service_btn {
    display: inline-block;
    margin: 0;
    height: 46px;
    width: 150px;
    text-align: center;
    background-color: #2264ad;
    color: #fff;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    line-height: 46px;
    transition: all .2s ease-in;
    margin-top: 15px;
    position: relative;
    box-shadow: 0 2px 10px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 10%);
    z-index: 2;
    letter-spacing: 0.5px;
}

.service_btn:hover {
    background-color: #3175c1;
    color: #fff;
}

.service_btn_2nd {
    display: inline-block;
    padding: 4px 8px;
    background-color: #2264ad;
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    transition: all .2s ease-in;
    margin-top: 15px;
    position: relative;
    box-shadow: 0 2px 10px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 10%);
    z-index: 2;
    letter-spacing: 1.5px;
}

.service_btn_2nd:hover {
    background-color: #3175c1;
    color: #fff;
}


.btn-transparent {
    height: 48px;
    width: 220px;
    text-align: center;
    line-height: 48px;
    background-color: transparent;
    border-radius: 130px;
    font-size: 16px;
    font-weight: 700;
    transition: all .2s ease-in;
    border: 1px solid #2264ad;
    box-sizing: border-box;
    color: #2264ad;
    margin: auto;
    display: table;
}

.btn-transparent:hover {
    background-color: #2264ad;
    color: #fff;
}

.tab_home {
    opacity: .9;
    background-color: #0a0a0a;
    background-image: url('../img/home/diagonal-thin-light.png');
    background-repeat: repeat;
}

.tab_home nav a {
    width: 33.15%;
    text-transform: uppercase;
    color: white!important;
    padding-top: 15px;
    padding-bottom: 15px;
    background: #005274;
    text-align: center;
    letter-spacing: 2.5px;
    font-weight: 600;
    border-radius: 0px!important;
}
.tab_home nav a:not(:last-child) {
    margin-right: 3px;
}

.tab_home nav a:hover,
.tab_home nav a.active {
    background: #9c6!important;
    border-color: #9c6!important;
}
.nav-tabs {
    border: none;
    margin-bottom: 2px;
}

ul.cusstyled {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.feature-tab-list li {
    color: #1d1d1d !important;
    float: left;
    font-size: 12px;
    line-height: 24px;
    padding: 5px 0 5px 25px;
    position: relative;
    width: 100%;
}
.feature-tab-list li::before {
    color: rgb(102, 102, 102);
    content: "";
    display: inline-block;
    font-family: FontAwesome;
    font-size: 18px;
    left: 0px;
    position: absolute;
    top: 5px;
}


.tabAuto {
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.tabAuto li {
    line-height: 47px;
    list-style: none;
    text-align: left;
    cursor: pointer;
    padding: 2px 10px;
    font-size: 14px;
}
.tabAuto li.current {
    border: 1px solid #666;
    border-radius: 6px;
}


.skilledtBoxShadow {
    padding: 25px 8px;
    text-align: center;
    color: gray;
    border-radius: 10px;
    box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;
    transition: all 0.3s ease-in-out;
}
.skilledtBoxShadow:hover {
    border-radius: 10px;
    box-shadow: inset -3px -3px 7px #ffffff, inset 3px 3px 5px #ceced1;
}

/* home page end


/* service page start */
.image_box {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.image_box img {
    transition: all linear 0.3s;
}
.image_box img.hover_image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
}
.image_box:hover img {
    opacity: 0;
}
.image_box:hover img.hover_image {
    opacity: 1;
}

.yellow_shape {
  position: absolute;
  left: -4px;
  top: 0;
  width: 4px;
  height: 40px;
  background-color: #ffcd10;
}
.list_before li {
  font-size: 17px;
  line-height: 28px;
  color: #4c4c4c;
}

.btn-go {
  font-weight: bold;
  font-size: 15px;
  line-height: 18px;
  color: #0181ff;
  text-align: left;
  text-transform: uppercase;
}
.btn-go:hover {
  color: #ffca00;
}
/* service page end */



/* price page start */
.single_product {
    box-shadow: 0px 0px 3px 1px #d1d1d1;
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    text-align: center;
}
.single_product a {
    background: #404040;
    color: #fff!important;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
}
.single_product:hover a {
    background: #86c440;
}

.price_bulk_order:hover {
    transition: 0.3s;
    transform: scale(1.02);
    box-shadow: 0px 0px 5px rgb(0 0 0 / 50%);
}
#all_service_price .nav a {
    /*text-transform: uppercase;*/
    color: rgb(26, 32, 41);
    /*padding-top: 25px;*/
    /*padding-bottom: 25px;*/
    background: rgba(0, 0, 0, 0.01);
    /*text-align: center;*/
    /*letter-spacing: 2.5px;*/
    font-weight: 600;
    border-radius: 0px;
    border: 1px solid rgba(188,188,188,.33);
}
#all_service_price .nav a:not(:first-child):hover,
#all_service_price .nav a:not(:first-child).active{
    background: rgb(204, 204, 204)!important;
}

#all_service_price .nav a.active:hover {
    background: rgb(204, 204, 204);
}
#all_service_price .nav-link {
    padding: 10.8px 16px;
}

ul.cusstyled2 {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    width: auto;
}
.feature-tab-list2 {
    padding-bottom: 15px !important;
    padding-left: 0;
    padding-top: 15px !important;
}
.feature-tab-list2 li {
    color: #666 !important;
    float: left;
    font-size: 16px;
    line-height: 20px;
    padding: 5px 0 5px 25px;
    position: relative;
    width: 100%;
    letter-spacing: 2px;
}
.feature-tab-list2 li::before {
    color: #86c440;
    content: "";
    display: inline-block;
    font-family: FontAwesome;
    font-size: 16px;
    left: 0;
    position: absolute;
    top: 5px;
}

/* price page end */



/* footer part start */

.call_email,
.call_email_2nd {
    max-width: 480px;
}
.call_email a {
    width: 22%;
    display: inline-block;
}
.call_email_2nd a {
    width: 30%;
    display: inline-block;
    margin-right: 8px;
    font-size: 18px;
}
/* contact_get_order part end */




/* footer top start */
footer .footer_service {
    color: #86c440;
    font-size: 15px;
}
footer .footer_service:hover {
  color: white;
}
/* footer top end */
/* footer middle start */
.footer_middle a {
  font-size: 14px;
}
.footer_middle a:hover {
  color: #28a745!important;
}
/* footer middle end */
/* footer bottom start */
.footer_social a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #000000;
  transition: 0.3s;
}
.footer_social a:hover {
  background-color: #1e1e1e;
}
/* footer bottom end */
/* footer part end */

/* file button for plugin start */
input[type=file] {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}
/* file button for plugin end */

/* top to start */
.top_to i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    /*border-radius: 4px 4px 0px 0px;*/
    /*background-color: #4bcaff;*/
    color: #fff;
    text-align: center;
    font-size: 30px;
    position: fixed;
    bottom: 32px;
    right: 80px;
    z-index: 999999;
    cursor: pointer;
    display: none;
}
/* top to end */

/* for responsive */
@media (max-width: 575.98px) {
    .mobile_device a {
        line-height: 60px;
    }
    .mobile_device img {
        width: 150px;
    }
    .not_sure {
        height: 400px;
        margin-bottom: -48px;
        margin-top: 30px;
    }
    /*ul.feature-tab-list li {*/
    /*    margin-left: -30px;*/
    /*}*/
    
    .call_email a {
        width: 46%;
        margin-bottom: 16px;
    }
    .call_email_2nd a {
        width: 100%;
    }
    #payment img {
        width: 100%;
    }
    #all_service_price img {
        width: 200px!important;
    }
    
    /* cph start*/
    .img_1st_before,
    .img_2nd_after {
        width: 100%!important;
        left: 0!important;
    }
    #header_banner {
        padding: 20px 0px;
    }
    .tab_home nav a {
        width: 100%;
        margin-right: 0;
        margin-bottom: 5px;
    }
    /* cph end*/
}
@media (max-width: 320px) {
    
}

@media (min-width: 576px) {
    
}
@media (min-width: 576px) and (max-width: 767.98px) {
    .mobile_device img {
        width: 180px;
    }
    .call_email a {
        width: 46%;
        margin-bottom: 16px;
    }
    .call_email_2nd a {
        width: 48%;
    }
    .tab_home nav a {
        width: 32.9%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .mobile_device img {
        width: 180px;
    }
    .call_email a {
        width: 46%;
        margin-bottom: 16px;
    }
    .call_email_2nd a {
        width: 48%;
    }
}

@media (min-width: 769px) {
    .not_sure {
        position: absolute;
    }
}

@media (max-width: 991.98px) {

}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .menu ul li a {
    padding: 13px 4px;
  }
}

@media (min-width: 1200px) {
  
}