@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primaryColor: #01244C;
    --secondaryColor:#E6C891;
    --primaryFont: "Host Grotesk", sans-serif;
    --black : #000;
    --white : #fff;
}

.primary-color{
    color: var(--secondaryColor);
}
html,
body {
    font-family: var(--primaryFont);
    color: var(--black);
    overflow-x: hidden;
    font-size: 18px;
}



h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}



/* ====== header css start ====== */
header {
    position: absolute;
    width: 100%;
    z-index: 99999;
    padding: 10px 20px 10px 20px;
    background: transparent;
}
header .logo img {
    width: 46px;
}
nav {
    display: flex;
    z-index: 10;
    justify-content: space-between;
    padding: 8px 2.4vw;
    border-bottom: 1px solid #fff;
}

.nav-links {
    display: flex;
    list-style: none;
    justify-content: space-between;
    align-items: center;
    gap: 46px;
    margin-bottom: 0;
}

.nav-links li a {
    text-decoration: none;
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
    padding-bottom: 6px;
}

nav .cta-btn {
    margin-left: 7vw;
}

nav .cta-btn a {
    color: #fff;
}

.nav-links .active {
    color: var(--secondaryColor);
}

.nav-links li a:hover {
    color: var(--secondaryColor);
}

nav .cta-btn a:hover {
    color: #fff;
}

.nav-links li {
    position: relative;
}

.nav-links li a::before {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 0 0 0 10%;
    bottom: 0;
}

.nav-links li a:hover::before {
    width: 80%;
}

.toggle,
[id^=drop] {
    display: none;
}

nav a:hover {
    color: rgb(240 84 84)
}

nav ul ul {
    display: none;
    position: absolute;
    top: 60px;
    background: #fff;
    width: 300px;
    list-style: none;
    border-radius: 2px;
    padding-bottom: 15px;
}

nav ul li:hover>ul {
    display: inherit;
}

nav ul ul li {
    width: 100%;
    float: none;
    display: list-item;
    position: relative;
    padding: 7px 0px !important;
}

li>a:only-child:after {
    content: '';
}

.hamburger div {
    width: 30px;
    height: 3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
}

.hamburger {
    display: none;
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    transition: all 0.7s ease;
    width: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}


/* ====== header css end ====== */
.site-container {
    margin: 0 4vw;
    border: 1px solid #e4e2e8;
    padding: 16px 0;
    border-top: 0;
    /* border-bottom: 0; */
}
/* ====== banner css start ====== */
.banner {
    text-align: center;
    padding: 17dvh 20px 8dvh 20px;
    background: var(--black);
    color: #fff;
}

.banner h1 {
    font-size: 54px;
    font-weight: 600;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    text-align: center;
}
.banner p {
    font-size: 26px;
    font-weight: 500;
}
.banner .btn-group {
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}
.btn-group {
    gap: 30px;
}

.cta-btn {
    border-radius: 30px;
    padding: 12px 24px;
    /* color: var(--black);
    border: 1px solid var(--black); */
    color: #fff;
    border: 1px solid #fff;
    font-weight: 500;
    transition: .3s all ease-in-out;
    display: inline-block;
}

.cta-btn.filled{
    background: var(--primaryColor);
    color: #fff;
    border-color: var(--primaryColor);
}

.cta-btn:hover{
   background: var(--black);
   color: #fff;
   border-color: var(--black);
}
.cta-btn:hover i{
    color: #fff;
}
.cta-btn i {
    color: var(--primaryColor);
    margin-left: 12px;
}

.banner-left {
    text-align: left;
}
a.download-btn img {
    width: 200px;
    object-fit: cover;
    height: auto;
}

/* banner end */

/* about start  */
.about {
    padding: 2rem 20px;
    /* background: #e7e7e7; */
    /* background: #fff7f7; */
    background: var(--primaryColor);
    color: var(--white);
}

.about p{
    font-size: 20px;
}
/* about end  */

/* feature start */
  .feature{
    padding: 4rem 20px;
  }

  .feature ul li {
      color: #495057;
      margin-bottom: 20px;
      font-size: 18px;
  }
  .small-title{
    color: var(--primaryColor);
    font-weight: 700;
  }

  .feature-image{
    text-align: center;
  }

  .feature-image img {
      width: 40%;
  }

  .swiper-button-prev:after,
  .swiper-button-next:after {
      color: var(--primaryColor);
      font-size: 27px;
  }

  .swiper-button-next {
      right: 100px;
  }

  .swiper-button-prev {
      left: 100px;
  }

/* feature end */

/* how its work section start  */
.how-its-work{
    padding: 3rem 20px;
    background: var(--primaryColor);
    color: var(--white);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.how-its-work::before {
    position: absolute;
    content: url('../images/bg-elem-2.png');
    left: 2%;
    width: 400px;
    height: 400px;
    bottom: -10%;
    z-index: -1;
}
.how-its-work::after {
    position: absolute;
    content: url('../images/bg-elem-1.png');
    right: 2%;
    width: 400px;
    height: 400px;
    top: -22%;
    z-index: -1;
}

.work-holder {
    background: #143e6e;
    padding: 10px 20px;
    border-radius: 12px;
}

.work-holder .icon {
    font-size: 50px;
    font-weight: bolder;
    color: #e6c89191;
}
h2{
    color: var(--secondaryColor);
}
h4{
    font-size: 22px;
}

/* how its work section end  */

/* download app section start  */
.download-app-now{
    padding: 4rem 20px;
}
/* download app section end  */

/* footer start */
footer {
    background: var(--primaryColor);
    padding: 5rem 20px 1rem 20px;
    color: #fff;
}

footer img {
    max-width: 250px !important;
}


footer li{
    list-style: none;
}
footer .widget p{
    margin-top: 1rem;
}
.widget span {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 2rem;
    color: #fff;
}

.widget ul li a {
    color: #fff;
    margin: 24px 0;
    font-weight: 500;
    display: flex;
    gap: 13px;
    align-items: center;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    margin-top: 0rem;
}

/* footer end */

