@charset "utf-8";

/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Comfortaa:300,400,700');
html {
  scroll-behavior: smooth;
}
section {
  scroll-margin-top: 100px; /* Adjust based on navbar height */
}
    .help-section {
      padding: 60px 0;
      text-align: center;
    }

    .help-section h2 {
      font-weight: bold;
      margin-bottom: 30px;
    }

    .help-card {
      border: 1px solid #eaeaea;
      border-radius: 12px;
      padding: 30px 20px;
      transition: all 0.3s ease-in-out;
      height: 100%;
      cursor: pointer;
      background: #fff;
    }

    .help-card:hover {
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
      transform: translateY(-5px);
    }

    .help-icon {
      font-size: 40px;
      margin-bottom: 15px;
      color: #00b894;
    }

    .search-box {
      max-width: 500px;
      margin: 0 auto 40px auto;
    }

    .search-box input {
      border-radius: 25px;
      padding-left: 20px;
    }

    .search-box .btn {
      border-radius: 25px;
    }
   .nav-link.active {
  font-weight: bold;

    background: #e9661e !important;
    color: #fff !important;
    border-radius: 5px !important;
}
    .card-custom {
      border: none;
      border-radius: 12px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      transition: 0.3s ease;
    }
    .card-custom:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    }
    .card-img-top {
      height: 200px;
      object-fit: cover;
    }
    .card-body {
      padding: 20px;
    }
    .card-category {
      font-size: 14px;
      color: #888;
    }
    .card-title {
      font-size: 18px;
      font-weight: 600;
      margin-top: 5px;
    }
    .author-info {
      display: flex;
      align-items: center;
      margin-top: 15px;
    }
    .author-img {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 10px;
    }
    .author-name {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 0;
    }
    .post-date {
      font-size: 13px;
      color: #888;
    }
    .serviceslisting-section {
      padding: 80px 0;
      text-align: center;
    }
    .serviceslisting-section h1 {
      color: #2b2a29;
    }
      .serviceslisting-section h2 {
      color: #2b2a29;
    }
    .section-underline {
      width: 60px;
      height: 3px;
      background-color: #ec681f;
      margin: 10px auto 20px;
    }
    .serviceslisting-box {
      background-color: #ffffff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
      transition: all 0.3s ease-in-out;
    }
    .serviceslisting-box:hover {
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
      transform: translateY(-5px);
    }
    .serviceslisting-icon {
      font-size: 30px;
      color: #ec681f;
      margin-bottom: 15px;
    }
    .serviceslisting-title {
      font-weight: 700;
      margin-bottom: 10px;
      color: #2b2a29;
    }
 
/* The actual timeline (the vertical ruler) */
.main-timeline {
  position: relative;
}

/* The actual timeline (the vertical ruler) */
.main-timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background-color: #939597;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.timeline {
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.timeline::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -13px;
  background-color: #ffffff;
  border: 5px solid #ec681f;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left {
  padding: 0px 40px 20px 0px;
  left: 0;
}

/* Place the container to the right */
.right {
  padding: 0px 0px 20px 40px;
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #2b2a29;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent #2b2a29 transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -12px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  /* Place the timelime to the left */
  .main-timeline::after {
    left: 31px;
  }

  /* Full-width containers */
  .timeline {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  /* Make sure that all arrows are pointing leftwards */
  .timeline::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left::after,
  .right::after {
    left: 18px;
  }

  .left::before {
    right: auto;
  }

  /* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }
}
    .counter-section {
      padding: 60px 0;
    }

    .counter-box {
      position: relative;
      background: #fff;
      text-align: center;
      padding: 40px 20px 30px;
      border-radius: 10px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
      margin-top: 40px;
    }

    .counter-icon {
      position: absolute;
      top: -30px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 60px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    }

    .counter-icon i {
      font-size: 24px;
      color: #da5c16;
    }

    .counters {
      font-size: 32px;
      font-weight: 700;
      color: #333;
      margin-top: 20px;
    }

    .counter-label {
      margin-top: 5px;
      color: #555;
      font-size: 16px;
    }
.taxzex-primary {
  color: #e26011; /* default color */
  transition: color 0.3s ease;
}
 .cta-section {
      background-color: #2b2a29;
      color: white;
      padding: 60px 30px;
    }

    .cta-button {
      background-color: #f26500;
      color: white;
      padding: 12px 30px;
      border: none;
      border-radius: 30px;
      font-weight: 500;
      transition: background-color 0.3s;
    }

    .cta-button:hover {
      background-color: #d45600;
      color: white;
    }
    .feature-box {
      border: 1px solid #eee;
      padding: 30px;
      display: flex;
      align-items: center;
      height: 100%;
      transition: 0.3s;
      background:#fff;
    }
    .feature-box.active {
      background-color: #f26500;
      color: #fff;
      border-color: #f26500;
    }
    .feature-box i {
      font-size: 30px;
      margin-right: 20px;
    }
    .feature-box.active i {
      color: #fff;
    }
    .feature-box h5 {
      margin: 0;
      font-size: 18px;
      font-weight: 500;
    }
.stickyfeatures {
  position: sticky;
  top: 62px;
  z-index:1;
}
.blog-description{color:#000 !important;}

    .form-section {
      background: #f9f9f9;
      border-radius: 15px 0 0 15px;
      padding: 40px;
    }
    .form-section h2 {
      font-weight: bold;
    }
    .form-section .form-control {
      border-radius: 5px;
      margin-bottom: 20px;
    }
    .btn-custom {
      background: linear-gradient(to right, #e85d04, #9e3001);
      color: #fff;
      padding: 10px 30px;
      border-radius: 10px;
      border: none;
      margin-right: 10px;
    }

      .btn-custom:hover {
      background: linear-gradient(to right, #e85d04, #9e3001) !important;
      color: #fff !important;
      
    }
    .image-section img {
      width: 100%;
      border-radius: 0 15px 15px 0;
      height: auto;
      object-fit: cover;
    }

.accordion .card-header{background: #f9ebe4 !important;}

.client-logo {
    height: 60px;
    object-fit: contain;
  }

  .logo-grid {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
  }

  .logo-cell {
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 100px;
  }

  .logo-row:last-child .logo-cell {
    border-bottom: none;
  }

  .logo-cell:last-child {
    border-right: none;
  }

.testimonial-card {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fff;
  }
  .quote-icon {
    font-size: 2rem;
    color: #ccc;
  }
  .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  .highlight-line {
    width: 4px;
    height: 60px;
    background-color: #ff6a00;
    border-radius: 5px;
    margin-left: 10px;
  }
  .btn-orange {
    background-color: #d65c10;
    color: #fff;
  }
  .btn-orange:hover {
    background-color: #b94f0e;
  }

/* BUTTONS */
.tabs-link{color:#000 !important}
.text-gradient{-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(135deg, #ec681f, #b84404);}

.registration-steps-bg{
    background: #f9ebe4 !important;
    padding: 45px !important;
    border-radius: 10px !important;
    margin-right: 10px;
}
.steps-num{
    background: #e7651d;
    border: 5px solid #fff;
    border-radius: 50px;
    width: 80px;
    height: 80px;
    text-align: center;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    display: inline-block;
    margin: 0 auto;
    position: relative;
    bottom: 85px;
    justify-content: space-around;
    align-items: anchor-center;
}
.steps-icon{    margin-top: -40px;
    width: 45%;}

    .slider-btns{
        color: #000 !important;
    border: 1px solid #EC681F !important;
    background: #ffffff00 !important;
    padding: 15px 20px 15px 20px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    }
 
 .pricing-card{ background-image:linear-gradient(47deg, #EC681F 0px, #B84404 100%)!important;border-radius: 10px !important; box-shadow:0 !important}
 .card p{background: #ffffff00 !important;padding: 0 !important;color:#fff !important;}
 .card-shadow{box-shadow: none !important;border: 0 !important;}
 .section-padding{padding:35px !important}
 .nav-link{border:none !important;border-radius: 0 !important;padding: 1rem 1rem !important;}
 .icon-hover-fill:active{fill:white !important}
 .timeline-steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}
.post-compliance-doc{background: #fff !important;padding: 15px 20px 15px 20px;margin-right: 10px;border-radius: 6px;box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }
.timeline-steps .timeline-step {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 1rem
}

@media (min-width:768px) {
    .timeline-steps .timeline-step:not(:last-child):after {
        content: "";
        display: block;
        border-top: .25rem dotted #ec681f;
        width: 3.46rem;
        position: absolute;
        left: 7.5rem;
        top: .3125rem
    }
    .timeline-steps .timeline-step:not(:first-child):before {
        content: "";
        display: block;
        border-top: .25rem dotted #ec681f;
        width: 3.8125rem;
        position: absolute;
        right: 7.5rem;
        top: .3125rem
    }
}

.timeline-steps .timeline-content {
    width: 10rem;
    text-align: center
}

.timeline-steps .timeline-content .inner-circle {
    border-radius: 1.5rem;
    height: 1rem;
    width: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ec681f
}

.timeline-steps .timeline-content .inner-circle:before {
    content: "";
    background-color: #ec681f;
    display: inline-block;
    height: 3rem;
    width: 3rem;
    min-width: 3rem;
    border-radius: 6.25rem;
    opacity: .5
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* spacing between buttons */
    max-width: 100%;
}

.requirement-btns {
    flex: 1 1 calc(20% - 10px); /* 5 per row with gap consideration */
    margin-bottom: 10px;
    text-align: center;
    box-shadow: 0 0 5px #ccc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    color: #000 !important;
    border: 1px solid #EC681F !important;
    background: #fff !important;
    padding: 7px 20px 7px 20px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
}
button,
.btn {
    padding: 10px;
    position: relative;
    -webkit-transition: .2s;
    transition: .2s;
    cursor: pointer;
    background:#f9ebe4;
    text-transform: capitalize !important;
    border: none;
    font-weight: 500!important;
    color: #000;
    box-shadow: 0px 4px 9px 1px rgba(0, 0, 0, 0.05) !important;
    font-size: 13px !important;
    
    line-height: normal !important;
    border-radius: 3px !important;
}

body {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 300 !important;
    background: #fbfbfb !important;
}

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

.button-white {
    background: none !important;
    color: #fff !important;
    padding: 10px 15px;
    font-size: 13px !important;
    letter-spacing: 1px;
    font-weight: 500;
}

.header-bt {
    background-image:linear-gradient(47deg, #EC681F 0px, #B84404 100%)!important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 11px 15px!important;
    font-size: 13px !important;
    border: 1px solid !important;
}

.header-bt:hover {
    
    color: #fff !important;
    padding: 11px 15px;
    font-size: 13px !important;
    border: 1px solid;
}

ul,
ol {
    padding: 0;
    margin: 0 !important;
}

.btn-blue {
    background: #2980b9;
}

.head-btn {
    padding: 10px 20px !important;
}

.mt5 {
    margin-top: 5px;
}

.mb5 {
    margin-bottom: 5px;
}

.mt15 {
    margin-top: 15px;
}

.mt10 {
    margin-top: 10px;
}

.mb10 {
    margin-bottom: 10px;
}

.mr10 {
    margin-right: 10px !Important;
}

.m15 {
    margin: 15px 0;
}

.mb15 {
    margin-bottom: 15px;
}

.mt24 {
    margin-top: 24px;
}

.mt36 {
    margin-top: 36px;
}

.mt50 {
    margin-top: 10px;
}

.mb24 {
    margin-bottom: 24px;
}

.mt30 {
    margin-top: 30px;
}

.mb30 {
    margin-bottom: 30px;
}

.mt15 {
    margin-top: 15px;
}

.m0 {
    margin: 0 !important;
}

.p15 {
    padding: 15px;
}

.pt0 {
    padding-top: 0px;
}

.pb0 {
    padding-bottom: 0px;
}

.pb15 {
    padding-bottom: 15px;
}

.pt24 {
    padding-top: 24px;
}

.pb24 {
    padding-bottom: 24px;
}

.pt15 {
    padding-top: 15px !important;
}

.pl15 {
    padding-left: 15px !important;
}

.pr15 {
    padding-right: 15px !important;
}

.pt30 {
    padding-top: 30px;
}

.pb30 {
    padding-bottom: 30px;
}

.pr30 {
    padding-right: 30px;
}

.pl30 {
    padding-left: 30px;
}

.phpb {
    background: #fff;
    border: 1px solid #eee;
}

.pb30 {
    margin-bottom: 30px;
}

.p0 {
    padding: 0 !important;
}

button:focus {
    outline: none;
}

.w {
    color: #000 !important;
}

.wb {
    background: #fff !important;
}

.bb {
    background: #000;
}

.b {
    color: #000;
}

.b2 {
    color: rgba(0, 0, 0, .5);
}

.b8 {
    color: #888;
}

.b9 {
    color: #999;
}

.font10 {
    font-size: 10px;
}

.font11 {
    font-size: 11px;
}

.font12 {
    font-size: 12px;
}

.font13 {
    font-size: 14px;
}

.font14 {
    font-size: 14px;
}

.font16 {
    font-size: 16px;
}

.font18 {
    font-size: 18px;
}

.font20 {
    font-size: 20px;
}

.font24 {
    font-size: 24px;
}

.font28 {
    font-size: 28px;
}

.w100 {
    font-weight: 100;
}

.w200 {
    font-weight: 200;
}

.w400 {
    font-weight: 400;
}

.w500 {
    font-weight: 500;
}

.w600 {
    font-weight: 600;
}

.w700 {
    font-weight: 711;
}

.b-l2 {
    border-left: 2px solid #eee;
}


/*===Header-Offer-Start===*/

.top-offer {
    background: #2c3e50;
    padding: 10px 0;
}

.top-offer p {
    text-align: center;
    font-size: 16px;
    margin: 0;
    color: #fff;
    letter-spacing: .5px;
    line-height: 22px;
    font-weight: 500;
}


/*===Header-Offer=End===*/


/*===Header-Menu-bar-Start===*/

.logo-whit .i-nav:after,
.i-nav:before {
    content: "";
    display: table;
    clear: both
}

.i-nav-layout {
    /*max-width: 1024px;
	margin: auto;*/
}

.logo-whit {
    display: none !important;
}

.main-newservice3 .logo-whit {
    display: block !important;
}

.main-newservice3 .logo-other {
    display: none;
}

.main-newservice3 .header-ul li::before {
    color: #fff;
}

.main-newservice3 .i-nav-right a,
.main-newservice3 .nav-le {
    /*color: #fff;*/
    color: #364b60;
    ;
}

.main-newservice3 .serviceatag:hover,
.main-newservice3 .nav-le:hover {
    color: #364b60;
}


/*.company-body .logo-whit, .checkout .logo-whit{
	display: block !important;
}
.company-body .logo-other, .checkout .logo-other{
	display: none;
}*/

.i-nav .i-main-nav {
    display: none
}

#iMobile:checked+.i-main-nav {
    display: block;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-animation: .195s outro cubic-bezier(.25, .46, .45, .94);
    animation: .195s outro cubic-bezier(.25, .46, .45, .94);
}

.i-nav input[type=checkbox],
.i-nav ul span.i-drop-icon {
    display: none
}

.i-nav .i-dropdown {
    background-color: #fff;
    border-width: 1px 1px 0;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-animation: .195s outro cubic-bezier(.25, .46, .45, .94);
    animation: .195s outro cubic-bezier(.25, .46, .45, .94);
}

.i-nav-right a,
.nav-le {
    color: #000;
}


/*.company-body .i-nav-right a, .company-body .nav-le{
	color: #fff;
}*/

.checkout .i-nav-right a,
.checkout .nav-le {
    color: #fff;
}

#iToggle,
.i-nav a,
.i-nav li {
    position: relative;
    display: block;
}

.i-nav a:hover {
    color: #000;
}

.company-body .header-bt {
    border: 1px solid #ee7427 ! important;
}


/*
.company-body .serviceatag:hover{
	color: #fff;
}*/

#iToggle .i-drop-icon,
#iToggle span.i-drop-icon,
.i-nav label.i-drop-icon,
.i-nav li label.i-drop-icon {
    position: absolute;
    top: 0;
    right: 0
}

#iToggle {
    background: #333
}

.i-nav a {
    font-weight: 500;
    padding: 12px 1px 12px 21px;
    cursor: pointer
}

.comli {
    margin-right: 30px;
}

.i-nav .i-dropdown {
    display: none
}

.i-nav input[type=checkbox]:checked+.i-dropdown {
    display: block
}

.i-nav label.i-drop-icon {
    width: 100%;
    height: 50px;
    cursor: pointer;
    z-index: 10
}

.main-newservice.main-newservice4 .i-nav ul li .nav-le {
    color: white;
    /* padding-top: 4px; */
}

.company-body header ul .logo-other {
    display: none;
}

.company-body header ul .logo-whit {
    display: block!important;
}

#iToggle span.i-drop-icon {
    bottom: 0;
    width: 50px;
    background-color: rgba(0, 0, 0, .2);
    cursor: pointer
}

#iToggle span.i-drop-icon:hover {
    background-color: rgba(0, 0, 0, .5)
}

.i-nav .i-dropdown.i-megadropdown li:first-child {
    font-weight: 700
}

.i-nav a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.i-nav-right {
    float: right!important
}

@media (max-width:992px) {
    .i-nav-right {
        float: none!important
    }
}

@media (min-width:993px) {
    .i-nav .i-main-nav {
        display: block
    }
    #iToggle,
    .i-nav label.i-drop-icon {
        display: none
    }
    .i-nav ul span.i-drop-icon {
        display: inline-block
    }
    .i-nav li {
        float: left;
        border-width: 0 1px 0 0
    }
    .i-nav .i-dropdown {
        border-width: 0;
        margin: 0;
        position: absolute;
        top: 100%;
        left: 0;
        width: 12em;
        z-index: 100;
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: 5px;
        box-shadow: 8px 8px 8px 0 rgba(61, 68, 78, 0.07);
    }
}

.i-nav .i-dropdown a {
    padding: 10px 16px
}

.i-nav .i-dropdown li {
    float: none;
    border-width: 0 0 1px
}

.i-nav .i-dropdown .i-dropdown {
    top: 0;
    left: 100%
}

.i-nav .i-dropdown .i-drop-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1em
}

.i-nav .i-dropdown,
.i-nav input[type=checkbox]:checked+.i-dropdown {
    display: none
}

.i-nav li:hover>input[type=checkbox]+.i-dropdown {
    display: block;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-animation: .195s outro cubic-bezier(.25, .46, .45, .94);
    animation: .195s outro cubic-bezier(.25, .46, .45, .94);
    /* margin-top:12px; */
}

.sectionblog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%
}

.i-nav .i-dropdown.i-megadropdown {
    width: 1110px;
    left: -136px;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    /*-webkit-transform: translate(-50%, 0);
		transform: translate(-50%, 0)*/
}

@media (max-width:992px) {
    .partner_logo .p_logo_item {
        width: calc(100% / 4);
        margin-bottom: 20px;
    }
    .i-nav li {
        border-bottom: 1px solid rgba(0, 0, 0, .1)
    }
    .i-nav .i-dropdown {
        border-top: 1px solid rgba(0, 0, 0, .1);
        background-color: #f9f9f9
    }
    .i-nav .i-dropdown li:last-child {
        border: none
    }
    .i-nav .i-dropdown.i-megadropdown li:last-child {
        border-bottom: 1px solid rgba(0, 0, 0, .1)
    }
    .i-nav-logo {
        display: none!important
    }
    /* .i-main-nav {
        position: fixed;
        width: 216px;
        top: 0;
        left: 0;
        bottom: 0;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 100;
        background-color: #fff;
        border-right: 1px solid rgba(0, 0, 0, .1)
    } */
}

.i-arrow-down:before,
.i-arrow-right:before {
    content: "";
    border-style: solid;
    border-color: inherit;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    position: absolute;
    top: 50%
}

.i-arrow-down:before {
    right: 0;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    margin-top: -1px
}

.i-arrow-down.i-arrow-down-mobile:before {
    right: 16px
}

.i-arrow-right:before {
    right: 10px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: 2px
}

.i-hamburger,
.i-hamburger:after,
.i-hamburger:before {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 28px;
    height: 2px;
    background-color: #fff
}

.i-nav li:after,
.i-nav li:before {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #f08080;
    bottom: 0
}

.i-hamburger:before {
    content: "";
    top: -8px
}

.i-hamburger:after {
    content: "";
    top: 10px
}


/*
.i-nav li:hover {
	color: #444
}

.i-nav li:before {
	left: 0;
	-webkit-transition: .5s;
	transition: .5s
}

.i-nav li:after {
	right: 0;
	-webkit-transition: .5s;
	transition: .5s
}

.i-nav li:hover:after,
.i-nav li:hover:before {
	width: 50%
}

.i-nav .i-dropdown li:after,
.i-nav .i-dropdown li:before {
	content: "";
	position: absolute;
	left: 0;
	width: 3px;
	height: 0;
	background-color: #f08080
}

.i-nav .i-dropdown li:before {
	top: 0;
	-webkit-transition: .5s;
	transition: .5s
}

.i-nav .i-dropdown li:after {
	bottom: 0;
	-webkit-transition: .5s;
	transition: .5s
}

.i-nav .i-dropdown li:hover:after,
.i-nav .i-dropdown li:hover:before {
	height: 50%
}*/


/* header {
    position: absolute;
    top: 0;
    padding: 18px 0;
    width: 100%;
    z-index: 2;
} */


/* 
.company-body header {
    top: 0px;
    background: #ffffff;
    box-shadow: 1px 5px 20px 2px rgba(0, 0, 0, .08);
    padding: 4px 0;
    z-index: 2;
} */

.ml-auto,
.mx-auto {
    margin-left: auto!important;
}

.mr-auto,
.mx-auto {
    margin-right: auto!important;
}

.checkout header {
    padding: 0;
    background: #535adf;
}

.i-nav-logo a {
    padding: 0px 0px;
    margin-right: 30px;
}

.i-nav-logo img {
    width: 120px;
}

.tab button:focus {
    outline: 1px dotted;
    outline: none;
}

.tab button {
    display: block;
    background-color: inherit;
    box-shadow: none !important;
    padding: 0;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
}


/* Create an active/current "tab button" class */

.tab button.active .tab-text h5 {
    color: #01b88e;
}


/* Style the tab content */

.service-section {
    padding: 24px;
}

.b-r {
    border-right: 1px solid #eee;
}

.main-icon {
    height: 34px;
    width: 34px;
    border-radius: 50%;
    margin-right: 2px;
    margin-top: 3px;
}

.i-nav .i-dropdown.i-megadropdown li:nth-child(1) .main-icon {
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #303d72 0%, #00c9ff 100%) repeat scroll 0 0;
}

.i-nav .i-dropdown.i-megadropdown li:nth-child(2) .main-icon {
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #92fe9d 0%, #00c9ff 100%) repeat scroll 0 0
}

.i-nav .i-dropdown.i-megadropdown li:nth-child(3) .main-icon {
    background-image: -moz-linear-gradient(55deg, #f075c7 0%, #9191ff 100%);
    background-image: -webkit-linear-gradient(55deg, #f075c7 0%, #9191ff 100%);
}

.i-nav .i-dropdown.i-megadropdown li:nth-child(4) .main-icon {
    background-image: -moz-linear-gradient(55deg, #75b2f0 0%, #75f094 100%);
    background-image: -webkit-linear-gradient(55deg, #75b2f0 0%, #75f094 100%);
}

.i-nav .i-dropdown.i-megadropdown li:nth-child(5) .main-icon {
    background-image: -moz-linear-gradient(55deg, #7575f0 0%, #75b2f0 100%);
    background-image: -webkit-linear-gradient(55deg, #7575f0 0%, #75b2f0 100%);
}

.main-icon img {
    width: 100%;
    padding: 8px;
}

.tab-icon {
    float: left;
}

.tab-text {
    float: left;
    width: 80%;
}

.tab-text h5 {
    font-weight: bold;
    letter-spacing: .1px;
    color: #000000;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 0px;
    padding: 0;
    text-transform: capitalize;
}

.tab-text h6 {
    font-size: 14px;
    text-transform: capitalize;
    line-height: 20px;
    margin: 0;
    color: rgba(0, 0, 0, 0.54);
    letter-spacing: 0;
}

.service-section ul li:nth-last-child(1) {
    margin: 0;
}

.service-section ul li {
    margin-bottom: 25px;
}

.head-sub a {
    color: #000;
    padding: 0 !important;
    font-size: 16px;
    /* font-family: montserrat,sans-serif; */
    margin-bottom: 25px;
    font-weight: 600;
}

.head-sub a:hover {
    color: inherit;
}

.head-sub {
    position: relative;
}

.head-sub:after {
    background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
    bottom: -9px;
    height: 3px;
    /* right: 0; */
    left: 0;
    content: '';
    margin: 0 auto;
    position: absolute;
    width: 24px;
    /* border-radius: 50px; */
}

.maintab {
    height: 100%;
}

#ser1:after {
    position: absolute;
    content: '';
    width: 183px;
    background: url(../images/icon/features_img.png);
    right: 0px;
    background-size: cover;
    bottom: 0px;
    background-repeat: no-repeat;
    height: 170px;
}

#ser2:after {
    position: absolute;
    content: '';
    width: 150px;
    background: url(../images/icon/ser2.png);
    right: 0px;
    background-size: cover;
    bottom: 0px;
    background-repeat: no-repeat;
    height: 175px;
}

#ser3:after {
    position: absolute;
    content: '';
    width: 150px;
    background: url(../images/icon/p-3.png);
    right: 0px;
    background-size: cover;
    bottom: 0px;
    background-repeat: no-repeat;
    height: 175px;
}

#ser4:after {
    position: absolute;
    content: '';
    width: 150px;
    background: url(../images/icon/ser4.png);
    right: 0px;
    background-size: cover;
    bottom: 0px;
    background-repeat: no-repeat;
    height: 175px;
}

#ser5:after {
    position: absolute;
    content: '';
    width: 180px;
    background: url(../images/icon/ser5.png);
    right: 0px;
    background-size: cover;
    bottom: 0px;
    background-repeat: no-repeat;
    height: 175px;
}

.tabcontent {
    display: none;
    height: 100%;
}

.start-main-ser li {
    padding: 0;
    margin: 0;
}

.start-main-ser li {
    margin-bottom: 7px !important;
}

.start-main-ser li .mai-ser {
    color: #444;
    padding: 0;
    font-weight: 500;
    line-height: 14px;
    font-family: montserrat, sans-serif;
    white-space: inherit;
    text-transform: capitalize;
    font-size: 12px;
    /* letter-spacing: 0.3px; */
    margin: 15px 0;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.start-main-ser li .mai-ser:hover {
    padding-left: 4px!important;
    color: #ee7427;
}

.tab-list ul li.width-li {
    width: 33%;
    float: left;
}

.i-nav-right {
    padding: 0px 0;
    margin-left: 109px;
    /*margin-right:-50px;*/
    margin-right: -30px;
}

.i-nav-right a {
    padding: 0 !important;
}


/*===Header-Menu-bar-End===*/


/*==Slider==*/

.slider {
    /*height: 100vh;
	background:rgba(238, 238, 238, .1);
	background: -webkit-gradient(linear,left top,right top,from(#A34FFE),to(#5934FC));
    background: -webkit-linear-gradient(left,#A34FFE,#5934FC);
    background: -moz-linear-gradient(left,#A34FFE,#5934FC);
    background: -o-linear-gradient(left,#A34FFE,#5934FC);
    background: linear-gradient(to right,#A34FFE,#5934FC);*/
    /*   height: 100vh;
	position: relative;
    z-index: 1;
	overflow: hidden;*/
    padding: 0;
    width: 100%;
    background: transparent;
    transition: all 0.5s ease 0s;
    padding-top: 3rem;
}

.t_color3 {
    color: #222d39;
}

img.attachment-full.size-full {
    width: auto;
}

.agency_banner_area {
    padding-top: 150px! important;
    position: relative;
    z-index: 1;
    padding: 0px;
}

.agency_featured_img img {
    transition: transform .5s ease;
}

.agency_featured_img:hover img {
    transform: scale(1.1);
}

.bg_color {
    /*background: #fbfbfd;#00b98f0d*/
    background-image: linear-gradient(238deg, #e4e4e4, #ffffff);
}


/* background: #f7fdfcbf; */


}
.elementor-icon-box-content {
    max-width: 740px;
    margin: 0 auto;
    text-align: center;
}
.back-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
}
.back-img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.getbtn {
    color: #fff;
    /*background: #5e2ced;*/
    
    background: #01b88e;
    -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;
    padding: 13px 23px;
    border: 2px solid #01b88e;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    cursor: pointer;
    outline: none;
    /*padding: 9px;
    background-color: white;
        color: #2f82f7 ! important;*/
}
.number {
    filter: contrast(0) sepia(100%) hue-rotate(116deg) brightness(1.2) saturate(0.28);
}
.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(255, 161, 39, 0.161);
    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: #feb85d;
}
@-webkit-keyframes pulsate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.5);
        transform: translate(-50%, -50%) scale(0.5);
    }
    
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(4);
        transform: translate(-50%, -50%) scale(4);
    }
}
@keyframes pulsate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.5);
        transform: translate(-50%, -50%) scale(0.5);
    }
    
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(4);
        transform: translate(-50%, -50%) scale(4);
    }
}
.agency_featured_item .agency_featured_content .icons {
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 50%;
    /*background-image: -moz-linear-gradient(40deg, #5e2ced 0%, #a485fd 100%);
	background-image: -webkit-linear-gradient(40deg, #5e2ced 0%, #a485fd 100%);
	background-image: -ms-linear-gradient(40deg, #5e2ced 0%, #a485fd 100%);
	-webkit-box-shadow: 0px 10px 20px 0px rgba(94, 44, 237, 0.2);*/
    
    background-image: -webkit-linear-gradient(40deg, #01b88e 0%, #38f1c7 100%);
    box-shadow:
    /*0px 10px 20px 0px rgba(94, 44, 237, 0.2)*/
    
    0px 10px 20px 0px rgba(117, 214, 187, 0.46);
    font-size: 20px;
    color: #fff;
    display: inline-block;
    text-align: center;
}
.mt_30 {
    margin-top: 30px;
}
.agency_featured_item .agency_featured_content h3 {
    font-weight: 700;
    color: #222d39;
    margin: 32px 0px 25px;
}
.agency_featured_item .agency_featured_content p {
    font-size: 15px;
}
.pr_70 {
    padding-right: 70px;
}
.pl_70 {
    padding-left: 70px;
}
.pl_100 {
    padding-left: 100px;
}
.features_info {
    position: relative;
    padding-bottom: 170px;
}
.dot .dot2 {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(254, 184, 93, 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.middle_dot4 {
    top: 103%;
}
.dot.middle_dot {
    top: 87%;
}
.dot.middle_dot {
    left: 54.8%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    top: auto;
}
.features_info .dot_img {
    position: absolute;
    left: 0;
    /*top: 28px;*/
}
.agency_featured_item {
    margin-top: 130px;
}
.agency_featured_item .agency_featured_content {
    position: relative;
}
.flex-row-reverse {
    -ms-flex-direction: row-reverse!important;
    flex-direction: row-reverse!important;
}
.getbtn:hover {
    color: #01b88e!important;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
}
.container.custom_container {
    max-width: 1520px;
}

/*
.slider::after{
	position: absolute;
    content: '';
    width: 108%;
    background: url(../images/banner/curves.png);
    top: 0;
    right: 0;
    z-index: -1;
    background-size: cover;
    bottom: 0;
    left: -110px;
    height: 100%;
}*/
.slider .item {
    height: auto;
}


.service-body .back-img::after {
    position: absolute;
    content: '';
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(118, 120, 255, .8)), to(rgba(179, 36, 242, .8)));
    background: -webkit-linear-gradient(left, rgba(118, 120, 255, .8), rgba(179, 36, 242, .8));
    background: -o-linear-gradient(left, rgba(118, 120, 255, .8), rgba(179, 36, 242, .8));
    background: linear-gradient(90deg, rgba(118, 120, 255, .9), rgba(179, 36, 242, .9));
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.slider .back-img::after {
    position: absolute;
    content: '';
    width: 100%;
    background: rgba(0, 0, 0, .5);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/*
.owl-item:nth-child(3) .item .back-img::after{
	position: absolute;
    content: '';
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(118, 120, 255, .8)), to(rgba(179, 36, 242, .8)));
    background: -webkit-linear-gradient(left, rgba(118, 120, 255, .8), rgba(179, 36, 242, .8));
    background: -o-linear-gradient(left, rgba(118, 120, 255, .8), rgba(179, 36, 242, .8));
    background: linear-gradient(90deg, rgba(118, 120, 255, .9), rgba(179, 36, 242, .9));
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.owl-item:nth-child(4) .item .back-img::after{
	position: absolute;
    content: '';
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(253, 97, 118, .8)), to(rgba(254, 152, 68, .8)));
    background: -webkit-linear-gradient(left, rgba(253, 97, 118, .8), rgba(254, 152, 68, .8));
    background: -o-linear-gradient(left, rgba(253, 97, 118, .8), rgba(254, 152, 68, .8));
    background: linear-gradient(90deg, rgba(253, 97, 118, .95), rgba(254, 152, 68, .95));
	 top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.owl-item:nth-child(5) .item .back-img::after{
	position: absolute;
    content: '';
    width: 100%;
       background: -webkit-gradient(linear, left top, right top, from(rgba(155, 225, 93, .8)), to(rgba(81, 204, 127, .8)));
    background: -webkit-linear-gradient(left, rgba(155, 225, 93, .8), rgba(81, 204, 127, .8));
    background: -o-linear-gradient(left, rgba(155, 225, 93, .8), rgba(81, 204, 127, .8));
    background: linear-gradient(90deg, rgba(155, 225, 93, .95), rgba(81, 204, 127, .95));
	 top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.owl-item:nth-child(6) .item .back-img::after{
	position: absolute;
    content: '';
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(253, 97, 118, .8)), to(rgba(254, 152, 68, .8)));
    background: -webkit-linear-gradient(left, rgba(253, 97, 118, .8), rgba(254, 152, 68, .8));
    background: -o-linear-gradient(left, rgba(253, 97, 118, .8), rgba(254, 152, 68, .8));
    background: linear-gradient(90deg, rgba(253, 97, 118, .95), rgba(254, 152, 68, .95));
	 top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}*/
.main-in {
    height: 560px;
    position: relative;
}
.main-btn {
    padding: 11px;
}
.headerright {
    /* height:100vh;
    position: relative;
  transform: translate(20%,40%);*/
}
.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%);
}
.headerright img {
    width: 70%;
    height: 100%;
    object-fit: contain;
}
.inside-text {
    width: 100%;
    position: absolute;
    /*top:50%;
	left:50%;
	transform: translate(-50%,-50%);*/
}
.inside-text h1 {
    position: relative;
    font-size: 33px;
    font-weight: 800;
    /*  color: #222d39;*/
    
    color: #303d72;
    margin-bottom: 30px;
    margin-top: 47px;
}
.inside-text h1::after {
    position: absolute;
    bottom: -18px;
    left: 0;
    height: 5px;
    width: 50px;
    border-radius: 20px;
    background: #303d72;
    content: '';
}
.main-newservice2.i-nav-right a,
.main-newservice2 .nav-le {
    color: #fff;
}
.main-newservice3 .inside-text h1::after {
    position: absolute;
    bottom: -18px;
    left: 0;
    height: 5px;
    width: 50px;
    border-radius: 20px;
    background: #fff;
    content: '';
}
.inside-text p {
    font-size: 16px;
    margin: 0;
    color: #677294;
    padding-right: 140px;
    letter-spacing: .5px;
    line-height: 31px;
    margin: 36px 0 30px;
    font-weight: 400;
}
.m-service .inside-text p {
    margin: 36px 0 12px;
}
.toppill .tab-pane {
    padding: 0;
}
.slider .owl-dots {
    position: absolute;
    left: 10px;
}
.slider .owl-theme .owl-dots .owl-dot.active span,
.slider .owl-theme .owl-dots .owl-dot:hover span {
    background: #999;
}
.slider .owl-theme .owl-dots .owl-dot span {
    background: #ddd;
}
.offerdiv {
    color: #fff;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.12) 1.54%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(90deg, rgb(247, 247, 247) 1.54%, rgba(255, 255, 255, 0) 100%);
    margin-bottom: 30px;
    padding: 15px;
    border-left: 3px solid rgb(241, 45, 109);
}
.offerdiv h5 {
    text-transform: capitalize;
    color: #34495e;
    font-weight: 700;
    font-size: 20px;
}
.offerdiv h4 {
    color: #677294;
    font-size: 17px;
    margin: 0;
    font-weight: 600;
}
.offerdiv p {
    font-size: 13px;
    margin: 0;
}

/*====*/
.second {
    padding: 24px 0;
    background: #eee;
}

/*====*/
.toppill .nav-pills {
    width: fit-content;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 4px 1px rgba(0, 0, 0, .05);
    /* border-radius: 4px; */
}
.toppill .nav-pills .nav-link:hover {
    color: rgba(0, 0, 0, .7);
}
.toppill .nav-pills .nav-link {
    border-radius: 0;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: rgba(0, 0, 0, .7);
    position: relative;
    padding: 10px 26px;
}
.toppill .nav-pills .nav-link.active:hover,
.toppill .nav-pills .nav-link.active,
.toppill .nav-pills .show>.nav-link {
    background: none;
    color: #2ecc71 !important;
}
.toppill .nav-pills .nav-link.active:after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background: #fff;
    z-index: 0;
    top: -12px;
    margin: auto;
    box-shadow: -4px -4px 8px -1px rgba(0, 0, 0, .03);
    right: 0;
    left: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.cd-main-nav.moves-out .ser-2 {
    display: block !important;
}
.cd-main-nav.moves-out .ser-1,
.ser-2 {
    display: none !important;
}
.ser-2 span i {
    font-size: 26px;
    color: #2ecc71;
    position: relative;
    top: 4px;
}

/*==Tittle==*/
.tittle h2 {
    position: relative;
    margin: auto;
    margin-bottom: 0px;
    font-size: 28px;
    z-index: 1;
    text-transform: capitalize;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
}
.tittle h2.text-left:before {
    right: inherit;
}
.tittle h2.w:before {
    background: #fff;
}
.tittle h2:before {
    background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
    bottom: -13px;
    height: 5px;
    right: 0;
    left: 0;
    content: '';
    margin: 0 auto;
    position: absolute;
    width: 42px;
    /* border-radius: 50px; */
}
.myp {
    font-size: 13px;
    font-weight: 500;
    color: #999;
    margin: 0;
}
.tittle p {
    color: rgba(0, 0, 0, .7);
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
    font-weight: 500;
    margin-top: 20px;
}
.about-intro .tittle p {
    text-align: justify!important;
}

/*==Service==*/
.start-cat {
    margin: 36px 0 0;
}
.my-cat {
    margin-top: 24px;
    border-radius: 2px;
    padding: 26px 15px;
    border: 1px solid #eee;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    cursor: pointer;
}
.my-cat h6 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: rgba(0, 0, 0, 0.7);
}
.my-cat p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 600;
    margin: 20px 0;
}
.my-cat:hover {
    box-shadow: 2px 0px 10px 2px rgba(0, 0, 0, .05);
}
.my-cat a {
    margin: 0 0 0;
    display: block;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    color: #2980b9;
    letter-spacing: .5px;
}
.my-cat:hover img {
    transform: rotate(00deg);
}
.my-cat img {
    position: absolute;
    opacity: .5;
    bottom: -10px;
    right: 0;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    width: 40px;
    transform: rotate(30deg);
}
.imgsec {
    position: relative;
}
.Testimonials {
    /*background: #f4f8fb !important;*/
    
    position: relative;
    z-index: 0;
}
.Testimonials::after {
    position: absolute;
    height: 100%;
    z-index: -1;
    width: 50%;
    left: 0;
    background: #2980b9;
    content: '';
    top: 0;
}
.test {
    z-index: 0;
    background: #fff;
    /* padding: 70px 42px 42px 70px; */
    
    padding: 70px 42px 42px 42px;
    border: 1px solid #eee;
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
    margin: 15px 0;
}
.owl-carousel_test12 .owl-nav {
    position: absolute;
    right: 54px;
    bottom: -51px;
}
.svg-review-bottom {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.test p {
    position: relative;
    margin-bottom: 12px;
    color: rgba(0, 0, 0, 0.8);
    width: 100%;
    text-transform: capitalize;
    overflow: hidden;
    font-size: 13px;
    height: 100px;
    font-style: italic;
    text-align: justify;
    font-weight: 400;
    line-height: 24px;
}
.test h6 {
    font-weight: 700;
}
.test .comma {
    position: absolute;
    width: 32px !important;
    opacity: .2;
    top: 36px;
    left: 54px;
}
.test-img {
    height: 38px;
    overflow: hidden;
}
.nametest {
    font-size: 13px;
    font-style: italic;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 600;
}
.nametest span {
    font-weight: 800;
}

/*==counter==*/
.counter {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}
.counter::after {
    background: url(../images/mapdots.svg) no-repeat;
    background-size: 60%;
    top: 0;
    left: 0;
    opacity: .5;
    height: 100%;
    position: absolute;
    content: '';
    background-position: center center;
    width: 100%;
}
.c-txt {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .5px;
    color: #2ecc71;
    text-transform: uppercase;
}
.com-num {
    font-size: 30px;
    z-index: 99999;
    color: rgba(0, 0, 0, .8);
    position: relative;
    width: max-content;
    font-weight: 600;
    margin: auto;
}
.clien {
    background: #2ecc71;
    color: #fff;
    width: fit-content;
    text-transform: uppercase;
    margin: 0 auto 4px;
    padding: 2px 12px;
    font-size: 10px;
    border-radius: 5px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 1px;
}
.featuredp {
    width: 50%;
    margin: auto;
    margin-top: 10px;
}

/*==Footer==*/
.checkoutimg {
    width: 128px;
    margin-bottom: 10px
}
.copyright {
    margin-top: 2px;
    margin-bottom: 0px;
    font-size: 13px;
    font-weight: 500;
}
.fot-nam h6 {
    /* color: rgb(38, 45, 74);*/
    
    color: #fff;
    font-weight: 700;
}
.fot-nam ul li a:hover {
    color: #ee7625 !important;
}
.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, .3)!important;
    margin-bottom: 20px;
}
.fot-nam ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    text-shadow: 2px 3px 5px rgba(0, 0, 0, .04);
    display: block;
    padding: 6px 0;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif !important;
    transition: all .2s ease-in-out;
}
.fot-nam ul li::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    position: absolute;
    color: fff;
    top: 0;
    padding-left: 8px;
    line-height: 30px;
    left: -8px;
}
.fot-nam ul li {
    list-style: none;
    position: relative;
    padding-left: 8px;
}
.col-md-half {
    padding: 0 15px;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
.footer-top {
    background: #000;
    padding: 50px 0 20px;
}
footer {
    position: relative;
}
.mainblock {
    display: -webkit-flex;
    /* Safari */
    
    display: flex;
}
.mainblock div {
    -webkit-flex: 5;
    /* Safari 6.1+ */
    
    -ms-flex: 5;
    /* IE 10 */
    
    flex: 5;
}
.elementor-element.elementor-element-374ba284 .elementor-social-icon {
    background-color: #dddddd;
    font-size: 14px;
    padding: 0.8em;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #dddddd;
}
.elementor-element.elementor-element-374ba284>.elementor-widget-container {
    margin: 20px 0px 0px 0px;
    float: left;
}
.elementor-element.elementor-element-374ba284 .elementor-social-icon:not(:last-child) {
    margin-right: 13px;
}
.elementor-screen-only,
.screen-reader-text,
.screen-reader-text span,
.ui-helper-hidden-accessible {
    position: absolute;
    top: -10000em;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.elementor-element.elementor-element-374ba284 .elementor-social-icon i {
    color: #525252;
}
.elementor-social-icon i {
    color: #fff;
}
.elementor-icon i,
.elementor-icon svg {
    width: 1em;
    height: 1em;
    position: relative;
    display: block;
}
.elementor-icon i:before,
.elementor-icon svg:before {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.elementor-shape-circle .elementor-icon.elementor-social-icon {
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.elementor-icon {
    display: inline-block;
    line-height: 1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    color: #818a91;
    font-size: 50px;
    text-align: center;
}
.footer-bottom {
    padding: 24px 0 0px;
    /*dding: 24px 0 0px;*/
    
    background: #000;
    /* background-image: url('../../assets/images/banner/foot-map.jpg') */
}
.head-fot {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.fot-nam ul,
.foo {
    margin: 0;
}
.main4 ul li a {
    text-decoration: none;
    /*color: rgb(38, 45, 74);
    font-size: 13px;
	font-weight: 300;
    text-shadow: 2px 3px 5px rgba(0,0,0,.04);
    display: block;
    padding: 3px 32px 3px 0px;
    transition: all .2s ease-in-out;*/
    
    display: block;
    padding: 3px 20px 3px 0px;
    /* transition: all .2s ease-in-out; */
    
    color: #bdbdbd;
    /* color: #394951; */
    
    font-size: 13px;
}
.main4 ul li a:hover i,
.main4 ul li a:focus i {
    color: #ee7625 !important;
}
.main5 ul li a {}
.main5 ul li a i {
    color: #bdbdbd;
    transform: rotate(90deg);
}
.main5 ul li a:hover i {
    color: #ee7625 !important;
}
.midle-fot {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    width: 100%;
    margin-bottom: 18px;
}
.midle-fot:nth-child(1) {
    /*border-top: 1px solid rgba(255, 255, 255, .3);*/
    
    padding-top: 18px;
}
.testp {
    font-size: 16px;
    margin: 0;
    color: #546E7A;
    text-align: center;
    letter-spacing: .5px;
    line-height: 22px;
    font-weight: 500;
}

/*==header==*/
.tophead {
    margin-bottom: 4px;
    text-align: right;
}
.tophead li {
    display: inline;
    padding: 0 10px 0 0;
    margin-left: 0;
}
.tophead li a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px;
}
.bared li {
    display: inline-block;
}
.bared {
    margin: 0;
    padding-top: 22px;
}
.bared li a:hover {
    color: #fff !important;
}
.bared li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif !important;
    padding-right: 15px;
    font-weight: 500;
}

/*==Contact==*/
.con-fo {
    background: #fafafa;
}
.myform {
    background: #ffffff!important;
    padding: 22px 24px;
    border: 1px solid #b1a6a6;
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}
.input-focus-effect {
    display: none;
}
.myform input,
.myform textarea {
    border-radius: 0;
    background-color: #f8f9fa !important;
    padding: 8px 12px;
    border: none;
}
.myform input.form-control:focus,
.myform textarea:focus {
    outline: none;
    border-color: none;
    box-shadow: none;
}
.request {
    width: 418px;
    margin-left: 50px;
}
.contact-info ul li {
    position: relative;
    padding-left: 60px;
    padding-top: 19px;
    padding-bottom: 24px;
    color: #8287a7;
    list-style: none;
}
.contact-info ul li h6 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}
.contact-info ul li p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, .8);
    font-family: 'Montserrat', sans-serif !important;
}
.contact-info ul li.address:before {
    content: "\f3c5";
    background: rgba(0, 0, 0, 0) linear-gradient(to top, #535adf 0%, #00c9ff 100%) repeat scroll 0 0;
}
.contact-info ul li:before {
    /*font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 0;
    left: 0;
    background: #1fca80;
	color: #fff;
    font-size: 16px;
    width: 40px;
    height: 100%;
    text-align: center;
    line-height:119px;*/
    
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    background: #ee7427 !important;
    top: 0;
    width: 40px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    height: 100%;
    line-height: 119px;
    left: 0px;
}
.contact-info ul li:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100% - 40px);
    height: 0;
    border-bottom: 1px dashed #ee7427;
}
.contact-info ul li.email:before {
    content: '\f0e0';
    background: -webkit-linear-gradient(55deg, #f075c7 0%, #9191ff 100%);
}
.contact-info ul li.phone:before {
    content: '\f095';
    background: rgba(0, 0, 0, 0) linear-gradient(to top, #92fe9d 0%, #00c9ff 100%) repeat scroll 0 0;
}
.infoin {
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}
.infoin ul {
    border: 1px solid #ee7427;
}
.map {
    position: relative;
    top: 28.5px;
    width: 135%;
}
.map iframe {
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
    border: 1px solid #eee;
}
.ser-ben:after {
    position: absolute;
    content: '';
    width: 100%;
    background: rgba(0, 0, 0, .5);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.ser-ben {
    z-index: 1;
    position: relative;
    background-size: cover !important;
    background-attachment: fixed !important;
    /*background: #783ffc;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #3123AE), color-stop(50%, #53A0FD), color-stop(100%, #51EC9C));
    background: -moz-linear-gradient(left,#3123AE 10%,#53A0FD 50%,#51EC9C 100%);
    background: -webkit-linear-gradient(left,#3123AE 10%,#53A0FD 50%,#51EC9C 100%);
    background: -o-linear-gradient(left,#3123AE 10%,#53A0FD 50%,#51EC9C 100%);
    background: -ms-linear-gradient(left,#3123AE 10%,#53A0FD 50%,#51EC9C 100%);
    background: linear-gradient(left,#3123AE 10%,#53A0FD 50%,#51EC9C 100%);*/
}
.header-rightimg {
    text-align: right;
}
.header-rightimg img {
    width: 75%;
    margin: auto;
    padding: 80px 0
}

/*====My-Service====*/
.myservice {
    padding-top: 0;
    padding-bottom: 6%;
    background: #f0f1f473;
    box-shadow: 0px 10px 23px 0px #bdbdbd;
    /*margin-top:5%*/
}
.myservice .nav {
    margin-top: 36px;
    display: inherit;
    background: rgba(238, 238, 238, .4);
}
.myservice .nav-link {
    display: block;
    padding: 22px 18px;
    font-size: 18px;
    font-weight: 600;
    color: rgba(0, 0, 0, .6);
    border-left: 2px solid #f8f8f8;
    position: relative;
    /*min-height: 89px;*/
}
.myservice .nav-link p {
    font-size: 13px;
    margin: 0;
    position: relative;
    color: #999;
    z-index: 1;
}
.myservice .nav-pills .nav-link.active,
.myservice .nav-pills .show>.nav-link {
    color: #000;
    background-color: #75e1aa0f;
    border-radius: 0;
    border-color: #01b88e;
    overflow: hidden;
}
.myservice .nav-pills .first1 .nav-link.active:after {
    background: url(../images/icon/ser1.svg);
    content: '';
    width: 84px;
    height: 55px;
    bottom: -9px;
    right: -24px;
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat;
    filter: grayscale(0.8);
}
.myservice .nav-pills .first2 .nav-link.active:after {
    background: url(../images/icon/ser2.png);
    content: '';
    width: 78px;
    height: 80px;
    bottom: -15px;
    right: -18px;
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat;
}
.myservice .nav-pills .first3 .nav-link.active:after {
    background: url(../images/icon/ser3.png);
    content: '';
    width: 78px;
    height: 80px;
    bottom: -15px;
    right: -18px;
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat;
}
.myservice .nav-pills .first4 .nav-link.active:after {
    background: url(../images/icon/ser4.svg);
    content: '';
    width: 78px;
    height: 80px;
    bottom: -15px;
    right: -18px;
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat;
}
.myservice .nav-pills .first5 .nav-link.active:after {
    background: url(../images/icon/ser5.png);
    content: '';
    width: 78px;
    height: 70px;
    bottom: -15px;
    right: -18px;
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat;
}
.m-head {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: rgba(0, 0, 0, .8);
}
.last-ser p {
    margin: 10px 0;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    color: rgba(0, 0, 0, .6);
}
.ser-icon {
    height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #212529 0%, #212529 100%) repeat scroll 0 0!important;
    margin: 0 auto 5px;
}
.sir-start .row .col-md-4:nth-child(2) .ser-icon {
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #92fe9d 0%, #00c9ff 100%) repeat scroll 0 0;
}
.sir-start .row .col-md-4:nth-child(3) .ser-icon {
    background-image: -moz-linear-gradient(55deg, #f075c7 0%, #9191ff 100%);
    background-image: -webkit-linear-gradient(55deg, #f075c7 0%, #9191ff 100%);
}
.sir-start .row .col-md-4:nth-child(4) .ser-icon {
    background-image: -moz-linear-gradient(55deg, #75b2f0 0%, #75f094 100%);
    background-image: -webkit-linear-gradient(55deg, #75b2f0 0%, #75f094 100%);
}
.sir-start .row .col-md-4:nth-child(5) .ser-icon {
    background-image: -moz-linear-gradient(55deg, #7575f0 0%, #75b2f0 100%);
    background-image: -webkit-linear-gradient(55deg, #7575f0 0%, #75b2f0 100%);
}
.sir-start .row .col-md-4:nth-child(6) .ser-icon {
    background-image: -moz-linear-gradient(55deg, #7575f0 0%, #75b2f0 100%);
    background-image: -webkit-linear-gradient(55deg, #7575f0 0%, #75b2f0 100%);
}
.ser-icon img {
    width: 100%;
    padding: 7px;
}
.ser-icon i {
    color: #fff;
    font-size: 24px;
    line-height: 40px;
}
.last-ser {
    padding: 15px;
    cursor: pointer;
    position: relative;
    height: 222px;
}
.mlast {
    /* position: absolute;
    left: 0; */
}
.last-ser:hover .serback {
    opacity: 1;
    /*background-color: #f7feff;*/
    
    background-color: #f8f8f8;
    -webkit-transform: scale(1.05, 1.1);
    -ms-transform: scale(1.05, 1.1);
    transform: scale(1.05, 1.1);
}
.serback {
    -webkit-transition: opacity 175ms ease, -webkit-transform 175ms ease;
    transition: opacity 175ms ease, -webkit-transform 175ms ease;
    transition: transform 175ms ease, opacity 175ms ease;
    transition: transform 175ms ease, opacity 175ms ease, -webkit-transform 175ms ease;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: 35%;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0;
    box-shadow: 5px 7px 10px 0 rgba(35, 43, 48, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}
.last-ser:hover a {
    color: #ee7625;
}
.last-ser:hover .ser-icon {
    background-image: linear-gradient(47deg, rgb(238, 130, 25) 0px, rgb(239, 69, 89) 100%)!important;
}
.mlast a {
    display: block;
    text-align: center;
    font-weight: 700;
    color: rgba(0, 0, 0, .6);
}
.last-ser {
    border-bottom: 1px solid;
    border-top: 1px solid;
    border-right: 1px solid;
    border-left: 1px solid;
    -webkit-border-image: -webkit-radial-gradient(rgba(0, 0, 0, 0.08), transparent) .5;
    border-image: radial-gradient(rgba(0, 0, 0, 0.08), transparent) .5;
    margin-bottom: 15px;
}
.servicelisting {
    background-image: url(../../assets/images/banner/banner-background.svg);
    background-size: cover;
    background-position: center;
}

/*====why-Taxbeta====*/
.abtax {
    /*   min-height: 100vh;	*/
    
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    position: relative;
    padding: 60px 0px;
}
.taxseul {
    padding-left: 0px;
}
.taxseul li::after {
    position: absolute;
    height: 8px;
    width: 8px;
    top: 0;
    border-radius: 50%;
    left: 0;
    margin: auto;
    background: #f8a440;
    bottom: 0;
    content: '';
}
.taxseul li {
    position: relative;
    font-size: 16px;
    list-style: none;
    padding-left: 20px;
    color: rgba(0, 0, 0, .8);
    font-weight: 600;
    margin: 12px 0;
}
.why-right .section {
    min-height: 100vh;
}
.taxabout {
    position: relative;
    padding-left: 110px;
}
.num01 {
    font-size: 70px;
    position: absolute;
    top: -14px;
    color: rgba(0, 0, 0, .1);
    font-weight: 500;
    left: 25px;
    font-family: 'Montserrat', sans-serif !important;
}
.taxabout h1 {
    font-size: 36px;
    font-weight: 600;
    margin: 0;
    color: rgba(0, 0, 0, .8);
}
.mainabtax {
    /*position: absolute;
	top:50%;
	left: 0;
	transform: translate(0,-50%);
	width: 96%;*/
}
.whytb {
    padding: 0;
    /*background: #f1f3f6;*/
    
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.whytbback .whytb {
    background: #fff;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.why-sec {
    position: absolute;
    height: 100%;
}
.mainwhy {
    position: sticky;
    top: 33%;
    padding: 50px 15px 50px 0;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 1.5s ease;
    -ms-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease;
}
.why-right {}
.whycol {
    position: relative;
    height: 100%;
}
.whycol img {
    width: 100%;
    position: absolute;
    bottom: -12%;
    right: -10%;
}

/*===test===*/
.testimo {
    /*	min-height: 85vh;*/
    
    min-height: 57vh;
    overflow: hidden;
    position: relative;
    padding: 60px 0px;
}
.testimo .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -45px;
}

/*===test===*/
.clientse {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    background: #f1f3f6;
}
.clientse .repeat-s {
    height: 300px;
    overflow: hidden;
}
.clientse .repeat-s:after {
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 100px;
    position: absolute;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    background: -webkit-linear-gradient(0, #f1f3f6, rgba(244, 248, 255, 0));
    background: linear-gradient(0, #f1f3f6, rgba(244, 248, 255, 0));
    z-index: 99999;
}
.clientse .repeat-s:before {
    content: '';
    left: 0;
    right: 0;
    z-index: 99999;
    top: -1px;
    height: 100px;
    position: absolute;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    background: -webkit-linear-gradient(top, #f1f3f6, rgba(244, 248, 255, 0));
    background: linear-gradient(180deg, #f1f3f6, rgba(244, 248, 255, 0));
}
.clinetlogo {
    height: 80px;
}
.clinetlogo img {
    width: 80% !important;
    height: 100%;
    object-fit: contain;
}
.back-img-why {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.back-img-why img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.col-centered {
    float: none;
    margin: 0 auto;
}
.back-img-why::after {
    position: absolute;
    content: '';
    width: 100%;
    /*background: url(../images/banner/bg.jpg);
   background: -webkit-linear-gradient(left,#3123AE 10%,#53A0FD 50%,#51EC9C 100%); */
    
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #535adf 0%, #00c9ff 100%) repeat scroll 0 0;
    top: 0;
    background-size: cover;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    left: 0;
    background-attachment: fixed;
    background-position: right 0;
}
.mainwhy .tittle p {
    font-weight: 300;
    font-size: 20px;
    padding: 0 36px;
    line-height: 28px;
}
.mainwhy .tittle h2 {
    position: relative;
    margin: auto;
    margin-bottom: 0px;
    font-size: 38px;
    z-index: 1;
    text-transform: capitalize;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
}

/*==News==*/
.new-img {
    overflow: hidden;
    position: relative;
    height: 250px;
}
.blogg {
    background: #fafafa;
}
.new-text {
    padding: 15px;
    bottom: 0;
    text-align: left;
    background: #fff;
}
.new-text h3 {
    color: #000;
    margin: 0;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 1px;
    font-weight: 700;
    transition: all 0.4s ease 0s;
}
.main-new:hover .new-text h3 {
    color: #f8a440;
}
.new-img img {
    width: 100% !important;
    border-radius: 5px;
    transition: all 0.4s ease 0s;
}
.main-new:hover .new-img img {
    transform: scale(1.1);
}
.new-text h4 {
    color: #fff;
    margin: 0;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 1px;
    font-weight: 700;
}
.new-text p {
    color: rgba(0, 0, 0, 0.64);
    line-height: 26px;
    font-size: 16px;
    margin-bottom: 0;
    max-height: 130px;
    overflow: hidden;
}
.main-new a.readnew {
    display: block;
    margin-top: 0;
    text-align: right;
    font-weight: 700;
    color: #000;
    padding: 0 30px;
}
.main-new:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .08);
}
.main-new {
    margin: 15px 0;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease 0s;
    border-radius: 0px;
}
.new-midle {
    padding: 12px 0px 0;
}
.new-midle img {
    width: 24px !important;
    height: 24px;
    overflow: hidden;
    border-radius: 50%;
    float: left;
    margin: 0px 0 5px;
    object-fit: cover;
}
.midnew-text {
    padding: 0 12px;
    font-weight: 700;
    float: left;
    width: 80%;
    color: rgba(0, 0, 0, .8);
    line-height: 24px;
    font-size: 13px;
    letter-spacing: .5px;
}
.midnew-text span {
    color: rgba(0, 0, 0, 1);
}

/*==footer==*/
.footer-p {
    font-size: 11px !important;
    font-weight: 600;
    color: #fff !important;
}
.pra-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    text-align: justify;
}
.main-count {
    text-align: left;
}
.main-count h5 {
    font-size: 24px;
    margin: 0;
    color: rgb(120, 63, 252);
    font-weight: 700;
}
.main-count h6 {
    color: rgba(0, 0, 0, .7);
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 5px;
}
.footer-soical li {
    display: inline-block;
    list-style: none;
    margin-left: 12px;
}
.footer-soical li a i {
    color: #fff;
    font-size: 19px;
    transition: all 0.4s ease 0s;
}
.foot-logo img {
    width: 100px;
    /* filter: contrast(36%);
    margin-left: -19px; */
}
.fot-ab p {
    color: #bdbdbd;
    font-weight: 300;
    font-size: 13px;
    text-align: justify;
    margin-top: 10px;
    line-height: 22px;
    margin-bottom: 0;
}

/*service*/
.new-service {
    padding: 0;
    overflow: hidden;
    z-index: 1;
    position: relative;
}
.main-newservice {
    position: relative;
}
.main-newservice2 .header-ul li::before {
    color: #fff;
}
.main-newservice2::after {
    /*	background:rgba(0, 0, 0, 0) linear-gradient(to top, #00c9ff 0%, #cd36ff 100%) repeat scroll 0 0;*/
    
    content: '';
    right: 0;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}
.main-newservice4::after {
    /*background-image: -webkit-linear-gradient(125deg, #5f51fb 0%, #767cfd 64%, #8ca7ff 100%);*/
    
    background-image: -webkit-linear-gradient(125deg, #9fe2d4 0%, #29bfa0 64%, #ade6da 100%);
    content: '';
    right: 0;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}
.payment_banner_area_two {
    padding-top: 200px;
    position: relative;
    z-index: 1;
}
.symbols-pulse {
    position: absolute;
    top: 58%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0.4;
}
.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;
}
.symbols-pulse .pulse-1 {
    -webkit-transform: translate(-50%, -50%) scale(0.67);
    -ms-transform: translate(-50%, -50%) scale(0.67);
    transform: translate(-50%, -50%) scale(0.67);
}
.symbols-pulse .pulse-2 {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
    -ms-transform: translate(-50%, -50%) scale(1.05);
    transform: translate(-50%, -50%) scale(1.05);
}
.symbols-pulse .pulse-3 {
    -webkit-transform: translate(-50%, -50%) scale(1.63);
    -ms-transform: translate(-50%, -50%) scale(1.63);
    transform: translate(-50%, -50%) scale(1.63);
}
.symbols-pulse .pulse-4 {
    -webkit-transform: translate(-50%, -50%) scale(2.1);
    -ms-transform: translate(-50%, -50%) scale(2.1);
    transform: translate(-50%, -50%) scale(2.1);
}
.symbols-pulse .pulse-x {
    will-change: transform;
    -webkit-animation: pulsate 3s infinite;
    animation: pulsate 3s infinite;
}
.symbols-pulse>div {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 27rem;
    height: 27rem;
    border-radius: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(227, 221, 246, 0.1)), color-stop(65%, rgba(227, 221, 246, 0.2)), to(rgba(227, 221, 246, 0.1)));
    background-image: -webkit-linear-gradient(top, rgba(227, 221, 246, 0.1) 0%, rgba(227, 221, 246, 0.2) 65%, rgba(227, 221, 246, 0.1) 100%);
    background-image: -o-linear-gradient(top, rgba(227, 221, 246, 0.1) 0%, rgba(227, 221, 246, 0.2) 65%, rgba(227, 221, 246, 0.1) 100%);
    background-image: linear-gradient(-180deg, rgba(227, 221, 246, 0.33) 0%, rgba(227, 221, 246, 0.2) 65%, rgba(227, 221, 246, 0.1) 100%);
    z-index: -1;
}
.new-product .main-newservice3::after {
    /*	background:rgba(0, 0, 0, 0) linear-gradient(to top, #00c9ff 0%, #cd36ff 100%) repeat scroll 0 0;*/
    
    content: '';
    right: 0;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}
.serviceright {
    height: 100vh;
    position: relative;
}
.serviceright img {
    width: 119%;
    height: 119%;
    object-fit: contain;
}
.m-service {
    position: relative;
    min-height: 100vh;
    padding-top: 24px;
}

/*video-service*/
.video-div {}
.video-div::after {
    background: rgba(0, 0, 0, 0) linear-gradient(to top, rgba(0, 201, 255, .8) 0%, rgba(34, 210, 152, .8) 100%) repeat scroll 0 0;
    content: '';
    right: 0;
    position: absolute;
    top: 0;
    height: 100%;
    width: 43%;
    z-index: -1;
}
.video-img {
    right: 0;
    position: absolute;
    top: 0;
    height: 100%;
    width: 43%;
    z-index: -1;
}
.video-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-play i {
    font-size: 20px;
    color: #fff;
}
.video-play {
    cursor: pointer;
    top: 50%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    transform: translate(0, -50%);
    background: -webkit-linear-gradient(55deg, #f075c7 0%, #9191ff 100%);
    right: 40%;
    border: none;
    border-radius: 100%;
    -webkit-box-shadow: 0 2px 4px rgba(3, 27, 78, .06);
    box-shadow: 0 2px 4px rgba(3, 27, 78, .06);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 70px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 70px;
}

/*===FAQ===*/
.mainyes {
    border-bottom: 3px solid #eee !important;
}
.nav-pills .yesnav .nav-link.active,
.nav-pills .yesnav .show>.nav-link {
    background: none;
    color: #000;
}
.nav-pills .yesnav .nav-link.active:after {
    position: absolute;
    content: '';
    height: 3px;
    background: #783ffc;
    bottom: -3px;
    left: 0;
    width: 100%;
}
.yesnav .nav-link {
    border-radius: 0;
    font-weight: 600;
    color: #000;
    position: relative;
    padding: 6px 0;
    font-size: 18px;
    margin-right: 58px;
}
.nomainnav .nav-link {
    border-radius: 4px !important;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    background: #eee;
    position: relative;
    font-size: 16px;
    margin-right: 58px;
}
.nonav {
    display: inherit !important;
}
.fitab {
    width: 100%;
    margin-top: 24px;
}
.nav-pills .nomainnav .nav-link.active,
.nomainnav .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #783ffc;
    border-radius: 0;
}
.yesnav {
    width: 25%;
}
.nav-pills .nomainnav .nav-link.active:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #783ffc;
    top: 0;
    right: -6px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: 0;
    margin: auto;
}
.mainn h6 {
    font-weight: 600;
    font-size: 20px;
}
.mainn p {
    color: #555;
    margin: 0;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 1px;
    font-weight: 600;
}
.navli {
    margin: 10px 0 !important;
    padding: 0;
}
.navli li {
    list-style: none;
    color: #555;
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
    padding: 3px 26px;
}
.navli li::after {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 17px;
    position: absolute;
    color: #783ffc;
    top: 0;
    padding-left: 8px;
    line-height: 26px;
    left: -8px;
}
.absect h6 {
    font-size: 38px;
    font-weight: 600;
    color: #f8a440;
}
.absect p {
    color: rgba(0, 0, 0, 1);
    margin: 0;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 1px;
    font-weight: 500;
}
.absect p span {
    font-size: 24px;
    font-weight: 700;
}
.absect {
    position: relative;
    margin: 24px 0;
    padding-left: 70px;
}
.absect-icon {
    position: absolute;
    left: 0;
}
.absect-icon i {
    font-size: 42px;
    color: #f8a440;
}
.header-ul li {
    color: #000;
    position: relative;
    list-style: none;
    padding: 3px 0;
    padding-left: 32px;
}
.header-ul {}
.serrate {
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-right: 80px;
    margin-top: 15px;
}
.serrate h5 {
    position: relative;
    font-size: 21px;
    margin: 0;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #34495e;
}
.serrate p {
    margin: 0 !important;
    font-weight: 600;
    font-size: 13px;
}
.header-ul li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    position: absolute;
    color: rgb(52, 73, 94);
    top: 0;
    padding-left: 0;
    line-height: 38px;
    left: 0px;
}

/*service*/
.service-back {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.service-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-back::after {
    position: absolute;
    content: '';
    width: 100%;
    background: url(../images/header.png);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.service-text-inside {}
.sticky {
    position: fixed;
    z-index: 3000;
    display: block;
    top: 66%;
    right: 0%;
    margin-right: px;
    cursor: -webkit-pointer;
    cursor: pointer;
}
#mm {
    display: inline-block;
    position: relative;
    padding: 15px 15px;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    vertical-align: middle;
    letter-spacing: 2px;
    overflow: hidden;
    background: rgb(248, 164, 64);
    right: 2px;
}
#mm span {
    transition: 0.6s;
    transition-delay: 0.2s;
    text-align: center important!;
}
#mm:before,
#mm:after {
    content: '';
    position: absolute;
    top: 0.67em;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: .4s, opacity .6s;
}
#mm:before {
    content: attr(data-hover);
    transform: translate(-150%, 0);
}
#mm:after {
    content: attr(data-active);
    transform: translate(150%, 0);
}
#mm:hover span,
#mm:active span {
    opacity: 0;
    transform: scale(0.3);
}
#mm:hover:before,
#mm:active:after {
    opacity: 1;
    transform: translate(0, 0);
    transition-delay: .4s;
}
#mm:active:before {
    transform: translate(-150%, 0);
    transition-delay: 0s;
}
#mm:hover {
    background-color: rgb(83, 90, 223);
    height: 43px;
    width: 155px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
}
.arrow1 {
    text-align: center;
}
.bounce1 {
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}
@keyframes bounce1 {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    
    40% {
        transform: translateY(-30px);
    }
    
    60% {
        transform: translateY(-15px);
    }
}
.service-text-main {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
}
.section-02 .service-text-main {
    background: -webkit-linear-gradient(55deg, #f075c7 0%, #9191ff 100%);
}
.section-01 {
    border-bottom: 1px solid #eee;
}
.mysection-all {
    padding: 0;
}
.section-01 .service-text-main {
    background: linear-gradient(to top, #21d397 0%, #535adf 51%, #21d397 100%);
}
.section-03 .service-text-main {
    background: #4944ff;
}
.service-text-inside {
    position: sticky;
    top: 34%;
    /*transform: translate(0,-50%);*/
    
    padding: 50px 0px 50px 15px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 1.5s ease;
    -ms-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease;
}
.center-class {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
}
.service-right-text section {
    min-height: 100vh;
    border-bottom: 1px solid #eee;
    position: relative;
}
.service-center {
    position: absolute;
    top: 56%;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
    padding: 24px 0;
    max-height: 85vh;
}
.service-center {
    overflow-y: auto;
    overflow-x: hidden;
}
.service-center::-webkit-scrollbar {
    width: 6px;
}
.service-center::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 5px;
    border: 1px solid #fff;
}
.service-center::-webkit-scrollbar-thumb {
    background-color: #fff;
    outline: 5px solid red;
    width: 6px;
    padding: 5px;
    border-radius: 5px;
}
.service-center:hover::-webkit-scrollbar-track {
    background: #e3e3e3;
    border-radius: 5px;
    border: 1px solid #fff;
}
.service-center:hover::-webkit-scrollbar-thumb {
    background-color: #d1d1d3;
    outline: 5px solid red;
    width: 8px;
    padding: 5px;
    border-radius: 5px;
}
.section-01 {
    padding: 0;
    /* background: #f1f3f6; */
    
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.ser0des h4 {
    font-weight: 600;
}
.ser0des p {
    color: rgba(0, 0, 0, .8);
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 20px;
    text-align: justify;
}
.firstseul {
    margin-top: 24px !important;
}
.firstseul li {
    position: relative;
    list-style: none;
    color: rgba(0, 0, 0, .7);
    margin: 0;
    font-size: 16px;
    padding: 5px 0;
    letter-spacing: 1px;
    text-transform: capitalize;
    width: 50%;
    float: left;
    padding-right: 30px;
    padding-left: 45px;
    font-weight: 700;
    text-align: justify;
    line-height: 24px;
    margin-bottom: 15px;
}
.fi-icon {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 40px;
}
.fi-icon i {
    color: #2ecc71;
    font-size: 24px;
}
.benefits {
    position: relative;
    background: #2ecc71;
}
.bene-inside h4 {
    font-weight: 700;
    text-align: center;
    font-size: 18px;
    margin: 12px 0;
    text-transform: uppercase;
}
.bene-inside p {
    color: rgba(0, 0, 0, .8);
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    font-weight: 600;
    text-align: center;
}
.bene-inside {
    padding: 30px;
    cursor: pointer;
    -webkit-transition: opacity 175ms ease, -webkit-transform 175ms ease;
    transition: opacity 175ms ease, -webkit-transform 175ms ease;
    transition: transform 175ms ease, opacity 175ms ease;
    transition: transform 175ms ease, opacity 175ms ease, -webkit-transform 175ms ease;
}
.bene-img {
    -webkit-transition: opacity 175ms ease, -webkit-transform 175ms ease;
    transition: opacity 175ms ease, -webkit-transform 175ms ease;
    transition: transform 175ms ease, opacity 175ms ease;
    transition: transform 175ms ease, opacity 175ms ease, -webkit-transform 175ms ease;
}
.bene-inside:hover .bene-img {
    transform: scale(1.05);
}
.mai-be:nth-child(1) {
    border-right: 1px solid;
    border-bottom: 1px solid;
}
.mai-be:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid;
}
.mai-be:nth-child(3) {
    border-bottom: none;
    border-right: 1px solid;
}
.bene-img img {
    width: 28px;
}
.bene-img i {
    font-size: 40px;
    color: #2ecc71;
}
.mai-be {
    -webkit-border-image: -webkit-radial-gradient(rgb(46, 204, 113), transparent) .5;
    border-image: radial-gradient(rgb(46, 204, 113), transparent) .5;
}
.ser-ben .bene-img {}
.ma-bene {
    margin-top: 36px;
}
.service-right-text .taxabout {
    padding-left: 163px;
}
.document-inside {
    padding: 36px 24px;
    border-radius: 5px;
    background: #f1f3f6;
    margin: 12px 0;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    cursor: pointer;
    height: 167px
}
.document-inside:hover {
    /*box-shadow: 0 0 10px rgba(0,0,0,.05);*/
    
    transform: scale(1.03);
}
.document-inside h4 {
    font-weight: 700;
    text-align: center;
    font-size: 16px;
    margin: 12px 0 0;
    text-transform: capitalize;
}
.what-inside {
    background: #fff;
    padding: 10px 10px;
    text-align: center;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
    height: 129px;
}
.document-img img {
    width: 40px;
    object-fit: contain;
    height: 40px;
}
.what-img {
    height: 50px;
}
.what-img img {
    width: 60px;
    object-fit: contain;
    height: 100%;
}
.what-inside h4 {
    font-weight: 700;
    text-align: center;
    font-size: 14px;
    line-height: 28px;
    margin: 12px 0 0;
    text-transform: capitalize;
}

/*--step--*/
.startsteps {
    position: relative;
}
.startsteps::after {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 93%;
    width: 1px;
    background: #4944ff;
    content: '';
    margin: auto;
    text-align: center;
    right: 0;
    left: 0;
}
.stepul li {
    position: relative;
    list-style: none;
    width: 50%;
    text-align: right;
}
.stepul li:nth-child(1) .li-step {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    animation-duration: 2s;
    animation-delay: .1s;
}
.stepul li:nth-child(1) .step-number {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    animation-duration: 2s;
    animation-delay: .1s;
}
.stepul li:nth-child(2) .li-step {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    animation-duration: 2s;
    animation-delay: 1s;
}
.stepul li:nth-child(2) .step-number {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    animation-duration: 2s;
    animation-delay: 1s;
}
.stepul li:nth-child(3) .li-step {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    animation-duration: 2s;
    animation-delay: 2s;
}
.stepul li:nth-child(3) .step-number {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    animation-duration: 2s;
    animation-delay: 2s;
}
.stepul li:nth-child(4) .li-step {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    animation-duration: 2s;
    animation-delay: 3s;
}
.stepul li:nth-child(4) .step-number {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    animation-duration: 2s;
    animation-delay: 3s;
}
.stepul li:nth-child(5) .li-step {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    animation-duration: 2s;
    animation-delay: 4s;
}
.stepul li:nth-child(5) .step-number {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    animation-duration: 2s;
    animation-delay: 4s;
}
.stepul li:nth-child(6) .li-step {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    animation-duration: 2s;
    animation-delay: 5s;
}
.stepul li:nth-child(6) .step-number {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    animation-duration: 2s;
    animation-delay: 5s;
}
.stepul li:nth-child(7) .li-step {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    animation-duration: 2s;
    animation-delay: 6s;
}
.stepul li:nth-child(7) .step-number {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    animation-duration: 2s;
    animation-delay: 6s;
}
.stepul li:nth-child(8) .li-step {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    animation-duration: 2s;
    animation-delay: 7s;
}
.stepul li:nth-child(8) .step-number {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    animation-duration: 2s;
    animation-delay: 7s;
}
.li-step {
    /* border: 1px solid #EEE; */
    
    padding: 18px 24px;
    margin: 18px 40px 18px 0;
    /* box-shadow: 0px 0px 10px 1px rgba(0,0,0,.05); */
    
    border-radius: 0;
    font-size: 16px;
    font-weight: 700;
    background: #eee;
    border-radius: 10px;
    color: #333333;
    cursor: pointer;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
}
.step-number {
    position: absolute;
    background: #4944ff;
    height: 34px;
    width: 34px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    z-index: 1;
    /*box-shadow: 0px 0px 4px 4px rgba(0,0,0,.08);*/
    
    font-weight: 700;
    line-height: 34px;
    right: -17px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.step-number1 {
    position: absolute;
    /* background: #535adfc2;*/
    
    background: #01b88e;
    height: 34px;
    width: 34px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    z-index: 1;
    /*box-shadow: 0px 0px 4px 4px rgba(0,0,0,.08);*/
    
    font-weight: 700;
    line-height: 34px;
    right: 95%;
    top: 0;
    bottom: 0;
    margin: auto;
}
.stepul li:nth-last-child(1) {}
.stepul li:nth-child(2) .step-number,
.stepul li:nth-child(4) .step-number,
.stepul li:nth-child(6) .step-number,
.stepul li:nth-child(8) .step-number {
    left: -17px;
    right: inherit;
}
.stepul li:nth-child(2) .step-number1,
.stepul li:nth-child(4) .step-number1,
.stepul li:nth-child(6) .step-number1,
.stepul li:nth-child(8) .step-number1 {
    left: 18px;
    right: inherit;
}
.stepul li:nth-child(2),
.stepul li:nth-child(4),
.stepul li:nth-child(6),
.stepul li:nth-child(8) {
    margin-left: auto;
    text-align: left;
}
.stepul li:nth-child(2) .li-step,
.stepul li:nth-child(4) .li-step,
.stepul li:nth-child(6) .li-step,
.stepul li:nth-child(8) .li-steps {
    margin: 18px 0 18px 40px;
}
.stepul {
    /*padding: 32px 0 0px;*/
    
    padding: 0px 0 0px;
}
.stepul::after {
    content: "\f197";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    position: absolute;
    color: #ffffff;
    top: 0;
    border-radius: 50%;
    right: 0;
    transform: rotate(90deg);
    line-height: 34px;
    margin: auto;
    z-index: 1;
    left: 0px;
    display: block;
    width: 34px;
    text-align: center;
    height: 34px;
    background: #4944ff;
    /* box-shadow: 0px 0px 4px 4px rgba(0,0,0,.08);*/
}
.stepul::before {
    content: "Done";
    font-family: 'Comfortaa', cursive;
    font-weight: 900;
    font-size: 15px;
    padding: 0 10px;
    position: absolute;
    display: none;
    color: #ffffff;
    bottom: 0;
    border-radius: 50px;
    right: 0;
    line-height: 24px;
    margin: auto;
    z-index: 1;
    left: 0px;
    width: fit-content;
    text-align: center;
    height: auto;
    background: #4944ff;
    /*  -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    animation-duration: 2s;
    animation-delay: 8s;
	 box-shadow: 0px 0px 4px 4px rgba(0,0,0,.08);*/
}

/*==Process==*/
.processul li {
    list-style: none;
}
.process-header {
    font-size: 16px;
    font-weight: 700;
    color: #4944ff;
}
.processul li p {
    font-size: 12px;
    font-weight: 700;
    color: rgba(0, 0, 0, .8);
    text-align: justify;
    line-height: 22px;
}

/*===Document===*/
.documnentul li {
    position: relative;
    line-height: 34px;
    padding-left: 40px;
    list-style: none;
    font-weight: 600;
    font-size: 16px;
}
.documnentul li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    position: absolute;
    color: #4944ff;
    top: 0;
    padding-left: 0;
    line-height: 34px;
    left: 0px;
}

/*===Service-logo===*/
.cli-logo ul {
    padding: 0;
    margin: 0;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    background: #eee;
}
.cli-logo ul li {
    -webkit-box-flex: 1;
    display: flex;
    height: 134px;
    width: 25%;
}
.cli-logo ul li .logo-back img {
    max-width: 100%;
    width: auto;
    object-fit: contain;
    height: 100%;
    vertical-align: middle;
}
.logo-back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    padding: 15px;
}
.logo-back:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}
.l-li:nth-child(1) {
    background: #007fc3;
}
.l-li:nth-child(2) {
    background: #5f802f;
}
.l-li:nth-child(3) {
    background: #fb9b00;
}
.l-li:nth-child(4) {
    background: #f37217;
}
.l-li:nth-child(5) {
    background: #16a7e1;
}
.l-li:nth-child(6) {
    background: #004a80;
}
.l-li:nth-child(7) {
    background: #c0392b;
}
.l-li:nth-child(8) {
    background: #1a156b;
}
.l-li:nth-child(9) {
    background: #FF5722;
}
.l-li:nth-child(10) {
    background: #16a085;
}
.l-li:nth-child(11) {
    background: #8e44ad;
}
.l-li:nth-child(12) {
    background: #007fc3;
}
.l-li:nth-child(13) {
    background: #007fc3;
}
.l-li:nth-child(14) {
    background: #5f802f;
}
.l-li:nth-child(15) {
    background: #FFC107;
}
.l-li:nth-child(16) {
    background: #f37217;
}
.l-li:nth-child(17) {
    background: #8e44ad;
}
.l-li:nth-child(18) {
    background: #16a7e1;
}
.l-li:nth-child(19) {
    background: #795548;
}
.l-li:nth-child(20) {
    background: #E91E63;
}
.l-li:nth-child(21) {
    background: #007fc3;
}
.l-li:nth-child(22) {
    background: #5f802f;
}
.l-li:nth-child(23) {
    background: #FFC107;
}
.l-li:nth-child(24) {
    background: #f37217;
}
.cli-logo {
    position: absolute;
    left: -15px;
    overflow: hidden;
    right: -15px;
    -moz-animation: slid2 80s linear infinite;
    -webkit-animation: slid2 80s linear infinite;
    animation: slid2 80s linear infinite;
    top: 0;
    bottom: 0;
}
@keyframes slide2 {
    0% {
        transform: translate3d(0, 0, 0);
    }
    
    100% {
        transform: translate3d(-1692px, 0, 0);
    }
}

/*====Contact-form====*/
.rew-ul {
    background: #ffffff;
    padding: 12px 24px;
}
.rew-ul h5 {
    font-size: 20px;
    font-weight: bold;
    color: #34495e;
    margin-bottom: 5px;
}
.rew-ul p {
    font-weight: 500;
    color: #000;
    font-size: 13px;
    line-height: 14px;
    margin: 0;
}
.conta-ul li {
    list-style: none;
    margin-bottom: 15px;
}
.conta-ul li:nth-child(1) rew-ul {
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #92fe9d 0%, #00c9ff 100%) repeat scroll 0 0;
}
.conta-ul li:nth-child(2) rew-ul {
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #535adf 0%, #00c9ff 100%) repeat scroll 0 0;
}
.section-contact {
    background: #eee;
    position: relative;
    z-index: 1;
}
.section-contact:after {
    content: "";
    background: url(../images/banner/map.png) no-repeat scroll center bottom;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    z-index: -1;
    background-size: 100%;
    top: 0;
    left: 0;
    opacity: .7;
}
.cont-form {
    margin: auto;
    padding: 36px 36px;
    /* border: 1px solid #eee;
	background: #fff;
	    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 36%;
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.06);*/
}
.section-contact .my-form input,
.section-contact .my-form textarea,
.section-contact .my-form select {
    border: 1px solid #eee;
    background: #fff;
    padding: 8px 18px;
    -webkit-appearance: none;
    width: 100%;
    border-radius: 50px;
}
select:focus {
    outline: none !important;
}
.blue-bt {
    background: #01b88e;
}
.my-form input:focus,
.my-form textarea:focus {
    outline: none;
}
.my-form input::placeholder {
    font-weight: 500;
    font-size: 16px;
    color: #a2a2a2;
}
.my-form input,
.my-form textarea,
.my-form select {
    border: 1px solid #eee;
    background: #fff;
    padding: 8px 12px;
    width: 100%;
    border-radius: 4px;
}
.my-form {
    margin: 12px 0;
}
.labe {
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 5px;
    color: #555;
}
.fo-logo {
    position: absolute;
    top: 24px;
}
.fo-logo img {
    width: 150px;
}
.show767 {
    display: none;
}
.close-header img {
    width: 11px;
}
.close-header {
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 24px;
}

/*==about-us==*/
.about-intro .tittle p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px !important;
}
.about-intro .tittle h4 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 15px;
}
.about-intro .tittle {
    padding: 0px 0;
}
.aboutcount .main-ins {
    position: relative;
    background: #262626ab;
    width: 100%;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.06);
    border-radius: 5px;
}
.who-ab {
    background: #fff;
    padding: 20px 10px;
    text-align: center;
    margin: 0 6px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
    margin-bottom: 10px;
}
.who-ab h5 {
    margin: 10px 0;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    color: rgba(0, 0, 0, .8);
}
.who-ab p {
    font-size: 13px;
    text-align: center;
    font-weight: 600;
    color: rgba(0, 0, 0, .6);
    letter-spacing: .3px;
    margin: 0;
}
.who-icon img {
    width: 40px;
    margin: auto;
}
.coutno {
    padding: 24px 15px;
    text-align: center;
}
.coutno h5 {
    color: #fff;
    font-weight: 700;
    font-size: 23px;
}
.coutno h6 {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.main-team {
    width: auto;
    margin: auto;
}
.about-who {
    background: #eeeeee6b;
}
.about-team {
    background: #f3f3f3;
}
.about-intro .tittle p {
    color: #000;
    line-height: 24px;
    margin-top: 24px;
}
.abo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.abo-img {
    height: 288px;
    overflow: hidden;
}
.ab-testi {
    padding: 24px 0 12px;
    position: relative;
}

/*--team--*/
.team-back {
    background: #fafafa;
}
.team-img {
    /* height: 200px; */
}
.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.col-md-team {
    padding: 0px;
    -ms-flex: 0 0 14.286%;
    flex: 0 0 14.286%;
    max-width: 0 0 14.286%;
}
.team-img img {
    width: 100%;
    width: 197px;
    height: 200px;
    transition: all .6s cubic-bezier(.25, .1, .25, 1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-filter: grayscale(0) contrast(100%);
    filter: grayscale(0) contrast(100%);
}
.team-img {
    background: white;
    padding: 10px;
}
.team-img .team-member__hover {
    background-image: linear-gradient(47deg, rgb(238, 130, 25) 0px, rgb(239, 69, 89) 100%)!important;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.team-img:hover img {
    /* filter: grayscale(100%) contrast(200%); */
    
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.team-img .link,
.team-img .team-member__hover {
    opacity: 0;
    transition: all .3s cubic-bezier(.25, .1, .25, 1);
    position: absolute;
}
.team-img:hover .link {
    -webkit-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px);
    opacity: 1;
}
.team-img .link:after {
    content: "";
    position: absolute;
    background: #fff;
    bottom: 11px;
    width: 50px;
    height: 2px;
    left: 0;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(57px);
}
.team-img:hover .team-member__hover {
    opacity: .8!important;
}
.team-back .nav-pills {
    width: fit-content;
    margin: auto !important;
}
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: #535adf;
}
.team-back .nav-pills .nav-link {
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    background: #fff;
    letter-spacing: .5px;
    padding: 9px 26px;
    margin: 0 12px;
    color: #000;
}
.team-main {
    width: fit-content;
    position: relative;
    margin: auto;
}
.team-main:hover .team-name-back {
    opacity: 1;
}
.team-name-back {
    background: rgba(0, 0, 0, .7);
    position: absolute;
    height: 100%;
    left: 0;
    width: 100%;
    top: 0;
    opacity: 0;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
}
.team-in-text h6 {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: .5px;
    margin: 0;
}
.team-in-text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
    padding: 0 15px;
}
.linke-team a {
    color: white!important;
    font-weight: 600;
}
.linke-team a:before {
    content: "";
    position: absolute;
    border-bottom: 3px solid white;
    width: 50px;
    height: 29px;
    right: 0;
}
.linke-team a i {
    color: #000;
}

/* .linke-team a:hover i {
    color: #fff;
} */

/* .linke-team a:hover {
    background: #0077B5;
} */
.team-pop {
    height: 100%;
    overflow: auto;
    position: fixed;
    z-index: 30;
    top: 0px;
    right: 0;
    background: #fafafa;
    transition: 0.5s;
    transform: scale(0);
    width: 100%;
}
.team-popright h5 {
    margin: 0px 0 10px;
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    color: rgba(0, 0, 0, .8);
}
.team-pop .mclose {
    position: absolute;
    top: 15px;
    right: 15px;
}
.main-pp {
    background: #fff;
    padding: 53px 24px 24px;
    border-radius: 4px;
    font-weight: 600;
    color: #2c3e50;
    border: 1px solid #eee;
    position: relative;
}
.team-con {
    position: relative;
}
.team-con img {
    width: 100%;
}
.main-pp img {
    position: absolute;
    width: 32px !important;
    opacity: 1;
    top: 24px;
    transform: rotate(180deg);
    left: 24px;
}
.teamconname {
    bottom: 24px;
    margin-top: 15px;
    right: 0;
    min-width: 220px;
    background: #525ae0;
    padding: 15px 30px 15px;
}
.teamconname h5 {
    margin: 0;
    color: #fff;
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 600;
}
.teamconname p {
    margin: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    font-style: italic;
}
.team-sti {
    position: absolute;
    top: 0;
    left: 0;
    padding-right: 15px;
    height: 100%;
}
.team-onstick {
    position: sticky;
    top: 0;
}
.social li {
    list-style: none;
    display: inline-block;
}
.social {
    border-bottom: 1px solid #eee;
    padding: 24px 0;
}
.social li:nth-child(1) a {
    background: #3b5999;
}
.social li:nth-child(2) a {
    background: #55acee;
}
.social li:nth-child(3) a {
    background: #0077B5;
}
.social li:nth-child(4) a {
    background: #e4405f;
}
.social li:nth-child(5) a {
    background: #cd201f;
}
.social li:nth-child(6) a {
    background: #37474F;
}
.social li a i {
    color: #fff;
}
.social li a {
    height: 34px;
    width: 34px;
    text-align: center;
    line-height: 34px;
    border-radius: 4px;
    display: block;
    margin: 0 auto 0px;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s;
}

/*Checkout*/
.checkout {
    /* background: #3d5186; */
    
    background-image: radial-gradient(#f5f5f5 15%, transparent 5%), radial-gradient(#f5f5f5 15%, transparent 5%);
    background-color: #fff;
    background-position: 0 0, 50px 50px;
    background-size: 20px 20px;
    position: relative;
}
.checkout .midle-fot:nth-child(2) {
    display: none;
}
.checkout-page {
    /* min-height: 100vh;
    padding: 24px 0 24px;
    background: transparent; */
}
.check-form {
    width: 100%;
    position: relative;
    background: #fff;
    border: 1px solid #eee;
    padding: 24px;
    border-radius: 0;
}
.check-header {
    padding-bottom: 15px;
}
.check-form:afters {
    position: absolute;
    content: '';
    width: 250px;
    background: url(../images/icon/ser5.svg);
    right: 0px;
    background-size: cover;
    bottom: 0px;
    background-repeat: no-repeat;
    height: 292px;
}
.service-name h4 {
    text-transform: capitalize;
    color: #34495e;
    font-weight: 800;
    font-size: 24px;
}
.service-name h5 {
    position: relative;
    font-size: 21px;
    margin: 0;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #34495e;
}
.checkoutsection {
    margin: 1.5rem;
}
.check-what {
    width: 100%;
    padding: 14px 5px 2px 15px;
    border: 1px dashed #999;
    border-radius: 4px;
    min-width: 100%;
    overflow: auto;
    height: auto;
    /* width: fit-content;
    padding: 14px 5px 2px 15px;
    border: 1px dashed #999;
    border-radius: 4px;
    min-width: 560px;
    overflow: auto;
    height: 158px; */
}
.checkoutpayment {
    background: #231F20;
    padding: 30px;
    min-height: auto;
    box-shadow: 0 0 10px 0;
    padding-bottom: 0px;
}
.paymentbtn {
    float: right;
    margin-top: 10px;
    /* margin: 30px 0px; */
    
    margin-bottom: 30px;
}
.check-what ul {
    padding-left: 24px;
}
.check-what ul li {
    font-weight: 600;
    color: #555;
    padding: 5px;
}
.check-what h5 {
    font-weight: 600;
    text-align: left;
    font-size: 14px;
    margin: 0 0 9px;
    color: #fff;
}
.check-add h5 {
    font-weight: 600;
    text-align: left;
    font-size: 16px;
    color: #fff;
    margin: 0 0 0px;
    text-transform: capitalize;
}
.check-add p {
    font-size: 10px;
    color: #fff;
    line-height: 23px;
    font-weight: 500;
}
.check-input {
    position: relative;
    /*width: 240px;*/
    
    width: 181px;
    float: right;
}
.check-input button {
    position: absolute;
    top: 0;
    height: 100%;
    padding: 0 12px;
    right: 0;
    border-radius: 0 30px 30px 00px !important;
}
.check-code:focus,
.check-input button {
    outline: none !important;
}
.check-code {
    border: 2px solid #ee7427;
    max-width: 240px;
    background: #fafafa;
    -webkit-appearance: none;
    padding: 10.5px 22px;
    font-size: 10px;
    display: block;
    width: 100%;
    font-weight: 600;
    border-radius: 50px;
}
.list-ch ul li {
    list-style: none;
    padding: 7px 0;
    position: relative;
}
.list-ch ul {
    height: 140px;
    overflow: auto;
    overflow-x: hidden;
}
.list-ch ul li:after {
    border-bottom: 1px dashed #999;
    content: '';
    bottom: 0;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
}
.check-col h4 {
    font-weight: 600;
    text-align: left;
    font-size: 15px;
    color: #fff;
    margin: 0 0 0px;
}
.other-te h5 {
    font-weight: 600;
    text-align: left;
    font-size: 16px;
    color: #fff;
    margin: 0 0 0px;
    text-transform: capitalize;
}
.service-name h5 .offe {
    display: inline-block;
    background: #08ca73;
    color: #fff;
    font-size: 13px;
    position: relative;
    line-height: 17px;
    height: inherit;
    top: -2px;
    padding: 2px 4px;
    border-radius: 2px;
    margin-left: 10px;
    text-transform: uppercase;
    font-weight: bold;
}
.check-left {}
.service-name h5 .offe i {
    font-size: 10px;
    position: relative;
    top: -1px;
}
.foo-check {
    position: absolute;
    bottom: 0px;
}
.heachec p {
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 0px;
    color: rgba(0, 0, 0, .5);
}
.whath5 {
    padding-bottom: 20px;
}
.copyright-img {
    width: 479px;
    float: right;
}
.whattul {
    list-style: none;
}
.whattul li i {
    font-size: 23px;
}
.check-footer {
    background: #231f20;
    padding: 12px 0;
}
.checkout-page {
    margin-top: 0%;
    background-image: url(../../assets/images/banner/banner-background.svg);
    background-color: #fff;
    background-position: 0 0, 50px 50px;
    /* background-size: 20px 20px; */
    
    padding: 20px 0px;
}
.check-other ul li {
    list-style: none;
    padding: 5px 0;
}
.check-col {
    position: relative;
}
.check-col h4 i {
    cursor: pointer;
}
.check-col h4 .mintool:hover .tooltipcheck {
    display: block;
}
.mintool {
    cursor: pointer;
    position: relative;
}
.check-col p {
    padding: 0;
    margin: 0;
}
.tooltipcheck p {
    font-size: 10px;
    text-align: center;
    color: #fff;
    line-height: 12px;
    font-weight: 600;
}
.other-te p {
    font-size: 10px;
    text-align: center;
    color: #fff;
    line-height: 23px;
    font-weight: 500;
}
.tooltipcheck {
    -webkit-transition: all 0.5s linear;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    display: none;
    width: 120px;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    right: -51px;
    padding: 6px;
    bottom: 30px;
    border-radius: 4px;
    position: absolute;
}
.tooltipcheck:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #4c4c4c;
    bottom: -5px;
    right: 0px;
    left: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.drop-check {
    padding-left: 21px;
}
.service-name {
    /* padding-bottom: 24px; */
}
.payment-meth .inputGroup {
    background-color: #fafafa;
    display: inline-block;
    margin-right: 15px;
    border-radius: 0px;
    width: fit-content;
    position: relative;
    border: 1px solid #eee;
}
.payment-meth .inputGroup label {
    padding: 6px 16px;
    width: 100%;
    letter-spacing: .5px;
    font-size: 15px;
    display: block;
    text-align: left;
    color: #3C454C;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 200ms ease-in;
    overflow: hidden;
    margin: 0;
}
.payment-meth .inputGroup label:before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: '';
    background-color: #5562eb;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: -1;
}
.payment-meth .inputGroup label:after {
    display: none;
    width: 32px;
    height: 32px;
    content: '';
    border: 2px solid #D1D7DC;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
    background-repeat: no-repeat;
    background-position: 2px 3px;
    border-radius: 50%;
    z-index: 2;
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 200ms ease-in;
}
.payment-meth .inputGroup input:checked~.inputGroup {
    border-color: #5562eb;
}
.payment-meth .inputGroup input:checked~label {
    color: #fff;
}
.payment-meth .inputGroup input:checked~label:before {
    -webkit-transform: translate(-50%, -50%) scale3d(56, 56, 1);
    transform: translate(-50%, -50%) scale3d(56, 56, 1);
    opacity: 1;
}
.payment-meth .inputGroup input:checked~label:after {
    background-color: #54E0C7;
    border-color: #54E0C7;
}
.payment-meth .inputGroup input {
    width: 32px;
    height: 32px;
    order: 1;
    z-index: 2;
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    visibility: hidden;
}
.payment-meth h4 {
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: rgba(0, 0, 0, .8);
}
.main-cright {
    border: 1px solid #eee;
    background: #fafafa;
    padding: 12px;
}
.main-cright h4 {
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: rgba(0, 0, 0, .8);
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.left-sam div {
    display: inline-block;
    width: 49%;
    font-size: 15px;
    font-weight: 600;
}
.left-sam {
    margin-bottom: 5px;
}
.left-sam.grand div {
    font-weight: 700;
    margin-top: 5px;
}
.close-video {
    position: absolute;
    cursor: pointer;
    top: -32px;
    height: 32px;
    line-height: 32px;
    background: #fff;
    text-align: center;
    width: 32px;
    border-radius: 50%;
    border: 1px solid #fff;
    right: -40px;
    z-index: 1;
}
.videomodal .modal-content {
    background-color: transparent;
    border: none;
}
.modal .close-video i {
    color: #555;
    font-size: 20px;
}
.checkin:focus {
    outline: none;
}
.checkin {
    /* width: 80px;*/
    
    width: 57px;
    text-align: center;
    /* border-left: 0 !important; */
    
    border-radius: 0;
    border: 1px solid #fafafa;
    height: 24px;
    background: #fafafa;
}
.plus-main {
    font-size: 18px;
    border: 1px solid #999;
    padding: 0;
    border-radius: 0;
    color: #fff;
    height: 24px;
    font-weight: 700;
    background: #999;
    line-height: 20px;
    text-align: center;
    width: 24px;
    margin: 0 auto;
    cursor: pointer;
}
.plus-main.cut {
    border-radius: 30px 0px 0 30px;
}
.plus-main.adds {
    border-radius: 0px 30px 30px 0px;
}
.checkadd {
    display: flex;
    margin: 0.0px 0;
}
.totgrand {
    position: relative;
    font-size: 19px;
    margin: 0;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: capitalize;
    color: #fff;
    float: right;
}
.add-grand .totgrand {
    line-height: 37px;
}
.list-start h4 {
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    color: rgba(0, 0, 0, .8);
}
.list-start h4::after {
    background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
    bottom: -8px;
    height: 3px;
    left: 0;
    content: '';
    margin: 0 auto;
    position: absolute;
    width: 30px;
    /* border-radius: 50px; */
}
.list-start ul li {
    list-style: none;
}
.list-start ul li a {
    color: rgba(0, 0, 0, .7);
    margin: 0;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: .5px;
    font-weight: 600;
    margin-top: 20px;
}
.list-start {
    margin-bottom: 24px;
}
.listingmy {
    padding: 50px 0;
    margin-top: 50px;
}
.listingmy .nav-pills .nav-link.active:after {
    display: none;
}
.listingmy .serback {}
.listingmy .mlast {
    position: relative;
}
.listingmy .last-ser {
    margin-bottom: 15px;
    min-height: auto;
    padding: 24px 15px;
    height: auto;
}
.listingmy .last-ser p {
    margin: 4px 0;
    padding: 0 20px;
}

/*.listingmy .m-head {
    text-align: center;
    font-size: 15px;
    margin-top: 10px;
    font-weight: 700;
    letter-spacing: .4px;
    color: #34495e;
}*/
.listingmy .row .col-md-4:nth-child(2) .ser-icon {
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #92fe9d 0%, #00c9ff 100%) repeat scroll 0 0;
}
.listingmy .row .col-md-4:nth-child(3) .ser-icon {
    background-image: -moz-linear-gradient(55deg, #f075c7 0%, #9191ff 100%);
    background-image: -webkit-linear-gradient(55deg, #f075c7 0%, #9191ff 100%);
}
.listingmy .row .col-md-4:nth-child(4) .ser-icon {
    background-image: -moz-linear-gradient(55deg, #75b2f0 0%, #75f094 100%);
    background-image: -webkit-linear-gradient(55deg, #75b2f0 0%, #75f094 100%);
}
.listingmy .row .col-md-4:nth-child(5) .ser-icon {
    background-image: -moz-linear-gradient(55deg, #7575f0 0%, #75b2f0 100%);
    background-image: -webkit-linear-gradient(55deg, #7575f0 0%, #75b2f0 100%);
}
.listingmy .row .col-md-4:nth-child(6) .ser-icon {
    background-image: -moz-linear-gradient(55deg, #7575f0 0%, #75b2f0 100%);
    background-image: -webkit-linear-gradient(55deg, #7575f0 0%, #75b2f0 100%);
}

/*==career==*/
.career-bene {}
.career-bene .who-ab h5 {
    margin: 15px 0 0;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: rgba(0, 0, 0, .8);
}
.car-sectionimg {
    height: 220px;
}
.car-sectionimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post-name {
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: rgba(0, 0, 0, .8);
}
h4.main-post p {
    margin: 5px 0 0;
    font-size: 15px;
    text-align: left;
    font-weight: 600;
    color: rgba(0, 0, 0, .6);
}
.jov-li {
    margin-bottom: 12px;
}
.main-jobli li {
    border: 1px dashed rgba(0, 0, 0, .4);
    padding: 12px 14px;
    margin: 5px 15px 5px 0;
    width: fit-content;
    display: inline-block;
}
.main-post {
    margin: 0;
}
.main-post .viewmo {
    text-align: left;
    font-size: 13px;
    font-weight: 800;
    line-height: 14px;
    font-style: italic;
    margin: 5px 0 0;
    color: rgba(0, 0, 0, .5);
}
.career-job {
    background: #fafafa;
    border-top: 1px solid #eee;
}
.main-cate {
    text-align: left;
    font-size: 22px;
    position: relative;
    margin-bottom: 18px;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
}
.main-cate:before {
    background: rgba(0, 0, 0, 1);
    bottom: -10px;
    height: 4px;
    left: 0;
    content: '';
    margin: 0 auto;
    position: absolute;
    width: 31px;
    border-radius: 0;
}
.job-ul li {
    list-style: none;
}
.career-pop {
    height: 100%;
    overflow: auto;
    position: fixed;
    z-index: 30;
    top: 0px;
    right: 0;
    background-color: #fafafa;
    transition: 0.5s;
    transform: scale(0);
    width: 100%;
}
.check-footer.fixed {
    position: relative;
    width: 100%;
    bottom: 0px;
}
.top-car {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.career-pop .post-name {
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    color: #34495e;
}
.car-u li {
    list-style: none;
    display: inline-block;
    margin-right: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    color: #27ae60;
}
.car-u li:nth-child(2) {
    color: #3498db;
}
.top-de p {
    margin: 0;
}
.car-u {
    margin-top: 5px !important;
}
.des-job h5 {
    color: #34495e;
    font-size: 17px;
    font-weight: 700;
}
.des-job ul li {
    list-style: none;
    margin: 8px 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
}
.des-job {
    margin-top: 24px;
}
.mclose {
    height: 34px;
    width: 34px;
    border-radius: 50%;
    border: 1px solid #eee;
    text-align: center;
    line-height: 32px;
    cursor: pointer;
    margin-left: auto;
}
.main-all {
    padding: 15px 24px;
    background: #fff;
}
.job-sum h5 {
    text-align: center;
    color: #34495e;
    font-size: 17px;
    font-weight: 700;
}
.job-sum {
    margin-top: 24px;
    padding: 15px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 4px;
}
.job-sum li {
    list-style: none;
    text-align: left;
    font-size: 15px;
    margin: 6px 0;
    font-weight: 600;
    color: #34495e;
}
.job-sum li span {
    font-weight: 500 !important;
}
.backer-img {
    text-align: center;
}
.backer-img img {
    width: 60%;
    margin: auto;
    height: 60px;
    object-fit: contain;
}
.about-team .col-md-team {}
.about-team .team-img {
    /* height: 155px;
    border-radius: 50%;
    margin: auto;
    width: 155px;
    position: relative;
    overflow: hidden; */
}
.team-nameab {
    text-align: center;
}
.team-nameab h6 {
    text-align: center;
    font-weight: 600;
    color: #000;
    /* margin: 5px 0; */
    
    font-size: 15px;
    cursor: auto;
    margin: 18px 0 8px 0;
}
.team-nameab span {
    text-align: center;
    font-weight: 600;
    color: #000;
    /* margin: 5px 0; */
    
    font-size: 13px;
}
.team-img:hover .linke-team {
    opacity: 1;
}
.team-img .link {
    left: 30px;
    bottom: 0px;
    color: #fff;
    z-index: 500;
    display: block;
    padding-bottom: 6px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}
.about-team .linke-team {
    /* position: absolute;
    right: 8px;
    bottom: 24px; */
    
    position: absolute;
    left: 20px;
    bottom: 45px;
    opacity: 0;
}

/* .about-team .linke-team a {
    height: 28px;
    width: 28px;
    text-align: center;
    line-height: 28px;
    background: #01b88e;
    border-radius: 50%;
    display: block;
    margin: 0 auto 10px;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s;
} */
.about-team .linke-team a i {
    color: #fff;
}
.how-icon img {
    width: 100%;
}
.how-icon {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    text-align: center;
    background: #fff;
    line-height: 80px;
    font-size: 30px;
    margin: auto;
    color: #fff;
    position: relative;
    z-index: 1;
}
.how-ab {
    text-align: center;
}
.about-how {
    background: #fafafa;
}
.ab-wo:nth-child(1) .how-ab .how-icon {
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #92fe9d 0%, #00c9ff 100%) repeat scroll 0 0;
}
.ab-wo:nth-child(2) .how-ab .how-icon {
    background: -webkit-linear-gradient(55deg, #f075c7 0%, #9191ff 100%);
}
.ab-wo:nth-child(3) .how-ab .how-icon {
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #535adf 0%, #00c9ff 100%) repeat scroll 0 0;
}
.ab-wo:nth-child(4) .how-ab .how-icon {
    background: -webkit-linear-gradient(55deg, #f075c7 0%, #9191ff 100%);
}
.how-ab h5 {
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    color: rgba(0, 0, 0, .8);
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    line-height: 34px;
    margin: 0;
    color: rgba(0, 0, 0, .8);
}
.how-line {
    position: relative;
}
.how-line:after {
    position: absolute;
    top: 40px;
    margin: auto;
    right: 0;
    z-index: 0;
    height: 3px;
    width: 67%;
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #0accf8 0%, #505de0 100%) repeat scroll 0 0;
    content: '';
    left: 0;
}
.down-bro {}
.main-bor {
    padding: 42px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/*.down-bro:hover:after{
	background-size: 120%;
}*/
.main-bor:before {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(8, 25, 43, .15);
    background-image: -webkit-linear-gradient(rgba(8, 25, 43, .15), rgba(8, 25, 43, .85));
    background-image: linear-gradient(rgba(8, 25, 43, .15), rgba(8, 25, 43, .85));
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}
.down-bro:after {
    transition: all 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/brochare-img.jpg);
    background-size: 114%;
    background-position: center center;
    width: 100%;
    height: 100%;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    content: "";
    z-index: -2;
}
.down-bro2:after {
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/img2.jpg);
    background-size: 114%;
    background-position: center center;
    width: 100%;
    height: 100%;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    content: "";
    z-index: -2;
}
.down-bro img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.brochare {
    position: relative;
    background-attachment: fixed;
}
.brochare:afte {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #33c6a4 0%, #ffffff 100%) repeat scroll 0 0;
}
.brochare-pop {
    height: 100%;
    overflow: auto;
    position: fixed;
    z-index: 30;
    top: 0px;
    right: 0;
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #33c6a4 0%, #ffffff 100%) repeat scroll 0 0;
    transition: 0.5s;
    transform: scale(0);
    width: 100%;
}
.bor-in {
    background: #fff;
    position: absolute;
    padding: 24px;
    border-radius: 4px;
    left: 50%;
    right: 0;
    top: 50%;
    width: 31%;
    transform: translate(-50%, -50%);
}
.brochare-pop .mclose {
    position: absolute;
    top: 24px;
    right: 24px;
}
.offe {
    display: inline-block;
    background: #08ca73;
    color: #fff;
    font-size: 11px;
    position: relative;
    line-height: 17px;
    height: 17px;
    top: -2px;
    padding: 0 4px;
    border-radius: 2px;
    margin-left: 10px;
    text-transform: uppercase;
    font-weight: bold;
}
.sup-in {
    padding: 32px 70px;
    margin-left: 40px;
    margin-right: -56px;
}
.sup-box {
    position: relative;
    box-shadow: 0 1px 15px 1px rgba(0, 0, 0, .04), 0 1px 6px rgba(0, 0, 0, .04);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease 0s;
}
.sup-in h5 {
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    color: #34495e;
}
.sup-in p {
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    color: rgba(0, 0, 0, .5);
}
.sup-img img {
    width: 100px;
    position: absolute;
    left: 5px;
    top: 50%;
    transition: all 0.4s ease 0s;
    transform: translate(0%, -50%);
}
.sup-col {
    opacity: 0;
}
.sup-box:hover .sup-col {
    opacity: 1;
}
.sup-box:hover .sup-bal {
    opacity: 0;
}
.sup-box .sup-bal {
    opacity: .7;
}
.sup-box:hover {
    box-shadow: 1px 5px 16px rgba(0, 0, 0, .1);
}

/*==policy==*/
.policy-head {
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #000;
}
.sec-pol p {
    margin: 0px 0 5px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}
.part-section .who-ab {
    background: #fafafa;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
}
.with-section .who-ab {
    background: none;
    border: none;
    box-shadow: none;
}
.site-se a {
    font-size: 13px;
    color: #000;
}
.site-se a::after {
    content: "|";
    color: #999;
    margin-left: 4px;
}
.site-se a:hover {
    color: #000;
    text-decoration: underline !important;
}
input:focus {
    outline: none;
}
.servi button {
    outline: none !important;
}
.pra-footer p a {
    color: #5356a7;
}
.servi button {
    position: absolute;
    top: 0;
    box-shadow: none !important;
    height: 100%;
    padding: 0 12px;
    right: 0;
    border-radius: 0 30px 30px 00px !important;
}
.servi {
    position: relative;
}
.servi input {
    border: 1px solid #0000001f;
    background: #fafafa;
    padding: 10px 22px;
    font-size: 15px;
    display: block;
    width: 100%;
    font-weight: 600;
    border-radius: 50px;
}
.suppo-pop {
    height: 100%;
    overflow: auto;
    position: fixed;
    z-index: 30;
    top: 0px;
    right: 0;
    background: #fafafa;
    transition: 0.5s;
    transform: scale(0);
    width: 100%;
}
.suppo-pop1 {
    height: 100%;
    overflow: auto;
    position: fixed;
    z-index: 30;
    top: 0px;
    right: 0;
    background: #fafafa;
    transition: 0.5s;
    transform: scale(0);
    width: 100%;
}
.support-box {
    background: #FFF;
    padding: 15px;
}
.support-box {
    background: #fff;
}
.suppo-pop .mclose {
    position: absolute;
    top: 15px;
    right: 15px;
}
.suppo-pop1 .mclose {
    position: absolute;
    top: 15px;
    right: 15px;
}
.list-grid .nav-link {
    display: block;
    padding: 12px 18px;
    background: #eee;
    font-size: 18px;
    font-weight: 600;
    color: rgba(0, 0, 0, .6);
    border-left: 2px solid #f8f8f8;
    position: relative;
    min-height: auto;
    border-radius: 0 !important;
}
.myservice .list-grid {
    margin-top: 36px!important;
    display: flex;
    background: none;
}
.myservice .list-grid .nav-link.active,
.myservice .list-grid .show>.nav-link {
    color: #fff;
    background-color: #01b88e;
    border-radius: 0;
    border-color: #01b88e;
    overflow: hidden;
}
.center-m {
    position: absolute;
    top: 50%;
    width: 18px;
    z-index: 1;
    left: 50%;
    background: #fff;
    height: 21px;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    font-size: 14px;
    color: #909090;
}
.m-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #f0f0f0;
    height: 100%;
    width: 1px;
}
.comli a.serviceatag:hover {
    border-bottom: 3px solid #535adf;
}
.comli a.serviceatag:hover .serviceatag {
    border-bottom: 3px solid #535adf;
}

/*.main-me:hover .serviceatag{
	border-bottom:3px solid #535adf;
}*/
.main-me:hover .serviceatag {
    /* border-bottom: 3px solid #535adf; */
    
    top: 86%;
    position: absolute;
    margin: 0 0 0 -6px;
    width: 19px;
    height: 24px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 4px 0 0 0;
    background: #01b88e;
    -webkit-box-shadow: -3px -3px 5px rgba(82, 95, 127, .04);
    box-shadow: -3px -3px 5px rgba(82, 95, 127, .04);
    will-change: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

/*
.company-body .serviceatag{
	border-bottom:3px solid #535adf;
}
.company-body .serviceatag:hover{
	border-bottom:3px solid #fff;
}
.company-body .main-me:hover .serviceatag{
	border-bottom:3px solid #fff;
}*/
.company-body .foot-con,
.service-body .foot-con {
    /* display: none; */
}
.singleteam .mclose {
    position: absolute;
    top: 15px;
    right: 15px;
}
.product {
    margin-right: 30px;
}

/*--Map--*/
.mapp {
    position: relative;
    background: #bcece242;
    z-index: 1;
}
.mapp:before {
    content: "";
    background: url(../images/banner/map.png) no-repeat scroll center bottom;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    z-index: -1;
    left: 0;
    opacity: .7;
}
.getin {
    background: -webkit-linear-gradient(55deg, #01b88e 0%, #f9fdfd 100%);
    padding: 24px 36px;
}
.mapp .header-bt {
    background: #01b88e !important;
    color: #f9fdfd !important;
    padding: 15px 30px;
    margin-top: 24px;
    font-size: 13px !important;
}
.fot-ab a:hover {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}
.fot-ab a {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}
.withlogo {
    text-align: center;
    margin-top: 7%;
}
.withlogo h5 {
    margin: 0px 0 24px;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .8);
}
.withlogo img {
    width: 50%;
}
.intab {
    padding: 0 24px;
}
.fea-pro .intab h5 {
    margin: 10px 0;
    text-align: center;
    font-size: 17px;
    margin: 5px 0;
    font-weight: 600;
    color: rgba(0, 0, 0, .8);
}
.fea-pro .nav-pills .nav-link.active .intab h5,
.fea-pro .nav-pills .show>.nav-link .intab h5 {
    color: #01b88e;
}
.fea-pro .intab img {
    width: 50px;
}
.fea-pro .nav {
    width: fit-content;
    margin: auto !important;
}
.fea-pro .nav-pills .nav-link.active,
.fea-pro .nav-pills .show>.nav-link {
    color: #fff;
    background-color: transparent;
}
.pro-screen img {
    width: 100%;
}
.proscr-text h5 {
    text-align: left;
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: #34495e;
    margin-top: 10px;
}
.proscr-text h5:after {
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 3px;
    width: 30px;
    border-radius: 00px;
    background: #34495e;
    content: '';
}
.proscr-text p {
    margin-top: 18px;
}
.proscr-text ul {
    padding-left: 20px;
}
.about-pro {
    background: #fafafa;
}
.new-product {
    position: relative;
    overflow: hidden;
}

/*.new-product:after{
	background: url(../images/product/scrren.png);
    content: '';
    right: -55%;
    position: absolute;
    top:22%;
    height: 100%;
    box-shadow: 0px 8px 35px 3px rgba(0, 0, 0, .3);
    width: 100%;
    z-index: -1;
}*/
.pro1 {
    position: relative;
}
.pro1::before {
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 100%;
    z-index: 1;
    position: absolute;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    background: linear-gradient(to right, #ffffff, rgba(244, 248, 255, 0));
}
.pro1::after {
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    width: 250px;
    height: 100%;
    z-index: 1;
    position: absolute;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    background: linear-gradient(to left, #ffffff, rgba(244, 248, 255, 0));
}
.proscrrenm .pro-screen img {
    width: 80% !important;
    margin: auto;
}
.fea-proprp .who-ab {
    margin-bottom: 15px;
}
.inputGroupche {
    /*width:100px;*/
    
    width: 58px;
    background: #fafafa;
    float: left;
}
.inputGroupche label {
    /*padding: 8px 15px;*/
    
    padding: 5px 7px;
    width: 100%;
    margin: 0;
    display: block;
    text-align: left;
    color: #3C454C;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 200ms ease-in;
    overflow: hidden;
    font-size: 14px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.inputGroupche label:before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: '';
    background-color: #3d5186;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: -1;
}
.inputGroupche label:after {
    /* width: 28px;
    height: 28px;*/
    
    width: 22px;
    height: 23px;
    content: '';
    border: 2px solid #D1D7DC;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
    background-repeat: no-repeat;
    background-position: -2px -3px;
    border-radius: 50%;
    z-index: 2;
    position: absolute;
    right: 1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 200ms ease-in;
}
.inputGroupche input:checked~label {
    color: #fff;
}
.inputGroupche input:checked~label:before {
    -webkit-transform: translate(-50%, -50%) scale3d(56, 56, 1);
    transform: translate(-50%, -50%) scale3d(56, 56, 1);
    opacity: 1;
}
.inputGroupche input:checked~label:after {
    background-color: #f8a440;
    border-color: #f8a440;
}
.inputGroupche input {
    width: 32px;
    height: 32px;
    order: 1;
    z-index: 2;
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    visibility: hidden;
}
.code11 {
    text-align: left !important;
    width: auto !important;
    margin: inherit !important;
    height: auto !important;
}
.let-input {
    position: relative;
}
.let-input input {
    width: 100%;
    background: #dee2e652;
    border-radius: 25px;
    color: #38385f;
    font-weight: 600;
    border: none;
    padding: 10px 170px 10px 24px;
}
.let-input button {
    position: absolute;
    top: 2px;
    border-radius: 25px !important;
    right: 4px;
    background: #01b88e;
    color: #fff;
    line-height: 17px !important;
    box-shadow: none;
}
.comstep {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0px;
    margin: 0;
    position: relative;
}
.comstep::before {
    content: '';
    width: 100%;
    height: 2px;
    display: block;
    background: #e1e1e1;
    position: absolute;
    z-index: 0;
}
.comstep::after {
    content: '';
    height: 2px;
    display: block;
    background: #5fdb6a;
    position: absolute;
    z-index: 0;
}
ul.step-1::after {
    width: 0%;
}
ul.step-2::after {
    width: 50%;
}
ul.step-3::after {
    width: 100%;
}
.comstep li span {
    width: 60px;
    height: 60px;
    position: relative;
    font-size: 20px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0e0e0;
    color: #999;
    border-radius: 50px;
    border: 2px solid white;
    box-shadow: 0px 0px 5px #ccc;
    font-weight: bold;
}
.comstep li.active span {
    background: #5fdb6a;
    box-shadow: 0px 0px 5px #5fdb6a;
    color: white;
}
.comstep li {
    position: relative;
}
.comstep li h6 {
    margin: 0;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    position: absolute;
    line-height: 24px;
    bottom: -28px;
    left: 0;
    right: 0;
}
.our-table tr:nth-child(even) {
    background-color: #f2f2f2;
}
.our-table td {
    text-align: center;
    padding: 8px 4px;
    font-size: 11px;
}
.checkst {
    padding: 24px 0;
    background: #fafafa;
    box-shadow: 0 1px 9px 1px rgba(0, 0, 0, .05);
}
.st-nav {
    width: fit-content;
    margin: 24px auto !important;
}
.sts .nav2 li .sta {
    border: 1px solid #4565de;
    color: #758698;
    padding: 7px 19px 7px;
    border-radius: 3px;
    letter-spacing: .5px;
    background: #4565de;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
}
.tab-ul {
    padding: 0;
    margin: 0;
}
.tab-ul li {
    list-style: none;
    display: inline-block;
    width: 49%;
}
.tab-ul li {
    background: #fff;
    border: 1px solid #eee;
    padding: 7px 18px;
    font-size: 14px;
}
.tab-ul li:nth-child(1) {
    text-align: right;
    font-weight: 700;
}
.tab-ul li:nth-child(2) {
    text-align: left;
    font-weight: 600;
}
.st-nav .nav-link.active,
.st-nav .show>.nav-link {
    color: #fff;
    background-color: #4565dd !important;
}
.st-nav .nav-link {
    border-radius: 0.25rem;
    border-radius: 0 !important;
    background: #eee;
    color: #999;
    font-weight: 700;
    position: relative;
    font-size: 15px;
    letter-spacing: .2px;
}
.st-nav .nav-link.active:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #4565dd;
    bottom: -5px;
    right: 0px;
    left: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.main-add {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    background: #fff;
}
.our-table th {
    margin: 0 4px !important;
    text-align: center;
    padding: 10px 4px;
    color: #000;
    font-weight: 700;
    font-size: 12px;
}
.our-table {
    width: 100%;
    background: #fff;
}
.mytb {
    width: 100%;
    overflow: auto;
}
.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 15px solid rgb(228, 228, 228)! important;
    border-radius: 0.3rem;
    outline: 0;
    height: 434px;
}
.our_services_new ul.tabs {
    width: 100%;
    /* border: 1px solid #f6f4f4; */
    /* background: #fff; */
    
    margin: 0 auto;
    text-align: center;
    display: flex;
    margin-bottom: 30px!important;
    padding: 0;
    justify-content: center;
}
.our_services_new ul.tabs li a.active {
    border: 3px solid transparent;
    border-image: url('../../assets/images/icon/bg-black.svg') 0 0 10;
    filter: invert(1);
}
.our_services_new ul.tabs li a {
    float: left;
    margin: 0 20px;
    cursor: pointer;
    padding: 15px 14px !important;
    color: #000;
    font-weight: 600;
    overflow: hidden;
    position: relative;
    border: 3px solid transparent;
}
.last-ser:hover {
    background: #f8f8f8;
    box-shadow: 0px 3px 8px 0px rgba(12, 0, 46, 0.08);
    /* text-align: left; */
}

/************************index csss new***************************/
.hero-main {
    position: relative;
    box-shadow: 0 3px 5px 1px rgba(0, 0, 0, .06);
    background: #f4f9fe;
}
.hero-main .firstblock {
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
}
.hero-heading {
    font-size: 38px;
    font-weight: 700;
    color: #000;
    line-height: 1.3em;
    /* margin-top: 5%; */
    
    margin-bottom: 20px;
}
.text-primary {
    color: #000!important;
    font-size: 36px;
    line-height: 1.6em;
}
.hero-main {
    margin-top: 0px;
}
.hidden-sm img {
    position: relative;
    width: 92%;
    margin-left: 8%;
}
.hero-client-container {
    position: absolute;
    /* bottom: 0; */
    
    left: 0;
    right: 0;
    height: 80px;
    line-height: 80px;
    background-color: #fff;
    width: 100%;
    z-index: 1;
    box-shadow: 0 3px 4px 0 #dddddd6b;
}
.press-release-box {
    display: flex;
    vertical-align: middle;
}
.press-release-logo {
    flex-grow: 1;
    text-align: center;
}
.press-release-logo img {
    filter: grayscale(1);
}
.testsl .owl-dots {
    display: none!important;
}
.press-release-logo:hover img {
    filter: grayscale(0);
}
.text-black-sub-heading {
    color: #000;
    font-size: 28px;
    line-height: 1.3em;
    margin-bottom: 0;
    margin-top: 30px;
    /* text-align:center; */
    
    font-weight: 600;
}
.main5 ul li a {
    padding: 0!important;
}
.slider {
    margin-bottom: 4rem;
}
.text-normal,
.text-normal-para {
    color: #000;
    line-height: 1.6em;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 20px;
}
blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eee;
    margin-top: 20px;
    margin-bottom: 10px;
}
.quote {
    margin-top: 0;
    font-size: 16px;
    font-style: normal;
    color: #525252;
    margin-bottom: 0px!important;
}
.imageblockfeature {
    background-size: cover;
    background-position: center;
    width: 78%;
    height: 100%;
}
.mainimageblock {
    background: #2a4c79e0;
    position: absolute;
    width: 73%;
    height: 112%;
    z-index: -1;
    /* left: 0; */
    /* margin-left: -76px; */
    
    top: -6%;
    right: 15%;
}
.featuredblog {
    margin-top: 3rem;
    margin-bottom: 2rem;
}
.imageblockfeature1 {
    float: right;
}
.mainimageblock1 {
    background: #96a386;
    position: absolute;
    width: 73%;
    height: 112%;
    z-index: -1;
    /* left: 0; */
    /* margin-left: -76px; */
    
    top: -6%;
    left: 15%;
}
.mainimageblock2 {
    background: #e7e7e7!important;
}
.software_featured_item .s_icon .imgicon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-top: -22px;
}
.software_featured_item .s_icon {
    display: inline-block;
    position: relative;
}
.software_featured_item h5 {
    font-size: 16px;
    margin: 15px 0px 15px;
    color: #000;
    font-weight: 600;
}
.software_featured_item p {
    color: #7a7a7a;
    font-size: 12px;
    margin: 0;
}
.scrollsection {
    background-image: linear-gradient(47deg, rgb(238, 130, 25) 0px, rgb(239, 69, 89) 100%);
}
.clients_newArea {
    display: inline-block;
    margin: auto!important;
}
.clients_newArea ul {
    list-style: none;
}
.clients_newArea img {
    vertical-align: middle;
    max-height: 55px;
    max-width: 130px;
    height: 34px;
    display: inline-block;
}
.clients_newArea li {
    float: left;
    text-align: center;
    position: relative;
    vertical-align: middle;
    padding-right: 34px;
}
.service_box_bg {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
    padding: 12px;
    min-height: 510px;
}
.service_box_bg h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    border-bottom: 1px solid #eceaea;
    padding: 10px;
    line-height: 24px;
    margin: 0;
}
.service_price {
    background: #f5fbff;
    padding: 12px;
    margin: 15px 0;
}
.service_price h3 {
    font-size: 44px;
    color: #000;
    font-weight: 500;
    margin: 0px;
}
.mainmenus {
    display: flex;
}
.pdots {
    text-align: center;
    /* width: auto; */
    /* margin: auto; */
    
    font-size: 34px!important;
    margin: 0px!important;
    width: 98%!important;
}
.service_box_bg p {
    color: #7a7a7a;
    margin: 14px;
    display: inline-block;
    min-height: auto;
    font-size: 12px;
}
.service_box_bg ul li {
    list-style: decimal;
    font-size: 12px;
    margin: 0px 31px;
    color: #7a7a7a;
}
.service_price h3 span {
    font-size: 16px;
    display: block;
}
.service_price i {
    font-size: 28px;
    font-weight: normal;
    vertical-align: top;
    position: relative;
    top: 7px;
    padding-right: 5px;
}
.know-more {
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
    margin-top: 10%;
    position: relative;
}
.service_box_bg a {
    color: #436aee;
    font-weight: 600;
}
.tab-pane {
    display: none;
    margin-bottom: 30px;
}
.tab-pane.active {
    display: block;
}
.sir-start .row {
    justify-content: center;
}
.tab_drawer_heading1 {
    display: none;
}
.responsive-view1 {
    display: none;
}
.fivereasons_new1 p {
    color: #7a7a7a;
    font-size: 12px;
    padding-left: 75px;
    margin: 0;
}
.fivereasons_new1 h4 {
    font-size: 14px;
    color: #000;
    padding-left: 75px;
    font-weight: 600;
}
.pull-left {
    float: left;
}
.reasonblog {
    padding: 30px 10px;
    line-height: 19px;
}
.media-and-recognitions ul li.et {
    background: url(../../assets/images/new_homepage_imgs.png) 14px -40px;
    background-repeat: no-repeat;
    width: 140px;
    height: 98px;
    margin-right: 40px;
}
.media-and-recognitions ul li.forbes {
    background: url(../../assets/images/new_homepage_imgs.png) -160px -40px;
    background-repeat: no-repeat;
    width: 168px;
    height: 98px;
    margin-right: 40px;
}
.media-and-recognitions ul li.tfe {
    background: url(../../assets/images/new_homepage_imgs.png) -368px -48px;
    background-repeat: no-repeat;
    width: 168px;
    height: 110px;
    margin-right: 40px;
}
.media-and-recognitions ul li.business {
    background: url(../../assets/images/new_homepage_imgs.png) -576px -38px;
    background-repeat: no-repeat;
    width: 168px;
    height: 110px;
    margin-right: 40px;
}
.media-and-recognitions ul li.yourstory {
    background: url(../../assets/images/new_homepage_imgs.png) -770px -38px;
    background-repeat: no-repeat;
    width: 168px;
    height: 110px;
    margin-right: 20px;
}
.media-and-recognitions ul li {
    display: inline-block;
    width: 19%;
    text-align: center;
    position: relative;
    vertical-align: middle;
}
.media-and-recognitions ul {
    list-style: none;
}
.our_supports {
    border-top: 1px solid #e7e9e9;
    margin: 24px;
    padding-bottom: 30px;
    padding-top: 25px;
}
.our_supports h3 {
    font-size: 28px !important;
}
.our_supports_tab ul.tabs {
    width: 100%;
    margin: auto!important;
    text-align: center;
    display: flex;
    padding-left: 0;
    justify-content: center;
}
.our_supports_tab ul.tabs li a {
    float: left;
    margin: 0 auto;
    cursor: pointer;
    padding: 10px 21px;
    color: #000;
    font-weight: 500;
    overflow: hidden;
    position: relative;
    border: 3px solid transparent;
    border: 1px solid #f8f9fa;
    background-color: #eee;
    font-size: 13px;
    width: 100%;
}
.our_supports_tab ul.tabs li {
    width: 18%;
}
.our_supports_tab ul.tabs li a.active {
    box-shadow: 0 8px 29px 0 rgba(176, 176, 176, 0.48);
    position: relative;
    background-color: white;
}
.our_supports_tab ul.tabs li a.active:after {
    content: "";
    position: absolute;
    top: 94%;
    left: 50%;
    transform: translateX(-50%);
    height: 0;
    width: 100%;
    /* border-top: 12px solid white; */
    
    border-bottom: 8px solid black;
}
.investorsArea .kalaari {
    background: url(../../assets/images/new_homepage_imgs.png) -60px -368px;
    background-repeat: no-repeat;
    width: 168px;
    height: 110px;
    margin: auto!important;
}
.investorsArea .microsoft {
    background: url(../../assets/images/new_homepage_imgs.png) -240px -368px;
    background-repeat: no-repeat;
    width: 230px;
    height: 110px;
    margin: auto!important;
}
.investorsArea .maatram {
    background: url(../../assets/images/new_homepage_imgs.png) -480px -368px;
    background-repeat: no-repeat;
    width: 230px;
    height: 110px;
    margin: auto!important;
}
.b1:hover .layer1 {
    opacity: 1;
}
.layer1 {
    position: absolute!important;
    width: 25%;
    background: #1d2243;
    color: white;
    padding: 21px;
    font-size: 13px;
    margin-top: 10pxz;
    top: 0;
    width: 100%;
    z-index: 2;
    opacity: 0;
    font-weight: 600;
}
.reslayer1 {
    position: absolute!important;
    width: 25%;
    background: #1d2243;
    color: white;
    padding: 18px;
    font-size: 12px;
    margin-top: 10pxz;
    top: 0px;
    width: 100%;
    z-index: 2;
    opacity: 0;
    font-weight: 600;
    left: 0;
}
.box_1:hover .reslayer1 {
    opacity: 1;
}
.investorsArea .chugh {
    background: url(../../assets/images/new_homepage_imgs.png) -704px -368px;
    background-repeat: no-repeat;
    width: 230px;
    height: 110px;
    margin: auto!important;
}
.investorsArea ul {
    list-style: none;
    display: inline-flex;
}
.investorsArea {
    margin-top: 34px;
    text-align: center;
}
.partnersArea .startupindia {
    background: url(../../assets/images/new_homepage_imgs.png) -746px -542px;
    background-repeat: no-repeat;
    width: 260px;
    height: 110px;
    margin-left: 37%;
}
.partnersArea .aprera {
    background: url(../../assets/images/new_homepage_imgs.png) -288px -542px;
    background-repeat: no-repeat;
    width: 140px;
    height: 110px;
    margin-left: 42%;
}
.partnersArea .apinnovation {
    background: url(../../assets/images/new_homepage_imgs.png) -504px -542px;
    background-repeat: no-repeat;
    width: 224px;
    height: 110px;
    margin-left: 40%;
}
.partnersArea .springboard {
    background: url(../../assets/images/new_homepage_imgs.png) -54px -542px;
    background-repeat: no-repeat;
    width: 130px;
    height: 110px;
    margin-left: 43%;
}
.partnersArea {
    margin-top: 34px;
    text-align: center;
}
.tab_drawer_heading {
    display: none;
}
.advisorsArea .rajiv {
    background: url(../../assets/images/new_homepage_imgs.png) -418px -201px;
    background-repeat: no-repeat;
    width: 150px;
    height: 120px;
    margin: auto;
}
.advisorsArea {
    margin-top: 34px;
    text-align: center;
}
.advisorsArea .item {
    padding: 0 40px;
}
.bannerimages {
    width: 100%;
    height: 500px;
    background-position: center;
    background-size: cover;
}
.bannerimages:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #ee6a3175;
    opacity: 0.70;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.agency_featured_area {
    background-image: url("https://staging.taxzex.com/allassets/assets/images/bg.png") !important;
    background-color: #fff;
    background-position: 0 0, 50px 50px;
    background-size: cover;
    padding: 15px 15px 30px;
    margin-top: -35px;
    padding-top: 85px;
}

/*************************service page start**************************************/
.caon {
    /*background: url(../../assets/images/banner/bg-landing.jpg) no-repeat;*/
    background-size: cover;
    background-position: top center;
    width: 100%;
    padding-bottom: 0;
    margin-top: 0rem;
    /* margin-bottom: 30px; */
}
.caon h1 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    line-height: 50px;
    margin: 42px 0 0;
    padding: 0;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.cmp {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    line-height: 24.27px;
}
.servicelandingForm {
  
    background: #fff;
    padding: 40px;
    margin-top: 100px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    /* margin-bottom: 45px; */
    border-radius: 10px;
}
.main-uls li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    position: absolute;
    color: #e6641c;
    top: 0;
    padding-left: 0;
    line-height: 29px;
    left: 0px;
}
.main-uls li {
    color: #000;
    position: relative;
    list-style: none;
    padding: 3px 0;
    padding-left: 32px;
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 500;
}
.customer-ratings {
    padding: 20px 0;
}
.customer-ratings span {
    position: relative;
    top: 3px;
    color: black;
}
.customer-ratings img {
    position: relative;
    left: -10px;
}
.customer-ratings p {
    font-size: 14px;
    color: #000;
    line-height: normal;
    margin-bottom: 10px;
}
.customer-ratings .rating1,
.customer-ratings .rating2,
.customer-ratings .rating3 {
    text-align: center;
    margin-right: -8px;
    padding: 0 10px;
    font-weight: 600;
}
.customer-ratings div {
    margin: 0 auto;
}
.service_steps p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: #7e8085;
}
.service_steps h2 {
    font-size: 32px;
    color: #000;
    text-transform: capitalize;
    letter-spacing: -1px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.registration-steps,
.registration-steps-mob {
    padding: 15px;
}
.nopadding {
    padding: 0;
}
.registration-steps h6,
.registration-steps-mob h6 {
    font-size: 13px;
    font-weight: 500;
    color: #000;
    line-height: 1.4;
    margin-top: 7px;
    margin-bottom: 10px;
    padding: 0 14px;
}
.registration-steps p,
.registration-steps-mob p {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    color: #7b7b7b;
}
.step-arrow img {
    position: absolute;
    top: 60px;
    right: -10px;
}
.registration-steps {
    text-align: center;
}
.col-lg-3:last-child .step-arrow img {
    display: none;
}
.registration-steps-mob {
    display: none;
}
.advantageblock .imgicon {
    font-size: 40px;
    color: #fff;
}
.advantageblock .scope-sub-heading {
    font-size: 18px;
    color: #000;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}
.advantageblock .xs-para {
    font-size: 18px;
    color: #101010;
    line-height: 1.6em;
    margin-bottom: 15px;
}
.documents .main-ul li {
    color: #6e6e6e;
    position: relative;
    list-style: none;
    padding: 3px 0;
    padding-left: 50px;
    margin: 0 0 10px;
    width: 49%;
    display: inline-flex;
}
.documents .main-ul {
    /* padding: 20px 10px; */
    
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
}
.documents {
    padding-top: 20px;
}
.documents .main-ul li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 27px;
    position: absolute;
    color: #6e6e6e;
    top: 0;
    padding-left: 0;
    line-height: 29px;
    left: 0px;
}
.owl-carousel1 .carousel-caption {
    position: relative!important;
    /* margin-top: -48px; */
    
    width: 75%;
    left: 9px;
    padding: 2px 10px;
    text-align: left;
    box-shadow: 2px 8px 16px 1px hsla(0, 0%, 60%, 0.63);
    background-color: #fff;
    border-radius: 6px;
    /* bottom: 0;*/
}
.caption-name {
    font-size: 16px;
    color: #000;
    text-shadow: none;
    margin-top: 5px;
    margin-bottom: 0;
}
.caption-para,
.caption-para span {
    font-size: 16px;
    color: #000;
    text-shadow: none;
}
.owl-carousel1 .item>.slider-crousel img {
    position: relative;
    width: 80%;
    margin-left: 8%;
    height: 400px;
}
.owl-carousel1 .item>.slider-crousel p {
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: #7e8085;
    text-align: left;
    padding: 9px;
    margin-top: 0px;
}
.carousel-caption {
    left: 6%;
    bottom: -2%;
    padding-bottom: 15px;
    width: 90%;
}
.getblock {
    background: url(../../assets/images/banner/banner-background.svg) no-repeat;
    background-position: top center;
    width: 100%;
}
.mb_20 {
    margin-bottom: 20px;
}
input[name=question] {
    display: none;
}
input[name=question]+label {
    position: relative;
    display: table;
    padding: 20px 20px;
    font-size: 1.2em;
    cursor: pointer;
    background: rgba(246, 246, 246, 1);
    color: #5a9aa8;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-radius: 3px;
    width: 100%
}
.response {
    position: relative;
    background: #7B2623;
    color: #7A2723;
    padding: 10px 20px;
    -webkit-transform: translate3d(0, -40px, 0) rotate(-.5deg);
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    opacity: 0;
    border-radius: 3px;
    width: 100%;
}
input[name=question]:checked+label {
    background: #F6F6F6;
    color: #5a9aa8;
}
input[name=question]:checked+label+.response {
    opacity: 1;
    visibility: visible;
    padding: 10px 20px;
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
    -webkit-filter: blur(0px);
    margin-bottom: 20px;
    color: white;
    width: 100%;
    overflow: auto;
    height: 200px;
    float: right;
    position: relative;
}
.fixed-height {
    height: 50px;
    overflow: hidden;
    opacity: 0;
}
.faqs {
    display: inline-flex;
}
.sidenav ul>li>a {
    display: block;
    padding: 18px 32px;
    font-size: 16px;
    color: #212121;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    text-transform: uppercase;
    position: relative;
}
.nav_outer {
    padding-top: 20px;
    height: 100%;
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
}
.sidenav .closebtn {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background-color: #fff;
    z-index: 1;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 28px;
    color: #212121;
    line-height: 36px;
    width: 100%;
    padding: 20px 0 20px 34px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.sidenav a:hover {
    color: #fb5723;
}
.sidenav a:hover,
.dropdown-btn:hover .fa {
    color: #fb5723;
}
.sidenav ul li a.active i {
    transform: rotate(180deg);
    transition: all 0.3s ease 0s;
    color: #ff5722;
}
.sidenav ul li .fa {
    float: right;
    padding-right: 0px;
    color: black;
    font-size: 20px;
}
.dropdown-container {
    display: none;
    background-color: white;
    padding-left: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.sidenav a,
.dropdown-btn {
    display: block;
    padding: 14px 32px;
    color: #212121;
    font-size: 14px;
    position: relative;
}
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}
.dropdown-container1 {
    display: none;
    background-color: white;
    padding-left: 26px;
}
.sidenav a,
.dropdown-btn {
    display: block;
    padding: 14px 32px;
    color: #212121;
    font-size: 14px;
    position: relative;
}
.sidenav {
    display: none;
}
.main_contentss {
    width: 770px;
    height: 668px;
    background-image: url(../../assets/images/line_scroll.svg);
    background-repeat: no-repeat;
    background-position-x: center;
    margin: 0 auto;
    background-position-y: 23px;
    padding-top: 40px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 9px;
}
.main_contentss .puck_container {
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.6);
    background-repeat: no-repeat;
    display: list-item;
    position: relative;
    margin: 0;
    width: 100%;
    background: #1d2243;
    border-radius: 12px;
    width: 320px;
    height: 102px;
    margin-top: -40px;
}
.a:nth-of-type(2n+0):after {
    content: " ";
    position: absolute;
    width: 120px;
    height: 46px;
    background: white;
    transform: rotate(230deg)!important;
    bottom: -8px;
    left: -40px;
}
.a:nth-of-type(3) {
    margin-left: auto;
}
.a:nth-of-type(5) {
    margin-left: auto;
}
.a:nth-of-type(7) {
    margin-left: auto;
}
.move {
    top: 10px;
    left: 65px;
    position: absolute;
}
.a:nth-child(1n+0):after {
    content: " ";
    position: absolute;
    width: 120px;
    height: 46px;
    background: white;
    transform: rotate(314deg);
    bottom: -8px;
    right: -40px;
}
.main_contentss span {
    position: relative;
    ;
}
.main_contentss span.puck {
    left: 47.7%;
    top: -9%;
}
.main_contentss span.puck {
    width: 36px;
    height: 36px;
    display: block;
    background-image: url(../../assets/images/inactive_puck.svg);
    background-repeat: no-repeat;
}
.main_contentss:before {
    position: absolute;
    content: "";
}
.main_contentss span.title_box {
    position: relative;
    display: block;
    font-style: normal;
    font-weight: bold;
    font-size: 13px;
    line-height: 20px;
    color: #fff;
    padding-right: 81px;
}
.diag_container2 {
    width: 342px;
    height: auto;
    margin: 16px 0 0 0;
    padding-bottom: 50px;
    background-image: url(../../assets/images/line_scroll.svg);
    background-repeat: no-repeat;
    background-position-x: -60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background-position-x: 0;
}
.diag_container2 .box_apna {
    margin: 0 0 16px 0;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-color: #171b2f;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.6);
    display: inline-block;
    position: relative;
    padding: 3px 0 0 16px;
    width: 272px;
    height: 84px;
}
.diag_container2 .box_apna span.title_box {
    font-weight: bold;
    margin-bottom: 4px;
    display: block;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
}
.diag_container2 span.puck {
    right: 284px;
}
.diag_container2 span.puck {
    width: 36px;
    height: 36px;
    display: inline;
    background-image: url(../../assets/images/inactive_puck.svg);
    background-repeat: no-repeat;
    position: absolute;
    right: 305px;
    bottom: 24px;
}
.diag_container2 {
    display: none;
}

/*Logo carousel*/
#clients {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
#clients .clients-wrap {
    display: block;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 15px;
}
#clients .clients-wrap ul {
    display: block;
    list-style: none;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
#clients .clients-wrap ul li {
    display: block;
    float: left;
    position: relative;
    width: 200px;
    height: 100px;
    line-height: 100px;
    text-align: center;
}
#clients .clients-wrap ul li img {
    vertical-align: middle;
    max-width: 70%;
    max-height: 100%;
    -webkit-transition: 0 linear left;
    -moz-transition: 0 linear left;
    transition: 0 linear left;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
    filter: alpha(opacity=65);
    opacity: 0.65;
}
#clients .clients-wrap ul li img:hover {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1.0;
}
@keyframes slide1 {
    0%,
    100% {
        transform: translate(0, 0);
    }
    
    50% {
        transform: translate(10px, 0);
    }
}
li.faqli {
    background: #ffffff !important;
    color: #ee7427 !important;
    /* padding: 20px; */
}
li.faqli .nav-link {
    width: 100%;
    color: #ee7427;
    padding: 17px;
    border: 1px solid #ee7427;
    border-radius: 0;
    font-weight: 500;
}
li.faqli a i {
    float: right;
    margin-top: 2px;
    color: #ee7427;
}
.nav-tabs a:hover {
    background-color: transparent!important;
    border: none;
}
.faqssection {}
.faqstabs {
    background: #1d2243;
    border: 0;
    top: 0;
    height: 330px;
    color: rgba(255, 255, 255, 0.6);
    z-index: -1;
    position: relative;
}
.faqstabs .tab-pane {
    padding: 48px;
}
li.faqli .nav-link:hover {
    width: 104% !important;
    background: #171b2f !important;
    border: none !important;
    display: block;
    -webkit-transition: width .75s;
    transition: width .75s;
    color: white!important;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.26);
}
li.faqli .nav-link.active {
    width: 104% !important;
    background: #23294c!important;
    border: 0 !important;
    color: white;
    border-radius: 0;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.26);
}
li.faqli .nav-link.active .dots {
    background: white!important;
}
li.faqli .nav-link:hover .dots {
    background: white!important;
}
li.faqli .nav-link.active {
    color: white;
}
li.faqli a.active i {
    color: white;
}
li.faqli:hover a {
    color: white;
}
li.faqli:hover i {
    color: white!important;
}
.nav-tabs {
    border-bottom: 1px solid #dee2e600!important;
  
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #fff !important;
    background-color: #ec681f!important;
}
.dots {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin: 2px 20px -1px 6px;
    display: inline-block;
    vertical-align: top;
    background: #ee7427;
}

/* .accordion {
    background-color: #fff;
    color: #ee7427;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 13px!important;
    transition: 0.4s;
    border: 1px solid #ee7427;
}
.mob-faq {
    display: none;
} */

/* .accordion:hover {
    background-color: #23294c;
    color: white;
} */

/* .accordion i {
    float: right;
    margin-top: 2px;
    color: black;
}
.accordion.active {
    background-color: #23294c;
    color: white;
}
.accordion:after {
    content: '\002B';
    color: #ee7427;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
.accordion.active:after {
    content: "\2212";
    color: white;
} */
.panel {
    padding: 10px 18px;
    display: none;
    background-color: white;
    overflow: hidden;
    text-align: justify;
}

/****************************customer stories>****************************************/
.customerimages {
    height: 45vh;
    margin-top: 87px;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}
.sliders {
    padding: 0;
    width: 100%;
    background: #f1f1f1;
    transition: all 0.5s ease 0s;
    padding-top: 2rem;
    padding-bottom: 4rem;
}
.ml--15 {
    padding-left: 0px!important;
    padding-right: 0px!important;
}
.textsection {
    padding: 16% 10%;
}
.testimages {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.textimg img {
    width: 38px;
    margin: 10px 0px;
}

/*******************************************indiviual teams start**********************************/
.team-detail-banner-section {
    background-position-x: 80%;
    height: 500px;
}
.team-detail-banner-left-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
}
.profile-info {
    width: 250px;
    -webkit-transform: translateY(90%);
    -ms-transform: translateY(90%);
    transform: translateY(90%);
    background-color: #464748;
    padding: 35px 0 35px 35px;
}
.profile-info__name {
    font-size: 30px;
    color: #fff;
    line-height: 34px;
}
.profile-info__designation {
    display: block;
    padding: 10px 0 25px;
    border-bottom: 1px solid #638dbc;
    font-size: 13px;
    color: #fff;
    line-height: 19px;
}
.team-detail-social-lists {
    margin-top: 25px;
}
.team-detail-social-items {
    display: inline-block;
    margin-right: 20px;
    font-size: 20px;
}
.block-list li {
    margin-bottom: 15px;
}
.team-detail-banner-left-wrapper {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}
.profile-info {
    width: 345px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.team-detail-banner__row {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}
.team-detail-banner__container {
    height: 100%;
}
.animate-lines-wrapper {
    position: relative;
}
.profile-info__name {
    font-size: 30px;
    line-height: 46px;
}
.profile-info__designation {
    font-size: 16px;
    line-height: 26px;
}
.social {
    border-bottom: 1px solid transparent;
    padding: 24px 0;
}
.team-detail-section {
    padding: 80px 0;
    background-image: url(../../assets/images/banner/banner-background.svg);
    background-position: center;
    background-size: cover;
}
.singleteam {
    margin-top: 0px;
}
.websidemenus {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


/*******************************************indiviual teams end**********************************/