@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --background: #ffffff;
    --foreground: #2b2b2b;
    --card: #ffffff;
    --card-foreground: #2b2b2b;
    --popover: #ffffff;
    --popover-foreground: #2b2b2b;
    --primary: #3b82f6;
    --primary-10: #EAF0FD;
    --primary-90: #3b82f6e6;
    --primary-foreground: #ffffff;
    --secondary: #f6f8fb;
    --secondary-foreground: #2b2b2b;
    --muted: #f5f6f7;
    --muted-foreground: #777777;
    --accent: #eef3f9;
    --accent-foreground: #2b2b2b;
    --destructive: #ef4444;
    --destructive-foreground: #ffffff;
    --border: #e5e7eb;
    --input: #e5e7eb;
    --ring: #a0aec0;
    --radius: 1rem;
    --sidebar-background: #fafafa;
    --sidebar-foreground: #444444;
    --sidebar-primary: #1a1a1a;
    --sidebar-primary-foreground: #fafafa;
    --sidebar-accent: #f4f4f4;
    --sidebar-accent-foreground: #1a1a1a;
    --sidebar-border: #e0e4ea;
    --sidebar-ring: #3b82f6;
    --glass-bg: #FAFAFB;
    --glass-border: rgba(55, 65, 81, 0.2);
}

[data-bs-theme="dark"] {
    --background: #0a0a0c;
    --foreground: #f5f8fb;
    --card: #111015;
    --card-foreground: #f5f8fb;
    --popover: #111015;
    --popover-foreground: #f5f8fb;
    --primary: #378fff;
    --primary-10: #378fff1a;
    --primary-90: #378fffe6;
    --primary-foreground: #f5f8fb;
    --secondary: #181820;
    --secondary-foreground: #f5f8fb;
    --muted: #181820;
    --muted-foreground: #8a95ad;
    --accent: #1d1d27;
    --accent-foreground: #f5f8fb;
    --destructive: #d62d27;
    --destructive-foreground: #f5f8fb;
    --border: #2c2c39;
    --input: #2c2c39;
    --ring: #3f8bfd;
    --sidebar-background: #0a0a0c;
    --sidebar-foreground: #f5f8fb;
    --sidebar-primary: #378fff;
    --sidebar-primary-foreground: #f5f8fb;
    --sidebar-accent: #181820;
    --sidebar-accent-foreground: #f5f8fb;
    --sidebar-border: #22222d;
    --sidebar-ring: #378fff;
    --glass-bg: #0E1217;
    --glass-border: rgba(55, 65, 81, 0.2);
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}


body {
    margin-bottom: 60px;
    font-family: 'open-sans', sans-serif;
    background: var(--background);
    border-color: var(--border);
}

.glass-card {
    background-color: var(--glass-bg);
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: #0000 0 0 #0000, var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    --tw-backdrop-blur: blur(4px);
    border-width: 1px;
    border-color: var(--border);
}

.ring-offset-background {
    --tw-ring-offset-color: var(--background);
}

.text-primary-foreground {
    color: var(--primary-foreground);
}

.border-border {
    border-color: var(--border);
}

.heading-accent {
    position: relative;
}

    .heading-accent:after {
        position: absolute;
        bottom: -.5rem;
        left: 0;
        height: .25rem;
        width: 33.333333%;
        border-radius: 9999px;
        background-color: var(--primary);
        --tw-content: "";
        content: var(--tw-content);
    }

.bgg-secondary {
    background-color: var(--secondary);
}

.bgg-primary {
    background-color: var(--primary)
}

.bgg-primary-10 {
    background-color: var(--primary-10);
}

.bgg-primary-90 {
    background-color: var(--primary-90);
}

.bgg-border {
    background-color: var(--border)
}

.text-muted-foreground {
    color: var(--muted-foreground);
}

.parent{
    background: var(--background);
}


.section-heading {
    margin-bottom: 1.5rem;
    display: inline-block;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.nav-link {
    position: relative;
    color: var(--muted-foreground);
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.2s;
    animation-duration: 0.2s;
    padding: 0.25rem 0.5rem;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        height: 2px;
        width: 100%;
        background-color: var(--primary);
        transform: scaleX(0);
        transform-origin: right bottom;
        transition: transform 0.3s ease-in-out;
    }

    .nav-link:hover::after {
        transform: scaleX(1);
        transform-origin: left bottom;
    }

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
}

.ring-offset-background {
    --tw-ring-offset-color: var(--background);
}

.icon:hover{
    background-color: var(--primary);
}

#mobile-menu {
    transition: height 500ms ease-in-out, opacity 500ms ease-in-out;
}

    #mobile-menu.open {
        height: auto;
        opacity: 1;
    }

    #mobile-menu.closed {
        height: 0;
        opacity: 0;
    }

/* Animate when they enter the viewport */
.animate-in {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease-out;
}

    .animate-in.from-left {
        transform: translateX(-100px);
    }

    .animate-in.from-right {
        transform: translateX(100px);
    }

    .animate-in.from-bottom {
        transform: translateY(100px);
    }

    .animate-in.from-top {
        transform: translateY(-100px);
    }

    .animate-in.visible {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
/*QnA Library*/
.qnaLibrary {
    padding: 40px 0 50px 0;
    text-align: center;
}

    .qnaLibrary .courseGroup {
        display: flex;
        justify-content: center;
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .qnaLibrary h2 {
        font-size: 26px;
        line-height: 39px;
        font-weight: 600;
        margin: 0;
    }

    .qnaLibrary h3 {
        font-size: 20px;
        line-height: 30px;
        color: #51596A;
    }

    .qnaLibrary a {
        /*width: 10%;*/
        text-align: center;
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
        color: #1F2430;
        margin: 0;
        margin-right: 40px;
    }

        .qnaLibrary a:last-child {
            margin-right: 0px;
        }

        .qnaLibrary a span {
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 7px 7px 50px 0 rgb(0 84 247 / 11%);
            background-color: #0798d6;
            border-radius: 50%;
            width: 125px;
            height: 125px;
            margin-bottom: 10px;
        }

    .qnaLibrary .bottomBtns {
        margin-top: 25px;
    }

        .qnaLibrary .bottomBtns a {
            color: #fff;
        }

            .qnaLibrary .bottomBtns a:hover {
                color: #000;
            }
/*Mobile View*/
@media screen and (max-width: 767px) {
    .selfStudyBanner {
        margin-top: 0;
        padding-bottom: 50px
    }

        .selfStudyBanner .contents {
            padding-right: 0;
        }

        .selfStudyBanner h1 {
            font-size: 32px;
            margin: 20px 0 8px 0;
        }

        .selfStudyBanner h2 {
            font-size: 26px;
            line-height: 34px;
        }

        .selfStudyBanner .row {
            flex-direction: column-reverse;
        }

    .shapeSkills p br {
        display: none;
    }

    .shapeSkills h2 {
        font-size: 26px;
        line-height: 30px;
    }

    .trainingLibrary h2 {
        font-size: 26px;
        line-height: 30px;
        margin: 0 0 7px 0;
    }

    .trainingLibrary h3 {
        font-size: 16px;
        color: #51596A;
    }

    .trainingLibrary .courseGroup a {
        margin-right: 5px;
    }

    .trainingLibrary .courseGroup {
        margin-top: 20px;
        flex-wrap: wrap;
    }

    .trainingLibrary a {
        width: 21%;
        font-size: 14px;
        line-height: 22px;
    }

        .trainingLibrary a span {
            width: 95px;
            height: 95px;
        }

    .qnaLibrary h2 {
        font-size: 26px;
        line-height: 30px;
        margin: 0 0 7px 0;
    }

    .qnaLibrary h3 {
        font-size: 16px;
        color: #51596A;
    }

    .qnaLibrary .courseGroup {
        margin-top: 20px;
        flex-wrap: wrap;
    }

    .qnaLibrary a {
        font-size: 14px;
        line-height: 22px;
        margin-right: 20px;
    }

        .qnaLibrary a span {
            width: 95px;
            height: 95px;
        }

    .courseGroup img {
        width: 30px;
    }
}

.trainingLibrary {
    padding: 40px 0 50px 0;
    text-align: center;
}

    .trainingLibrary .courseGroup {
        display: flex;
        justify-content: center;
        margin-top: 40px;
        flex-wrap: wrap;
    }

        .trainingLibrary .courseGroup a {
            margin-right: 40px;
        }

            .trainingLibrary .courseGroup a:last-child {
                margin-right: 0px;
            }

    .trainingLibrary h3 {
        font-size: 20px;
        line-height: 30px;
        color: #51596A;
    }

    .trainingLibrary a {
        /*width: 10%;*/
        text-align: center;
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
        color: #1F2430;
        margin: 0;
    }

        .trainingLibrary a span {
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 7px 7px 50px 0 rgb(0 84 247 / 11%);
            background-color: #00d1cf;
            border-radius: 50%;
            width: 125px;
            height: 125px;
            margin-bottom: 10px;
        }

    .trainingLibrary .bottomBtns {
        margin-top: 25px;
    }

        .trainingLibrary .bottomBtns a {
            color: #fff;
        }

            .trainingLibrary .bottomBtns a:hover {
                color: #000;
            }