@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: linear-gradient(90deg, #FF019A 0%, #F9531B 100%);
    --primary-hover--color: linear-gradient(90deg, #F9531B 0%, #FF019A 100%);
    --secondary-color: rgba(63, 63, 63, 0.70);
    --tertiary-color: #fff;
    --secondary-bg-color: #000;
    --secondary-text-color: #B7B7B7;
    --secondary-text-color-v2: #A2A2A2;
    --font-size: 16px;
}

body {
    font-size: var(--font-size);
    font-family: "Inter", sans-serif;
    font-style: normal;
    background-color: var(--secondary-bg-color);
    color: #fff;
    overflow-x: hidden;
}

.btn-primary {
    /* all: unset; */
    color: var(--tertiary-color);
    background-image: var(--primary-color);
    border: 0;

    &:hover {
        color: var(--tertiary-color);
        background-image: var(--primary-hover--color);
        border: 0;
    }

    &:active {
        color: var(--tertiary-color) !important;
        background-image: var(--primary-color) !important;
        border: 0 !important;
    }
}

.btn-secondary {
    /* all: unset; */
    color: var(--tertiary-color);
    background-color: var(--secondary-color);
    border-color: rgba(255, 255, 255, 0.46);

    &:hover {
        color: var(--tertiary-color);
        background-color: var(--secondary-color);
        border-color: rgba(255, 255, 255, 0.46);
    }

    &:active {
        color: var(--tertiary-color) !important;
        background-color: var(--secondary-color) !important;
        border-color: rgba(255, 255, 255, 0.46) !important;
    }
}

.contents {
    display: none;


}

.active-page {
    display: block;
}


.swal2-confirm {
    background-image: var(--primary-color);
    border: 0;
}

.swal2-container.swal2-in {
    backdrop-filter: blur(7px);
}


.gradient-variant {
    background-image: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fw-500 {
    font-weight: 500;
}

.fw-800 {
    font-weight: 800;
}

.color-secodary {
    color: var(--secondary-text-color);
}

.color-secodary--v2 {
    color: var(--secondary-text-color-v2);
}

.course-registration {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
}

/* .top-ellipse {
    position: relative;

    &::after {
        content: "";
        position: absolute;
        width: 700px;
        height: 700px;
        opacity: 0.4;
        background: radial-gradient(50% 50% at 50% 50%, #EDEAFF 0%, rgba(196, 196, 196, 0.00) 100%);
        right: 0;
        top: 0;
        z-index: -1;
        transform: translate(144px, -26px);
    }
} */

.br-12 {
    border-radius: 12px;
}

.navbar {
    .navbar-toggler-icon {
        background-image: none;
        width: auto;
        height: auto;

        svg {
            &:first-child {
                transform: scale(-1, 1);
            }
        }

        /* i {
            font-size: xx-large;
            color: var(--primary-color);
        } */
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    a {
        width: max-content;
    }
}

.form-control,
.form-select {
    height: 60px;
    border-color: #E6E6E6;
    color: #636363;

    &:focus {
        border-color: #E6E6E6;
        box-shadow: none;
    }
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.header-fixed {
    background: rgba(255, 255, 255, 0.21);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.error-message {
    color: red;
}

.achived-sec::after {
    content: "";
    position: absolute;
    border-radius: 1642px;
    background: var(--primary-color);
    filter: blur(147px);
    width: 100%;
    height: 70px;
    bottom: -40px;
    z-index: -1;
}

.offering-card {
    background: radial-gradient(circle at 100% 100%, transparent 0, transparent 3px, transparent 3px) 0% 0%/8px 8px no-repeat,
        radial-gradient(circle at 0 100%, transparent 0, transparent 3px, transparent 3px) 100% 0%/8px 8px no-repeat,
        radial-gradient(circle at 100% 0, transparent 0, transparent 3px, transparent 3px) 0% 100%/8px 8px no-repeat,
        radial-gradient(circle at 0 0, transparent 0, transparent 3px, transparent 3px) 100% 100%/8px 8px no-repeat,
        linear-gradient(transparent, transparent) 50% 50%/calc(100% - 10px) calc(100% - 16px) no-repeat,
        linear-gradient(transparent, transparent) 50% 50%/calc(100% - 16px) calc(100% - 10px) no-repeat,
        linear-gradient(0deg, transparent 21%, #F9531B 80%, #FF019A 100%);
    box-sizing: border-box;
    border-radius: 16px;
    padding: 1.5px;

    .offering-cards {
        background: linear-gradient(269deg, #161616 0%, #080808 100%);
        border-radius: 16px;
        min-height: 370px;
    }

    button {
        border-radius: 8px;
    }

    &:hover {
        animation: bg-spin 3s linear infinite;

        --border-angle: 0turn;
        --main-bg: conic-gradient(from var(--border-angle),
                #222,
                #222,
                #222,
                #222);
        border: solid 1px transparent;
        --gradient-border: conic-gradient(from var(--border-angle), transparent 25%, #F9531B, #FF019A 99%, transparent);
        background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
    }
}

.program-highlights--img::after {
    content: "";
    position: absolute;
    border-radius: 560px;
    background: var(--primary-color);
    filter: blur(150px);
    width: 400px;
    height: 400px;
    bottom: 20px;
    left: 20px;
    z-index: -1;
}

.ellipse-1::after {
    content: "";
    position: absolute;
    border-radius: 560px;
    background: var(--primary-color);
    filter: blur(150px);
    width: 400px;
    height: 400px;
    top: 26%;
    left: 16%;
    z-index: -1;
}

.ellipse-2::before {
    content: "";
    position: absolute;
    border-radius: 560px;
    background: radial-gradient(50% 50% at 50% 50%, #EDEAFF 0%, rgba(196, 196, 196, 0.00) 100%);
    filter: blur(150px);
    width: 500px;
    height: 500px;
    top: 0;
    right: 0;
    z-index: -1;
}

.program-highlights--list {
    ul {
        li {
            position: relative;
            list-style-type: none;

            &::after {
                content: "";
                position: absolute;
                background-image: url(../img/check-circle.svg);
                width: 24px;
                height: 24px;
                left: -33px;
                top: 3px;
            }
        }
    }
}

.coache-card {
    .designation-box {
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.44);
        background: rgba(255, 255, 255, 0.21);
        backdrop-filter: blur(15px);
        transform: translate(-50%, -50%);
        left: 50%;
        right: 50%;
        width: max-content;
        min-width: 210px;
    }

    .position-relative img {
        border-radius: 18px;
    }

    &:hover .designation-box {
        animation: bg-spin 3s linear infinite;

        --border-angle: 0turn;
        --main-bg: conic-gradient(from var(--border-angle),
                #222,
                #222,
                #222,
                #222);
        border: solid 2px transparent;
        --gradient-border: conic-gradient(from var(--border-angle), transparent 25%, #F9531B, #FF019A 99%, transparent);
        background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
    }
}

@property --border-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
}

@keyframes bg-spin {
    to {
        --border-angle: 1turn;
    }
}

.faq-box {
    border-radius: 20px;
    background: rgba(165, 165, 165, 0.20);

    .accordion {
        .accordion-item {
            border: none;
            display: none;
            border-bottom: 1px solid #444;
            border-radius: 0;

            .accordion-button {
                font-size: 18px;
                color: #fff;

                &::after {
                    filter: brightness(0) invert(1);
                }

                &:focus {
                    box-shadow: none;
                }

                &:not(.collapsed) {
                    box-shadow: none;
                    color: #fff;
                }
            }

            &:last-child {
                border-bottom: 0;
            }
        }
    }
}

.lets-start {
    background: rgba(63, 63, 63, 0.70);

    button {
        border-radius: 8px;
    }
}

.footer-sec a {
    font-size: 14px;
}


/* table section  */
.table-container-box {
    overflow-x: auto;
    width: 80%;
    color: #fff;
}

.cell-grid:not(.table-row .cell-grid:first-child, .table-row .cell-grid:last-child) {
    border-bottom: 0;
    border-top: 0;
}

.table-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;

    .table-row {
        .cell-grid {
            border: 1px solid rgba(153, 153, 153, 0.50);
            padding: 12px;

            &:last-child {
                border-top: 0 !important;
            }
        }

        &:first-child {
            background-color: #000;
            position: sticky;
            left: 0;
            z-index: 1;

            .cell-grid {
                padding: 12.6px;

                @media (max-width: 991px) {
                    padding: 14.8px 12px;
                }

                &:first-child {
                    padding: 12px;
                }
            }
        }

        &:nth-child(2) {
            .cell-grid:first-child {
                border-top-color: #FF019A;
            }

            @media (max-width: 991px) {
                .cell-grid:not(:first-child) {
                    padding: 21.4px;
                }
            }
        }

        &:nth-child(3) {
            .cell-grid {
                border-right: 0;

                &:first-child {
                    border-top-color: #F9531B;
                }
            }

            @media (max-width: 991px) {
                .cell-grid:not(:first-child) {
                    padding: 21.4px;
                }
            }

        }

        &:last-child {
            .cell-grid {
                border: 0 !important;

                &:first-child {
                    border-bottom: 1px solid rgba(153, 153, 153, 0.50) !important;
                }
            }

            .gradient-card {
                background: linear-gradient(180deg, #333 0%, #000 100%);
            }

            background: radial-gradient(circle at 100% 100%, transparent 0, transparent 3px, transparent 3px) 0% 0% / 8px 8px no-repeat,
            radial-gradient(circle at 0 100%, transparent 0, transparent 3px, transparent 3px) 100% 0% / 8px 8px no-repeat,
            radial-gradient(circle at 100% 0, transparent 0, transparent 3px, transparent 3px) 0% 100% / 8px 8px no-repeat,
            radial-gradient(circle at 0 0, transparent 0, transparent 3px, transparent 3px) 100% 100% / 8px 8px no-repeat,
            linear-gradient(transparent, transparent) 50% 50% / calc(100% - 10px) calc(100% - 16px) no-repeat,
            linear-gradient(transparent, transparent) 50% 50% / calc(100% - 16px) calc(100% - 10px) no-repeat,
            linear-gradient(0deg, transparent 21%, #F9531B 80%, #FF019A 100%);
            box-sizing: border-box;
            padding: 1.5px;

            @media (max-width: 991px) {
                .cell-grid:not(:first-child) {
                    padding: 21.4px;
                }
            }
        }
    }
}

.table-container .table-row:not(.table-container .table-row:first-child) {
    text-align: center;
}

.journey-at-skillMavis {
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    background-position: center;

    @media (max-width: 768px) {
        border-radius: 10px;
    }

    .w-50 {
        @media (max-width: 768px) {
            width: 100% !important;
        }
    }
}

.learning-methodology {
    .methodologies-card {
        background-color: #222;
        border-radius: 20px;
        overflow: hidden;
        min-height: 460px;
        /* height: 100%; */

        @media (max-width: 768px) {
            border-radius: 10px;
            min-height: 460px;
        }

        .methodologies-card--img {
            position: relative;

            &::after {
                content: "";
                position: absolute;
                bottom: -2px;
                left: 0;
                width: 100%;
                height: 50%;
                background: linear-gradient(to top, rgba(34, 34, 34, 1), transparent);
                z-index: 2;
            }
        }
    }

    .owl-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 25px;

        .owl-dot {
            width: 8px;
            height: 8px;
            background-color: #D9D9D9;
            border-radius: 50px;

            &.active {
                background-image: var(--primary-color);
            }
        }
    }
}

.enroll-img {
    height: inherit;

    @media (max-width: 768px) {
        border-radius: 16px;
    }
}

.enroll--modal {
    .modal-body {
        .form-group {

            input,
            select {
                background-color: #D4D4D4;
            }
        }
    }
}


@media (max-width: 768px) {
    .table-container-box {
        width: 100%;
    }

    .table-container {
        grid-template-columns: min-content repeat(3, minmax(140px, 2fr));
    }

    .table-container .table-row:first-child {
        width: 140px;
    }
}



@media screen and (max-width: 768px) {
    .navbar-brand {
        img {
            max-width: 65%;
        }
    }

    .program-highlights--img::after {
        width: 300px;
    }
}

@media screen and (max-width: 991px) {
    .navbar-collapse {
        min-height: 100vh;
    }
}

@media screen and (max-width: 1440px) {
    .hero-section {
        padding: 8em 0 50px 0 !important;
    }
}

@media screen and (min-width: 992px) {
    .navbar-brand img {
        max-width: 100%;
        transition: all 0.3s ease;
    }


    .header-fixed {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;

        .navbar-brand {
            img {
                max-width: 85%;
            }
        }
    }
}