.logo img,
img {
    transition: width .3s
}

*,
h1,
h2,
h3,
h4,
h5,
p {
    padding: 0;
    margin: 0
}

*,
body {
    margin: 0
}

.navbar,
body {
    background: var(--white)
}

html::-webkit-scrollbar {
    width: 0;
    height: 0
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none
}

.navbar-nav .nav-link,
body {
    color: var(--text-color-black)
}

.marquee-content,
.signin-area {
    align-items: center;
    white-space: nowrap
}

*,
.marquee {
    box-sizing: border-box
}
.contact-form,
.default-button a,
.hero-lines,
.our-verticals h1,
.signin-area {
    text-transform: uppercase
}

img {
    pointer-events: none
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

:root {
    --white: #f8f8f8;
    --black: #000000c7;
    --gradient-primary: linear-gradient(90deg, #00a3d2 0%, #06b400 100%);
    --text-color-black: #000000c7;
    --text-color-white: #ffffff;
    --card-radius: 28px;
    --container-max-width: 1180px;
    --viewport-height: 100dvh;
    --font-size-xl: clamp(3rem, 12.2vw, 20rem);
    --font-size-base: 18px;
    --font-size: 20px;
    --font-family: 'Poppins', sans-serif;
    --box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12);
    --hover: #06b400;
    --bg-btn: #ffd100;
    --bg-hover: #f7b500;
    --header-title-size: clamp(35px, 5vw, 50px)
}

.menu,
.signin-area {
    border: none;
    cursor: pointer
}

body {
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    height: var(--viewport-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

header.fixed-top.container-fluid.container-xxl.p-0 {
    background-color: var(--white)
}

.navbar {
    position: relative;
    padding: 0 200px 0 0;
    height: auto
}

.signin-area,
.signin-area:hover {
    background: var(--gradient-primary)
}

.logo img {
    width: 300px;
    height: auto
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: color .25s
}

.hero-stat,
.signin-area,
.signin-area:hover,
.stat-desc {
    color: var(--text-color-white)
}

.navbar-nav .nav-link:hover {
    color: var(--hover)
}

.signin {
    width: 100px
}

.signin-area {
    height: 100%;
    width: 180px;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    display: flex;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color .3s;
    text-decoration: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2
}

.menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 18px;
    background: 0 0;
    padding: 0
}

.menu span {
    height: 3px;
    width: 100%;
    border-radius: 3px;
    display: block;
    background-color: var(--black)
}

.hidden {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative
}

.nav-menu {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .45s, opacity .35s, transform .35s
}

.nav-menu.active {
    max-height: 300px;
    opacity: 1
}

@media (min-width:992px) {
    .nav-menu {
        overflow: visible;
        max-height: none;
        opacity: 1
    }
}

@media (max-width:991px) {
    .navbar {
        padding: 0;
        height: auto
    }

    .menu {
        display: flex
    }

    .hidden {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: var(--white);
        box-shadow: 0 6px 16px rgba(0, 0, 0, .1);
        border-top: 2px solid var(--bg-btn);
        justify-content: center;
        padding: 1rem 0
    }
}

@media (max-width:576px) {
    .logo img {
        width: 200px
    }

    .signin-area {
        width: 120px
    }

    .our-verticals {
        padding-top: 100px
    }
}

@media (max-width:376px) {
    .logo img {
        width: 175px
    }

    .signin-area {
        width: 119px
    }
}

@media (max-width:320px) {
    .logo img {
        width: 150px
    }

    .signin-area {
        width: 110px;
        font-size: .85rem
    }

    .navbar {
        padding: 0 10px
    }

    .menu {
        width: 20px;
        height: 16px
    }

    .menu span {
        height: 2px
    }
}

.hero-banner {
    padding-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100dvh;
    background-image: url("/images/banner.png");
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative
}

.hero {
    padding-top: 3rem !important;
    z-index: 9;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px
}

.hero-lines {
    font-size: 7rem;
    font-weight: 900;
    line-height: 1
}

.hero-stats {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: var(--gradient-primary);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 59px;
    box-shadow: var(--box-shadow)
}

.hero-stats-left,
.hero-stats-right {
    flex: 1;
    display: flex;
    gap: 15px;
    padding: 10px;
    align-items: center
}

.hero-stats-left {
    border-right: 1px solid rgba(255, 255, 255, .4)
}

.hero-stat {
    font-size: 44px;
    font-weight: 700;
    line-height: 1
}

.stat-desc {
    font-size: 18px;
    line-height: 1.2
}

.block-copy {
    font-size: 21px;
    font-weight: 400;
    color: #555
}

.btn-Start,
.signup-here {
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
    color: #fff !important;
    text-align: center
}

.hero-card-container {
    padding-bottom: 50px;
    border-radius: 12px;
    position: relative;
    background: 0 0
}

.hero-card-image {
    text-align: center;
    padding: 41px 0;
    border-radius: 12px 12px 0 0
}

.hero-card-image img {
    max-height: 180px;
    width: auto;
    height: auto
}

.hero-card-content {
    background: var(--white);
    padding: 15px;
    border-radius: 0 0 12px 12px
}

.hero-card-content h3 {
    font-size: 22px;
    color: #333
}

.hero-card-content p {
    font-size: 16px;
    color: #555;
    font-weight: 400
}

.default-button a,
.signup-here {
    font-weight: 700;
    text-decoration: none
}

.marquee p,
h4 {
    font-weight: 600
}

.signup-here {
    overflow: hidden;
    position: absolute;
    bottom: 10px;
    background: var(--gradient-primary);
    width: calc(100% - 30px);
    border-radius: 4px;
    padding: 14px 0;
    font-size: 18px
}

.default-button a {
    background-color: var(--white);
    border: 2px solid var(--white);
    color: #004788;
    border-radius: 50px;
    padding: .7rem 1.8rem;
    font-size: 1rem;
    transition: .2s cubic-bezier(.17, .67, .83, .67)
}

.marquee {
    width: 100%;
    overflow: hidden;
    background: #f9f9f9;
    padding: 10px 0
}

.marquee p {
    text-align: center;
    margin-bottom: 10px
}

.marquee-content {
    display: flex;
    gap: 40px;
    animation: 25s linear infinite scroll-left;
    padding-left: 60px
}

.advertiser-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 36px
}

.advertiser-logo img {
    max-height: 100%;
    width: auto;
    display: block;
    object-fit: contain
}

@keyframes scroll-left {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-100%)
    }
}

.btn-Start {
    background: var(--gradient-primary);
    border-radius: 4px;
    padding: 14px;
    font-size: 18px
}

.contact-form,
.our-content,
.our-verticals {
    display: flex;
    min-height: 100dvh;
    background-image: url(/images/banner.png);
    background-size: cover;
    background-position: center;
    position: relative
}

.our-content,
.our-verticals {
    justify-content: center;
    align-items: center;
    width: 100%
}

@media (max-width:768px) {
    .hero-banner {
        padding-top: 100px;
        padding-bottom: 60px
    }

    .hero-stats {
        flex-direction: column;
        text-align: center
    }

    .hero-stats-left,
    .hero-stats-right {
        align-items: center;
        justify-content: center
    }

    .hero-stats-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .4)
    }

    .hero-stat {
        font-size: 36px
    }

    .block-copy {
        font-size: 20px
    }

    .our-verticals h1 {
        font-size: var(--header-title-size)
    }
}

.card-custom {
    border-radius: 14px;
    padding: 30px;
    border: 1px solid #1f252f;
    transition: .3s
}

.card-custom:hover {
    transform: translateY(-6px);
    border-color: #3c79ff;
    box-shadow: 0 0 18px rgba(60, 121, 255, .3)
}

.icon {
    width: 50px;
    height: 50px
}

h4 {
    margin-bottom: 12px
}

.contact-form {
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-bottom: 50px
}