  @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

  /* Globle Css */
  * {
    box-sizing: border-box;
  }

  :root {
    --primary: #0771FF;
    --white: #ffffff;
    --black: #000;
    --pera: #606060;
    --font1: "Inter", sans-serif;
    --font2: "IBM Plex Mono", monospace;
    --font3: "IBM Plex Sans", sans-serif;
  }

  p {
    font-size: 18px;
  }

  a {
    text-decoration: none;
  }

  body {
    font-family: "Inter", sans-serif;
  }

  a,
  p,
  h1,
  h2,
  h3,
  h4,
  h5 {
    color: var(--black);
    font-family: var(--font1);
  }

  p {
    color: var(--black);
    font-family: var(--font1);
  }

  li {
    list-style-type: none;
  }

  ul {
    margin: 0;
    padding: 0;
  }

  section {
    padding: 70px 0;
    overflow: hidden;
  }

  /* header */

  ul.navbar-nav {
    margin-left: 0%;
  }

  li.nav-item .nav-link {
    color: #000;
    font-size: 16px;
    text-transform: uppercase;
    font-family: var(--font3);
  }

  /* banner */

  .rount-btn a {
    background: var(--primary);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 20px;
  }

  .banner-content .title h1 {
    font-size: 52px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font1);
  }

  /* full */

  .full-new {
    background: #000;
    height: 90vh;
    position: relative;
    padding-top: 20px;
  }

  .full {
    padding: 0;
  }

  /* Team */

  .team-img img {
    width: 100%;
  }

  .heading-title h2 {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: var(--font1);
  }

  .heading-title h4 {
    font-size: 16px;
    text-transform: uppercase;
    font-family: var(--font3);
  }

  .main-btn a {
    background: var(--primary);
    display: inline;
    color: var(--white);
    padding: 18px 16px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    font-family: var(--font-1);
  }

  /* work */

  .heading-title h6 {
    color: var(--primary);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: var(--font1);
  }

  .works .heading-title h2 {
    font-size: 40px;
    font-family: var(--font1);
  }

  .heading-title p {
    color: var(--pera);
  }

  .work-box {
    background: var(--black);
    padding: 40px 25px 30px;
    border-radius: 10px;
  }

  .work-title h2 {
    color: var(--white);
    font-size: 40px;
    font-family: var(--font1);
  }


  .work-des p {
    color: var(--white);
    font-family: var(--font3);
  }

  .count p {
    text-align: center;
    color: var(--white);
    background: var(--primary);
    height: 30px;
    width: 30px;
    border-radius: 50%;
    margin: 0;
  }

  .count {
    position: absolute;
    top: -40px;
    z-index: 999999;
  }

  .work .owl-carousel .owl-stage-outer {
    overflow: visible;
  }

  .more-btn a img {
    height: 45px;
    width: 45px !important;
    background: var(--pera);
    border-radius: 50%;
  }

  .more-btn a {
    display: flex;
    justify-content: end;
  }

  .cta {
    background: var(--black);
    position: relative;
    padding: 80px 0;
  }

  img.bottmi-img1 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }

  .cta-content {
    position: relative;
    z-index: 2;
  }

  .cta-title h2 {
    color: var(--white);
    font-family: var(--font3);
  }

  .cta-des p {
    color: #fff;
    font-family: var(--font3);
  }

  .cta-des {
    margin: 20px 0 50px;
  }

  img.bottmi-img2 {
    position: absolute;
    bottom: 0;
    right: 12px;
    width: 35%;
    z-index: 1;
  }

  .owl-nav,
  .owl-dots {
    display: none;
  }

  footer {
    padding: 60px 0 0px;
    position: relative;
    background-size: cover;
  }

  .footer-menu ul {
    gap: 50px;
  }

  .footer-menu ul li a {
    font-size: 18px;
  }

  button.btn.login {
    border: 1px solid var(--black);
    font-weight: bold;
    padding: 7px 20px;
  }

  .navbar-expand-lg {
    line-height: 43px;
  }

  .team-img {
    position: relative;
    overflow: hidden;
  }

  .team-name {
    position: absolute;
    width: 100%;
    bottom: -100%;
    padding: 25px 10px;
    transition: all 0.5s;
  }

  .team-name h4 {
    color: var(--white);
    font-size: 34px;
  }

  .team-name p {
    color: var(--white);
  }


  .team-img:hover .team-name {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    height: 100%;
    padding: 25px 20px;
    bottom: 0;
  }


  .team-name .more-btn {
    visibility: hidden;
  }

  .team-img:hover .more-btn {
    visibility: visible;
    margin-bottom: 30px;
  }

  .team-name .more-btn a img {
    background: none;
    border: 1px solid #fff;
  }



  /* New */
  img.shap1 {
    position: absolute;
    bottom: 0;
    z-index: 0;
  }

  /* marquee div container */
  .marquee {
    font-size: 2vw;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    height: 2.5vw;
    overflow: hidden;
    background-color: #000;
    position: relative;
  }

  /* nested div inside the container */
  .marquee div {
    display: block;
    width: 200%;
    position: absolute;
    overflow: hidden;
    animation: marquee 30s linear infinite;
  }

  /* span with text */
  .marquee span {
    float: left;
    width: 50%;
    text-transform: uppercase;
  }




  .marquee.mq1 {
    background: #f983dd;
    position: absolute;
    top: 40%;
    left: -80%;
    height: 14%;
    right: -20%;
    z-index: 2;
    display: flex;
    align-items: center;
    transform: rotate(19deg);
  }


  .marquee2.mq2 {
    background: var(--primary);
    position: absolute;
    top: 55%;
    height: 14%;
    right: -30%;
    left: -20%;
    z-index: 2;
    display: flex;
    align-items: center;
    transform: rotate(-20deg);
  }

  /* keyframe */
  @keyframes marquee {
    0% {
      left: 0;
    }

    100% {
      left: -100%;
    }
  }


  /* marquee div container */
  .marquee2 {
    font-size: 2vw;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    height: 2.5vw;
    overflow: hidden;
    background-color: #000;
    position: relative;
  }

  /* nested div inside the container */
  .marquee2 div {
    display: block;
    width: 200%;
    position: absolute;
    overflow: hidden;
    animation: marquees 30s linear infinite;
  }

  /* span with text */
  .marquee2 span {
    float: left;
    width: 50%;
    text-transform: uppercase;
  }

  /* keyframe */
  @keyframes marquees {
    0% {
      right: 0;
    }

    100% {
      right: -100%;
    }
  }

  .shap2 {
    position: absolute;
    z-index: 3;
    height: 90%;
    left: 33%;
    bottom: 0;
  }

  h2.new-ai {
    font-size: 68px;
  }


  .team-name1 {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    transition: all 0.5s;
  }

  .team-name1 h4 {
    color: #fff;
    font-size: 36px;
  }

  .team-name1 p {
    color: #fff;
    margin: 0;
  }

  .team-img:hover .team-name1 {
    opacity: 0;
  }

  .about {
    position: relative;
    padding-bottom: 0;
  }

  .about .main-btn a {
    border-radius: 30px;
  }

  .about-list ul li i {
    font-size: 18px;
    color: var(--primary);
  }

  .about-list ul li {
    margin-bottom: 15px;
  }

  section.banner-slider {
    padding-bottom: 25px;
    margin-top: 60px;
  }

  .business-center-img img {
    width: 100%;
  }

  .corner-box {
    position: relative;
    padding: 15px 25px;
    font-weight: bold;
    font-size: 18px;
    color: #000;
    text-align: center;
    margin: 30px 0;
  }

  /* Top left corner */
  .corner-box::before,
  .corner-box::after,
  .corner-box span::before,
  .corner-box span::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid #007bff;
    /* Blue color */
    border-radius: 4px;
  }

  .corner-box::before {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none;
  }

  .corner-box::after {
    top: -5px;
    right: -5px;
    border-left: none;
    border-bottom: none;
  }

  .corner-box span::before {
    bottom: -5px;
    left: -5px;
    border-right: none;
    border-top: none;
  }

  .corner-box span::after {
    bottom: -5px;
    right: -5px;
    border-left: none;
    border-top: none;
  }

  .business-os {
    position: relative;
  }

  .main-btn.pricing-btn a {
    background: none;
    color: #000;
    border: 1px solid #000;
    border-radius: 30px;
    padding: 10px 20px;
  }

  .main-btn.pricing-btn a img {
    height: 30px;
  }

  .pricing-content-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  .pricing-content.first {
    border-right: 2px solid #0000007d;
  }

  .price p {
    font-weight: 500;
    font-size: 20px;
    margin: 0;
  }

  .price {
    margin-bottom: 10px;
  }

  .card-box h4 span {
    color: green;
  }

  section.journey {
    background: url(../../assets/images/journey/journey-bg.png);
    background-size: cover;
  }

  .journey-tagline p {
    color: var(--white);
    font-size: 23px;
  }

  .check-btn a span {
    font-size: 12px;
    font-family: var(--font1);
    font-weight: 600;
  }

  .check-btn a .bottom-text {
    position: relative;
    display: flex;
    gap: 5px;
    align-items: center;
  }

  .check-btn a .bottom-text p {
    font-size: 15px;
    margin: 0;
    color: var(--primary);
    font-weight: 600;
  }

  .check-btn a .bottom-text .chk {
    height: 28px;
    /* position: absolute; */
    /* right: -5%; */
    /* top: -6px; */
  }

  .check-btn {
    background: #fff;
    border-radius: 40px;
    padding: 5px 22px 5px;
    display: inline-block;
    width: 252px;
  }

  .journey-title h2 {
    background: linear-gradient(180deg, #FFFFFF 54.17%, #0771FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
  }

  .journey-title p {
    color: var(--white);
  }

  .journet-list ul li {
    color: var(--white);
  }

  .card-box.journey-price {
    padding-left: 0;
    text-align: left;
  }

  .card-box.journey-price h4 {
    color: #fff;
    font-family: var(--font1);
  }

  .pricing-btn.jour-btn a {
    color: #fff;
    border: 1px solid #fff;
    padding: 18px 20px;
    border-radius: 30px;
  }

  .journey-btn .main-btn a {
    border-radius: 30px;
  }

  .journey-phone img {
    width: 100%;
  }

  .executive-suite-img img {
    width: 100%;
  }

  .executive-suite-item h4 {
    font-family: var(--font1);
    font-weight: 600;
    font-size: 18px;
  }

  ul.executive-suite-list li {
    list-style: disc;
    font-size: 14px;
  }

  ul.executive-suite-list {
    padding-left: 15px;
  }

  .executive-suite-item {
    box-shadow: 0 0 6px 1px #00000036;
    padding: 15px;
    border-radius: 10px;
  }

  .executive-suite-btn .main-btn a {
    font-family: var(--font1);
    border-radius: 30px;
  }

  .executive-suite-btn {
    justify-content: end;
    display: flex;
    gap: 20px;
  }

  .card-box h4 {
    font-family: var(--font1);
    font-size: 22px;
  }

  .executive-suite {}

  .new-cta {
    background: url(../../assets/images/new-cta-bg.png);
    padding: 40px 0;
  }

  .new-cta .main-btn a {
    background: none;
    border: 2px solid var(--white);
  }

  .cta-btns {
    display: flex;
    gap: 6px;
  }

  .top-cta-content p {
    margin: 0;
    padding: 0;
    color: #fff;
    font-weight: 600;
    font-size: 24px;
  }

  .services-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }

  .services-item {
    position: relative;
  }

  .services-content {
    position: absolute;
    top: 0;
    padding: 30px 0px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .services-content .service-btns {
    text-align: center;
    margin-top: 30px;
  }

  .services-content h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 20px;
  }

  .services-content p {
    color: var(--white);
    font-size: 14px;
  }

  .bottom .bottmi-img2 {
    position: absolute;
    right: -7%;
    width: 40%;
    top: -2%;
    z-index: 1;
  }

  .business-os-img img {
    width: 100%;
  }

  .call a {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .coll-icon {
    background: var(--primary);
    color: #fff;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: flex;
    font-size: 18px;
    align-items: center;
    justify-content: center;
  }

  .call-text p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
  }

  .call-text {
    line-height: 20px;
  }

  .call-text span {
    font-size: 12px;
  }

  img.sm-cards {
    height: 25px;
  }

  .check-btn a span b {
    color: var(--primary);
    font-size: 14px;
    margin-left: 5px;
  }

  .pricing-content-box .check-btn {
    border: 2px solid var(--primary);
  }

  .executive-suite-btn .check-btn {
    border: 2px solid var(--primary);
  }

  .modal-header {
    border: none;
    z-index: 1;
    position: relative;
  }

  .modal-body h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 600;
  }

  .modal-dialog {
    max-width: 940px;
  }



  .busin-item h4 {
    font-size: 16px;
    margin: 0;
  }

  .busin-item {
    text-align: center;
    border: 1px solid var(--primary);
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 10px;
    background: #0771ff08;
  }

  p.title-pera {
    margin-bottom: 25px;
  }

  .modal-content {
    padding: 5px 30px 15px;
  }

  .md-title h4 {
    font-size: 18px;
  }

  .d-flex.gap-3.hd-btn {
    margin-left: 10px;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    width: 700px;
    padding: 25px;
  }

  a.dropdown-item {
    line-height: 20px;
    border-bottom: 1px solid #00000040;
    padding: 7px 0;
  }

  a.dropdown-item span {
    font-size: 12px;
  }

  .journey-phone {
    position: relative;
    max-width: 100%;
    margin: 10px auto;
  }

  /* phone image */
  .journey-phone img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* video placed over phone screen */
  .journey-phone .screen-overlay {
    position: absolute;
    left: 11%;
    top: 5%;
    width: 78%;
    height: 90%;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) inset;
  }

  .journey-phone .screen-overlay video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* fill the screen area nicely */
    display: block;
  }


  .business-os-img {
    position: relative;
    max-width: 100%;
    margin: 40px auto;
  }

  /* phone image */
  .business-os-img img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* video placed over phone screen */
  .business-os-img .screen-overlay {
    position: absolute;
    left: 3%;
    top: 4%;
    width: 94%;
    height: 92%;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) inset;
  }

  .business-os-img .screen-overlay video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* fill the screen area nicely */
    display: block;
  }

  header {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
  }

  section.top-tagline {
    margin-top: 90px;
  }

  .ban-btn .check-btn {
    border: 2px solid var(--primary);
  }

  .check-btn.about {
    border: 2px solid var(--primary);
  }

  span.add-on {
    font-size: 16px !important;
  }


  .video-tagline {
    /* position: absolute; */
    background: #0771FF4F;
    /* right: 0; */
    /* top: -20%; */
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
  }

  .video-tagline h4 {
    color: var(--white);
    margin: 0;
    font-size: 18px;
  }

  .serve-item {
    position: relative;
    border: 1px solid #0771FF;
    padding: 15px;
    border-radius: 15px;
  }

  .serv-tag p {
    margin: 0;
    color: var(--white);
  }

  .serve-img {
    position: relative;
  }

  .serv-tag {
    position: absolute;
    background: #D23134;
    padding: 8px 30px;
    border-radius: 0 30px 30px 0;
    top: 10%;
  }

  .serve-img img {
    border-radius: 15px;
    width: 100%;
  }

  .serve-title h4 {
    font-size: 20px;
  }

  .serve-title {
    margin: 15px 0;
  }

  .serve-btn .main-btn a {
    padding: 14px 30px;
  }

  .business-content .heading-title p {
    color: #000;
  }

  .serv-modal-content h4 {
    color: var(--primary);
    font-size: 20px;
  }

  .serv-modal-content p {
    font-size: 16px;
    color: #00000096 !important;
  }

  .modal-body.serv h2 {
    text-align: left;
    margin-bottom: 15px;
  }

  .executive-suite-item p {
    margin-bottom: 5px;
    font-size: 16px;
  }

  .hover-c p {
    font-size: 14px;
  }

  .service-txts {
    position: relative;
    height: 180px;
  }



  .journey-tagline P {
    font-size: 20px;
    margin: 0;
  }

  .cta-new-btn {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .services-content:hover .top-content {
    display: none;
    transition: all 0.5s;
  }

  .services-content:hover .hover-c {
    display: block;
    transition: all 0.5s;
  }

  .top-content {
    height: 180px;
    padding: 0px 15px;
  }

  .hover-c {
    display: none;
    height: 180px;
    padding: 0 15px;
  }




  .banner-popup-img .user {
    width: 111%;
  }

  .banner-popup-img {
    position: relative;
  }

  .serv-modal-content ul li {
    list-style: circle;
    margin-left: 15px;
  }

  .cta-new-btn.popup.text-center.mt-4 {
    position: absolute;
    bottom: 0;
    left: -82px;
  }

  .offer-tag-img img {
    width: 130px;
    margin: auto;
  }

  div#navbarSupportedContent {
    justify-content: space-around;
  }

  .marquee {
    display: none;
  }

  /* marquee div container */
  .marquee {
    font-size: 16px;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    height: 36px;
    padding-top: 8px;
    overflow: hidden;
    background-color: var(--primary);
    position: relative;
  }

  /* nested div inside the container */
  .marquee div {
    display: block;
    width: 320%;
    position: absolute;
    overflow: hidden;
    animation: marquee 12s linear infinite;
  }

  /* span with text */
  .marquee span {
    float: left;
    width: 50%;
  }

  /* keyframe */
  @keyframes marquee {
    0% {
      left: 0;
    }

    100% {
      left: -100%;
    }
  }


  .journey-video {
    text-align: end;
  }

  .mobile-serv {
    display: none;
  }

  .main-btn.text-center img {
    display: inline-block;
    width: auto;
  }

  .owl-carousel button.owl-dot {
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 7px !important;
    margin-right: 4px;
    border-radius: 50%;
  }

  .who-we-serve .owl-dots {
    display: block;
    text-align: center;
  }

  .services .owl-dots {
    display: block;
    text-align: center;
  }

  button.owl-dot.active {
    background: var(--primary);
  }

  .business-os {
    position: relative;
    padding-top: 70px;
  }

  .check-btn img {
    width: auto !important;
  }

  .pay-img img {
    height: 40px;
    width: auto !important;
    margin: auto;
  }

  .mobile-service {
    display: none;
  }

  section.who-we-serve {
    padding-top: 20px;
  }

  img.modal-shap1 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
  }

  img.modal-shap2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
  }

  .modal-body.serv p {
    color: #000;
    font-weight: 500;
  }

  @media only screen and (min-width: 990px) and (max-width: 1200px) {

    a.navbar-brand {
      margin: 0;
    }

    a.navbar-brand {
      width: 20%;
    }

    a.navbar-brand img {
      width: 100%;
    }

    .cta-btns {
      display: block;
    }

    .cta-btns .main-btn {
      margin-bottom: 18px;
    }

    .serve-title {
      min-height: 80px;
    }

    .executive-suite-item p {
      font-size: 14px;
    }

    .collapse:not(.show) {
      display: none !important;
    }

    .navbar-expand-lg .navbar-toggler {
      display: block !important;
    }

    .card-img img {
      width: 100%;
    }

    .pricing-content-box {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .pricing-content.first {
      border-right: none;
    }


  }

  @media only screen and (max-width: 1024px) {
    .pricing-content.first .check-btn {
      margin: 0;
    }

    h2.new-ai {
      font-size: 40px !important;
    }

    .card-img img {
      width: 50%;
    }

    .pricing-content-box {
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .check-btn {
      padding: 8px 16px 12px;
      display: inline-block;
      margin-bottom: 20px;
    }

    .check-btn a .bottom-text img {
      height: 30px;
      right: -16%;
    }

    .executive-suite-content {
      margin-top: 30px;
    }

    .executive-suite-btn {
      justify-content: center;
      margin-bottom: 25px;
    }

    .card-box {
      padding-left: 0;
    }

    .cta-btns {
      justify-content: center;
      margin-bottom: 20px;
    }

    .services-item {
      margin-bottom: 10px;
    }

    .bottom .bottmi-img2 {
      top: 50%;
    }

    .journey-btn {
      display: block !important;
    }

    .cta-btns .main-btn {
      margin-bottom: 15px;
    }

    .pricing-btn.jour-btn {
      margin-bottom: 15px;
    }

    .card-box {
      margin-top: 30px;
      text-align: center;
    }

    .pricing-content.first {
      border-right: none;
    }

    .offer-tag-img {
      text-align: center;
    }

    .mobile-service {
      display: block;
    }

    .desktop-service {
      display: none;
    }
  }

  @media only screen and (max-width: 767px) {
    .full-new {
      height: 100%;
    }

    .d-flex.gap-3.hd-btn {
      margin-left: 0px;
    }

    .team-img {
      margin-bottom: 15px;
    }

    a.navbar-brand img {
      width: 230px;
    }

    .footer-menu .mobile {
      display: block !important;
    }

    .footer-menu .mobile li {
      text-align: center;
      margin-bottom: 15px;
    }

    .footer-social ul {
      justify-content: center !important;
    }

    .banner-content .title h1 {
      font-size: 30px;
    }

    .heading-title h4 {
      font-size: 18px;
      margin-bottom: 40px;
    }

    .heading-title h2 {
      font-size: 30px;
    }

    .main-btn.text-end {
      text-align: center !important;
    }

    .works .heading-title h2 {
      font-size: 24px;
    }

    .cta {
      padding: 70px 0;
    }

    section.works {
      padding-top: 0;
    }

    h2.new-ai {
      font-size: 20px !important;
    }

    .team-name p {
      color: var(--white);
      font-size: 16px;
    }

    .hd-btn {
      margin-left: 20px;
    }

    .card-box {
      margin-top: 30px;
    }

    .check-btn {
      padding: 8px 15px 12px;
      display: inline-block;
      margin-bottom: 20px;
    }

    .check-btn a .bottom-text .chk {
      /* height: 30px; */
      /* position: absolute; */
      /* right: -15%; */
      /* top: -6px; */
    }

    .journey-phone {}

    .executive-suite-content {
      margin-top: 30px;
    }

    .executive-suite-btn {
      display: block;
      text-align: center;
    }

    .services-item {
      margin-bottom: 15px;
    }

    .footer-item {
      margin-top: 25px;
    }

    .copyright.text-end {
      text-align: left !important;
      margin-top: 10px;
    }

    .pricing-btn.jour-btn {
      margin-bottom: 15px;
    }

    .navbar-nav .dropdown-menu {
      width: 100% !important;
      padding: 15px !important;
      height: 300px;
      overflow: auto;
    }

    .tagline.text-center {
      margin-top: 30px;
    }

    .tagline.text-center {
      display: none;
    }

    .offer-tag-img {
      text-align: center;
      margin-bottom: 30px;
    }


    .banner-content .title h1 {
      font-size: 40px;
    }

    .cta-btns {
      text-align: center;
    }

    .cta-new-btn .check-btn {
      display: block;
      margin: auto;
      margin-bottom: 10px;
    }

    .cta-new-btn {
      display: block;
    }

    .cta-btns {
      display: block;
    }

    .marquee {
      display: block;
    }

    .journey-video {
      text-align: center;
      margin-top: 30px;
    }


  }

  @media only screen and (max-width: 424px) {
    .bottom .bottmi-img2 {
      top: 60% !important;
    }
  }

  @media only screen and (max-width: 374px) {
    a.navbar-brand img {
      width: 180px;
    }

    .footer-logo img {
      width: 265px;
    }

    .video-tagline {
      right: 28px;
      top: -31%;
    }
  }