:root {
    --blue: #343362;
    --white: #ffffff;
    --yellow: #FFD600;
    --primary: var(--blue);
    --secondary: var(--yellow);
    --maroon: #B80000;
}

@font-face {
    font-family: 'cera thin';
    src: url(../../../assets/fonts/Cera-Pro-Light.ttf);
}

@font-face {
    font-family: 'cera thin';
    src: url(../../../assets/fonts/Fontspring-DEMO-cerapro-thin.otf);
}

@font-face {
    font-family: 'cera regular';
    src: url(../../../assets/fonts/Cera-Pro-Regular.otf);
}

@font-face {
    font-family: 'cera medium';
    src: url(../../../assets/fonts/Cera-Pro-Medium.ttf);
}

@font-face {
    font-family: 'cera bold';
    src: url(../../../assets/fonts/Cera-Pro-Bold.ttf);
}

@font-face {
    font-family: 'cera black';
    src: url(../../../assets/fonts/Cera-Pro-Black.ttf);
}

nav.navbar {
    transition: 0.2s ease-in-out;
}

.text-justify {
    text-align: justify;
}

.cera-thin {
    font-family: cera thin;
}

.cera-regular {
    font-family: cera regular;
}

.cera-medium {
    font-family: cera medium;
}

.cera-bold {
    font-family: cera bold;
}

.cera-black {
    font-family: cera black;
}

.text-maroon {
    color: var(--maroon);
}

body {
    font-family: 'cera regular';
}

.text-primary {
    color: var(--blue) !important;
}

.btn-primary {
    border-color: var(--blue) !important;
    background-color: var(--blue) !important;
    color: var(--yellow) !important;
}

.bg-primary {
    background-color: var(--blue) !important;
}

.text-secondary {
    color: var(--yellow) !important;
}

.btn-secondary {
    border-color: var(--yellow) !important;
    background-color: var(--yellow) !important;
    color: var(--blue) !important;
}

.bg-secondary {
    color: var(--yellow) !important;
}

#headerfile {
    position: sticky;
    top: 0;
    z-index: 100;
}

header .header-menu .navbar-nav .nav-item .nav-link {
    text-transform: uppercase;
    font-size: .9rem;
    font-weight: 800;
}

header .header-menu .navbar-nav .nav-item:hover .dropdown-menu {
    transition: all 0.2s ease-in-out;
    margin-top: 0rem;
    opacity: 1;
    display: block;
}

header .header-menu .navbar-nav .nav-item .dropdown-menu {
    box-shadow: 0px 1px 4px rgb(0 0 0 / 10%);
    border: none;
    padding: 0;
    min-width: 12rem;
    border-radius: 0;
    transition: all 0.2s ease-in-out;
}

header .header-menu .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    padding: 0.5rem;
    font-size: 0.8rem;
    color: #1f1d5a;
    position: relative;
}

header .header-menu .navbar-nav .nav-item.second-menu>.dropdown-menu {
    position: absolute;
    left: 99%;
    display: none;
    top: 0;
}

header .header-menu .navbar-nav .nav-item.second-menu:hover .dropdown-menu {
    display: block;
}

#menu::-webkit-scrollbar {
    width: 4px;
    background: gray;
    opacity: 0;
}

#menu:hover::-webkit-scrollbar {
    opacity: .8;
}

#menu::-webkit-scrollbar-thumb {
    width: 3px;
    margin: 0 1px;
    background: #333;
    height: 60px;
    border-radius: 12px;
}

#menuToggle {
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
}

#menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
}

#menuToggle span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #333;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
}

#menuToggle span:first-child {
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

#menuToggle input:checked~span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #fff;
}

#menuToggle input:checked~span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked~span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}

#menu {
    display: block;
    overflow: scroll;
    position: absolute;
    left: -50px;
    top: 56px;
    width: 340px;
    height: calc(100vh - 102px);
    margin: -100px 0 0 -50px;
    padding: 50px;
    padding-top: 125px;
    background: #fff;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.onclick-menu {
    color: #fff;
    font-size: 1.4rem;
    position: relative;
    left: 8px;
}

@media only screen and (min-width:768px) {
    .navbar-light .header-menu .navbar-nav>.nav-item>.nav-link {
        color: #1f1d5a;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .position-sm-absolute {
        position: absolute;
    }
}

@media all and (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: none;
    }
    .navbar .nav-item:hover .nav-link {}
    .navbar .nav-item:hover .dropdown-menu {
        display: block;
    }
    .navbar .nav-item .dropdown-menu {
        margin-top: 0;
    }
}

/*-----------------------------Homepage----------------------------*/
   
        .btn-yellow {
        background-color: #FFD700;
        color: #000;
    }

    @media only screen and (min-width:992px) {
        .bottom-buttons {
            position: fixed;
            width: 100%;
            top: 50%;
            justify-content: space-between;
            height: 100px;
            pointer-events: none;
        }

        .bottom-buttons a {
            width: auto;
            transform-origin: left bottom;
            transform: rotate(90deg);
            height: 40px;
            top: -74%;
            pointer-events: visible;
            position: absolute;
        }

        .bottom-buttons a.btn-maroon {
            transform-origin: right top;
            position: absolute;
            right: 0;
            bottom: -60%;
            top: auto;
        }
    }

    @media only screen and (max-width:991px) {
        .go-to-top {
            bottom: 7.5rem;
        }

        #kenytChatBubble.style1 {
            bottom: 30px !important;
        }

        #whats-chat {
            bottom: 50px;
        }

        .bottom-buttons {
            position: fixed;
            bottom: 0;
            width: 100%;
            display: flex;
            height: 40px;
        }

        .bottom-buttons a {
            width: 100%;
        }
    }

    .top-strip .nav-link {
        font-weight: 500;
    }

    .top-strip .nav-link {
        color: rgb(31, 29, 90);
        text-transform: uppercase;
    }

    .bottom-strip .nav-link {
        color: rgb(31, 29, 90);
        text-transform: uppercase;
    }

    header .header-menu .navbar-nav .nav-item .dropdown-menu .dropdown-item {
        padding: 0.5rem;
        color: rgb(31, 29, 90);
        position: relative;
    }

    a:hover {
        text-decoration: none;
    }


    /* Animated Gradient Marquee Button */
    .gradient-marquee-btn {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 32px;
        background: linear-gradient(135deg, #667eea 0%, #3e37a5 50%, #7e7cd3 100%);
        background-size: 200% 200%;
        color: white;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        border-radius: 50px;
        overflow: hidden;
        transition: all 0.3s ease;
        animation: gradientShift 4s ease infinite;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }

    @keyframes gradientShift {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    .gradient-marquee-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
        color: #ffde5d;
    }

    .btn-content {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .marquee-text {
        display: inline-block;
        animation: textPulse 2s ease-in-out infinite;
    }

    @keyframes textPulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 1;
        }

        50% {
            transform: scale(1.05);
            opacity: 0.9;
        }
    }

    /* Shine effect */
    .btn-shine {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: shine 3s infinite;
        z-index: 1;
    }

    @keyframes shine {
        0% {
            left: -100%;
        }

        50%,
        100% {
            left: 100%;
        }
    }

    .gradient-marquee-btn i {
        animation: iconBounce 1.5s ease-in-out infinite;
    }

    @keyframes iconBounce {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-3px);
        }
    }
