  @import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&amp;display=swap');


  :root {
    --fallback-fonts: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-primary: "Rubik", var(--fallback-fonts);
  }



  :root {
    --color-one: #123455;
    --color-two: #4b5563;
    --color-three: #00ABE4;
    --color-three-dark: #047FA8;
    --color-white: #fff;
    --color-dark: #000;
    --color-one-bg: #E9F1FA;
    --color-two-bg: #00ABE4;
    --color-two-bg-dark: #019ED2;
  }

  :root {
    scroll-behavior: smooth;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-weight: 500;
    font-family: var(--font-primary);
    overflow-x: hidden
  }

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1170px;
  }

  ul {
    margin: 0;
    padding: 0;
  }

  li {
    list-style: none;
  }

  a {
    list-style: none;
    text-decoration: none;
  }

  img {
    max-width: 100%;
  }

  .theme-one-bg {
    background: var(--color-one-bg);
  }

  .theme-two-bg {
    background: var(--color-two-bg);
  }

  /* ================ header css============== */

  /* General Styling */
  .header {
    padding: 10px 20px;
  }

  .scrolled {
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
  }

  .header {
    position: sticky;
    top: 0;
    z-index: 99999999;
    background: #fff;
    transition: box-shadow .3s ease;
  }

  .header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header .logo img {
    height: 40px;
    width: auto;
    display: block;
  }


  @media(min-width:1200px) {
    .header .nav {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
    }

    .header .nav>li {
      position: relative;
    }

    .header .nav>li>a {
      color: #3F3F46;
      padding: 10px 20px;
      font-size: 15px;
      font-weight: 400;
    }

    .header .nav .dropdown-menu .off {
      display: inline-block;
      color: var(--color-white);
      background: var(--color-three);
      vertical-align: middle;
      font-size: 11px;
      padding: 3px 6px;
      border-radius: 20px;
      font-weight: 500;
      margin-left: 5px;
      text-transform: uppercase;
    }

    .header .nav>li>a:hover {
      background: #E9F1FA;
      border-radius: 5px;
    }

    .header .dropdown-menus::after {
      content: "\F282";
      font-family: bootstrap-icons;
      font-size: 10px;
      font-weight: 600;
    }

    .header .dropdown-menu {
      display: none;
      /* right: 0; */
      box-shadow: 1px -1px 18px 3px rgba(0, 0, 0, 0.15);
      position: absolute;
      z-index: 400;
      border-radius: 11px;
      background: #fff;
      width: 100%;
      top: 100%;
      animation: slideDown .2s ease-in-out;
      max-width: 350px;
      left: -100%;
      padding: 15px 20px 25px;
      border: none;
      min-width: 350px;
      transform: translateX(-6%) translateY(10%);
    }

    .header .dropdown-menu::before {
      content: '';
      position: absolute;
      top: -11px;
      border: 1px solid transparent;
      opacity: 0;
      left: 50%;
      margin-left: -15px;
      transform: rotate(45deg);
      background: #fff;
      height: 28px;
      width: 28px;
      box-shadow: -4px -3px 10px 0 rgb(0 0 0 / 5%);
      border-radius: 10px 0 0 0;
      z-index: -1;
    }

    .header .dropdown-menu::before {
      animation: slideDown .2s ease-in-out;
      opacity: 1;
    }

    .header .dropdown-menu li a {
      color: var(--color-one);
      display: block;
      padding: 5px 0;
      background: var(--color-white);
      padding: 8px 15px;
      border-radius: 8px;
    }

    .header .dropdown-menu li a:hover {
      background: var(--color-one-bg);
    }

    .header .dropdown-menu>li>a {
      font-size: 18px;
      font-weight: 500;
    }

    .header .dropdown-menu>li>a .heading-content {
      font-size: 13px;
      font-weight: 400;
    }

    .header .dropdown.open .dropdown-menu {
      display: block;
    }

    .header .dropdown.open .icon {
      transform: rotate(180deg);
    }

    .header .icon {
      margin-left: 5px;
      transition: transform 0.3s;
    }

    .header .login-btn {
      padding: 8px 16px;
      background-color: unset;
      color: #3f3f46;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      border: 1px solid #4b556359;
      transition: all .4s;
    }

    .header .login-btn:hover {
      background-color: var(--color-one-bg);
      border: 1px solid var(--color-one-bg);
    }

    .header .menu-toggle {
      display: none;
    }

  }


  @media(max-width:1199px) {
    .header .menu-toggle {
      display: block;
      background: var(--color-two-bg);
      border: 0;
      outline: unset;
      padding: 0px 6px;
      font-size: 20px;
      border-radius: 3px;
    }

    .header .menu-toggle i {
      color: var(--color-white);
    }

    .header .menu-toggle.active i:before {
      content: '\F62A';
    }

    .header {
      position: relative;
    }

    .header .navbar {
      position: static;
    }

    .header .nav {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      padding: 10px 20px;
      background: #fff;
      box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
      display: none;
    }


    .header .nav .dropdown .dropdown-menu {
      position: relative;
    }

    .header .nav.active>li>a {
      padding: 5px 10px;
      width: 100%;
      display: block;
      border-radius: 5px;
      color: var(--color-one);
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .header .nav.active>li.dropdown>a:after {
      content: "\F282";
      font-family: bootstrap-icons;
      font-size: 12px;
    }

    .header .nav.active>li {
      margin-bottom: 15px;
    }

    .header .nav.active>li:last-child {
      margin-bottom: 0;
    }

    .header .nav.active .dropdown.open .dropdown-menu {
      display: block;
      padding: 5px 10px;
    }

    .header .nav.active .dropdown.open .dropdown-menu>li>a {
      font-size: 14px;
      color: var(--color-dark);
      font-weight: 500;
    }

    .header .nav.active .dropdown.open .dropdown-menu>li>a .off {
      display: inline-block;
      color: var(--color-white);
      background: var(--color-three);
      vertical-align: middle;
      font-size: 11px;
      padding: 3px 6px;
      border-radius: 20px;
      font-weight: 500;
      margin-left: 5px;
      text-transform: uppercase;
    }

    .header .nav.active .dropdown.open .dropdown-menu>li>a .heading-content {
      font-size: 12px;
      font-weight: 400;
    }

    .header .nav.active .dropdown.open .dropdown-menu>li {
      margin-bottom: 7px;
      padding: 5px 10px;
      border-radius: 8px;
    }

    .header .nav.active .dropdown.open .dropdown-menu>li:hover {
      background: var(--color-one-bg);
    }

    .header .nav.active>li .login-btn {
      padding: 8px 16px;
      background-color: unset;
      color: #3f3f46;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      border: 1px solid #4b556359;
      transition: all .4s;
    }

    .header .nav.active>li .login-btn:hover {
      background-color: var(--color-one-bg);
      border: 1px solid var(--color-one-bg);
    }

  }

  /* ----------------------------------------------------------------
     button css
------------------------------------------------------------------- */
  .btn_one {
    font-size: 16px;
    color: var(--color-white);
    font-weight: 600;
    border: 1px solid var(--color-three);
    padding: 12px 20px;
    display: block;
    width: fit-content;
    border-radius: 10px;
    background: var(--color-two-bg);
    transition: all .4s;
  }

  .btn_one:hover {
    background: var(--color-two-bg-dark);
  }

  .btn_two {
    font-size: 16px;
    color: var(--color-two);
    font-weight: 600;
    border: 1px solid var(--color-three);
    padding: 12px 20px;
    display: block;
    border-radius: 10px;
    text-align: center;
    transition: all .4s;
  }

  .btn_three {
    font-size: 16px;
    color: var(--color-white);
    font-weight: 600;
    border: 1px solid var(--color-white);
    padding: 12px 20px;
    display: block;
    border-radius: 10px;
    text-align: center;
    transition: all .4s;
    width: fit-content;
    transition: all .4s;
  }

  .btn_three:hover {
    color: var(--color-dark);
    background: var(--color-white);
  }

  /* ----------------------------------------------------------------
     heading css
------------------------------------------------------------------- */
  body h1 {
    font-size: 45px;
    font-weight: 500;
    color: var(--color-one);
  }

  body h2 {
    font-size: 40px;
    font-weight: 500;
    color: var(--color-one);
  }

  body {
    font-weight: 400;
  }

  .section-heading p {
    font-size: 15px;
  }






  @media(max-width:480px) {
    body h1 {
      font-size: 35px;
    }

    body h2 {
      font-size: 32px;
    }
  }


  /* ----------------------------------------------------------------
     banner css
------------------------------------------------------------------- */
  .hero-banner {
    padding: 60px 0px;
    background: var(--color-one-bg);
  }

  .banner-two {
    padding: 60px 0px;
    background: var(--color-two-bg);
  }

  .h-equal {
    min-height: 605px;
  }

  main .section_gap {
    padding: 60px 0px;
  }

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

  .gap-bottom-two {
    margin-bottom: 30px;
  }

  .banner-heading .heading {
    color: var(--color-two);
    font-size: 14px;
    font-weight: 400;
  }

  .list-check li {
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: start;
    gap: 5px;
  }

  .list-check li:before {
    content: "\F633";
    font-family: bootstrap-icons;
    font-size: 18px;
  }

  .list-check li span {
    border-bottom: 1px dashed var(--color-two);
  }

  .price_sec {
    margin-top: 20px;
  }

  .price_sec span {
    display: block;
    font-size: 45px;
    font-weight: 600;
    color: var(--color-one);
  }

  .price_sec label {
    display: block;
    font-size: 17px;
    font-weight: 500;
    color: var(--color-three);
  }

  .banner_bottom {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-two);
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .banner_bottom i {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-three);
  }

  .section-heading .heading {
    display: flex;
    align-items: center;
    color: var(--color-three);
    font-size: 25px;
    font-weight: 500;
    gap: 5px;
  }

  .section-heading .heading i {
    font-size: 46px;
    color: var(--color-three);
    line-height: 46px;
  }

  .about_customer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
  }

  .about_customer .img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
  }

  .about_customer .content h4 {
    font-size: 17px;
    font-weight: 500;
    color: var(--color-two);
    margin: 0;
  }

  .about_customer .content label {
    font-size: 13px;
    color: var(--color-three);
  }

  .banner-two .banner-heading h1 {
    color: var(--color-white);
  }

  .banner-two .banner-heading ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 15px;
    text-align: start;
    padding-inline-start: 25px;
  }

  .banner-two .banner-heading ul li {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 400;
    display: block;
    position: relative;
  }

  .banner-two .banner-heading ul li strong {
    font-weight: 500;
    font-size: 15px;
  }

  .domain-promo-card {
    background: #fff;
    border: 1px solid #c6ebff;
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 50px;
  }

  .domain-promo-register {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
  }

  .domain-promo-register h4 {
    font-weight: 400;
    font-size: 15px;
    color: var(--color-two);
    margin: 0;
  }

  .domain-promo-register h4 span {
    font-weight: 400;
    font-size: 13px;
    color: var(--color-two);
  }

  .domain-promo-register h4 sup {
    top: -3px;
  }

  .validity {
    text-align: center;
    margin-top: 15px;
  }

  .validity h4 {
    font-weight: 400;
    font-size: 15px;
    color: var(--color-two);
    margin: 0;
  }

  /* ----------------------------------------------------------------
     domain form
------------------------------------------------------------------- */
  .highlight {
    color: var(--color-one);
  }

  .domain_form {
    position: relative;
    width: 75%;
    margin: 40px auto;
  }

  .domain_form input {
    border: 1px solid #e9e9ed;
    padding: 17px 20px;
    background: #37BBE8;
    border-radius: 30px;
  }

  input:focus {
    border-color: #fff !important;
    outline: unset !important;
    box-shadow: unset !important;
  }

  .domain_form button {
    border-radius: 0px 30px 30px 0px;
    border: 1px solid var(--color-one-bg);
    padding: 17px 40px;
    background: var(--color-white);
    transition: all .4s;
  }

  .domain_form button:hover {
    background: #eaeaea;
  }

  .domain_form button {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9999;
  }

  .domain_names {
    margin: 40px auto;
    width: fit-content;
  }

  .domain_names ul {
    justify-content: center !important;
  }

  .domain-price .cutted {
    position: relative;
    color: #fff;
    font-size: 13px;
    margin-inline-end: 6px;
    text-decoration: line-through;
  }

  .domain-price .value {
    font-size: 16px;
    font-weight: 500;
  }

  .home-domain-search {
    background: var(--color-one);
    padding: 50px;
    border-radius: 20px;
  }

  .home-domain-search .domain_form {
    position: relative;
    width: 90%;
    margin: 40px auto;
  }

  .home-domain-search .domain_form button {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 9999;
  }

  .banner-two .list-check li::before {
    content: "\F271";
    font-family: bootstrap-icons;
    font-size: 18px;
    position: absolute;
    left: -25px;
  }

  .domain_names ul li {
    padding: 0px 20px;
    border-right: 1px solid #fff;
  }

  .domain_names ul li:last-child {
    border-right: unset;
  }

  .domain_form .select {
    position: absolute;
    top: 0;
    right: 137px;
    z-index: 9999;
    padding: 19px 20px;
    background: var(--color-one-bg);
    border: 1px solid var(--color-one-bg);
  }


  @media(max-width:567px) {
    .domain_form {
      position: unset;
      width: 100%;
      margin: 40px auto;
    }

    .domain_form .select {
      position: unset;
      border-radius: 30px;
      background: var(--color-one-bg);
      border: 1px solid var(--color-one-bg);
      width: 100%;
      margin-top: 15px;
    }

    .domain_form button {
      position: unset;
      width: 100%;
      margin-top: 15px;
      border-radius: 30px;
    }

    .domain_names ul {
      justify-content: center;
      gap: 15px;
    }

    .domain_names ul li {
      padding: 0px 20px;
      border-right: unset;
    }
  }

  /* ----------------------------------------------------------------
     plan css
------------------------------------------------------------------- */
  .plan-section .col-md-4 {
    padding: 0;
  }

  .plan-section .row.gy-4 {
    align-items: flex-end;
    padding: 10px;
  }

  .plan-card-one {
    padding: 20px;
    border: 1px solid #4b556345;
    height: 100%;
    position: relative;
  }

  .plan-card-one.one {
    border-radius: 18px 0px 0px 18px;
  }

  .plan-card-one.two {
    border-radius: 18px 18px 0px 0px;
  }

  .plan-card-one.three {
    border-radius: 0px 18px 18px 0px;
  }

  .plan-card-one h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 15px;
  }

  .plan-card-one span {
    font-size: 14px;
    color: var(--color-two);
    font-weight: 400;
  }

  .price .price_value {
    font-size: 40px;
    font-weight: 600;
    color: var(--color-dark);
  }

  .price .price_value label {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-two);
  }

  .plan-card-one .list-check li::before {
    color: var(--color-three);
  }

  @media(max-width:567px) {
    .home-domain-search .domain_form {
      width: 100%;
    }

    .home-domain-search .domain_form {
      position: unset;
    }

    .home-domain-search .domain_form button {
      position: unset;
    }
  }

  .plan_btn {
    margin-top: 30px;
  }

  .plan-card-one:hover .plan_btn .btn_two {
    background: var(--color-two-bg);
    color: var(--color-white);
  }

  .plan-card-one.active {
    border: 1px solid var(--color-three);
  }

  .active-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
  }

  .plan-section .plan-card-one.active .active-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-top: 15px;
  }

  .plan-card-one.active h3 {
    color: var(--color-three);
    margin: 0;
  }

  .plan-card-one.active .active-heading span {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-three);
    padding: 6px 15px;
    border-radius: 30px;
    background: var(--color-one-bg);
  }

  .plan-card-one.active .btn_two {
    background: var(--color-two-bg);
    color: var(--color-white);
  }

  .plan_tabbing .plan_btn {
    margin-top: 15px;
  }

  .tabbing {
    display: flex;
    align-items: center;
    padding: 5px 5px;
    border: 1px solid #4b556338;
    border-radius: 30px;
    width: fit-content;
    margin: auto;
    gap: 5px;
  }

  .tabbing .nav-link {
    border: unset;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 30px;
    color: var(--color-two);
    font-weight: 400;
    transition: all 0.3s ease;
  }

  .tabbing .nav-link.active {
    background: var(--color-three);
    border-radius: 30px;
    color: var(--color-white);
    font-weight: 400;
    font-size: 13px;
    padding: 5px 10px;
  }

  .price .price_value-tab {
    font-size: 40px;
    font-weight: 600;
    color: var(--color-dark);
  }

  .price .price_value-tab label {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-two);
  }

  .plan_tabbing .plan-card-one {
    border-radius: 18px;
  }

  @media(max-width:766px) {
    .plan-card-one {
      border-radius: 18px !important;
    }
  }

  /* ----------------------------------------------------------------
     testimoial css
------------------------------------------------------------------- */
  .testimonial-card .about_client {
    display: flex;
    align-items: center;
    position: relative;
  }

  .testimonial-card .about_client .client_img {
    width: 33%;
  }

  .testimonial-card .about_client .client_img img {
    border-radius: 12px;
  }

  .testimonial-card .quote {
    width: 60px;
    height: 60px;
    display: flex;
    text-align: center;
    align-items: center;
    background: var(--color-three);
    justify-content: center;
    border-radius: 100%;
    position: absolute;
    top: 0;
    transform: translatey(-50%);
  }

  .testimonial-card .quote i {
    color: var(--color-one-bg);
    font-size: 30px;
  }

  .client_text {
    background: var(--color-white);
    padding: 50px;
    border-radius: 12px;
    width: 66%;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translatey(-50%);
    box-shadow: 0px 20px 40px rgba(21, 24, 27, 0.06);
  }

  .client_text p {
    font-size: 18px;
    color: var(--color-two);
    font-weight: 400;
  }

  .client_text .d-flex {
    display: flex !important;
    gap: 3px;
  }

  .client_text .d-flex i {
    font-size: 18px;
    color: var(--color-three);
  }

  .client_text .name {
    display: block !important;
    font-size: 20px;
    font-weight: 500;
    color: var(--color-dark);
  }

  .client_text .post {
    display: block !important;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-two);
  }

  .swiper-pagination-bullet-active {
    background: var(--color-three) !important;
  }

  @media(max-width:1152px) {
    .client_text {
      padding: 35px;
    }
  }

  @media(max-width:884px) {
    .testimonial-card .about_client .client_img {
      width: 50%;
    }

    .client_text {
      width: 50%;
      right: 5%;
      top: 50%;
    }
  }

  @media(max-width:777px) {
    .testimonial-card .about_client {
      display: block;
      position: unset;
    }

    .testimonial-card .about_client .client_img {
      text-align: center;
    }

    .client_text {
      position: unset;
      transform: unset;
      width: 100%;
    }

    .testimonial-card .about_client .client_img {
      width: 100%;
    }

    .testimonial-card .quote {
      position: unset;
      transform: unset;
    }

    .client_text {
      padding: 10px;
    }
  }


  /* ----------------------------------------------------------------
     accordion css
------------------------------------------------------------------- */
  .accordion {
    background: transparent;
    padding: 20px;
    margin: 0;
    list-style: none;
  }

  .accordion li {
    list-style: none;
    border-top: 1px solid #d5d5d5;
    background: var(--color-white);
  }

  .accordion li {
    transition: transform 0.3s ease;
  }

  .accordion li+li {
    margin-top: 15px;
  }

  .accordion li>a {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-dark);
    padding: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    cursor: pointer;
    user-select: none;
    border-radius: 5px;
  }

  .accordion li>a>span {
    display: contents;
  }

  .accordion li.active>a,
  .accordion li.active>a:hover,
  .accordion li.active>a:focus {
    color: #353535;
  }

  .accordion li>a::after {
    content: '+';
    width: 30px;
    height: 30px;
    display: flex;
    color: var(--color-dark);
    justify-content: center;
    align-items: center;
    font-size: 17px;
    margin-inline-start: auto;
    border-radius: 5px;
  }

  .accordion li.active>a:after {
    content: '-';
    font-size: 22px;
  }

  .accordion li p {
    padding: 0px 15px 15px 15px;
    font-size: 15px;
    line-height: 1.7;
    color: #4B4B4B;
    display: none;
    border-radius: 0px 0px 5px 5px;
    margin: 0;
  }

  .accordion li p a {
    display: contents;
    color: var(--color-one-light);
    text-decoration: underline !important;
    cursor: pointer;
  }

  /* ----------------------------------------------------------------
    feature css
------------------------------------------------------------------- */
  .feature-style-one {
    display: flex;
    align-items: start;
    gap: 18px;
    height: 100%;
  }

  .feature-style-one h5 {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-dark);
  }

  .feature-style-one p {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-two);
  }

  .feature-style-one .icons {
    min-width: 30px;
    min-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-three);
    border-radius: 6px;
    max-width: 30px;
    max-height: 30px;
  }

  .feature-style-one .icons i {
    color: var(--color-white);
    font-size: 18px;
  }


  .feature-style-two .icons {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .feature-style-two h5 {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-dark);
    margin: 0;
  }

  .feature-style-two p {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-two);
  }

  .feature-style-two .icons i {
    color: var(--color-three);
    font-size: 22px;
  }

  .feature-style-two .content a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-three);
    font-weight: 500;
    transition: all .4s;
  }

  .feature-style-two .content i {
    color: var(--color-three);
    line-height: 0;
    transition: all .4s;
  }

  .feature-style-two .content a:hover,
  .feature-style-two .content i:hover {
    color: var(--color-three-dark);
  }

  .feature-style-three ul li {
    display: flex;
    align-items: start;
    gap: 8px;
    margin-bottom: 20px;
  }

  .feature-style-three ul li:last-child {
    margin-bottom: 0px;
  }

  .feature-style-three ul li h5 {
    font-size: 14px;
    font-weight: 400;
  }

  .feature-style-three ul li i {
    color: var(--color-three);
    font-size: 20px;
    line-height: 20px;
  }

  .feature-style-three ul li h5 strong {
    font-weight: 500;
    color: var(--color-dark);
  }

  .feature-style-one.card-one {
    display: block;
  }

  .feature-style-one.card-one .icons {
    margin-bottom: 20px;
  }

  @media(max-width:480px) {
    .feature-style-one {
      display: block;
    }

    .feature-style-one .icons {
      margin-bottom: 20px;
    }
  }

  .feature-style-four {
    border-top: 2px solid var(--color-dark);
    padding: 10px 0px;
    height: 100%;
  }

  .feature-style-four h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-dark);
  }

  .feature-style-four li {
    font-size: 14px;
    position: relative;
    display: flex;
    align-items: start;
    gap: 10px;
    line-height: 30px;
    font-weight: 400;
  }

  .feature-style-four li:before {
    content: "\F633";
    font-family: bootstrap-icons;
    font-size: 20px;
  }

  .feature-style-six {
    display: flex;
    align-items: start;
    gap: 15px;
  }

  .line {
    min-width: 2px;
    height: 67px;
    background: linear-gradient(to bottom, white 30%, #7a8c9d 30%);
  }

  .feature-style-six h5 {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-dark);
  }

  .feature-style-six p {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-two);
  }

  .achievement {
    padding: 20px;
    border: 1px solid var(--color-three);
    border-radius: 12px;
    text-align: center;
    transition: all .4s;
  }

  .achievement span {
    font-size: 40px;
    font-weight: 600;
    color: var(--color-three);
    display: block;
    transition: all .4s;
  }

  .achievement label {
    font-size: 14px;
    color: var(--color-two);
    display: block;
    transition: all .4s;
  }

  .achievement:hover {
    background: var(--color-two-bg);
  }

  .achievement:hover span,
  .achievement:hover label {
    color: var(--color-white) !important;
  }

  .myteam img {
    border-radius: 12px 12px 0px 0px;
  }

  .myteam .about-team {
    padding: 10px 20px;
  }

  .myteam .name {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-dark);
  }

  .myteam .post {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-two);
  }

  .policies h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-three);
  }

  .policies p {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-two);
  }

  /* ----------------------------------------------------------------
     Titan Email Video
------------------------------------------------------------------- */

  .titanmail-video {
    background-color: rgb(250, 251, 254);
    border: 15px solid rgba(196, 192, 192, 0.5);
    border-radius: 5px;
    overflow: hidden;
  }

  .titanmail-video video {
    height: 100%;
    width: 100%;
    display: flex;
    border: none;
    background-color: #000;
  }

  /* ----------------------------------------------------------------
     login css
------------------------------------------------------------------- */

  .login_form {
    background: var(--color-one-bg);
    padding: 30px;
    border-radius: 12px;
  }

  .login_form h2 {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-one);
    margin-top: 20px;
  }

  .login_form label {
    font-size: 14px;
    color: var(--color-two);
  }

  .login_form .input-form {
    background: var(--color-white);
    border: 1px solid var(--color-one);
    padding: 5px 10px;
    border-radius: 4px;
    width: 100%;
  }

  .login_form input::placeholder {
    font-size: 14px;
    color: var(--color-two);
  }

  .login_form .btn_two:hover {
    background: var(--color-two-bg);
    color: var(--color-white);
  }

  .fit-content {
    width: fit-content;
  }

  .login_form .forgot-text {
    color: var(--color-three);
  }

  /*  =============tabbing css start=============*/
  .tab-section {
    padding: 40px 0;
  }

  .tab-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .tab-btn {
    color: var(--color-one);
    padding: 5px;
    border-radius: 30px;
    border: 1px solid #E9E9ED;
    transition: background-color 0.3s, color 0.3s;
    font-size: 15px;
  }

  .tab-btn.active {
    background-color: var(--color-three);
    color: #fff;
    padding: 5px;
    border-radius: 30px;
    border: 1px solid var(--color-three);
  }

  .tab-content .tab-pane {
    display: none;
  }

  .tab-content .tab-pane.active {
    display: block;
    background: var(--color-white);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
  }

  .feature-style-three.tabs-img img {
    max-width: 100% !important;
  }

  .feature-style-three.tabs-img h5 {
    font-size: 17px;
  }

  .tab-section .section-title h4 {
    font-size: 19px;
  }

  .tab-section .feature-style-two h5 {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
  }

  .tab-section .feature-style-one {
    background: #fff;
    padding: 5px;
  }

  .tab-section .feature-style-one h4 {
    font-size: 15px;
  }

  .tab-section .feature-style-one p {
    font-size: 13px;
  }

  /* ----------------------------------------------------------------
    Scroll top button
------------------------------------------------------------------- */
  .contact_us {
    padding: 60px 0px;
    background: var(--color-three-dark);
  }

  .contact-details {
    display: flex;
    gap: 20px;
    align-items: start;
  }

  .contact-details .icon {
    height: 60px;
    width: 60px;
    background: var(--color-white);
    justify-content: center;
    display: flex;
    align-items: center;
    border-radius: 100%;
  }

  .contact-details .icon i {
    font-size: 30px;
    color: var(--color-three-dark);
  }

  .contact-details .content h5 {
    font-size: 17px;
    font-weight: 500;
    color: var(--color-one-bg);
  }

  .contact-details .content p {
    font-size: 13px;
    color: var(--color-white);
  }

  .contact-form {
    background: var(--color-white);
    padding: 20px;
  }

  .contact-form input {
    border: 0;
    border-bottom: 1px solid var(--color-dark);
    width: 100%;
    margin-bottom: 20px;
  }

  .contact-form input:focus {
    border: 0;
    border-bottom: 1px solid var(--color-dark) !important;
    width: 100%;
  }


  /* ----------------------------------------------------------------
    Scroll top button
------------------------------------------------------------------- */
  #scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    background-color: var(--color-three);
    color: white;
    border: none;
    outline: none;
    padding: 10px 15px;
    /* border-radius: 5px; */
    cursor: pointer;
    font-size: 16px;
    display: none;
    transition: background-color 0.3s ease;
    border-radius: 100%;
    width: 60px;
    height: 60px;
  }

  #scrollTopBtn:hover {
    background-color: var(--color-three-dark);
  }

  /* ----------------------------------------------------------------
    banner-pagination css
------------------------------------------------------------------- */


  .swiper-testimonial-right {
    position: absolute;
    top: 50%;
    right: 20px;
    z-index: 88;
    font-size: 45px;
    color: #4b556382;
  }

  .swiper-testimonial-left {
    position: absolute;
    top: 50%;
    left: 20px;
    z-index: 88;
    font-size: 45px;
    color: #4b556382;
  }

  /* ----------------------------------------------------------------
    05. Scroll top button
------------------------------------------------------------------- */
  .scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    inset-inline-end: 15px;
    bottom: -40px;
    z-index: 99999;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.5s;
    cursor: pointer;
    border: 0;
    outline: unset;
    box-shadow: unset;
  }

  .scroll-top:after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    inset-inline-start: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
  }

  .scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
  }

  .scroll-top:hover {
    background: rgb(var(--color-secondary));
    color: #fff;
  }

  .scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
    background: var(--color-one);
  }

  /* ----------------------------------------------------------------
    footer css
------------------------------------------------------------------- */
  .footer {
    padding: 50px 0px;
  }

  .footer_list h4 {
    color: #111827;
    font-weight: 500;
    font-size: 19px;
  }

  .footer_list ul {
    line-height: 35px;
  }

  .footer_list li a,
  .footer p,
  .footer .social_icon a {
    color: var(--color-two);
  }

  .footer_list li a {
    color: var(--color-two);
    font-weight: 400;
    transition: all .4s;
    font-size: 14px;
  }

  .social_icon ul {
    display: flex;
    align-items: center;
    gap: 15px;

  }

  .social_icon ul li a {
    font-size: 20px;
    transition: all .4s;
  }

  .footer_list li a:hover,
  .footer .social_icon a:hover {
    color: var(--color-three);
  }

  .four-zero-four {
    padding: 25px 0px !important;
  }

  .four-zero-four h1 {
    font-size: 100px;
    font-weight: 500;
    color: var(--color-one);
  }