@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

:root {
    --color-primary: #BA24D5;
    --color-white: #fff;
    --color-dark: #202939;
    --color-text: #364152;
    --font: "Sora", sans-serif;
}

*,
*::after,
*::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.bg-light {
    background: #F2F7F9;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

h1 {
    font: normal normal 700 56px/120% var(--font);
}

h2 {
    font: normal normal 700 40px/120% var(--font);
}

h3 {
    font: normal normal 700 36px var(--font);
}

h4 {
    font: normal normal 700 32px/130% var(--font);
}

h5 {
    font: normal normal 700 20px/120% var(--font);
}

h6 {
    font: normal normal 400 18px/150% var(--font);
}

p {
    font: normal normal 400 16px/150% var(--font);
}

body {
    font-family: "Sora", sans-serif;
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1280px;
    }
}

.container-left {
    padding-left: 15px;
    margin-left: auto;
    width: calc(1280px + (50% - 1280px / 2));
}

.btn-check:focus+.btn,
.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.form-control:focus {
    border-color: #d1d6de;
}

.btn {
    font: normal normal 500 16px/150% var(--font);
    text-decoration: none;
    border-radius: 60px;
    padding: 12px 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    transition: 0.4s all ease-in-out;
}

.btn__primary {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.btn__primary:hover {
    color: var(--color-white);
    box-shadow: 4px 4px 0 #8A4CEF;
}

.btn__primarybrdr {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.main__heading h2 {
    color: var(--color-dark);
    text-align: center;
}

.main__heading span {
    font: normal normal 400 14px/142% var(--font);
    color: var(--color-dark);
    border-radius: 24px;
    background: #E3E8EF;
    padding: 4px 12px;
    display: block;
    margin-bottom: 16px;
    width: fit-content;
}

.main__heading p {
    color: #4a4a4a;
    text-align: center;
    margin-top: 16px;
}

.main__heading p span {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.rn__section__gapTop {
    padding: 72px 0;
}

.inner__gapTop {
    margin-top: 64px;
}

.header-spacing {
    min-height: 91px;
}

.header {
    position: fixed;
    width: 100%;
    background: #EEF2F6;
    border-bottom: 1px solid #E0E4EA;
    z-index: 999;
}

.header.sticky {
    background: #F2F3F9;
}

.navbar input[type="checkbox"],
.navbar .hamburger {
    display: none;
}

.navbar {
    padding: 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 90px;
    align-items: center;
    width: 100%;
}

.header-menu {
    display: flex;
    margin: 0;
    padding: 0;
}

.header .logo img {
    width: 200px;
    height: auto;
}

.header .logo h2 {
    color: var(--color-dark);
}

.navbar .header-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.header-menu li {
    list-style: none;
    margin: 0;
    position: relative;
}

.header .menu-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header .menu-items li a {
    color: var(--color-text);
    font: normal normal 500 16px/150% var(--font);
    text-decoration: none;
    min-height: 90px;
    display: flex;
    align-items: center;
    position: relative;
    transition: .4s all ease-in-out;
}

.header .menu-items li a.active,
.header .menu-items li:hover a {
    color: var(--color-primary);
}

.header .menu-items li a::before {
    position: absolute;
    left: 0;
    bottom: 22px;
    content: '';
    width: 0;
    height: 2px;
    border-radius: 4px;
    background-color: var(--color-primary);
    transition: width .4s;
}

.header .menu-items li .btn::before {
    display: none;
}

.header .menu-items li a.active::before,
.header .menu-items li:hover a::before {
    width: 100%;
}

.header .menu-items li a img {
    width: 16px;
    height: auto;
    margin-left: 2px;
    transition: 0.4s all ease-in-out;
}

.header .menu-items li:hover a img {
    transform: rotate(180deg);
}

.header .menu-items li .btn__primary {
    color: var(--color-white) !important;
    padding: 12px 21px;
    min-height: auto;
    line-height: 150%;
    margin-left: 16px;
}

.header .menu-items li .btn__primary.active {
    color: var(--color-white);
}

.header .menu-items li .sub__menu {
    position: absolute;
    top: 100%;
    min-width: 160px;
    background-color: #EEF2F6;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    transition: max-height 0.4s, opacity 0.4s, visibility 0.4s;
}

.header .menu-items li:hover .sub__menu {
    max-height: 260px;
    visibility: visible;
    opacity: 1;
}

.header .menu-items li .sub__menu li {
    background: #EEF2F6;
    border-bottom: 1px solid #E0E4EA;
    transition: 0.4s all ease-in-out;
}

.header .menu-items li .sub__menu li:hover {
    background-color: var(--color-primary);
}

.header .menu-items li .sub__menu li:last-child {
    border-bottom: none;
}

.header .menu-items li .sub__menu li a {
    padding: 12px 20px;
    min-height: auto;
    transition: 0.4s all ease-in-out;
}

.header .menu-items li:hover .sub__menu li a {
    color: #101010;
}

.header .menu-items li .sub__menu li:hover a {
    color: var(--color-white) !important;
}

.header .menu-items li .sub__menu li a::before {
    display: none;
}

@media (max-width: 768px) {
    .header .logo img {
        width: 140px;
    }

    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger {
        display: block;
    }

    .navbar-container {
        height: 60px;
    }

    .navbar-container .hamburger {
        height: 18px;
        width: 26px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-container .hamburger .line {
        display: block;
        height: 2px;
        width: 100%;
        border-radius: 10px;
        background: var(--color-dark);
    }

    .navbar-container .hamburger .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar-container .hamburger .line2 {
        transition: transform 0.2s ease-in-out;
    }

    .navbar-container .hamburger .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar .menu-items {
        background: #EEF2F6;
        border: 1px solid #E0E4EA;
        border-left: none;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        transform: translate(-150%);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        transition: transform 0.4s ease-in-out;
        position: absolute;
        left: 0;
        top: 100%;
        padding: 40px 0;
        gap: 0;
    }

    .navbar .menu-items.open {
        transform: translate(0);
    }

    .header .menu-items li {
        border-bottom: 1px solid rgba(150, 150, 150, 0.15);
        padding: 0;
        width: 100%;
    }

    .header .menu-items li a {
        padding: 10px 16px;
    }

    .header .menu-items li a.active,
    .header .menu-items li:hover a,
    .header .menu-items li a:focus {
        color: var(--color-white);
        background-color: var(--color-primary);
    }

    .header .menu-items li a.active img,
    .header .menu-items li:hover a img,
    .header .menu-items li a:focus img {
        filter: brightness(0) invert(1);
    }

    .header .menu-items li a::before {
        display: none;
    }

    .header .menu-items li:last-child {
        border-bottom: none;
    }

    .header .menu-items li a {
        color: #101010;
        font: normal normal 500 14px var(--font);
        min-height: auto;
        text-transform: uppercase;
    }

    .header .menu-items li a img {
        margin-left: 6px;
    }

    .header .menu-items li .sub__menu {
        position: static;
        box-shadow: none;
    }

    .header .menu-items li .sub__menu li a {
        padding: 10px 20px;
    }

    .header .menu-items li .sub__menu li:first-child {
        border-top: 1px solid rgba(150, 150, 150, 0.15);
    }

    .header .menu-items li .sub__menu li a {
        font: normal normal 500 12px var(--font);
    }

    .header .menu-items li:hover .sub__menu li a {
        color: #101828;
        background-color: #EEF2F6;
    }

    .navbar-container .hamburger.active .line1 {
        transform: rotate(45deg) translate(1px, -2px);
    }

    .navbar-container .hamburger.active .line2 {
        transform: rotate(0deg) scale(0);
    }

    .navbar-container .hamburger.active .line3 {
        transform: rotate(-45deg) translate(1px, 2px);
    }

    .header-spacing {
        min-height: 60px;
    }
}

/********Footer CSS*******/
.footer {
    background-color: var(--color-dark);
    padding: 24px 0;
}

.footer p {
    text-align: center;
    color: var(--color-white);
}

.bnr__privacy {
    background: #f2f3f9;
    padding: 42px 0;
}

.bnr__privacy h2 {
    text-align: center;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.privacy__policy .content__bx h6 {
    font-weight: 600;
    color: var(--color-dark);
    margin: 24px 0 8px;
}

.privacy__policy .content__bx p,
.privacy__policy .content__bx p a {
    color: #4A4A4A;
}

.bnr__soon {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-dark);
}

.bnr__soon h1 {
    font-size: 4em;
    color: var(--color-white);
}

.bnr__soon p {
    font-size: 1.4em;
    color: var(--color-white);
    opacity: .7;
}

.wrapper {
    width: 100%;
    min-height: 100%;
    height: auto;
    display: table;
}

.content {
    display: table-cell;
    vertical-align: middle;
}

.item {
    width: auto;
    height: auto;
    margin: 0 auto;
    text-align: center;
    padding: 8px;
}

@media only screen and (min-width: 800px) {
    .bnr__soon h1 {
        font-size: 6em;
    }

    .bnr__soon p {
        font-size: 1.6em;
    }
}

@media only screen and (max-width: 320px) {
    .bnr__soon h1 {
        font-size: 2em;
    }

    .bnr__soon p {
        font-size: 1.2em;
    }
}