/* Start custom CSS for html, class: .elementor-element-28791d7 *//* =========================================================
   CADGURU PREMIUM HEADER
   Prefix: cgx-
========================================================= */

:root {
    --cgx-navy: #071525;
    --cgx-navy-2: #0b1f35;
    --cgx-blue: #0877d1;
    --cgx-blue-light: #1b9cff;
    --cgx-white: #ffffff;
    --cgx-text: #182738;
    --cgx-muted: #657486;
    --cgx-border: #e4eaf0;
    --cgx-bg: #f7faff;
    --cgx-shadow: 0 25px 70px rgba(4, 20, 38, .16);
}


/* ===============================
   RESET
================================ */

.cgx-header,
.cgx-header * {
    box-sizing: border-box;
}

.cgx-header a {
    text-decoration: none !important;
}

.cgx-header {
    width: 100%;
    position: relative;
    z-index: 99999;
    font-family: Arial, Helvetica, sans-serif;
}


/* ===============================
   CONTAINER
================================ */

.cgx-container {
    width: min(1440px, calc(100% - 70px));
    margin: auto;
}


/* ===============================
   TOP BAR
================================ */

.cgx-topbar {
    background: var(--cgx-navy);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.cgx-topbar-inner {
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cgx-top-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cgx-top-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #48adff;
}

.cgx-top-text {
    font-size: 13px;
    color: #b8c6d4;
}

.cgx-top-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.cgx-contact-item {
    color: #dce7f0 !important;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: .25s ease;
}

.cgx-contact-item i {
    color: #3da8ff;
    font-size: 12px;
}

.cgx-contact-item:hover {
    color: #fff !important;
}

.cgx-time {
    color: #9eb1c3;
}


/* ===============================
   MAIN HEADER
================================ */

.cgx-main-header {
    background: #fff;
    border-bottom: 1px solid #e9eef3;
    position: relative;
}

.cgx-main-header:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #0877d1,
        #39b7ff,
        #0877d1,
        transparent
    );
    opacity: .8;
}


.cgx-nav-wrapper {
    min-height: 91px;
    display: flex;
    align-items: center;
    gap: 35px;
}


/* ===============================
   LOGO
================================ */

.cgx-logo {
    width: 175px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.cgx-logo img {
    display: block;
    width: 100%;
    max-height: 62px;
    object-fit: contain;
}


/* ===============================
   NAVIGATION
================================ */

.cgx-navigation {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 3px;
    height: 91px;
}

.cgx-nav-item {
    height: 100%;
    position: static;
    display: flex;
    align-items: center;
}

.cgx-nav-link {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    color: #172536 !important;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    position: relative;
    transition: .25s ease;
}

.cgx-nav-link i {
    font-size: 9px;
    color: #7d8a98;
    transition: .25s ease;
}

.cgx-nav-link:after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0;
    height: 3px;
    background: var(--cgx-blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: .25s ease;
}

.cgx-nav-link:hover,
.cgx-nav-link:hover i,
.cgx-nav-link.cgx-active {
    color: var(--cgx-blue) !important;
}

.cgx-nav-link:hover:after,
.cgx-nav-link.cgx-active:after {
    transform: scaleX(1);
}

.cgx-nav-item:hover > .cgx-nav-link i {
    transform: rotate(180deg);
    color: var(--cgx-blue);
}


/* ===============================
   CONTACT BUTTON
================================ */

.cgx-contact-button {
    margin-left: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--cgx-navy);
    color: #fff !important;
    padding: 14px 19px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    transition: .3s ease;
}

.cgx-contact-button i {
    font-size: 12px;
    transition: .3s ease;
}

.cgx-contact-button:hover {
    background: var(--cgx-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(8,119,209,.25);
}

.cgx-contact-button:hover i {
    transform: translateX(4px);
}


/* ===============================
   MEGA MENU BASE
================================ */

.cgx-mega {
    position: absolute;
    left: 50%;
    top: calc(100% + 1px);
    transform: translate(-50%, 12px);
    width: min(1370px, calc(100vw - 50px));
    background: #fff;
    border: 1px solid #e1e8ef;
    border-top: 4px solid var(--cgx-blue);
    border-radius: 0 0 16px 16px;
    box-shadow: var(--cgx-shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity .22s ease,
        transform .22s ease,
        visibility .22s ease;
    overflow: hidden;
}

.cgx-nav-item:hover > .cgx-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}


/* ===============================
   MEGA HEADING
================================ */

.cgx-mega-heading,
.cgx-course-header {
    padding: 27px 32px;
    background:
        linear-gradient(
            120deg,
            #f7fbff,
            #fff
        );
    border-bottom: 1px solid var(--cgx-border);

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cgx-mini-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--cgx-blue);
    display: block;
    margin-bottom: 7px;
}

.cgx-mega-heading h3,
.cgx-course-header h3 {
    margin: 0;
    color: #0d2034;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.cgx-mega-heading p {
    margin: 6px 0 0;
    color: #687789;
    font-size: 14px;
}

.cgx-mega-action,
.cgx-view-all {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--cgx-blue) !important;
    font-size: 14px;
    font-weight: 700;
}

.cgx-mega-action i,
.cgx-view-all i {
    transition: .25s ease;
}

.cgx-mega-action:hover i,
.cgx-view-all:hover i {
    transform: translateX(5px);
}


/* ===============================
   VIDEO MENU
================================ */

.cgx-video-grid {
    padding: 26px 30px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
}

.cgx-video-card {
    min-height: 88px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid #e4ebf2;
    border-radius: 10px;
    color: #172536 !important;
    background: #fff;
    position: relative;
    transition: .25s ease;
}

.cgx-video-card:hover {
    border-color: #8ac8f7;
    background: #f5fbff;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(10,75,125,.09);
}

.cgx-video-card.featured {
    background: linear-gradient(135deg,#071b30,#0b3152);
    border-color: #0b3152;
    color: #fff !important;
}

.cgx-card-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #eaf5ff;
    color: var(--cgx-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.cgx-featured .cgx-card-icon,
.cgx-video-card.featured .cgx-card-icon {
    background: rgba(255,255,255,.1);
    color: #48b5ff;
}

.cgx-video-card span {
    display: block;
    color: #8291a0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.cgx-video-card.featured span {
    color: #62bfff;
}

.cgx-video-card strong {
    display: block;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 800;
}

.cgx-video-card small {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: #758494;
}

.cgx-video-card.featured small {
    color: #a7bfd3;
}

.cgx-card-arrow {
    margin-left: auto;
    color: #94a4b4;
    font-size: 11px;
}


/* ===============================
   COURSES
================================ */

.cgx-course-mega {
    width: min(1390px, calc(100vw - 45px));
}

.cgx-course-columns {
    padding: 27px 30px 30px;
    display: grid;
    grid-template-columns: 1.05fr 1.05fr 1.05fr .85fr;
    gap: 24px;
}

.cgx-course-column {
    padding-right: 20px;
    border-right: 1px solid #e5ebf1;
}

.cgx-course-column:last-child {
    border-right: 0;
}

.cgx-column-title {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #0e2337;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 14px;
}

.cgx-column-title i {
    width: 31px;
    height: 31px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf5ff;
    color: var(--cgx-blue);
    font-size: 13px;
}


.cgx-course-link {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 8px;
    color: #172536 !important;
    transition: .2s ease;
}

.cgx-course-link:hover {
    background: #f2f8fd;
    color: var(--cgx-blue) !important;
}

.cgx-course-link strong {
    display: block;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 750;
}

.cgx-course-link small {
    display: block;
    margin-top: 3px;
    color: #82909d;
    font-size: 11px;
}

.cgx-course-link > i {
    color: #a1adb9;
    font-size: 9px;
}


/* SUB MEGA */
.cgx-submenu-box {
    margin: 0 0 8px 19px;
    padding: 7px 0 7px 13px;
    border-left: 2px solid #dcecf8;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cgx-submenu-box a {
    padding: 5px 7px;
    color: #5d6d7d !important;
    font-size: 13px;
    font-weight: 600;
    border-radius: 5px;
    transition: .2s ease;
}

.cgx-submenu-box a:hover {
    background: #edf7ff;
    color: var(--cgx-blue) !important;
    padding-left: 11px;
}


/* ===============================
   CAREER BOX
================================ */

.cgx-highlight-column {
    border: 0;
    padding: 20px;
    border-radius: 13px;
    background:
        linear-gradient(
            145deg,
            #071a2e,
            #0b3152
        );
    color: #fff;
    align-self: stretch;
}

.cgx-highlight-column .cgx-column-title {
    color: #fff;
}

.cgx-highlight-column .cgx-column-title i {
    background: rgba(255,255,255,.1);
    color: #5fc1ff;
}

.cgx-highlight-column .cgx-course-link {
    color: #fff !important;
}

.cgx-highlight-column .cgx-course-link small {
    color: #9bb3c8;
}

.cgx-highlight-column .cgx-course-link:hover {
    background: rgba(255,255,255,.07);
}


.cgx-career-box {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.13);
}

.cgx-career-small {
    font-size: 9px;
    letter-spacing: 1.5px;
    font-weight: 800;
    color: #56baff;
}

.cgx-career-box h4 {
    margin: 8px 0;
    color: #fff;
    font-size: 22px;
    line-height: 1.2;
}

.cgx-career-box p {
    margin: 0 0 18px;
    color: #a8bfd2;
    font-size: 12px;
    line-height: 1.6;
}

.cgx-career-box a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
}

.cgx-career-box a i {
    transition: .2s ease;
}

.cgx-career-box a:hover i {
    transform: translateX(4px);
}


/* ===============================
   SOFTWARE MEGA
================================ */

.cgx-software-mega {
    display: grid;
    grid-template-columns: 310px 1fr;
}

.cgx-software-intro {
    padding: 38px 32px;
    background:
        linear-gradient(
            145deg,
            #071725,
            #0c3150
        );
    color: #fff;
}

.cgx-software-intro h3 {
    margin: 8px 0 14px;
    color: #fff;
    font-size: 27px;
    line-height: 1.15;
}

.cgx-software-intro p {
    color: #aac1d3;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.cgx-software-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1699eb;
    color: #fff !important;
    padding: 11px 15px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
}

.cgx-software-list {
    padding: 27px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cgx-software-item {
    min-height: 72px;
    padding: 12px;
    border: 1px solid #e2e9ef;
    border-radius: 9px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #172536 !important;
    transition: .25s ease;
}

.cgx-software-item:hover {
    border-color: #92cdf3;
    background: #f5fbff;
    transform: translateY(-2px);
}

.cgx-software-icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: #eaf5ff;
    color: var(--cgx-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 900;
}

.cgx-software-item strong {
    display: block;
    font-size: 14px;
}

.cgx-software-item span {
    display: block;
    color: #82909d;
    font-size: 11px;
    margin-top: 3px;
}

.cgx-software-item > i {
    margin-left: auto;
    color: #9aa7b3;
    font-size: 10px;
}

.cgx-software-sub {
    grid-column: span 2;
    margin: -4px 0 4px 54px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cgx-software-sub a {
    padding: 7px 10px;
    background: #f3f7fa;
    border-radius: 5px;
    color: #637384 !important;
    font-size: 12px;
    font-weight: 600;
}

.cgx-software-sub a:hover {
    background: #e9f5ff;
    color: var(--cgx-blue) !important;
}


/* ===============================
   SIMPLE DROPDOWN
================================ */

.cgx-small-dropdown {
    position: relative;
}

.cgx-simple-dropdown {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    width: 220px;
    padding: 10px;
    background: #fff;
    border: 1px solid #e1e8ef;
    border-top: 3px solid var(--cgx-blue);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 20px 45px rgba(0,0,0,.13);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .22s ease;
}

.cgx-small-dropdown:hover .cgx-simple-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cgx-simple-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    color: #263747 !important;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
}

.cgx-simple-dropdown a:hover {
    background: #f1f8fd;
    color: var(--cgx-blue) !important;
}

.cgx-simple-dropdown i {
    width: 24px;
    color: var(--cgx-blue);
}


/* ===============================
   MOBILE BUTTON
================================ */

.cgx-mobile-toggle {
    display: none;
    width: 46px;
    height: 42px;
    border: 1px solid #dce5ec;
    border-radius: 7px;
    background: #fff;
    margin-left: auto;
    padding: 9px;
    cursor: pointer;
}

.cgx-mobile-toggle span {
    display: block;
    height: 2px;
    background: #102337;
    margin: 5px 0;
    transition: .25s ease;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1250px) {

    .cgx-container {
        width: min(100% - 35px, 1200px);
    }

    .cgx-nav-link {
        padding: 0 8px;
        font-size: 13px;
    }

    .cgx-contact-button {
        padding: 12px 13px;
        font-size: 13px;
    }

    .cgx-logo {
        width: 150px;
    }

    .cgx-navigation {
        gap: 0;
    }
}


@media (max-width: 1050px) {

    .cgx-top-left {
        display: none;
    }

    .cgx-topbar-inner {
        justify-content: center;
    }

    .cgx-top-right {
        gap: 15px;
    }

    .cgx-navigation {
        display: none;
    }

    .cgx-mobile-toggle {
        display: block;
    }

    .cgx-nav-wrapper {
        min-height: 78px;
    }
}


/* ===============================
   MOBILE
================================ */

@media (max-width: 700px) {

    .cgx-container {
        width: calc(100% - 28px);
    }

    .cgx-topbar-inner {
        min-height: auto;
        padding: 9px 0;
    }

    .cgx-top-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 7px 15px;
    }

    .cgx-contact-item {
        font-size: 11px;
    }

    .cgx-time {
        display: none;
    }

    .cgx-logo {
        width: 135px;
    }

    .cgx-nav-wrapper {
        min-height: 72px;
    }

}


/* ===============================
   VERY SMALL MOBILE
================================ */

@media (max-width: 480px) {

    .cgx-top-right .cgx-contact-item:nth-child(2),
    .cgx-top-right .cgx-contact-item:nth-child(3) {
        display: none;
    }

    .cgx-logo {
        width: 125px;
    }

}/* End custom CSS */