* {
    margin: 0;
    padding: 0;
}

.container-r {
    width: 90% !important;
    margin: auto;
}

body {
    overflow-x: hidden;
    max-width: 100%;
    background-color: #ffffff !important;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

li {
    list-style-type: none !important;
}

a {
    text-decoration: none !important;
    font-size: 16px !important;
    color: #000000 !important;
    font-family: "Poppins", sans-serif !important;
}

p {
    font-family: "Poppins", sans-serif !important;
    font-size: 16px;
    color: #ffffffa6 !important;
    font-weight: 300 !important;
}

h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif !important;
    color: #222222 !important;
}

h1,
h2 {
    font-family: "Montserrat", sans-serif !important;
    color: #222222 !important;
}

/* CURSOR START HERE */

.c-cursor {
    --size: 10px;
    --glow: 40px;

    position: fixed;
    top: 0;
    left: 0;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;

    background: rgba(255, 255, 255, 0.95);
    box-shadow:
        0 0 var(--glow) rgba(255, 255, 255, 1),
        0 0 calc(var(--glow) * 1.5) rgba(255, 255, 255, 0.8),
        0 0 calc(var(--glow) * 2) rgba(255, 255, 255, 0.6);

    transform: translate(-50%, -50%);
    will-change: transform, width, height, opacity, filter;
    transition: all 0.35s ease;
}

.c-btn {
    padding: 1rem 2rem;
    background: #333;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
}

/* CURSOR END HEER */

/* BUTTON START HERE */

.cssbuttons-io-button {
    background: #ffffff;
    margin-top: 50px;
    color: #3D3D3D;
    font-family: inherit;
    padding: 0.35em;
    padding-left: 1.2em;
    font-size: 17px;
    font-weight: 500;
    border-radius: 60px;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em #ffffff;
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
    cursor: pointer;
}

.cssbuttons-io-button .icon {
    background: white;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 60px;
    box-shadow: 0.1em 0.1em 0.6em 0.2em #00000063;
    right: 0.3em;
    transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
    width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: #3D3D3D;
}

.cssbuttons-io-button:hover .icon svg {
    transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
    transform: scale(0.95);
}

/* BUTTON END HERE */

/* SMALL TITTLE CARD START HERE */

.small-title-card {
    position: relative;
    width: 150px;
    height: 40px;
    border-radius: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: auto;
    margin-bottom: 30px;
}

.scroll-container {
    display: flex;
    white-space: nowrap;
    animation: scroll-left 12s linear infinite;
    font-weight: 600;
    font-size: 1.2rem;
}

.scroll-item {
    margin: 0 5PX;
    display: flex;
    align-items: center;
}

.dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 10px;
    border-radius: 50%;
    background: #000;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/*  */

.small-title-card2 {
    position: relative;
    width: 150px;
    height: 40px;
    border-radius: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: auto;
    margin-bottom: 30px;
    border: 1.5px solid #ffffff;
}

.scroll-container2 {
    display: flex;
    white-space: nowrap;
    animation: scroll-left 12s linear infinite;
    font-weight: 600;
    font-size: 1.2rem;
}

.scroll-item2 {
    margin: 0 5PX;
    display: flex;
    align-items: center;
    color: #ffffff !important;
}

.dot2 {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 10px;
    border-radius: 50%;
    background: #ffffff;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* SMALL TITTLE CARD END HERE */

/* INNER PAGE START HERE */

.inner-head {
    width: 100%;
    height: 200px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    position: relative;
}

.inner-head-content {
    display: flex;
    max-width: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 50%);
    gap: 30px;
}

.inner-head-content h6 {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
}

.inner-head a {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
}

.inner-head-content img {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.full-width-card {
    width: 99.2% !important;
    height: 100% !important;
}

.full-width-card-bg {
    height: 2000px !important;
}

.inner-header-main {
    width: 95%;
    margin: auto;
}

/* INNER PAGE END HERE */

.inner-main {
    background: radial-gradient(circle, rgba(0, 3, 154, 1) 0%, rgba(0, 1, 50, 1) 100%);
}

.inner-foot-top {
    margin-top: -100px;
}