
    body {
      /* font-family: "helvetica", sans-serif; */
      font-family: "Rubik", sans-serif;
      font-size: 14px;
      
    }
    *{
        padding:0px;
    }

    /* Banner Hexagon Style */
    .hex-img {
      clip-path: polygon(25% 0%, 75% 0%,
          100% 50%,
          75% 100%, 25% 100%,
          0% 50%);
      width: 100%;
      height: 230px;
      object-fit: cover;
    }

    .top-bar {
      background: #051547;
      color: #fff;
      padding: 6px 0;
    }

    header {
      background-color: #001737;
    }

    .brand-text {
      font-size: 26px;
      font-weight: 600;
    }

    .sub-text {
      font-size: 15px;
      opacity: 0.9;
    }

    .whatsapp-button a {
      color: #25D366;
      padding: 8px 12px;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 500;
      font-size: 30px;
      animation: linear all 0.6s infinite;
    }

    .whatsapp-button a:hover {
      color: #25D366;
      text-decoration: none;
    }

    /* Hide whatsapp in mobile */
    @media (max-width: 576px) {
      .whatsapp-button {
        display: none;
      }
    }

    @keyframes flip {
      0% {
        transform: rotateY(0);
      }

      100% {
        transform: rotateY(360deg);
      }
    }

    .top-bar a {
      color: #fff;
      text-decoration: none;
    }

    .top-bar .container {
      padding-left: 30px;
    }

    a.nav-link {
      color: #fff;
      font-family: verdana;
      font-size: 14px;
    }


    /* CSS variables */
    :root {
      --primary-text: #4f8f70;
      --secondary-text: #e9fff3;
      --white-text-white: #ffffff;
      --black-text-black: #000000;
    }

    /* custom font */
    /* @font-face {
  font-family: "Avenir";
  src: url("../assets/font/AvenirLight.woff2") format("woff2"),
    url("../assets/font/AvenirLight.woff") format("woff");
  font-weight: 400;
  font-style: normal;
} */

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: var(--white-text-white);
      color: var(--black-text-black);
      
      /* custom scroll bar   */
      overflow-y: scroll;
    }

    body::-webkit-scrollbar {
      width: 15px;
    }

    body::-webkit-scrollbar-track {
      background-color: var(--secondary-text);
      border-radius: 100px;
    }

    body::-webkit-scrollbar-thumb {
      background-color: #051547;
      /*var(--secondary-text);*/
      border-radius: 100px;
    }

    a {
      text-decoration: none;
    }

    .accordion-body ul li a {
      color: black;
      font-weight: 700;
    }

    .faq-section .accordion {
      width: 100%;
    }

    .accordion-button:not(.collapsed) {
      /* background-color: #c5e5d8;*/
      /* background-color: var(--secondary-text); */
      background-color: #051547 !important;
      color: #fff !important;
    }

    .accordion-button:not(.collapsed)::after {
      background-image: none !important;
      transform: none !important;
    }

    .accordion-button:focus {
      box-shadow: none;
    }

    .accordion-button:before {
      content: "";
      position: absolute;
      /*   right: 0.75rem; */
      right: 0.75rem;
      top: 1.25rem;
      height: 2px;
      width: 1rem;
      background-color: var(--primary-text);
    }

    .accordion-button.collapsed:after {
      content: "";
      position: absolute;
      /*   right: 1.1875rem; */
      right: 1.1875rem;
      top: 0.8125rem;
      height: 1.0625rem;
      width: 0.125rem;
      border-style: none;
      background-color: var(--primary-text);
    }

    .faq-section .accordion-button h5 {
      /*   color: #7dbc9e; */
      color: var(--primary-text);
      margin-right: 13px;
    }

    .accordion-body {
      background-color: #ffffff;
    }

    /* button:focus:not(:focus-visible) {
    outline: 0;
} */

    /* list */
    ul {
      list-style-type: none;
      list-style-type: disc;
      /* Default bullet points for ul */
      margin-left: 20px;
    }

    ul li {
      margin-bottom: 5px;
    }

    .accordion-body ol {
      counter-reset: step-counter;
      list-style-type: none;
      padding-left: 0;
    }

    .accordion-body ol>li {
      counter-increment: step-counter;
      /* Increment custom counter */
      margin-bottom: 10px;
    }

    .accordion-body ol>li::before {
      content: "Steps " counter(step-counter) ": ";
      /* Custom prefix */
      font-weight: bold;
    }

    @media screen and (min-width: 768px) {
      /*   .faq-section .accordion {
    width: 50%;
    margin: 0 auto;
  } */

      .accordion-button:before {
        right: 0.75rem;
      }

      .accordion-button.collapsed:after {
        right: 1.1875rem;
      }

      .faq-section .accordion-button h5 {
        margin-right: 0px;
      }
    }


    /* .accordion-body {
      background-color: var(--secondary-text);
    } */

    /* button:focus:not(:focus-visible) {
        outline: 0;
    } */

    /* list */
    ul {
      list-style-type: none;
      list-style-type: disc;
      /* Default bullet points for ul */
      margin-left: 20px;
    }

    ul li {
      margin-bottom: 5px;
    }

    .accordion-body ol {
      counter-reset: step-counter;
      list-style-type: none;
      padding-left: 0;
    }

    .accordion-body ol>li {
      counter-increment: step-counter;
      /* Increment custom counter */
      margin-bottom: 10px;
    }

    .accordion-body ol>li::before {
      content: "Steps " counter(step-counter) ": ";
      /* Custom prefix */
      font-weight: bold;
    }

    @media screen and (min-width: 768px) {
      /*   .faq-section .accordion {
        width: 50%;
        margin: 0 auto;
      } */

      .accordion-button:before {
        right: 0.75rem;
      }

      .accordion-button.collapsed:after {
        right: 1.1875rem;
      }

      .faq-section .accordion-button h5 {
        margin-right: 0px;
      }
    }

    .section-container {
      padding-top: 32px;
      padding-bottom: 32px;
    }

    .bg-grey {
      background-color: #e8e8e8;
    }

    .form-bg {
      background: #fff;
      padding: 10px;
    }

    .accordion-button h2 {
      font-size: 14px;
      font-weight: 600;
    }

    .accordion-body {
      font-size: 14px;
    }

    .title {
      font-size: 30px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #001737;
      background-color:#fff700;
    }

    .form-label {
      margin-bottom: .5rem;
      color: #001737;
      font-weight: 800;
      padding-left: 2px;
    }

    .pricing-card {
      background: #fff;
      border-radius: 15px;
      padding-bottom: 30px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: 0.3s;
    }

    .pricing-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .price {
      color: #001737;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .btn-buy {
      background: #001737 !important;
      font-weight: bold;
      border-radius: 0;
      padding: 10px;
      color: #fff !important;
    }

    .btn-buy:hover {
      background: #003366 !important;
      color: #fff !important;
    }

    .pricing-section {
      background: #e8e8e8;
    }

    .pricing-header {
      background-color: #001737;
      color: #fff;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    }

    .pricing-header .price {
      color: #fff;
    }

    .bg-trim {
      background: #022242;
      color: #fff;
    }

    footer {
      background-color: #001737;
    }

    footer a {
      color: #fff;
      text-decoration: none;
    }

    footer ul {
      margin-left: 0px;
    }
    .form-control { 
        background: #efefef;
        border: 1px #7a7373 solid;
        font-size: 13px;
        font-weight: 500;
    }
    .modal-header{
      background: #001737;
      color: #fff;
    }
    .close{
      height: 25px;
      width: 25px;
      border-radius: 50%;
    }
    
    .process-heading {
    background: #1d3261;       /* Dark blue */
    color: #fff;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
}

.process-box {
    background: #ffffff;
    padding: 25px 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    min-height: 200px;
}

.process-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
    margin: 0;
}

.pgb .step {
    text-align: center;
    position:relative;
    }
.pgb h2 {
    font-size:1.3rem;
}
.pgb .step p {
    position:absolute;
    height:60px;
    width:100%;
    text-align:center;
    display:block;
    z-index:3;
    color:#fff;
    font-size:160%;
    line-height:55px;
    opacity:.7;
}
.pgb .active.step p {
    opacity:1;
    font-weight:600;
}


.pgb .img-circle {
      display: inline-block;
      width: 120px;
      height: 120px;
      border-radius:50%;
      background-color:#9E9E9E;
    border:4px solid #fff;
    }
@media screen and (max-width: 550px) {
  .pgb .img-circle {
  width: 60px;
  height: 60px;
  }
  .process-section h2{
    font-size: 12px;
  }
}
.img-circle {
      background-color:#4CAF50;
      background-size: cover;
    }
    .fill-form{
      background-image: url('../img/fill-form.png');
    }
    .online-pay{
      background-image: url('../img/online-pay.jpg');
    }
    .excutive-process{
      background-image: url('../img/executive-process.png');
    }
    .review-certificate{
      background-image: url('../img/review-certificate.jpg');
    }
.pgb .active .img-circle {
      background-color:#FF9800;
    }
.pgb .step .img-circle:before {
        content: "";
        display: block;
        background: #9E9E9E;
        height: 4px;
        width: 50%;
        position: absolute;
        bottom: 50%;
        left: 0;
        z-index: -1;
        margin-right:24px;
    }
.pgb .step .img-circle:after {
        content: "";
        display: block;
        background: #9E9E9E;
        height: 4px;
        width: 50%;
        position: absolute;
        bottom: 50%;
        left: 50%;
        z-index: -1;
    }
.pgb .step.active .img-circle:after {
        background: #9E9E9E;
    }

.pgb .step.complete .img-circle:after, .pgb .step.active .img-circle:before {
        background: #4CAF50;
    }

    .pgb .step:last-of-type .img-circle:after, .pgb .step:first-of-type .img-circle:before{
        display: none;
    }