/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography
    [ ## Heading ]
    [ ## Others Typography ]
# Elements
    [ ## Font Size ]
    [ ## Font Weight ]
    [ ## Margin Element ]
    [ ## Padding Element ]
    [ ## Color Element ]
    [ ## Background Element ]
    [ ## Extra Background ]
    [ ## Social Element ]
    [ ## Overlay Element ]
    [ ## Lists ]
    [ ## Post, Page, Comments Table ]
    [ ## Others Element ]
    [ ## Grid Element ]
# Forms
	[ ## Buttons ]
	[ ## Fields ]
# Header Content
	[ ## Preloader ]
	[ ## Header ]
    [ ## Sticky header ]
# layout
    [ ## Hero Block ]
    [ ## Features ]
    [ ## Team ]
    [ ## Testimonial ]
    [ ## Sections ]
        [ ### Features Block ]
        [ ### Network Location ]
        [ ### Discount Block ]
        [ ### Vission Mission Block ]
        [ ### Work Brand ]
        [ ### Announcement ]
        [ ### Pricing ]
        [ ### Faqs ]
        [ ### Support Ticket ]
        [ ### Call To Action ]
        [ ### Founder Message Block ]
        [ ### Fan Fact Block ]
    [ ## Blog ]
# site content
	[ ## About Page ]
	[ ## Contact Page ]
	[ ## 404 Page ]
	[ ## Registration Page ]
	[ ## Posts and pages ]
	    [ ### Page Title ]
	    [ ### Breadcrumb ]
	    [ ### Page info Content ]
	[ ## Comments ]
	[ ## Widgets ]
	[ ## Widgets Content ]
# Footer
/*--------------------------------------------------------------
# abstracts
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ### font-variable start ]
*/
/*-------------------------------------------------
    [ ### font-variable end ]
*/
/*-------------------------------------------------
    [ ### font_family-variable start ]
*/
/*-------------------------------------------------
    [ ### font_family-variable end ]
*/
/*-------------------------------------------------
    [ ### font_size-variable start ]
*/
/*-------------------------------------------------
    [ ### font_size-variable end ]
*/
/*-------------------------------------------------
    [ ### line_height-variable start ]
*/
/*-------------------------------------------------
    [ ### line_height-variable start ]
*/
/*-------------------------------------------------
    [ ### initial-color-variable start ]
*/
/*-------------------------------------------------
    [ ### initial-color-variable end ]
*/
/*--------------------------------------------------------------
# base
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ## reset ]
*/
:root {
    --primary-color: var(--primary-color);
}
html {
    font-size: 100%;
    scroll-behavior: smooth;
  }

  body {
    background-color: #fff;
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: #6B768A;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 100vh;
    overflow-x: hidden;
  }

  a {
    display: inline-block;
  }

  ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }

  blockquote {
    margin: 0 0 1.3em;
  }

  p {
    margin-bottom: 15px;
    line-height: 1.7em;
  }
  p:last-child {
    margin-bottom: 0px;
  }
  @media only screen and (max-width: 1199px) {
    p {
      line-height: 1.7em;
    }
  }

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

  button:focus,
  input:focus,
  textarea:focus {
    outline: none;
  }

  button, input[type=submit], input[type=reset], input[type=button] {
    border: none;
    cursor: pointer;
  }

  input, textarea {
    padding: 12px 25px;
    width: 100%;
  }

  span {
    display: inline-block;
  }

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

  blockquote {
    background-color: #f7f9fc;
    padding: 20px;
    color: #353448;
    border-radius: 3px;
    font-weight: 500;
    font-style: italic;
    position: relative;
  }
  blockquote .quote-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 120px;
    opacity: 0.1;
  }

  /*-------------------------------------------------
      [ ## padding ]
  */
  .pt-10 {
    padding-top: 10px;
  }

  .pt-20 {
    padding-top: 20px;
  }

  .pt-30 {
    padding-top: 30px;
  }

  .pt-40 {
    padding-top: 40px;
  }

  .pt-50 {
    padding-top: 50px;
  }

  .pt-60 {
    padding-top: 60px;
  }

  .pt-80 {
    padding-top: 80px;
  }

  .pt-100 {
    padding-top: 100px;
  }
  @media only screen and (max-width: 991px) {
    .pt-100 {
      padding-top: 80px;
    }
  }

  .pt-120 {
    padding-top: 120px;
  }
  @media only screen and (max-width: 991px) {
    .pt-120 {
      padding-top: 100px;
    }
  }

  .pt-150 {
    padding-top: 150px;
  }
  @media only screen and (max-width: 991px) {
    .pt-150 {
      padding-top: 100px;
    }
  }

  .pb-10 {
    padding-bottom: 10px;
  }

  .pb-20 {
    padding-bottom: 20px;
  }

  .pb-30 {
    padding-bottom: 30px;
  }

  .pb-40 {
    padding-bottom: 40px;
  }

  .pb-50 {
    padding-bottom: 50px;
  }

  .pb-60 {
    padding-bottom: 60px;
  }

  .pb-80 {
    padding-bottom: 80px;
  }

  .pb-100 {
    padding-bottom: 100px;
  }
  @media only screen and (max-width: 991px) {
    .pb-100 {
      padding-bottom: 80px;
    }
  }

  .pb-120 {
    padding-bottom: 120px;
  }
  @media only screen and (max-width: 991px) {
    .pb-120 {
      padding-bottom: 100px;
    }
  }

  .pb-150 {
    padding-bottom: 150px;
  }
  @media only screen and (max-width: 991px) {
    .pb-150 {
      padding-bottom: 100px;
    }
  }

  .ptb-10 {
    padding: 10px 0;
  }

  .ptb-20 {
    padding: 20px 0;
  }

  .ptb-30 {
    padding: 30px 0;
  }

  .ptb-40 {
    padding: 40px 0;
  }

  .ptb-50 {
    padding: 50px 0;
  }

  .ptb-60 {
    padding: 60px 0;
  }

  .ptb-80 {
    padding: 80px 0;
  }

  .ptb-100 {
    padding: 100px 0;
  }
  @media only screen and (max-width: 991px) {
    .ptb-100 {
      padding: 80px 0;
    }
  }

  .ptb-120 {
    padding: 120px 0;
  }
  @media only screen and (max-width: 991px) {
    .ptb-120 {
      padding: 100px 0;
    }
  }

  .ptb-150 {
    padding: 150px 0;
  }
  @media only screen and (max-width: 991px) {
    .ptb-150 {
      padding: 100px 0;
    }
  }

  .mt-10 {
    margin-top: 10px;
  }

  .mt-20 {
    margin-top: 20px;
  }

  .mt-30 {
    margin-top: 30px;
  }

  .mt-40 {
    margin-top: 40px;
  }

  .mt-50 {
    margin-top: 50px;
  }

  .mt-60 {
    margin-top: 60px;
  }

  .mt-80 {
    margin-top: 80px;
  }

  .mt-100 {
    margin-top: 100px;
  }

  .mt-120 {
    margin-top: 120px;
  }

  .mt-150 {
    margin-top: 150px;
  }

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

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

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

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

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

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

  .mb-80 {
    margin-bottom: 80px;
  }
  @media only screen and (max-width: 575px) {
    .mb-80 {
      margin-bottom: 40px;
    }
  }

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

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

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

  .mt-10-none {
    margin-top: -10px;
  }

  .mt-20-none {
    margin-top: -20px;
  }

  .mt-30-none {
    margin-top: -30px;
  }

  .mt-40-none {
    margin-top: -40px;
  }

  .mt-50-none {
    margin-top: -50px;
  }

  .mt-60-none {
    margin-top: -60px;
  }

  .mt-80-none {
    margin-top: -80px;
  }

  .mt-100-none {
    margin-top: -100px;
  }

  .mt-120-none {
    margin-top: -120px;
  }

  .mt-150-none {
    margin-top: -150px;
  }

  .mb-10-none {
    margin-bottom: -10px;
  }

  .mb-20-none {
    margin-bottom: -20px;
  }

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

  .mb-40-none {
    margin-bottom: -40px;
  }

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

  .mb-60-none {
    margin-bottom: -60px;
  }

  .mb-80-none {
    margin-bottom: -80px;
  }
  @media only screen and (max-width: 575px) {
    .mb-80-none {
      margin-bottom: -40px;
    }
  }

  .mb-100-none {
    margin-bottom: -100px;
  }

  .mb-120-none {
    margin-bottom: -120px;
  }

  .mb-150-none {
    margin-bottom: -150px;
  }

  /*-------------------------------------------------
      [ ## color ]
  */
  .bg--primary {
    background-color: #7367f0 !important;
  }

  .bg--secondary {
    background-color: #868e96;
  }

  .bg--success {
    background-color: #28c76f;
  }

  .bg--danger {
    background-color: #ea5455 !important;
  }

  .bg--warning {
    background-color: #ff9f43;
  }

  .bg--info {
    background-color: #1e9ff2;
  }

  .bg--dark {
    background-color: #10163A;
  }

  .bg--base {
    background-color: var(--primary-color) !important;
  }

  .text--primary {
    color: #7367f0;
  }

  .text--secondary {
    color: #868e96;
  }

  .text--success {
    color: #28c76f;
  }

  .text--danger {
    color: #ea5455;
  }

  .text--warning {
    color: #ff9f43;
  }

  .text--info {
    color: #1e9ff2;
  }

  .text--dark {
    color: #10163A;
  }

  .text--base {
    color: var(--primary-color) !important;
  }

  .border--primary {
    border: #7367f0;
  }

  .border--secondary {
    border: 1px solid #868e96;
  }

  .border--success {
    border: 1px solid #28c76f;
  }

  .border--danger {
    border: 1px solid #ea5455;
  }

  .border--warning {
    border: 1px solid #ff9f43;
  }

  .border--info {
    border: 1px solid #1e9ff2;
  }

  .border--dark {
    border: 1px solid #10163A;
  }

  .border--base {
    border: 1px solid #e5e5e5 !important;
  }

  .section--bg {
    background-color: #002046 !important;
  }

  .bg--gray {
    background-color: #FFF6E6;
  }

  .border--rounded {
    border-radius: 3px !important;
  }

  .border--capsule {
    border-radius: 100px;
  }

  .box-shadow {
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
  }

  /*-------------------------------------------------
      [ ## scrollbar ]
  */
  /*-------------------------------------------------
      [ ## scrollToTop ]
  */
  .scrollToTop {
    position: fixed;
    bottom: 0;
    left: 30px;
    width: 35px;
    height: 35px;
    padding: 7px;
    line-height: 1;
    font-weight: 600;
    background-color: var(--primary-color);
    border-radius: 8px;
    color: #fff !important;
    font-size: 11px;
    text-align: center;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 1s;
    transition: all 1s;
    -webkit-transform: translateY(-50000%);
    transform: translateY(-50000%);
  }

  .scrollToTop small {
    display: block;
    text-transform: uppercase;
    font-size: 8px;
  }

  .scrollToTop.active {
    bottom: 30px;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }

  /*-------------------------------------------------
      [ ## Table ]
  */
  .table-area + .table-area {
    border-top: 1px solid #d6d6d6;
    padding-top: 30px;
    margin-top: 30px;
  }

  .table-wrapper {
    background-color: #fff;
    border: 1px solid #d6d6d6;
    border-radius: 10px;
    padding: 30px;
    position: relative;
  }
  @media only screen and (max-width: 575px) {
    .table-wrapper {
      padding: 15px;
    }
  }

  @media only screen and (max-width: 420px) {
    .log-header-area {
      display: block !important;
      text-align: center;
    }
  }
  @media only screen and (max-width: 420px) {
    .log-header-area a {
      width: 100%;
    }
  }

  .table-search-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .table-search-wrapper .table-search-form {
    margin-right: 30px;
    display: none;
  }
  .table-search-wrapper .table-search-form.show {
    display: block;
  }

  .table-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 20px;
  }
  @media only screen and (max-width: 991px) {
    .table-header {
      display: block;
      text-align: center;
    }
  }
  @media only screen and (max-width: 991px) {
    .table-header .table-search-area {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-top: 20px;
    }
  }
  @media only screen and (max-width: 767px) {
    .table-header .table-search-area {
      display: block !important;
      text-align: center;
    }
  }
  @media only screen and (max-width: 575px) {
    .table-header .table-search-area {
      display: block !important;
    }
  }
  @media only screen and (max-width: 575px) {
    .table-header .table-search-area .add-beneficiary-btn {
      margin-left: 0 !important;
      margin-top: 20px;
    }
  }
  @media only screen and (max-width: 575px) {
    .table-header .table-search-area .add-beneficiary-btn a {
      width: 100%;
    }
  }
  @media only screen and (max-width: 767px) {
    .table-header .table-btn {
      margin-top: 20px;
    }
  }
  .table-header .title {
    margin-bottom: 0 !important;
  }
  .table-header .table-search-form {
    min-width: 300px;
    position: relative;
  }
  @media only screen and (max-width: 575px) {
    .table-header .table-search-form {
      min-width: auto;
    }
  }
  .table-header .table-search-form input::-webkit-input-placeholder {
    color: #9fa1b4;
  }
  .table-header .table-search-form input::-moz-placeholder {
    color: #9fa1b4;
  }
  .table-header .table-search-form input:-ms-input-placeholder {
    color: #9fa1b4;
  }
  .table-header .table-search-form input::-ms-input-placeholder {
    color: #9fa1b4;
  }
  .table-header .table-search-form input::placeholder {
    color: #9fa1b4;
  }
  .table-header .table-search-form button, .table-header .table-search-form input[type=submit], .table-header .table-search-form input[type=reset], .table-header .table-search-form input[type=button] {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #9fa1b4;
    background-color: transparent;
    font-size: 24px;
  }
  .table-header .table-search-form button i, .table-header .table-search-form input[type=submit] i, .table-header .table-search-form input[type=reset] i, .table-header .table-search-form input[type=button] i {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }

  .custom-table {
    width: 100%;
  }
  @media only screen and (max-width: 1199px) {
    .custom-table thead {
      display: none;
    }
  }
  .custom-table thead tr {
    background: #002046;
  }
  .custom-table thead tr th {
    border: none;
    font-weight: 600;
    text-align: center;
    color: #fff;
    font-family: "Exo 2", sans-serif;
    font-size: 15px;
    padding: 14px 30px;
  }
  .custom-table thead tr th:first-child {
    border-radius: 5px 0 0 5px;
    text-align: left;
  }
  .custom-table thead tr th:last-child {
    border-radius: 0 5px 5px 0;
    text-align: right;
  }
  .custom-table tbody tr {
    background: #fff;
    border-bottom: 1px solid #d6d6d6;
    border-radius: 5px;
  }
  .custom-table tbody tr:last-child {
    border: none;
  }
  .custom-table tbody tr:last-child td {
    padding-bottom: 0;
  }
  @media only screen and (max-width: 1199px) {
    .custom-table tbody tr:last-child td {
      padding-bottom: 16px;
    }
  }
  .custom-table tbody tr td {
    border: none;
    font-weight: 500;
    text-align: center;
    color: #6B768A;
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    padding: 16px 30px;
  }
  .custom-table tbody tr td:first-child {
    text-align: left;
  }
  .custom-table tbody tr td:last-child {
    text-align: right;
  }
  .custom-table tbody tr td .author-info {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .custom-table tbody tr td .author-info .thumb {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
  }
  .custom-table tbody tr td .author-info .thumb img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
  }
  .custom-table tbody tr td .author-info .content {
    padding-left: 15px;
    width: calc(100% - 45px);
  }
  .custom-table tbody tr td a {
    color: #fff;
    padding: 3px 8px;
    border-radius: 3px !important;
  }
  .custom-table tbody tr td:first-child {
    border-radius: 5px 0 0 5px;
  }
  .custom-table tbody tr td:last-child {
    border-radius: 0 5px 5px 0;
  }
  @media only screen and (max-width: 1199px) {
    /* .custom-table tbody tr td {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      text-align: right;
      border-bottom: 1px solid var(--primary-color);
    } */
    .custom-table tbody tr td:last-child {
      border: none;
    }
    .custom-table tbody tr td::before {
      content: attr(data-label);
      margin-right: auto;
      color: var(--primary-color);
      width: 50%;
      text-align: left;
    }
  }

  /*-------------------------------------------------
      [ ## slider ]
  */
  .swiper-notification {
    display: none;
  }

  .swiper-pagination {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 80px;
  }
  .swiper-pagination .swiper-pagination-bullet {
    height: 3px;
    width: 25px;
    border-radius: 0;
    background-color: #353448;
    opacity: 1;
  }
  .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
  }

  .slider-next, .slider-prev {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    cursor: pointer;
  }
  @media only screen and (max-width: 991px) {
    .slider-next, .slider-prev {
      display: none;
    }
  }

  .slider-next {
    right: -30px;
  }

  .slider-prev {
    left: -30px;
  }

  /*-------------------------------------------------
      [ ## pagination ]
  */
  /*-------------------------------------------------
      [ ## pagination ]
  */
  .pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-top: 1px solid #d6d6d6;
    padding-top: 20px;
    margin-top: 60px;
  }
  .pagination .page-item {
    text-align: center;
    padding: 3px;
  }
  .pagination .page-item a,
  .pagination .page-item span {
    width: 30px;
    height: 30px;
    border-radius: 3px;
    background: transparent;
    border: 1px solid #d6d6d6;
    color: #353448;
    padding: 0;
    font-weight: 700;
    line-height: 26px;
    display: block;
    margin: 0;
  }
  .pagination .page-item.disabled span {
    background: transparent;
    border: 1px solid #d6d6d6;
    color: #353448;
  }
  .pagination .page-item .page-link {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .pagination .page-item.active .page-link, .pagination .page-item:hover .page-link {
    background-color: var(--primary-color);
    border-color: transparent;
    color: #fff;
  }

  /*-------------------------------------------------
      [ ## tab ]
  */
  .nav-tabs {
    margin: 0;
    border: 0;
    margin-bottom: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .nav-tabs .nav-link {
    padding: 8px 20px;
    border: none;
    font-weight: 700;
    font-size: 12px;
    background-color: #FFF6E6;
    border-radius: 3px;
    font-family: "Exo 2", sans-serif;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .nav-tabs .nav-link:hover {
    background-color: var(--primary-color);
    color: #fff;
  }
  .nav-tabs .nav-link.active {
    background-color: var(--primary-color);
    color: #fff;
  }
  .nav-tabs .nav-link:not(:last-child) {
    margin-right: 10px;
  }
  @media only screen and (max-width: 1199px) {
    .nav-tabs .nav-link:not(:last-child) {
      margin-right: 5px;
    }
  }

  /*-------------------------------------------------
      [ ## card ]
  */
  .custom--card {
    border: none;
    background: #fff;
    border: 1px solid #d6d6d6;
    border-radius: 10px;
    overflow: hidden;
  }
  .custom--card .card-header {
    background: #002046;
    padding: 1rem 2rem;
    border: none;
  }
  .custom--card .card-header .card-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 500;
  }
  .custom--card .card-header .card-title i {
    margin-right: 5px;
  }
  .custom--card .card-header .card-btn a {
    font-size: 12px;
    padding: 5px 15px;
    font-weight: 600;
  }
  .custom--card .card-header .card-btn a i {
    margin-right: 5px;
  }
  .custom--card .card-body {
    padding: 30px;
  }
  @media only screen and (max-width: 991px) {
    .custom--card .card-body {
      padding: 20px;
    }
  }
  .custom--card .card-body .card-form-wrapper label {
    position: absolute;
    left: 32px;
    top: 10px;
    z-index: 2;
    font-size: 12px;
    pointer-events: none;
  }
  .custom--card .card-body .card-form-wrapper .form--control {
    font-size: 12px;
    border: 1px solid #d6d6d6;
    padding: 30px 20px 10px;
    font-size: 16px;
    height: auto;
    color: #6b7c93;
    font-weight: 400;
  }
  .custom--card .card-body .card-form-wrapper .form--control::-webkit-input-placeholder {
    color: #6b7c93;
  }
  .custom--card .card-body .card-form-wrapper .form--control::-moz-placeholder {
    color: #6b7c93;
  }
  .custom--card .card-body .card-form-wrapper .form--control:-ms-input-placeholder {
    color: #6b7c93;
  }
  .custom--card .card-body .card-form-wrapper .form--control::-ms-input-placeholder {
    color: #6b7c93;
  }
  .custom--card .card-body .card-form-wrapper .form--control::placeholder {
    color: #6b7c93;
  }
  .custom--card .card-body .card-form-wrapper textarea {
    height: auto;
    min-height: 120px;
    color: #6B768A;
  }
  .custom--card .card-body .card-form-wrapper .plus-btn {
    padding: 22px 35px;
  }
  .custom--card .card-body .card-form-wrapper .cancel-btn {
    background-color: #ea5455;
  }
  .custom--card .card-body .card-form-wrapper .form-title {
    margin-bottom: 20px;
  }
  .custom--card .card-body .card-form-wrapper .form-title span {
    color: #6B768A;
    font-size: 15px;
    font-weight: 500;
  }
  .custom--card .card-body .card-form-wrapper .submit-btn {
    margin-top: 10px;
    padding: 12px 30px;
  }

  .modal-content {
    border-radius: 10px;
  }
  .modal-content .modal-badge {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .modal-content .close {
    background: wheat;
    background-color: transparent;
    font-size: 20px;
    z-index: 99999;
  }
  .modal-content .radio-input input, .modal-content .radio-input textarea {
    width: auto !important;
    position: relative;
    top: -5px;
  }
  .modal-content .radio-input label {
    font-size: 16px !important;
    font-weight: 600 !important;
  }

  .modal-content2 {
    border-radius: 10px;
  }
  .modal-content2 .modal-badge {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .modal-content2 .close {
    background: wheat;
    background-color: transparent;
    font-size: 20px;
    z-index: 99999;
  }
  .modal-content2 .radio-input input, .modal-content2 .radio-input textarea {
    width: auto !important;
    position: relative;
    top: -5px;
  }
  .modal-content2 .radio-input label {
    font-size: 16px !important;
    font-weight: 600 !important;
  }

  .radio-item {
    margin-right: 20px !important;
  }

  .modal-content {
    background: #fff;
    border-radius: 8px;
  }
  .modal-content .modal-badge {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .modal-content .modal-badge .download-google-badge {
    margin-left: 55px;
  }
  .modal-content .modal-badge .download-google-badge img {
    width: 170px;
    height: auto;
  }
  .modal-content .modal-badge .download-apple-badge {
    margin-right: 55px;
  }
  .modal-content .modal-badge .download-apple-badge img {
    width: 150px;
    height: auto;
  }
  .modal-content .close {
    background: #fff;
    background-color: transparent;
    font-size: 20px;
    z-index: 99999;
  }

  /*-------------------------------------------------
      [ ## Heading ]
  */
  h1, h2, h3, h4, h5, h6 {
    clear: both;
    line-height: 1.3em;
    color: #353448;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    font-family: "Exo 2", sans-serif;
  }

  h1 {
    font-size: 42px;
  }
  @media only screen and (max-width: 991px) {
    h1 {
      font-size: 30px;
    }
  }
  @media only screen and (max-width: 575px) {
    h1 {
      font-size: 26px;
    }
  }

  h2 {
    font-size: 32px;
  }
  @media only screen and (max-width: 991px) {
    h2 {
      font-size: 22px;
    }
  }
  @media only screen and (max-width: 575px) {
    h2 {
      font-size: 20px;
    }
  }

  h3 {
    font-size: 24px;
  }
  @media only screen and (max-width: 991px) {
    h3 {
      font-size: 18px;
    }
  }

  h4 {
    font-size: 20px;
  }
  @media only screen and (max-width: 991px) {
    h4 {
      font-size: 16px;
    }
  }

  h5 {
    font-size: 16px;
  }
  @media only screen and (max-width: 991px) {
    h5 {
      font-size: 14px;
    }
  }

  h6 {
    font-size: 14px;
  }

  h1 a,
  h2 a,
  h3 a,
  h4 a,
  h5 a {
    color: inherit;
    text-decoration: none;
  }

  h1 a:hover,
  h2 a:hover,
  h3 a:hover,
  h4 a:hover {
    color: inherit;
    text-decoration: none;
  }

  .section-header {
    margin-bottom: 50px;
    position: relative;
  }
  .section-header .section-sub-titel {
    font-size: 14px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 8px;
    background-color: rgba(69, 130, 255, 0.1);
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  @media only screen and (max-width: 575px) {
    .section-header .section-sub-titel {
      font-size: 12px;
    }
  }
  .section-header .section-sub-titel i {
    font-size: 16px;
    width: 1.25em;
    color: var(--primary-color);
  }
  @media only screen and (max-width: 575px) {
    .section-header .section-sub-titel i {
      font-size: 14px;
    }
  }
  @media only screen and (max-width: 767px) {
    .section-header .section-sub-titel {
      font-size: 16px;
      margin-bottom: 15px;
    }
  }
  @media only screen and (max-width: 575px) {
    .section-header .section-sub-titel {
      font-size: 14px;
      margin-bottom: 10px;
    }
  }
  .section-header .section-title {
    color: #353448;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 20px;
  }
  @media only screen and (max-width: 767px) {
    .section-header .section-title {
      font-size: 30px;
      margin-bottom: 15px;
    }
  }
  @media only screen and (max-width: 575px) {
    .section-header .section-title {
      font-size: 26px;
      margin-bottom: 10px;
    }
  }
  @media only screen and (max-width: 575px) {
    .section-header p {
      font-size: 12px;
    }
  }

  /*--------------------------------------------------------------
  # Components
  --------------------------------------------------------------*/
  /*-------------------------------------------------
      [ ## Buttons ]
  */
  input[type=submit]:hover {
    color: #fff;
  }

  button,
  input[type=button],
  input[type=reset],
  input[type=submit] {
    cursor: pointer;
    -webkit-appearance: button;
    -moz-appearance: button;
         appearance: button;
  }
  button:focus,
  input[type=button]:focus,
  input[type=reset]:focus,
  input[type=submit]:focus {
    outline: none;
  }

  button::-moz-focus-inner, input[type=button]::-moz-focus-inner, input[type=reset]::-moz-focus-inner, input[type=submit]::-moz-focus-inner,
  input::-moz-focus-inner {
    padding: 0;
    border: 0;
  }

  .btn {
    -webkit-transition: all 0.3s ease 0.02s;
    transition: all 0.3s ease 0.02s;
  }

  .btn:active,
  .btn:focus {
    -webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, 0.125) inset;
            box-shadow: 0 0px 0px rgba(0, 0, 0, 0.125) inset;
  }

  .btn {
    border: 0px solid;
    border-radius: 0px;
    font-weight: 500;
    font-size: 16px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  @media only screen and (max-width: 767px) {
    .btn {
      font-size: 14px;
    }
  }

  .btn-rounded {
    border-radius: 3px;
  }

  .btn-capsule {
    border-radius: 100px;
  }

  /*-------------------------------------------------
      [ ## custom btn ]
  */
  .btn--primary {
    background-color: #7367f0;
  }

  .btn--secondary {
    background-color: #868e96;
  }

  .btn--success {
    background-color: #28c76f;
  }

  .btn--danger {
    background-color: #ea5455;
  }

  .btn--warning {
    background-color: #ff9f43;
  }

  .btn--info {
    background-color: #1e9ff2;
  }

  .btn--dark {
    background-color: #10163A;
  }

  .badge--primary {
    background-color: #7367f0;
  }

  .badge--secondary {
    background-color: #868e96;
  }

  .badge--success {
    background-color: rgba(40, 199, 111, 0.2);
    color: #28c76f;
  }

  .badge--danger {
    background-color: rgba(234, 84, 85, 0.2);
    color: #ea5455;
  }

  .badge--warning {
    background-color: rgba(255, 159, 67, 0.2);
    color: #ff9f43;
  }

  .badge--info {
    background-color: #1e9ff2;
  }

  .badge--dark {
    background-color: #10163A;
  }

  .badge--base {
    background-color: rgba(69, 130, 255, 0.2);
    color: var(--primary-color);
  }

  .border--primary {
    border: 1px solid #7367f0;
  }

  .border--secondary {
    border: 1px solid #868e96;
  }

  .border--success {
    border: 1px solid #28c76f;
  }

  .border--danger {
    border: 1px solid #ea5455;
  }

  .border--warning {
    border: 1px solid #ff9f43;
  }

  .border--info {
    border: 1px solid #1e9ff2;
  }

  .border--dark {
    border: 1px solid #10163A;
  }

  .badge {
    font-weight: 600;
    padding: 6px 10px;
    font-size: 14px;
  }

  .btn--base {
    position: relative;
    background: var(--primary-color);
    -webkit-box-shadow: 0 0 0 var(--primary-color);
            box-shadow: 0 0 0 var(--primary-color);
    border: 1px solid transparent;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
  }
  .btn--base.active {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
  }
  .btn--base:hover {
    color: #fff;
    -webkit-box-shadow: 0 0 24px -6px var(--primary-color);
            box-shadow: 0 0 24px -6px var(--primary-color);
  }
  .btn--base:hover.active {
    background-color: var(--primary-color);
  }
  .btn--outline {
      position: relative;
      background: transparent;
      -webkit-box-shadow: 0 0 0 var(--primary-color);
              box-shadow: 0 0 0 var(--primary-color);
      border: 1px solid var(--primary-color);
      color: var(--primary-color);
      padding: 10px 25px;
      border-radius: 5px;
      font-size: 16px;
      font-weight: 600;
      text-align: center;
      -webkit-transition: all ease 0.5s;
      transition: all ease 0.5s;
  }
  .btn--outline.active {
      background: var(--primary-color);
      border: 1px solid transparent;
      color: #fff;
  }
  .btn--outline:hover {
      background: var(--primary-color);
      color: #fff;
      -webkit-box-shadow: 0 0 24px -6px var(--primary-color);
              box-shadow: 0 0 24px -6px var(--primary-color);
  }
  .btn--outline:hover.active {
      background: var(--primary-color);
      color: #fff;
  }
  /*-------------------------------------------------
      [ ## Fields ]
  */
  input[type=text]:focus,
  input[type=email]:focus,
  input[type=password]:focus {
    outline: none;
  }

  input, textarea {
    padding: 12px 20px;
  }
  input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #353448;
  }
  input::-moz-placeholder, textarea::-moz-placeholder {
    color: #353448;
  }
  input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #353448;
  }
  input::-ms-input-placeholder, textarea::-ms-input-placeholder {
    color: #353448;
  }
  input::placeholder, textarea::placeholder {
    color: #353448;
  }

  textarea {
    display: block;
    width: 100%;
    display: block;
    min-height: 120px;
  }

  input,
  select,
  textarea {
    border: 1px solid #d6d6d6;
    vertical-align: baseline;
    font-size: 100%;
    color: #353448;
  }

  label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: "Exo 2", sans-serif;
    color: #353448;
    display: block;
  }

  /*-------------------------------------------------
      [ ## Forms ]
  */
  select {
    outline: none;
    cursor: pointer;
  }

  option {
    color: #353448;
  }

  .input-group {
    margin-bottom: 15px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .input-group input {
    border-radius: 5px 0 0 5px;
    border: 1px solid rgba(107, 124, 147, 0.15);
    color: #6b7c93;
    height: 45px;
  }

  .form-control:disabled, .form-control[readonly] {
    background-color: rgba(69, 130, 255, 0.2);
  }

  .input-group-append, .input-group-prepend {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }

  .input-group-append input {
    border-radius: 5px 0 0 5px;
    border: 1px solid #d6d6d6;
    border-right: none;
    background-color: #fff;
  }

  .input-group-text {
    border: none;
    font-size: 14px;
    background: #EFF0F0;
    color: #353448;
    height: 45px;
    border-radius: 0 5px 5px 0;
    font-weight: 500;
  }

  .custom-check-group {
    display: block;
    margin-bottom: 12px;
  }
  .custom-check-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
  }
  .custom-check-group input:checked + label::before {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
  }
  .custom-check-group input:checked + label::after {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    left: 7px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .custom-check-group label {
    position: relative;
    cursor: pointer;
  }
  .custom-check-group label::before {
    content: "";
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    background: #fff;
    border: 1px solid #d6d6d6;
    border-radius: 3px;
    padding: 8px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 8px;
    top: -2px;
  }

  .form-curncy {
    position: relative;
  }
  .form-curncy.two select {
    position: absolute;
    top: 34px;
    right: 13px;
    padding: 12px 17px;
    background-color: var(--primary-color);
    border: none;
    color: #fff;
    border-radius: 0 5px 5px 0;
  }
  .form-curncy .nice-select {
    position: absolute;
    top: 35px;
    height: 45px;
    line-height: 45px;
    right: 10px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 0 10px 10px 0;
  }
  .form-curncy .nice-select .current {
    color: #fff;
  }
  .form-curncy .nice-select::after{
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  .form-curncy select option {
    background-color: #fff;
  }
  .form-curncy input {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #353448;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-control {
    border: 1px solid #d6d6d6;
    font-size: 14px;
    height: 50px;
  }
  .form-control:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #d6d6d6;
  }

  .form--control {
    background-color: transparent;
    border: 1px solid #d6d6d6;
    -webkit-box-shadow: none;
            box-shadow: none;
    height: 45px;
    color: #353448;
    border-radius: 5px;
    font-size: 15px;
    font-family: "Exo 2", sans-serif;
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
    font-weight: 700;
    padding: 10px 15px;
    width: 100%;
  }
  .form--control:focus {
    background-color: transparent;
    border: 1px solid #d6d6d6;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: #353448;
  }
  .form--control::-webkit-input-placeholder {
    font-weight: 500;
    color: rgba(53, 52, 72, 0.8);
  }
  .form--control::-moz-placeholder {
    font-weight: 500;
    color: rgba(53, 52, 72, 0.8);
  }
  .form--control:-ms-input-placeholder {
    font-weight: 500;
    color: rgba(53, 52, 72, 0.8);
  }
  .form--control::-ms-input-placeholder {
    font-weight: 500;
    color: rgba(53, 52, 72, 0.8);
  }
  .form--control::placeholder {
    font-weight: 500;
    color: rgba(53, 52, 72, 0.8);
  }

  .form--control:disabled, .form--control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
  }

  .radio-wrapper input[type=radio] {
    display: none;
  }
  .radio-wrapper input[type=radio]:not(:checked) {
    position: absolute;
    left: -9999px;
  }
  .radio-wrapper input[type=radio]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    font-size: 16px;
    margin-bottom: 0;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
  }
  .radio-wrapper input[type=radio]:not(:checked) + label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    background: #fff;
    border: 1px solid #d6d6d6;
  }
  .radio-wrapper input[type=radio]:not(:checked) + label::after {
    content: "";
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  .radio-wrapper input[type=radio]:checked + label {
    position: relative;
    padding-left: 28px;
    margin-bottom: 0;
    font-size: 16px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
  }
  .radio-wrapper input[type=radio]:checked + label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    background: #fff;
    border: 1px solid #d6d6d6;
  }
  .radio-wrapper input[type=radio]:checked + label::after {
    content: "";
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .select2-container {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    width: 100%;
  }

  .selection {
    width: 100%;
  }

  .select2-selection--single {
    width: 100%;
    height: 45px !important;
    outline: none;
    background: transparent !important;
    font-size: 15px;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 10px 10px;
    border-radius: 5px;
    vertical-align: top;
    display: inline-block;
    border: 1px solid #d6d6d6 !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .select2-selection--single span {
    margin: 0;
    width: 100%;
    color: #6B768A;
    line-height: initial;
    font-weight: 600;
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: auto;
    position: absolute;
    top: 22px;
    right: 7px;
    width: 20px;
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #6B768A transparent transparent transparent;
  }

  .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #6B768A transparent;
  }

  .submit-btn {
    padding: 12px 20px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
    font-family: "Exo 2", sans-serif;
  }
  @media only screen and (max-width: 991px) {
    .submit-btn {
      padding: 10px 20px;
    }
  }

  /*-------------------------------------------------
      [ ## Overlay Element ]
  */
  .bg_img {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }

  .bg-fixed {
    background-attachment: fixed;
  }

  .bg-overlay-base {
    position: relative;
  }

  .bg-overlay-base {
    position: relative;
  }
  .bg-overlay-base:before {
    content: "";
    position: absolute;
    background: #040a2c;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.7;
  }
  .bg-overlay-base > div {
    position: relative;
    z-index: 2;
  }

  @-webkit-keyframes scroll-down {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(10px);
              transform: translateY(10px);
    }
    100% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
    }
  }

  @keyframes scroll-down {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(10px);
              transform: translateY(10px);
    }
    100% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
    }
  }
  @-webkit-keyframes scale {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    50% {
      -webkit-transform: scale(0.6);
              transform: scale(0.6);
    }
    100% {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
    }
  }
  @keyframes scale {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    50% {
      -webkit-transform: scale(0.6);
              transform: scale(0.6);
    }
    100% {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
    }
  }
  @-webkit-keyframes ripple {
    0%, 35% {
      -webkit-transform: scale(0);
      transform: scale(0);
      opacity: 1;
    }
    50% {
      -webkit-transform: scale(1.5);
      transform: scale(1.5);
      opacity: 0.8;
    }
    100% {
      opacity: 0;
      -webkit-transform: scale(2);
      transform: scale(2);
    }
  }
  @keyframes ripple {
    0%, 35% {
      -webkit-transform: scale(0);
      transform: scale(0);
      opacity: 1;
    }
    50% {
      -webkit-transform: scale(1.5);
      transform: scale(1.5);
      opacity: 0.8;
    }
    100% {
      opacity: 0;
      -webkit-transform: scale(2);
      transform: scale(2);
    }
  }
  /*--------------------------------------------------------------
  # Layout
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
      [ ## Header ]
  --------------------------------------------------------------*/
  /*-------------------------------------------------
      [ ## Preloader ]
  */
  .preloader {
    position: fixed;
    z-index: 9999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0f1932;
    overflow: hidden;
    width: 100%;
    height: 100%;
  }

  .loader-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    margin-left: -60px;
    margin-top: -60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .loader-circle img {
    width: 40%;
    height: 40%;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 120px;
    margin-left: -60px;
    margin-top: -60px;
    overflow: hidden;
    -webkit-transform-origin: 60px 60px;
    transform-origin: 60px 60px;
    -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
            mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
    -webkit-animation: rotate 1.2s infinite linear;
    animation: rotate 1.2s infinite linear;
  }

  .loader-line-mask .loader-line {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  }

  @-webkit-keyframes rotate {
    0% {
      -webkit-transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
    }
  }
  @keyframes rotate {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  .row > * {
    position: relative;
  }

  @media (min-width: 1480px) {
    .col-xxl-4 {
      -ms-flex: 0 0 33.333333%;
      -webkit-box-flex: 0;
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
  }
  @media (max-width: 575px) {
    .col-xs-6 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: 50%;
    }
  }
  @media only screen and (max-width: 575px) and (max-width: 400px) {
    .col-xs-6 {
      width: 100%;
    }
  }
  ::-moz-selection {
    background-color: #004aad;
    color: #fff;
  }

  .custom-container {
    max-width: 1400px;
  }

  .row > * {
    position: relative;
  }

  @media (min-width: 1480px) {
    .col-xxl-4 {
      -ms-flex: 0 0 33.333333%;
      -webkit-box-flex: 0;
              flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
  }
  @media (max-width: 575px) {
    .col-xs-6 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 50%;
    }
  }
  @media only screen and (max-width: 575px) and (max-width: 400px) {
    .col-xs-6 {
      width: 100%;
    }
  }
  ::-moz-selection {
    background-color: var(--primary-color);
    color: #fff;
  }
  ::selection {
    background-color: var(--primary-color);
    color: #fff;
  }

  /*-------------------------------------------------
      [ ## Header ]
  */
  .header-section {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: transparent;
  }
  @media only screen and (max-width: 1199px) {
    .header-section {
      background-color: #002046;
    }
    .header-section .header-top-area .container {
      max-width: 100%;
    }
  }

  .header {
    background-color: transparent;
    width: 100%;
    z-index: 99;
    -webkit-transition: all ease 1s;
    transition: all ease 1s;
  }
  .header.active {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    position: fixed;
    top: 0;
    left: 0;
    -webkit-animation-name: fadeInDown;
            animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-transition: all 1s;
    transition: all 1s;
  }

  .header-section.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #fff;
  }
  .header-section.header-fixed .header-top-area {
    display: none !important;
  }
  .header-section.header-fixed .header-bottom-area {
    padding: 0 50px 0 50px;
    -webkit-box-shadow: 0 36px 71px -10px rgba(0, 0, 0, 0.07);
            box-shadow: 0 36px 71px -10px rgba(0, 0, 0, 0.07);
  }
  @media only screen and (max-width: 991px) {
    .header-section.header-fixed .header-bottom-area {
      padding: 0;
    }
  }

  .header-bottom-area {
    position: relative;
    background-color: #002046;
  }
  @media only screen and (max-width: 1199px) {
    .header-bottom-area {
      padding: 10px 0 0 0;
    }
  }
  .header-bottom-area .navbar-expand-lg {
    background-color: transparent;
    padding: 0 !important;
  }
  @media (max-width: 1199px) {
    .header-bottom-area .navbar-collapse {
      background-color: transparent !important;
      padding: 0 !important;
    }
    .header-bottom-area .navbar-collapse .main-menu {
      padding: 50px 0 20px 0;
      display: block;
    }
    .header-bottom-area .menu_has_children .sub-menu {
      display: none !important;
    }
    .header-bottom-area .menu_has_children .sub-menu li {
      width: 100%;
    }
    .header-bottom-area .navbar-collapse .main-menu .menu_has_children.show .sub-menu,
    .header-bottom-area .navbar-collapse .main-menu .menu_has_children.show .sub-menu {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
    }
  }
  .header-bottom-area .navbar-collapse .main-menu li:last-child .sub-menu {
    left: auto;
    right: 0;
  }
  .header-bottom-area .navbar-collapse .main-menu li {
    position: relative;
  }
  @media only screen and (max-width: 1199px) {
    .header-bottom-area .navbar-collapse .main-menu li {
      padding-right: 18px;
    }
  }
  .header-bottom-area .navbar-collapse .main-menu li:last-child {
    padding-right: 0;
    margin-right: 0;
  }
  .header-bottom-area .navbar-collapse .main-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
  }
  .header-bottom-area .navbar-collapse .main-menu li.menu_has_children {
    position: relative;
  }
  .header-bottom-area .navbar-collapse .main-menu li.menu_has_children i {
    font-size: 12px;
    margin-left: 5px;
  }
  @media (max-width: 1199px) {
    .header-bottom-area .navbar-collapse .main-menu li.menu_has_children::before {
      top: 12px;
      right: 15px;
    }
  }
  .header-bottom-area .navbar-collapse .main-menu li a {
    position: relative;
    padding: 20px 18px;
    font-weight: 500;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 9;
  }
  @media only screen and (max-width: 1400px) {
    .header-bottom-area .navbar-collapse .main-menu li a {
      font-size: 14px;
    }
  }
  .header-bottom-area .navbar-collapse .main-menu li a::after {
    position: absolute;
    content: "";
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .header-bottom-area .navbar-collapse .main-menu li a:hover, .header-bottom-area .navbar-collapse .main-menu li a.active {
    color: var(--primary-color);
  }
  .header-bottom-area .navbar-collapse .main-menu li a:hover::after, .header-bottom-area .navbar-collapse .main-menu li a.active::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  .header-bottom-area .header-section.header-fixed .navbar-collapse .main-menu li a {
    padding: 30px 18px 30px 0;
  }
  @media (max-width: 1199px) {
    .header-bottom-area .navbar-collapse .main-menu li a {
      padding: 12px 15px !important;
      display: block;
    }
  }
  .header-bottom-area .navbar-collapse .main-menu li .sub-menu {
    position: absolute;
    top: 105%;
    left: 0;
    width: 190px;
    background-color: #002046;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    border-top: 2px solid var(--primary-color);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 999;
    margin-left: 0;
  }
  @media only screen and (max-width: 1199px) {
    .header-bottom-area .navbar-collapse .main-menu li .sub-menu {
      background-color: #fff;
    }
  }
  .header-bottom-area .navbar-collapse .main-menu li .sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 0;
    padding-right: 0;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    position: relative;
    z-index: 2;
  }
  @media only screen and (max-width: 1199px) {
    .header-bottom-area .navbar-collapse .main-menu li .sub-menu li {
      border-bottom: 1px solid #d6d6d6;
    }
  }
  .header-bottom-area .navbar-collapse .main-menu li .sub-menu li:last-child {
    border-bottom: 0px solid;
  }
  .header-bottom-area .navbar-collapse .main-menu li .sub-menu li:hover a {
    color: var(--primary-color);
    margin-left: 10px;
  }
  .header-bottom-area .navbar-collapse .main-menu li .sub-menu li a {
    color: #fff;
    width: 100%;
    padding: 8px 15px;
    font-size: 14px;
    display: block;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
  }
  @media only screen and (max-width: 1199px) {
    .header-bottom-area .navbar-collapse .main-menu li .sub-menu li a {
      color: #353448;
    }
  }
  .header-bottom-area .navbar-collapse .main-menu li .sub-menu li a::after {
    position: unset;
    content: none;
  }
  .header-bottom-area .navbar-collapse .main-menu li .sub-menu .header-section.header-fixed .navbar-collapse .main-menu li .sub-menu li a {
    padding: 8px 20px;
  }
  @media (max-width: 1199px) {
    .header-bottom-area .navbar-collapse .main-menu li .sub-menu .navbar-collapse .main-menu li .sub-menu {
      position: initial;
      opacity: 1;
      visibility: visible;
      display: none;
      -webkit-transition: none;
      transition: none;
    }
  }
  .header-bottom-area .navbar-collapse .main-menu li .sub-menu .navbar-collapse .main-menu li:last-child .sub-menu {
    left: auto;
    right: 0;
  }

  .site-logo {
    max-width: 125px;
    padding: 20px 25px !important;
    margin: 0 20px;
    margin-bottom: -55px;
    background-color: #002046;
    border-radius: 50%;
  }
  .site-logo img {
    position: relative;
    top: -3px;
  }
  .site-logo::after {
    bottom: auto !important;
    top: 0;
    -webkit-transform: scaleX(1) !important;
            transform: scaleX(1) !important;
  }

  .header-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  @media only screen and (max-width: 1199px) {
    .header-action {
      margin-left: 12px;
    }
  }
  /* @media only screen and (max-width: 991px) {
    .header-action {
      padding-bottom: 20px;
    }
  } */
  .header-action a {
    padding: 5px 20px;
  }

  .navbar-toggler:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .navbar-toggler span {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    color: var(--primary-color);
    font-size: 30px;
  }
  @media only screen and (max-width: 1199px) {
    .navbar-toggler span {
      font-size: 22px;
    }
  }

  .header-right-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  @media only screen and (max-width: 1199px) {
    .header-right-info {
      padding-bottom: 20px;
    }
  }
  .header-right-info button, .header-right-info input[type=button], .header-right-info input[type=reset], .header-right-info input[type=submit] {
    background-color: transparent;
    padding: 0;
  }

  .header-user-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 40px;
  }
  @media only screen and (max-width: 1199px) {
    .header-user-area {
      margin-right: 0;
    }
  }

  .header-user-thumb {
    width: 40px;
  }
  .header-user-thumb img {
    width: 40px;
    height: 40px;
    border: 4px solid var(--primary-color);
    object-fit: cover;
    -o-object-fit: cover;
    -o-object-position: center;
       object-position: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }

  .header-user-content {
    padding-left: 10px;
  }
  .header-user-content span {
    font-size: 16px;
    color: #fff;
  }

  .dropdown-menu.dropdown-menu--sm {
    min-width: 12rem;
  }

  .dropdown-menu {
    pointer-events: none;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    display: block;
    opacity: 0;
    visibility: hidden;
    border: none;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    border-radius: 3px;
  }

  .dropdown-menu.show {
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .dropdown-menu__item {
    border-bottom: 1px solid #d6d6d6;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .dropdown-menu__item:hover {
    background: var(--primary-color);
    border-radius: 3px;
  }
  .dropdown-menu__item:hover .dropdown-menu__icon {
    color: #fff;
  }
  .dropdown-menu__item:hover .dropdown-menu__caption {
    color: #fff;
  }
  .dropdown-menu__item:last-child {
    border: none;
  }
  .dropdown-menu__item .dropdown-menu__icon {
    color: #353448;
    font-size: 22px;
  }
  .dropdown-menu__item .dropdown-menu__caption {
    padding-left: 10px;
    font-size: 14px;
    color: #353448;
    font-family: "Exo 2", sans-serif;
    font-weight: 700;
  }

  /*--------------------------------------------------------------
      [ ## Introduction ]
  --------------------------------------------------------------*/
  .banner-section {
    position: relative;
    padding-top: 220px;
    padding-bottom: 100px;
    overflow: hidden;
  }
  .banner-section::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: -25px;
    width: 102%;
    height: 100%;
    background-color: #fff;
    clip-path: polygon(100% 70%, 100% 103%, 0 100%);
  }
  @media only screen and (max-width: 575px) {
    .banner-section::after {
      display: none;
    }
  }
  @media only screen and (max-width: 991px) {
    .banner-section {
      padding-top: 200px;
      padding-bottom: 70px;
    }
  }
  .banner-section .banner-content {
    position: relative;
    z-index: 9;
  }
  .banner-section .banner-content .title {
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 60px;
  }
  @media only screen and (max-width: 575px) {
    .banner-section .banner-content .title {
      font-size: 30px;
    }
  }
  .banner-section .banner-content p {
    width: 80%;
  }
  @media only screen and (max-width: 991px) {
    .banner-section .banner-content p {
      width: 100%;
    }
  }
  .banner-section .banner-content .banner-btn {
    margin: 50px -10px -10px -10px;
  }
  @media only screen and (max-width: 991px) {
    .banner-section .banner-content .banner-btn {
      margin: 40px -10px -10px -10px;
    }
  }
  .banner-section .banner-content .banner-btn a {
    margin: 0 10px 10px 10px;
  }

  .banner-widget {
    background-color: #fff;
    -webkit-box-shadow: 0 0 40px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 40px 10px rgba(0, 0, 0, 0.1);
    padding: 30px 20px 40px 20px;
    border-radius: 5px;
    border-top: 5px solid var(--primary-color);
  }
  .banner-widget .sub-title {
    font-weight: 500;
    margin-bottom: 5px;
  }
  .banner-widget .title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #d6d6d6;
  }
  .banner-widget .status-area {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .banner-widget .status-area i {
    font-size: 18px;
    border-radius: 50%;
    background: rgba(69, 130, 255, 0.2);
    color: var(--primary-color);
    position: relative;
    top: 2px;
    padding: 4px;
  }
  .banner-widget .status-area .rate-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 20px;
  }
  .banner-widget .status-area .status-area-wrapper {
    padding: 20px 15px; 
    border-radius: 10px;
    background-color: #002046;
    color: #fff !important;
  }
  .banner-widget .status-area .status-area-wrapper .ex-title {
    color: #fff;
  }

  .banner-widget-form {
    margin-bottom: -10px;
  }
  .banner-widget-form .input-group {
    margin-bottom: 20px;
  }
  .banner-widget-form .submit-btn {
    padding: 15px 30px;
  }
  .banner-widget-form input::-webkit-input-placeholder {
    font-size: 13px;
    font-weight: 700 !important;
    color: #353448;
  }
  .banner-widget-form input::-moz-placeholder {
    font-size: 13px;
    font-weight: 700 !important;
    color: #353448;
  }
  .banner-widget-form input:-ms-input-placeholder {
    font-size: 13px;
    font-weight: 700 !important;
    color: #353448;
  }
  .banner-widget-form input::-ms-input-placeholder {
    font-size: 13px;
    font-weight: 700 !important;
    color: #353448;
  }
  .banner-widget-form input::placeholder {
    font-size: 13px;
    font-weight: 700 !important;
    color: #353448;
  }
  .banner-widget-form input:focus {
    border-color: var(--primary-color);
  }
  .banner-widget-form label {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
  }
  .banner-widget-form .form-curncy.two select {
    top: 0;
  }

  .terms-area {
    margin-top: 15px;
    text-align: center;
  }
  .terms-area p {
    font-size: 12px;
    font-weight: 500;
  }

  .inner-banner-section {
    padding-top: 200px;
    padding-bottom: 80px;
  }
  .inner-banner-section .banner-content .title {
    font-size: 45px;
    margin-bottom: 15px;
  }
  @media only screen and (max-width: 991px) {
    .inner-banner-section .banner-content .title {
      font-size: 30px;
    }
  }
  .inner-banner-section::after {
    display: none;
  }
  @media only screen and (max-width: 991px) {
    .inner-banner-section {
      padding-top: 180px;
      padding-bottom: 60px;
    }
  }

  .breadcrumb {
    background-color: transparent;
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .breadcrumb li {
    color: #fff;
    font-family: "Exo 2", sans-serif;
    text-transform: uppercase;
  }

  .breadcrumb-item a {
    font-weight: 500;
    font-size: 14px;
    position: relative;
    z-index: 2;
    color: var(--primary-color);
  }
  @media only screen and (max-width: 991px) {
    .breadcrumb-item a {
      font-size: 12px;
    }
  }

  .breadcrumb-item.active {
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    position: relative;
    z-index: 2;
  }
  @media only screen and (max-width: 991px) {
    .breadcrumb-item.active {
      font-size: 12px;
    }
  }

  .breadcrumb-item.active::before {
    content: "/";
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
    left: 0;
  }

  .banner-btn .video-icon {
    position: relative;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #fff;
    font-size: 22px;
    z-index: 2;
    background-color: var(--primary-color);
    border-radius: 50%;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
  }
  .banner-btn .video-icon::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    border-radius: 0;
    border-radius: 50%;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    -webkit-animation: ripple 1.6s ease-out infinite;
            animation: ripple 1.6s ease-out infinite;
    background-color: var(--primary-color);
  }

  /*--------------------------------------------------------------
      [ ## Footer ]
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Footer-block
  --------------------------------------------------------------*/
  .footer-section {
    position: relative;
  }
  .footer-section .site-logo {
    max-width: 130px;
    background-color: transparent;
  }
  .footer-section::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a1227;
    opacity: 0.8;
  }

  .footer-links li {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
  }
  @media only screen and (max-width: 575px) {
    .footer-links li {
      font-size: 12px;
    }
  }
  .footer-links li + li {
    margin-left: 10px;
  }

  .footer-social {
    margin-top: 30px;
    gap: 10px;
    display: flex;
    justify-content: center;
  }
  .footer-social li {
    display: inline-block;
  }
  .footer-social li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: inline-block;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .footer-social li a:hover, .footer-social li a.active {
    background-color: var(--primary-color);
  }
  .footer-social li + li {
    margin-left: 10px;
  }

  .copyright-area {
    background-color: #002046;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
  }

  .copyright p {
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
  }
  @media only screen and (max-width: 575px) {
    .copyright p {
      font-size: 12px;
    }
  }

  /*--------------------------------------------------------------
  # Pages
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
      [ ## team ]
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
      [ ## Testimonial ]
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Testimonial-block
  --------------------------------------------------------------*/
  .client-section {
    background-color: #f7f9fc;
  }

  .client-slider {
    overflow: hidden;
    padding: 0 30px;
  }

  .client-item {
    padding: 20px;
    border-radius: 20px;
    background-color: #fff;
    -webkit-box-shadow: 1px 13px 10px -6px rgba(0, 0, 0, 0.09);
            box-shadow: 1px 13px 10px -6px rgba(0, 0, 0, 0.09);
  }
  @media only screen and (max-width: 991px) {
    .client-item {
      display: block !important;
    }
  }

  .client-thumb {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-block;
    z-index: 2;
  }
  .client-thumb img {
    width: 70px;
    height: 70px;
    display: block;
    border-radius: 50%;
  }
  .client-thumb::after {
    content: "";
    border-radius: 50%;
    position: absolute;
    background-color: var(--primary-color);
    width: 108%;
    height: 108%;
    left: 0;
    top: 0;
    z-index: -1;
  }

  .client-content {
    width: calc(100% - 70px);
    padding-left: 30px;
  }
  @media only screen and (max-width: 991px) {
    .client-content {
      width: 100%;
      padding-left: 0;
      padding-top: 20px;
    }
  }
  .client-content .client-quote {
    font-size: 60px;
    color: var(--primary-color);
  }
  .client-content p {
    font-size: 14px;
  }
  .client-content .title {
    font-size: 16px;
    margin-bottom: 3px;
  }
  .client-content .sub-title {
    font-size: 10px;
    font-weight: 500;
    font-style: italic;
  }

  /*--------------------------------------------------------------
      [ ## Sections ]
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
      [ ## Sections ]
  --------------------------------------------------------------*/
  /*-------------------------------------------------
      [ ### service block ]
  */
  .services-section {
    background-color: #f7f9fc;
  }

  .service-left-icon {
    background: #FFF6E6;
    color: var(--primary-color);
    font-size: 18px;
    height: 46px;
    width: 46px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1;
    border-radius: 5px;
    margin-bottom: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .service-item {
    background: #fff;
    -webkit-box-shadow: 0 36px 71px -10px rgba(0, 0, 0, 0.07);
            box-shadow: 0 36px 71px -10px rgba(0, 0, 0, 0.07);
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    border-bottom: 5px solid var(--primary-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  @media only screen and (max-width: 991px) {
    .service-item {
      padding: 20px;
    }
  }
  .service-item:hover {
    -webkit-transform: translateY(-7px);
            transform: translateY(-7px);
  }

  @media only screen and (max-width: 991px) {
    .service-left-content {
      margin-bottom: 30px;
    }
  }
  .service-left-content .title span {
    font-weight: 700;
  }

  .service-icon {
    width: 80px;
    height: 80px;
    line-height: 85px;
    display: inline-block;
    text-align: center;
    background: #fff;
    -webkit-box-shadow: 1px 24px 37px -6px rgba(0, 0, 0, 0.09);
            box-shadow: 1px 24px 37px -6px rgba(0, 0, 0, 0.09);
    border-radius: 45px 10px;
    font-size: 40px;
    color: var(--primary-color);
    margin-top: -50px;
  }
  @media only screen and (max-width: 991px) {
    .service-icon {
      font-size: 40px;
    }
  }

  .service-content {
    margin-top: 20px;
  }
  .service-content .title {
    margin-bottom: 15px;
  }
  .service-content p {
    font-size: 14px;
  }

  /*-------------------------------------------------
      [ ### feature block ]
  */
  .feature-item {
    min-height: 200px;
    padding: 30px;
    background: #fff;
    border-bottom: 6px solid var(--primary-color);
    border-radius: 5px;
    -webkit-box-shadow: 0 36px 71px -10px rgba(0, 0, 0, 0.07);
            box-shadow: 0 36px 71px -10px rgba(0, 0, 0, 0.07);
  }

  .feature-left-icon {
    background: #FFF6E6;
    color: var(--primary-color);
    font-size: 18px;
    height: 46px;
    width: 46px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1;
    border-radius: 5px;
    margin-bottom: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .feature-icon {
    margin-bottom: 30px;
  }

  /*-------------------------------------------------
      [ ### plan block ]
  */
  .plan-section {
    overflow: hidden;
  }

  .plan-area {
    position: relative;
  }
  .plan-area::before {
    position: absolute;
    content: "";
    background: #002046;
    width: calc(100vw + 10rem);
    height: calc(100% + 10rem);
    top: -5rem;
    left: -5rem;
    border-top-left-radius: 100px;
  }

  .plan-left-icon {
    background: #fff;
    color: var(--primary-color);
    font-size: 18px;
    height: 46px;
    width: 46px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1;
    border-radius: 5px;
    margin-bottom: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .plan-left-btn {
    margin: -7px;
    margin-top: 30px;
  }
  .plan-left-btn a {
    margin: 7px;
  }
  .plan-left-btn a:hover i {
    color: #353448;
  }
  .plan-left-btn a i {
    color: rgba(8, 28, 69, 0.25);
    margin-right: 8px;
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .plan-left-btn a i::after {
    height: 2px;
    width: calc(100% + 6px);
    background: #75869A;
    position: absolute;
    content: "";
    bottom: -15.5px;
    left: -3px;
  }

  .plan-item {
    background: #fff;
    -webkit-box-shadow: 1px 24px 37px -6px rgba(0, 0, 0, 0.09);
            box-shadow: 1px 24px 37px -6px rgba(0, 0, 0, 0.09);
    border-radius: 10px;
    border-top-left-radius: 45px;
    border-bottom-right-radius: 45px;
    padding: 0 24px 24px 24px;
  }

  .plan-header {
    background: #353448;
    border-radius: 10px;
    padding: 16px;
    transform: translate(0px, -2rem);
    -webkit-transform: translate(0px, -2rem);
    -webkit-box-shadow: 0 33px 82px -5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 33px 82px -5px rgba(0, 0, 0, 0.1);
    min-height: 180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .plan-header-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .plan-header-item i {
    color: #fff;
    font-size: 16px;
  }
  .plan-header-item .title {
    color: var(--primary-color);
    margin-bottom: 0;
    font-size: 20px;
    margin-top: 10px;
  }
  .plan-header-item .title small {
    font-size: 18px;
    vertical-align: top;
  }
  .plan-header-item p {
    color: #fff;
    font-size: 11px;
  }

  .plan-list li {
    padding-bottom: 5px;
    font-size: 13px;
  }
  .plan-list li i {
    color: var(--primary-color);
  }

  /*-------------------------------------------------
      [ ### overview block ]
  */
  .overview-section {
    overflow: hidden;
  }
  @media only screen and (max-width: 991px) {
    .overview-section .col-xl-6 {
      margin-bottom: 30px;
    }
  }

  .overview-area {
    position: relative;
  }
  .overview-area::before {
    position: absolute;
    content: "";
    background: #fff;
    -webkit-box-shadow: 0 16px 71px -10px rgba(0, 0, 0, 0.07);
            box-shadow: 0 16px 71px -10px rgba(0, 0, 0, 0.07);
    width: calc(100vw + 10rem);
    height: calc(100% + 7rem);
    top: -5rem;
    left: -5rem;
    border-top-left-radius: 100px;
  }

  .overview-content .title {
    margin-bottom: 15px;
  }
  .overview-content .title span {
    font-weight: 700;
  }

  .overview-right-icon {
    background: #FFF6E6;
    color: var(--primary-color);
    font-size: 18px;
    height: 46px;
    width: 46px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1;
    border-radius: 5px;
    margin-bottom: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .overview-thumb {
    width: 70%;
  }
  .overview-thumb.style--two {
    width: 100%;
  }
  .overview-thumb img {
    width: 100%;
  }

  /*-------------------------------------------------
      [ ### faq block ]
  */
  .faq-left-content .title span {
    font-weight: 700;
  }

  .faq-left-icon {
    background: #fff;
    color: var(--primary-color);
    font-size: 18px;
    height: 46px;
    width: 46px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1;
    border-radius: 5px;
    margin-bottom: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .faq-left-btn {
    margin: -7px;
    margin-top: 30px;
  }
  .faq-left-btn a {
    margin: 7px;
  }
  .faq-left-btn a:hover i {
    color: #353448;
  }
  .faq-left-btn a i {
    color: rgba(8, 28, 69, 0.25);
    margin-right: 8px;
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .faq-left-btn a i::after {
    height: 2px;
    width: calc(100% + 6px);
    background: #75869A;
    position: absolute;
    content: "";
    bottom: -15.5px;
    left: -3px;
  }

  .faq-wrapper {
    margin-bottom: -30px;
  }
  @media only screen and (max-width: 991px) {
    .faq-wrapper {
      padding: 15px;
    }
  }
  .faq-wrapper .faq-item {
    border-radius: 5px;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .faq-wrapper .faq-item .faq-title {
    font-size: 14px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    align-items: center;
    padding: 7px 20px;
    margin-bottom: 0;
    border-radius: 5px;
    background: #ECEDF0;
  }
  .faq-wrapper .faq-item .faq-title .title {
    width: calc(100% - 40px);
    display: inline-block;
    margin-bottom: 0;
  }
  .faq-wrapper .faq-item .faq-content {
    display: none;
    margin-top: 15px;
  }
  .faq-wrapper .faq-item .faq-content p {
    font-size: 13px;
  }
  .faq-wrapper .faq-item .right-icon {
    display: block;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: relative;
  }
  .faq-wrapper .faq-item .right-icon::before, .faq-wrapper .faq-item .right-icon::after {
    position: absolute;
    content: "";
    background: #fff;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .faq-wrapper .faq-item .right-icon::before {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
  }
  .faq-wrapper .faq-item .right-icon::after {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
  }
  .faq-wrapper .faq-item.active .faq-content {
    display: block;
  }
  .faq-wrapper .faq-item.active.open .right-icon::before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .faq-wrapper .faq-item.open .right-icon::before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
  }

  /*-------------------------------------------------
      [ ### statistics block ]
  */
  .statistics-section {
    margin-top: -20px;
    position: relative;
    z-index: 9;
  }

  .statistics-item {
    background: #fff;
    -webkit-box-shadow: 0 36px 71px -10px rgba(0, 0, 0, 0.07);
            box-shadow: 0 36px 71px -10px rgba(0, 0, 0, 0.07);
    border-radius: 5px;
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .statistics-item p {
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 600;
  }

  .statistics-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: inline-block;
    background: #fff6e6;
    border-radius: 4px;
    color: var(--primary-color);
    font-size: 30px;
  }

  .statistics-content {
    width: calc(100% - 50px);
    padding-left: 15px;
  }

  .odo-area .odo-title {
    display: inline-block;
    font-size: 18px;
    margin-bottom: 0;
  }

  /*-------------------------------------------------
      [ ### contact block ]
  */
  .contact-thumb {
    overflow: hidden;
    border-radius: 8px;
    -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  }
  .contact-thumb img {
    width: 100%;
  }

  .contact-form-area .contact-form-header .title {
    margin-bottom: 3px;
  }
  .contact-form-area .contact-form-header p {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .contact-form-area .form--control {
    font-size: 14px;
    border: 1px solid #d6d6d6;
    border-radius: 8px;
    color: #353448;
    font-weight: 600;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .contact-form-area .form--control::-webkit-input-placeholder {
    color: #6B768A;
    font-weight: 500;
  }
  .contact-form-area .form--control::-moz-placeholder {
    color: #6B768A;
    font-weight: 500;
  }
  .contact-form-area .form--control:-ms-input-placeholder {
    color: #6B768A;
    font-weight: 500;
  }
  .contact-form-area .form--control::-ms-input-placeholder {
    color: #6B768A;
    font-weight: 500;
  }
  .contact-form-area .form--control::placeholder {
    color: #6B768A;
    font-weight: 500;
  }
  .contact-form-area .form--control:focus {
    border-color: var(--primary-color);
    background-color: #fff;
  }

  .contact-widget .contact-form-header {
    margin-bottom: 15px;
  }
  .contact-widget .contact-form-header .title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 26px;
  }
  .contact-widget .contact-item-list li {
    margin-top: 30px;
  }
  .contact-widget .contact-item-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact-widget .contact-item-list li .contact-item-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    text-align: center;
    background-color: var(--primary-color);
    -webkit-box-shadow: 0px 12px 24px rgba(106, 105, 194, 0.25);
            box-shadow: 0px 12px 24px rgba(106, 105, 194, 0.25);
    border-radius: 20px;
    color: #fff;
    font-size: 24px;
  }
  .contact-widget .contact-item-list li .contact-item-icon.tow {
    background: #0dc270;
  }
  .contact-widget .contact-item-list li .contact-item-icon.three {
    background: yellowgreen;
  }
  .contact-widget .contact-item-list li .contact-item-content {
    width: calc(100% - 60px);
    padding-left: 20px;
  }

  .contact-btn i {
    position: relative;
    top: 1px;
    margin-left: 5px;
  }

  .map-area {
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(237, 237, 237) 24%, rgb(237, 237, 237) 24%, rgb(243, 243, 243) 24%, rgb(255, 255, 255) 100%);
    -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding: 10px;
  }
  .map-area iframe {
    width: 100%;
    height: 385px;
  }

  /*-------------------------------------------------
      [ ### account block ]
  */
  .account-logo-area {
    position: relative;
    margin-bottom: 40px;
  }
  .account-logo-area .account-logo img {
    height: 100px;
  }

  .account-header {
    margin-bottom: 30px;
  }
  .account-header .title {
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    position: relative;
  }
  .account-header .title::before {
    content: "";
    height: 1px;
    position: absolute;
    top: 10px;
    width: 35%;
    background: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.2) 0%, rgba(96, 105, 117, 0.3) 100%);
    left: 0;
  }
  .account-header .title::after {
    content: "";
    height: 1px;
    position: absolute;
    top: 10px;
    width: 35%;
    background: -webkit-linear-gradient(right, rgba(96, 105, 117, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    right: 0;
  }
  @media only screen and (max-width: 991px) {
    .account-header .title {
      font-size: 16px;
    }
  }

  .account-form-area {
    position: relative;
    padding: 30px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #d6d6d6;
  }
  @media only screen and (max-width: 767px) {
    .account-form-area {
      padding: 20px;
    }
  }
  .account-form-area::before {
    background: #fff;
    border: 1px solid #d6d6d6;
    border-radius: 3px;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f8f8f8", endColorstr="#f9f9f9",GradientType=0 );
    content: "";
    display: block;
    height: 100%;
    left: -1px;
    position: absolute;
    width: 100%;
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
    top: 0;
    z-index: -2;
  }
  @media only screen and (max-width: 991px) {
    .account-form-area::before {
      display: none;
    }
  }
  .account-form-area::after {
    background: #fff;
    border: 1px solid #d6d6d6;
    border-radius: 3px;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f8f8f8", endColorstr="#f9f9f9",GradientType=0 );
    content: "";
    display: block;
    height: 100%;
    left: -1px;
    position: absolute;
    width: 100%;
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
    top: 0;
    z-index: -1;
  }
  @media only screen and (max-width: 991px) {
    .account-form-area::after {
      display: none;
    }
  }
  .show_hide_password {
  position: relative;
}
.show_hide_password .show-pass {
  position: absolute;
  top: 10px;
  right: 30px;
  font-size: 14px;
  cursor: pointer;
}
.show_hide_password .show-pass.two {
  top: 50px;
}

.account-form .show_hide_password {
  position: relative;
}
.account-form .show_hide_password .show-pass {
  position: absolute !important;
  top: 45px !important;
  right: 30px;
  font-size: 14px;
}
.account-form .show_hide_password-2 {
  position: relative;
}
.account-form .show_hide_password-2 .show-pass {
  position: absolute;
  top: 14px;
  right: 30px;
  font-size: 14px;
}

  /*-------------------------------------------------
      [ ### dashboard block ]
  */
  .image-upload-wrapper {
    background-color: #fff;
    border: 1px solid #d6d6d6;
    border-radius: 10px;
    padding: 30px;
  }
  .image-upload-wrapper.two {
    border-radius: 0 0 10px 10px;
  }

  .image-upload .thumb .profilePicPreview {
    width: 100%;
    height: 310px;
    display: block;
    border: 3px solid #f1f1f1;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    background-size: cover !important;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
  }
  .image-upload .thumb .profilePicPreview .remove-image {
    position: absolute;
    top: -9px;
    right: -9px;
    text-align: center;
    width: 55px;
    height: 55px;
    font-size: 24px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    display: none;
    z-index: 9;
  }
  .image-upload .thumb .profilePicPreview.has-image .remove-image {
    display: block;
  }
  .image-upload .thumb .profilePicUpload {
    font-size: 0;
    display: none;
  }
  .image-upload .thumb .avatar-edit label {
    text-align: center;
    line-height: 35px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 2px 25px;
    width: 100%;
    border-radius: 5px;
    background: var(--primary-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin-top: 20px;
  }

  .user-profile-list {
    margin-top: 30px;
  }
  .user-profile-list li {
    font-size: 18px;
    font-weight: 600;
    color: #353448;
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 17px;
    margin-bottom: 17px;
  }
  @media only screen and (max-width: 575px) {
    .user-profile-list li {
      font-size: 14px;
    }
  }
  .user-profile-list li:last-child {
    border: none;
    padding: 0;
    margin: 0;
  }
  .user-profile-list li span {
    float: right;
    font-size: 16px;
    color: #6B768A;
    font-weight: 500;
  }
  @media only screen and (max-width: 575px) {
    .user-profile-list li span {
      font-size: 14px;
    }
  }
  .user-profile-list li i {
    font-size: 24px;
    position: relative;
    top: 2px;
  }

  .dashboard-item {
    background: #fff;
    -webkit-box-shadow: 0 10px 20px rgba(183, 180, 187, 0.2);
            box-shadow: 0 10px 20px rgba(183, 180, 187, 0.2);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
  }
  .dashboard-item:hover {
    -webkit-transform: translateY(-7px);
            transform: translateY(-7px);
  }
  .dashboard-item .date-select {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .dashboard-item .date-select select {
    background-color: #d6d6d6;
    border-radius: 7px;
    padding: 4px 0;
    font-size: 12px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border: none;
  }
  .dashboard-item .card-btn {
    margin-top: 10px;
    display: inline-block;
    padding: 1px 15px !important;
    font-size: 14px;
  }

  .dashboard-icon {
    width: 85px;
    height: 85px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    background-color: rgba(69, 130, 255, 0.1);
    border: 1px solid rgba(69, 130, 255, 0.1);
    color: var(--primary-color);
    font-size: 40px;
    margin-bottom: 15px;
    margin-top: 35px;
  }

  .dashboard-content .sub-title {
    color: #353448;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .dashboard-content p {
    font-size: 14px;
  }
  .dashboard-content p span {
    background-color: var(--primary-color);
    color: #fff;
    padding: 1px 10px;
    border-radius: 4px;
    font-size: 10px;
    margin-right: 2px;
  }

  .payment-item {
    position: relative;
    background: #fff;
    -webkit-box-shadow: 1px 24px 37px 24px rgba(0, 0, 0, 0.09);
            box-shadow: 1px 24px 37px 24px rgba(0, 0, 0, 0.09);
    padding: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .payment-item:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  @media only screen and (max-width: 499px) {
    .payment-item {
      display: block;
      text-align: center;
    }
  }

  .payment-badge {
    top: -1px;
    right: -1px;
    width: 40px;
    height: 40px;
    position: absolute;
    border-right: 50px solid var(--primary-color);
    border-bottom: 50px solid transparent;
  }
  .payment-badge i {
    right: -44px;
    top: 0;
    color: #fff;
    bottom: auto;
    font-size: 16px;
    line-height: 30px;
    position: absolute;
  }

  .payment-list li {
    padding-bottom: 10px;
    font-size: 14px;
    margin-bottom: 10px;
    border-bottom: 1px solid #d6d6d6;
    font-weight: 600;
  }
  .payment-list li span {
    font-weight: 700;
  }

  .accordion--base .accordion-item {
    margin-bottom: 15px;
  }
  .accordion--base .accordion-header {
    background: #353448;
    border-radius: 5px;
  }
  .accordion--base .accordion-button {
    color: #fff;
  }
  .accordion--base .accordion-button:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
  }
  .accordion--base .accordion-button::after {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
  .accordion--base .accordion-button:not(.collapsed) {
    background: #353448;
  }

  .footer-area {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  @media only screen and (max-width: 991px) {
    .footer-area {
      display: none;
    }
  }
  .footer-area p {
    font-weight: 600;
    margin-top: 10px;
    font-size: 13px;
  }

  .dashboard-user {
    word-wrap: break-word;
    background: #fff;
    background-clip: border-box;
    border: 0 solid transparent;
    -webkit-box-shadow: 0 1px 2px rgba(56, 65, 74, 0.15);
            box-shadow: 0 1px 2px rgba(56, 65, 74, 0.15);
    border-top: 4px solid #002046;
    position: relative;
    border-radius: 5px;
    padding: 20px;
    z-index: 2;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .dashboard-user::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #f3f3f9;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    z-index: -1;
  }
  .dashboard-user .title {
    font-size: 16px;
    font-weight: 600;
    color: #353448;
  }
  .dashboard-user .user-count {
    padding-top: 10px;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
    color: rgba(53, 52, 72, 0.8);
  }

  .dashboard-icon-area .dashboard-icon {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .dash-btn {
    position: absolute;
    top: 30px;
    right: 20px;
    padding: 1px 8px;
    background-color: #002046;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 3px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .notification-area {
    position: relative;
  }
  .notification-area .notification-wrapper {
    position: absolute;
    right: 0;
    top: 120%;
    width: 300px;
    background-color: #fff;
    -webkit-box-shadow: 0 8px 14.72px 1.28px rgba(154, 154, 204, 0.1);
            box-shadow: 0 8px 14.72px 1.28px rgba(154, 154, 204, 0.1);
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    z-index: 9;
    max-height: 380px;
    overflow-y: auto;
    display: none;
  }
  @media only screen and (max-width: 1199px) {
    .notification-area .notification-wrapper {
      top: unset;
      bottom: 120%;
    }
  }
  .notification-area .notification-header {
    padding: 10px 20px;
  }
  .notification-area .notification-header .title {
    line-height: 1.7em;
    margin-bottom: 2px;
  }
  .notification-area .notification-header .sub-title {
    font-size: 12px;
  }
  .notification-area .notification-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-top: 1px solid #e5e5e5;
    padding: 10px 20px;
  }
  .notification-area .notification-list li .thumb {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
  }
  .notification-area .notification-list li .content {
    width: calc(100% - 45px);
    padding-left: 20px;
  }
  .notification-area .notification-list li .content .title {
    line-height: 1.7em;
    margin-bottom: 2px;
  }
  .notification-area .notification-list li .content .title span {
    color: var(--primary-color);
  }
  .notification-area .notification-list li .content .sub-title {
    font-size: 12px;
  }

  .payment-confirm-list {
    margin-top: 30px;
  }
  .payment-confirm-list li {
    font-size: 18px;
    font-weight: 600;
    color: #353448;
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  @media only screen and (max-width: 575px) {
    .payment-confirm-list li {
      font-size: 14px;
    }
  }
  .payment-confirm-list li:last-child {
    border: none;
    padding: 0;
    margin: 0;
  }
  .payment-confirm-list li span {
    color: #6B768A;
    font-size: 16px;
    font-weight: 500;
    float: right;
  }
  @media only screen and (max-width: 575px) {
    .payment-confirm-list li span {
      font-size: 14px;
    }
  }

  .transaction-form {
    border-top: 1px solid #d6d6d6;
    margin-top: 30px;
    padding-top: 30px;
  }
  .transaction-form .radio-item-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .transaction-form textarea {
    display: none;
  }
  .transaction-form textarea.show {
    display: block;
  }

  .withdraw-log-area {
    padding: 20px;
  }

  .withdraw-log-list li {
    font-weight: 500;
    padding-bottom: 8px;
  }
  .withdraw-log-list li span {
    float: right;
  }

  .withdraw-form .input-group-text {
    height: 50px;
  }

  .withdraw-form-area {
    padding: 20px;
  }

  /*-------------------------------------------------
      [ ### Support Chats block ]
  */
  .user-info-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 15px 20px 15px 20px;
    background: #002046;
    -webkit-box-shadow: 0 1px 2px rgba(56, 65, 74, 0.15);
            box-shadow: 0 1px 2px rgba(56, 65, 74, 0.15);
    border-radius: 10px 10px 0 0;
  }
  .user-info-header .title {
    color: #fff;
  }

  .support-chat-area {
    background-color: #fff;
    -webkit-box-shadow: 0 1px 2px rgba(56, 65, 74, 0.15);
    box-shadow: 0 1px 2px rgba(56, 65, 74, 0.15);
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 100px;
  }

  .ps-container {
    position: relative;
    -ms-touch-action: auto;
    touch-action: auto;
    overflow-y: auto;
    max-height: 600px;
  }
  @media only screen and (max-width: 991px) {
    .ps-container {
      max-height: 435px;
    }
  }

  .media {
    padding: 8px 12px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 0;
    width: 40%;
  }
  @media only screen and (max-width: 575px) {
    .media {
      width: 100%;
    }
  }
  .media.media-chat-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-left: auto;
  }
  .media.media-chat-reverse .media-body p {
    border-radius: 20px 0 20px 20px;
  }
  @media only screen and (max-width: 991px) {
    .media.media-chat-reverse {
      padding-left: 0;
    }
  }
  .media .avatar {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 100%;
    background-color: #fff;
    text-transform: uppercase;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .media .media-body p {
    position: relative;
    padding: 15px;
    margin: 4px 0;
    background-color: var(--primary-color);
    font-size: 12px;
    line-height: 1.9em;
    border-radius: 0 20px 20px 20px;
    font-weight: 400;
    color: #fff;
  }

  .media > * {
    margin: 0 8px;
  }

  .publisher {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
    padding: 12px 20px;
    background-color: #f9fbfc;
    border-top: 1px solid #d6d6d6;
  }
  @media only screen and (max-width: 575px) {
    .publisher {
      display: block;
    }
  }
  .publisher .chatbox-message-part {
    width: calc(100% - 158px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  @media only screen and (max-width: 575px) {
    .publisher .chatbox-message-part {
      width: 100%;
    }
  }
  .publisher .chatbox-message-part .avatar {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 100%;
    background-color: #fff;
    text-transform: uppercase;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .publisher > * {
    margin: 0 8px;
  }
  .publisher > *:first-child {
    margin-left: 0;
  }

  .publisher-input {
    width: calc(100% - 50px);
    font-weight: 500;
    font-size: 14px;
    border: none;
    outline: none !important;
    background-color: transparent;
  }
  @media only screen and (max-width: 575px) {
    .publisher-input {
      border-bottom: 1px solid #d6d6d6;
      width: 100%;
    }
  }

  .chatbox-send-part {
    width: 158px;
  }
  @media only screen and (max-width: 575px) {
    .chatbox-send-part {
      width: 100%;
      margin-top: 20px;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
    }
  }

  .publisher-btn {
    width: 35px;
    height: 35px;
    background-color: #002046;
    color: #fff;
    border-radius: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .file-group {
    position: relative;
    overflow: hidden;
  }
  .file-group label {
    margin-bottom: 0;
    color: #fff;
  }

  .file-group input[type=file] {
    position: absolute;
    opacity: 0;
    z-index: -1;
    width: 20px;
  }

  /*-------------------------------------------------
      [ ### AML Chats block ]
  */
  .aml-info-thumb img {
    border-radius: 10px;
  }

  /*-------------------------------------------------
      [ ### Exchange rate Chats block ]
  */
  .btn {
    color: #FFF;
    background: var(--primary-color);
    cursor: pointer;
    border-radius: 5px;
    font-size: 12px;
    padding: 5px 12px;
  }

  .money-img {
    width: 150px;
  }

  .currency {
    padding: 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .currency select {
    padding: 10px 20px 10px 10px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #dedede;
    font-size: 16px;
    background: transparent;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%20000002%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-position: right 10px top 50%, 0, 0;
    background-size: 12px auto, 100%;
    background-repeat: no-repeat;
  }

  .currency input {
    border: 0;
    background: transparent;
    font-size: 30px;
    text-align: right;
  }

  .swap-rate-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  @media only screen and (max-width: 575px) {
    .swap-rate-container {
      display: block;
      text-align: center;
    }
  }

  .rate {
    color: var(--primary-color);
    font-size: 14px;
    padding: 0 10px;
  }
  @media only screen and (max-width: 575px) {
    .rate {
      margin-top: 15px;
    }
  }

  select:focus, input:focus, button:focus {
    outline: 0;
  }

  @media (max-width: 600px) {
    .currency input {
      width: 100%;
    }
  }
  .exchange-form-area {
    padding: 30px;
    background-color: #fff;
    border: 1px solid #d6d6d6;
    border-radius: 0 0 10px 10px;
  }

  .exchange-card-header {
    background: #002046;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px 10px 0 0;
  }
  .exchange-card-header .card-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 500;
  }

  .section-title.two img {
    width: 80px;
    height: 80px;
  }

  .user-agent-form-area.active .existing-input {
    display: none;
  }
  .user-agent-form-area.active .nid-input {
    display: block;
  }
  .user-agent-form-area.two {
    padding: 30px;
  }

  .nid-input {
    display: none;
  }
  .nid-input img {
    width: 400px;
    height: 350px;
    border-radius: 10px;
  }

  .transfer-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -20px;
    margin-bottom: -15px;
  }
  .transfer-info li {
    margin-bottom: 15px;
    margin-right: 20px;
  }
  .transfer-info li i {
    font-size: 24px;
    border-radius: 50%;
    background: rgba(69, 130, 255, 0.2);
    color: var(--primary-color);
    position: relative;
    top: 3px;
    padding: 4px;
  }
  .transfer-info li span {
    padding-left: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #353448;
  }
  @media only screen and (max-width: 410px) {
    .transfer-info li span {
      font-size: 14px;
    }
  }
  @media only screen and (max-width: 345px) {
    .transfer-info li span {
      font-size: 12px;
      font-weight: 700;
    }
  }

  /*-------------------------------------------------
      [ ### transaction card block ]
  */
  .transaction-list {
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid #d6d6d6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .transaction-list li {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 15px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33%;
            flex: 0 0 33.33%;
  }
  @media only screen and (max-width: 767px) {
    .transaction-list li {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
    }
  }
  @media only screen and (max-width: 575px) {
    .transaction-list li {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
    }
  }
  .transaction-list li span {
    color: #353448;
    font-weight: 700;
    margin-right: 5px;
  }
  .transaction-list li label {
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 0;
  }

  .reportrange {
    border: 1px solid #d6d6d6;
    border-radius: 5px;
    padding: 9px 15px;
    font-size: 15px;
    color: #353448;
    margin-right: 20px;
    cursor: pointer;
  }
  @media only screen and (max-width: 767px) {
    .reportrange {
      margin-right: 0;
      margin-bottom: 20px;
    }
  }

  .daterangepicker {
    font-family: "Exo 2", sans-serif;
  }

  .daterangepicker .ranges li {
    font-size: 1rem;
  }

  .date-select .reportrange {
    margin-right: 0;
    padding: 3px 10px;
    background-color: #f3f3f9;
    border-radius: 7px;
    border: none;
  }

  .date-select .reportrange i {
    font-size: 12px;
    color: #353448;
  }

  .date-select .reportrange span {
    font-size: 12px;
    color: #353448;
  }

  .notification-area {
    position: absolute;
    left: -50px;
    top: 5px;
  }
  @media only screen and (max-width: 1199px) {
    .notification-area {
      left: unset;
      right: 1%;
    }
  }
  .notification-area .notification-btn {
    position: relative;
    background-color: transparent;
    font-size: 30px;
    color: #fff;
  }
  .notification-area .bell-badge {
    color: #fff;
    background: var(--primary-color);
    border-radius: 50px;
    display: block !important;
    font-size: 12px;
    line-height: 1.1;
    padding: 3px 4px !important;
    position: absolute;
    right: 0px;
    top: -3px;
    z-index: 9999;
  }

  .statement-logo {
    position: absolute;
    top: -80px;
    left: 47%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    max-width: 125px;
    padding: 20px;
    margin: 0;
    background-color: #fff;
    border-radius: 50%;
  }
  .statement-logo img {
    position: relative;
    top: -3px;
  }

  .signature-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .signature-area .signature-item {
    position: relative;
  }
  .signature-area .signature-item::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 230px;
    color: #002046;
    background: #002046;
    top: 35px;
    left: -45px;
  }
  .signature-area .signature-item2 {
    position: relative;
  }
  .signature-area .signature-item2::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 230px;
    color: #002046;
    background: #002046;
    top: 35px;
    left: -35px;
  }
  .signature-area .signature-content .title {
    font-size: 18px;
    font-weight: 600;
  }

  .form-group2 {
    margin-bottom: 34px;
  }

  .table-responsive table {
    width: 3000px;
    overflow-x: auto;
  }

  .account-statement-print-header {
    background: #002046;
    padding: 8px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
  }
  .account-statement-print-header .title {
    color: #fff;
    margin: 0 !important;
  }

  .card-header-two {
    background: #002046;
    padding: 1rem 2rem;
    border-radius: 10px 10px 0 0;
    border: none;
  }
  .card-header-two .title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 500;
  }

  .user-detail-info .title {
    padding: 10px;
    background: rgba(69, 130, 255, 0.2);
    border: 1px solid var(--primary-color);
    -webkit-box-shadow: 0 1px 2px rgba(56, 65, 74, 0.15);
            box-shadow: 0 1px 2px rgba(56, 65, 74, 0.15);
    color: var(--primary-color);
    border-radius: 10px 10px 0 0;
    font-size: 16px;
    font-weight: 600;
  }

  .user-detail-info .user-info-list {
    margin-bottom: -10px;
  }

  .user-detail-info .user-info-list li {
    -webkit-box-shadow: 0 1px 2px rgba(56, 65, 74, 0.15);
    box-shadow: 0 1px 2px rgba(56, 65, 74, 0.15);
    padding: 10px 20px;
    border-radius: 5px;
    background: #fff;
    margin-bottom: 10px;
    font-weight: 500;
  }

  .user-detail-info .user-action-list li {
    margin-bottom: 10px;
  }

  .user-detail-area .user-detail-thumb {
    border-radius: 10px;
    background-color: #fff;
    -webkit-box-shadow: 0 1px 2px rgba(56, 65, 74, 0.15);
    box-shadow: 0 1px 2px rgba(56, 65, 74, 0.15);
    padding: 20px;
  }

  .user-detail-area .user-detail-thumb .title {
    padding-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
  }

  .user-detail-area .user-detail-thumb .thumb {
    overflow: hidden;
    border: 2px dotted #AFAFAF;
    border-radius: 10px;
    padding: 3px;
  }

  .user-detail-area .user-detail-thumb .thumb img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .dashboard-form-area {
    background-color: #fff;
    -webkit-box-shadow: 0 1px 2px rgba(56, 65, 74, 0.15);
    box-shadow: 0 1px 2px rgba(56, 65, 74, 0.15);
    border-radius: 5px;
    padding: 20px;
  }

  .user-detail-info .user-info-list li span {
    float: right;
    font-weight: 400;
    font-size: 16px;
  }

  .title-form-custom {
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-size: 18px;
  }

  .back-btn-area {
    text-align: end;
  }
  .back-btn-area a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .title-part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d6d6d6;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #d6d6d6;
  }
  .title-part span {
    font-size: 16px;
    font-weight: 500;
  }
  .title-part .identity {
    font-size: 18px;
    font-weight: 600;
  }

  .ex-icon {
    margin-top: 20px;
  }
  .ex-icon i {
    font-size: 28px;
  }

  .dashboard-item-two {
    background: #fff;
    -webkit-box-shadow: 1px 1px 7px rgba(154, 154, 204, 0.4);
            box-shadow: 1px 1px 7px rgba(154, 154, 204, 0.4);
    border-radius: 10px;
    padding: 20px 20px;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .dashboard-item-two.style {
    border: 1px solid #d6d6d6;
    -webkit-box-shadow: none;
            box-shadow: none;
    text-align: start;
  }
  .dashboard-item-two.style:hover {
    -webkit-transform: none;
            transform: none;
  }
  .dashboard-item-two .dashboard-icon-img {
    height: 85px;
    line-height: 80px;
    display: inline-block;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 35px;
  }
  .dashboard-item-two .dashboard-icon-img img {
    width: 100%;
    height: 100%;
  }
  .dashboard-item-two:hover {
    -webkit-transform: translateY(-7px);
            transform: translateY(-7px);
  }
  .dashboard-item-two.active {
    border: 1px solid var(--primary-color);
  }
  .dashboard-item-two.active .dashboard-icon {
    background: var(--primary-color);
  }
  .dashboard-item-two.active .dashboard-icon i {
    color: #fff;
  }

  .how-to-pay-list li {
    border-bottom: 1px solid #e5e5e5;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #002046;
  }
  @media only screen and (max-width: 575px) {
    .how-to-pay-list li {
      padding: 8px 0;
      font-size: 14px;
    }
  }
  .how-to-pay-list li:last-child {
    border: none;
  }
  .how-to-pay-list li span {
    float: right;
    font-weight: 600;
    color: #002046;
    font-size: 18px;
  }
  @media only screen and (max-width: 575px) {
    .how-to-pay-list li span {
      font-size: 14px;
    }
  }

  .receiver-item {
    padding: 10px 20px;
    background: #fff;
    -webkit-box-shadow: 1px 1px 7px rgba(154, 154, 204, 0.4);
            box-shadow: 1px 1px 7px rgba(154, 154, 204, 0.4);
    border-radius: 10px;
    border: 1px solid #d6d6d6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .receiver-item:hover {
    -webkit-transform: translateY(-7px);
            transform: translateY(-7px);
  }
  .receiver-item .receiver-item-img-area {
    border: 1px solid #d6d6d6;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
  }
  .receiver-item .receiver-item-img-area img {
    width: 100%;
    height: 100%;
  }

  .left-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .receiver-item-content {
    padding-left: 15px;
  }
  .receiver-item-content .title {
    font-size: 16px;
    margin: 0;
  }

  .icon-area i {
    font-size: 24px;
    color: var(--primary-color);
  }

  .link-area {
    display: block;
  }

  .title-form-two {
    margin: 0;
  }

  .remmitance-custom-input {
    display: none;
  }
  .remmitance-custom-input.open {
    display: block;
  }

  .how-to-pay-wrapper {
    display: none;
  }
  .how-to-pay-wrapper.show {
    display: block;
  }

  .transfer-info-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  @media only screen and (max-width: 767px) {
    .transfer-info-area {
      display: block;
    }
  }
  @media only screen and (max-width: 767px) {
    .transfer-info-area ul + ul {
      margin-top: 15px;
    }
  }

  .total-amount-data-title-list {
    margin-bottom: 20px;
  }
  .total-amount-data-title-list li {
    font-size: 18px;
    font-weight: 600;
    color: #353448;
    margin-bottom: 10px;
  }
  .total-amount-data-title-list li span {
    margin-left: 20px;
  }

  /*-------------------------------------------------
      [ ### about block ]
  */
  @media only screen and (max-width: 991px) {
    .about-section .container {
      max-width: 100%;
    }
  }
  .about-section .section-header {
    margin-bottom: 35px;
  }
  .about-section .about-thumb-area .about-thumb {
    position: relative;
    text-align: right;
    z-index: -1;
  }
  .about-section .about-thumb-area .about-thumb img {
    width: 81%;
    border-radius: 40px;
  }
  @media only screen and (max-width: 1199px) {
    .about-section .about-thumb-area .about-thumb img {
      width: 100%;
    }
  }
  .about-section .about-thumb-area .about-widget-thumb {
    position: absolute;
    left: 0;
    bottom: 50px;
    z-index: 1;
    width: 50%;
  }
  @media only screen and (max-width: 991px) {
    .about-section .about-thumb-area .about-widget-thumb {
      left: 18px;
    }
  }
  .about-section .about-thumb-area .about-widget-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50px;
  }
  .about-section .about-thumb-area .about-widget-thumb::after {
    position: absolute;
    content: "";
    top: -12px;
    left: -12px;
    border-radius: 50px;
    background-color: #fff;
    width: 108%;
    height: 108%;
    z-index: -1;
  }
  @media only screen and (max-width: 1199px) {
    .about-section .about-thumb-area .about-widget-thumb::after {
      top: -10px;
      left: -11px;
    }
  }
  @media only screen and (max-width: 767px) {
    .about-section .about-thumb-area .about-widget-thumb::after {
      top: -15px;
      left: -15px;
    }
  }
  @media only screen and (max-width: 575px) {
    .about-section .about-thumb-area .about-widget-thumb::after {
      top: -12px;
      left: -12px;
    }
  }
  @media only screen and (max-width: 400px) {
    .about-section .about-thumb-area .about-widget-thumb::after {
      top: -9px;
      left: -9px;
    }
  }
  .about-section .about-content-area {
    padding-left: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  @media only screen and (max-width: 1199px) {
    .about-section .about-content-area {
      padding-left: 10px;
    }
  }
  @media only screen and (max-width: 1199px) {
    .about-section .about-content-area .section-header {
      margin-bottom: 20px;
    }
  }
  @media only screen and (max-width: 1199px) {
    .about-section .about-content-area .section-header .section-sub-titel {
      font-size: 16px;
      margin-bottom: 10px;
    }
  }
  @media only screen and (max-width: 575px) {
    .about-section .about-content-area .section-header .section-sub-titel {
      font-size: 14px;
      margin-bottom: 10px;
    }
  }
  @media only screen and (max-width: 1199px) {
    .about-section .about-content-area .section-header .section-title {
      font-size: 26px;
    }
  }
  @media only screen and (max-width: 575px) {
    .about-section .about-content-area .section-header .section-title {
      font-size: 22px;
    }
  }
  .about-section .about-item-wrapper {
    margin-bottom: -30px;
  }
  .about-section .about-item-wrapper .about-content-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
  .about-section .about-item-wrapper .about-content-item .icon-area {
    width: 75px;
    height: 75px;
    line-height: 88px;
    border-radius: 15px;
    background-color: #fff;
    border: 1px solid #eae5f1;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(158, 154, 221, 0.12);
            box-shadow: 0px 0px 0px 0px rgba(158, 154, 221, 0.12);
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .about-section .about-item-wrapper .about-content-item .icon-area i {
    font-size: 35px;
    color: var(--primary-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .about-section .about-item-wrapper .about-content-item .icon-area:hover {
    background-color: var(--primary-color);
  }
  .about-section .about-item-wrapper .about-content-item .icon-area:hover i {
    color: #fff;
  }
  .about-section .about-item-wrapper .about-content-item .icon-area.active {
    background: var(--primary-color);
  }
  .about-section .about-item-wrapper .about-content-item .icon-area.active i {
    color: #fff;
  }
  .about-section .about-item-wrapper .about-content-item .title-area {
    padding-left: 15px;
    width: calc(100% - 65px);
  }
  .about-section .about-item-wrapper .about-content-item .title-area .title {
    font-weight: 700;
    margin-bottom: 5px;
  }
  @media only screen and (max-width: 1199px) {
    .about-section .about-item-wrapper .about-content-item .title-area .title {
      font-size: 18px;
    }
  }
  .about-section .about-item-wrapper .about-content-item .title-area .sub-title {
    font-size: 16px;
    font-weight: 400;
    color: #787778;
  }
  @media only screen and (max-width: 1199px) {
    .about-section .about-item-wrapper .about-content-item .title-area .sub-title {
      font-size: 12px;
      font-weight: 600;
    }
  }

  /*-------------------------------------------------
      [ ### step block ]
  */
  .step-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .step-list li {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    position: relative;
  }
  @media only screen and (max-width: 575px) {
    .step-list li {
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
      font-size: 14px;
      margin-bottom: 30px;
    }
    .step-list li:nth-child(2)::after {
      display: none;
    }
    .step-list li:nth-child(3)::before {
      display: none;
    }
  }
  .step-list li span {
    background-color: #fff;
    border: 1px solid #d6d6d6;
    color: #6B768A;
    border-radius: 50%;
    display: block;
    font-size: 16px;
    line-height: 35px;
    margin: 0 auto 25px;
    position: relative;
    height: 35px;
    width: 35px;
  }
  .step-list li span::before {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    right: 0;
    bottom: 0;
    background-color: #f5f5f5;
    border: 1px solid #d6d6d6;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    z-index: -1;
  }

  .step-list li:not(:first-child):before, .step-list li:not(:last-child):after {
    content: "";
    position: absolute;
    top: 15px;
    bottom: 0;
    background-color: #f5f5f5;
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #d6d6d6;
    height: 5px;
    width: 45%;
  }

  .step-list li:not(:last-child):after {
    left: auto;
    right: -10px;
  }

  .step-list li:not(:first-child):before {
    left: -10px;
    right: 0;
  }

  .down-app-section {
    background-color: #f7f9fc;
  }

  .brand-wrapper {
    overflow: hidden;
  }

  .brand-section {
    background-color: #f7f9fc;
  }

  .show_hide_password input {
    padding-right: 50px;
  }
  .show_hide_password .show-pass {
    position: absolute;
    top: 45px;
    right: 30px;
    font-size: 14px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  /*--------------------------------------------------------------
      [ ## Blog ]
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Blog-block
  --------------------------------------------------------------*/
  .blog-item {
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 1px 24px 37px -6px rgba(0, 0, 0, 0.09);
            box-shadow: 1px 24px 37px -6px rgba(0, 0, 0, 0.09);
    border-radius: 10px;
  }
  .blog-item::before, .blog-item::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(69, 130, 255, 0.5);
  }
  .blog-item::after {
    background-color: var(--primary-color);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .blog-item:hover {
    -webkit-transform: translateY(-7px);
            transform: translateY(-7px);
  }
  .blog-item:hover::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  .blog-thumb {
    position: relative;
  }
  .blog-thumb img {
    display: block;
    width: 100%;
  }
  @media only screen and (max-width: 991px) {
    .blog-thumb img {
      height: auto;
    }
  }
  .blog-thumb::after {
    position: absolute;
    content: "";
    bottom: 0px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-left: -8px;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 14px solid #fff;
  }
  .blog-thumb .blog-date {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 80px;
    background-color: var(--primary-color);
    border-radius: 20px;
  }
  .blog-thumb .blog-date .title {
    font-size: 24px;
    padding: 5px 0;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0;
  }
  .blog-thumb .blog-date .sub-title {
    background-color: #fff;
    font-size: 18px;
    width: 100%;
    display: block;
    color: #353448;
    font-weight: 500;
    padding: 5px 0;
    border-radius: 20px;
  }

  .blog-content-inner {
    background-color: #fff;
    padding: 30px 20px;
  }
  .blog-content-inner .title {
    font-size: 18px;
  }
  .blog-content-inner p {
    font-size: 14px;
  }

  .blog-details-section .blog-thumb img {
    height: auto;
  }
  .blog-details-section .blog-content-inner .title {
    font-size: 24px;
  }
  @media only screen and (max-width: 991px) {
    .blog-details-section .blog-content-inner .title {
      font-size: 20px;
    }
  }
  .blog-details-section .blog-content-inner p {
    font-size: 15px;
  }

  .blog-social-area {
    background-color: #f7f9fc;
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
  }
  .blog-social-area .title {
    margin-bottom: 0;
    font-size: 18px;
  }
  @media only screen and (max-width: 991px) {
    .blog-social-area .title {
      margin-bottom: 10px;
    }
  }
  .blog-social-area .blog-social li {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #d6d6d6;
    text-align: center;
    font-size: 14px;
    border-radius: 3px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .blog-social-area .blog-social li:hover {
    background-color: var(--primary-color);
    color: #fff;
  }
  .blog-social-area .blog-social li + li {
    margin-left: 5px;
  }

  .sidebar {
    position: sticky;
    top: 10%;
  }

  .widget-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    -webkit-box-shadow: 1px 24px 37px -6px rgba(0, 0, 0, 0.09);
            box-shadow: 1px 24px 37px -6px rgba(0, 0, 0, 0.09);
  }
  .widget-box .widget-title {
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .category-content li {
    font-size: 14px;
    padding-bottom: 10px;
    font-weight: 500;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #353448;
  }
  .category-content li:hover {
    color: var(--primary-color);
  }
  .category-content li:last-child {
    padding-bottom: 0;
  }
  .category-content li a {
    display: block !important;
  }
  .category-content li span {
    float: right;
  }

  .popular-widget-box {
    margin-bottom: -10px;
  }

  .single-popular-item {
    margin-bottom: 10px;
  }
  .single-popular-item .popular-item-thumb {
    width: 90px;
    border-radius: 3px;
    overflow: hidden;
  }
  .single-popular-item .popular-item-content {
    width: calc(100% - 90px);
    padding-left: 10px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .single-popular-item .popular-item-content .title {
    font-size: 15px;
    margin-bottom: 0;
    font-weight: 600;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .single-popular-item .popular-item-content .title:hover {
    color: var(--primary-color);
  }
  .single-popular-item .popular-item-content .blog-date {
    font-size: 13px;
    color: #353448;
    font-weight: 500;
  }

/*-------------------------------------------------
    [ ## cookie block ]
*/
.cookie-main-wrapper {
  background-color: rgb(31, 41, 55);
  padding: 20px 30px;
  border-radius: 20px;
  position: fixed;
  bottom: -300px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80%;
  z-index: 999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .cookie-main-wrapper {
    display: block;
    width: 90%;
  }
}
.cookie-main-wrapper .cookie-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70%;
}
@media only screen and (max-width: 767px) {
  .cookie-main-wrapper .cookie-content {
    width: unset;
  }
}
@media only screen and (max-width: 575px) {
  .cookie-main-wrapper .cookie-content {
    width: 100%;
    display: block;
  }
}
.cookie-main-wrapper .cookie-content svg {
  width: 40px;
  height: auto;
  fill: rgb(125, 211, 252);
  margin-right: 15px;
}
@media only screen and (max-width: 575px) {
  .cookie-main-wrapper .cookie-content svg {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.cookie-main-wrapper .cookie-content p {
  width: calc(100% - 40px);
  color: rgb(255, 255, 255);
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}
.cookie-main-wrapper .cookie-content p a {
  text-underline-offset: 2px;
  text-decoration-style: dotted;
  text-decoration-line: underline;
}
@media only screen and (max-width: 575px) {
  .cookie-main-wrapper .cookie-content p {
    width: 100%;
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .cookie-main-wrapper .cookie-btn-area {
    margin-top: 20px;
  }
}
.cookie-main-wrapper .cookie-btn-area button, .cookie-main-wrapper .cookie-btn-area input[type=button], .cookie-main-wrapper .cookie-btn-area input[type=reset], .cookie-main-wrapper .cookie-btn-area input[type=submit] {
  color: rgb(255, 255, 255);
  padding: 0.5rem 0.75rem;
  background-color: rgb(55, 65, 81);
  border-radius: 0.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cookie-main-wrapper .cookie-btn-area button:hover, .cookie-main-wrapper .cookie-btn-area input[type=button]:hover, .cookie-main-wrapper .cookie-btn-area input[type=reset]:hover, .cookie-main-wrapper .cookie-btn-area input[type=submit]:hover {
  background-color: rgba(75, 85, 99, 0.8);
}
/*-------------------------------------------------
    [ ## cookie block end ]
*/ 
/* otp */
.otp {
    display: inline-block;
    width: 57px;
    height: 50px;
    text-align: center;
    padding: 0;
    border-radius: 5px;
    background-color: transparent;
  }

  @media only screen and (max-width: 470px) {
    .otp {
      width: 47px;
    }
  }
  @media only screen and (max-width: 380px) {
    .otp {
      width: 43px;
      height: 40px;
    }
  }
  @media only screen and (max-width: 350px) {
    .otp {
      width: 41px;
      height: 40px;
    }
  }
  @media only screen and (max-width: 330px) {
    .otp {
      width: 40px;
      height: 40px;
    }
  }
  .otp:focus {
    border: 3px solid #222f43;
  }

  .otp.required {
    border: 3px solid #ea5455;
  }
.main-wrapper {
  min-height: 60vh;
}
.language-select-area {
    margin-top: 20px;
    justify-content: center;
    display: flex;
}
.language-select-area .nice-select {
  background-color: transparent ;
  min-width: 120px;
}
.language-select-area .nice-select   .list  {
  min-width: 120px;
}
.language-select-area .nice-select .current {
  color: #fff;
}