.header-main a img {
    width: 300px !important;
}

.justify {
    text-align: justify !important;
}

.section-padding {
    padding: 50px 0px !important;
}

.section-top {
    padding-top: 50px !important;
}

/* .header-1.header-one{
    top: 0px !important;
} */

/* =========================================================
   NSK HEADER
========================================================= */

:root {
    --nsk-navy: #071d3b;
    --nsk-red: #c91f26;
    --nsk-yellow: #f7dc70;
    --nsk-border: #e9edf2;
}


/* ================= TOP BAR ================= */

.nsk-topbar {
    height: 42px;
    background: var(--nsk-navy);
    color: #fff;
}

.nsk-topbar-inner {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nsk-top-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nsk-top-left a,
.nsk-top-left span {
    color: rgba(255, 255, 255, 0.952);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px;
}

.nsk-top-left a:hover {
    color: var(--nsk-yellow);
}

.nsk-top-left i {
    color: var(--nsk-yellow);
}

.nsk-top-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, .25);
}


/* ================= SOCIAL ================= */

.nsk-top-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nsk-follow-text {
    color: rgba(255, 255, 255, .65) !important;
    font-size: 14px !important;
    margin-right: 5px;
}

.nsk-top-right a {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    transition: .3s;
}

.nsk-top-right a:hover {
    background: var(--nsk-yellow);
    border-color: var(--nsk-yellow);
    color: var(--nsk-navy);
}


/* ================= MAIN HEADER ================= */

.nsk-main-header {
    background: #fff;
    border-bottom: 1px solid var(--nsk-border);
}

.nsk-header-inner {
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ================= LOGO ================= */

.nsk-logo {
    width: 260px;
    flex-shrink: 0;
}

.nsk-logo img {
    width: 100%;
    height: auto;
    display: block;
}


/* ================= DESKTOP MENU ================= */

.nsk-desktop-nav {
    margin-left: 35px;
    margin-right: 35px;
}

.nsk-desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nsk-desktop-nav li {
    list-style: none;
}

.nsk-desktop-nav li a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 42px 0;
    color: var(--nsk-navy);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    transition: .3s;
}

.nsk-desktop-nav li a:hover {
    color: var(--nsk-red);
}


/* underline */

.nsk-desktop-nav li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 31px;
    width: 0;
    height: 2px;
    background: var(--nsk-red);
    transition: .3s;
}

.nsk-desktop-nav li a:hover::after {
    width: 100%;
}

.nsk-video-btn {
    height: 45px !important;
    padding: 0px 16px !important;
    border-radius: 12px !important;
}

.theme-btn {
    height: 45px !important;
    padding: 0px 15px !important;
    border-radius: 12px !important;
    line-height: 46px !important;
}

/* ================= CONTACT ================= */

.nsk-contact-btn {
    min-width: 150px;
    height: 48px;
    padding: 0 18px;
    border-radius: 15px;
    background: var(--nsk-yellow);
    color: var(--nsk-navy) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: .3s;
}

.nsk-contact-btn:hover {
    background: var(--nsk-navy);
    color: #fff !important;
}

.nsk-contact-btn i {
    transition: .3s;
}

.nsk-contact-btn:hover i {
    transform: translateX(5px);
}


/* ================= HAMBURGER ================= */

.nsk-mobile-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--nsk-navy);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nsk-mobile-toggle span {
    width: 19px;
    height: 2px;
    background: #fff;
    display: block;
}


/* ================= OVERLAY ================= */

.nsk-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 29, 59, .65);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 10000;
}

.nsk-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* ================= MOBILE MENU ================= */

.nsk-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 88%;
    height: 100vh;
    background: #fff;
    z-index: 10001;
    transform: translateX(100%);
    transition: transform .4s ease;
    overflow-y: auto;
    box-shadow: -10px 0 50px rgba(0, 0, 0, .15);
}

.nsk-mobile-menu.active {
    transform: translateX(0);
}


/* ================= MOBILE MENU HEADER ================= */

.nsk-mobile-menu-header {
    min-height: 95px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--nsk-border);
}

.nsk-mobile-logo {
    width: 190px;
}

.nsk-mobile-logo img {
    width: 100%;
}


/* ================= CLOSE BUTTON ================= */

.nsk-mobile-close {
    position: relative;
    width: 42px;
    height: 42px;
    border: 1px solid #e5e8ed;
    background: #f8f9fb;
    border-radius: 50%;
    cursor: pointer;
}

.nsk-mobile-close span {
    position: absolute;
    width: 17px;
    height: 2px;
    background: var(--nsk-navy);
    left: 12px;
    top: 20px;
}

.nsk-mobile-close span:first-child {
    transform: rotate(45deg);
}

.nsk-mobile-close span:last-child {
    transform: rotate(-45deg);
}


/* ================= MOBILE NAV ================= */

.nsk-mobile-nav {
    padding: 20px 25px;
}

.nsk-mobile-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nsk-mobile-nav li {
    border-bottom: 1px solid #edf0f4;
}

.nsk-mobile-nav li a {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nsk-navy);
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.nsk-mobile-nav li a:hover {
    color: var(--nsk-red);
}


/* ================= MOBILE CONTACT ================= */

.nsk-mobile-contact {
    border: 0 !important;
    margin-top: 22px;
}

.nsk-mobile-contact a {
    min-height: 52px !important;
    padding: 0 20px;
    border-radius: 50px;
    background: var(--nsk-yellow);
    justify-content: center !important;
    gap: 12px;
}


/* ================= MOBILE INFO ================= */

.nsk-mobile-contact-info {
    margin: 5px 25px 30px;
    padding-top: 22px;
    border-top: 1px solid var(--nsk-border);
}

.nsk-mobile-contact-info>a {
    min-height: auto !important;
    display: flex !important;
    justify-content: flex-start !important;
    gap: 10px;
    margin-bottom: 12px;
    color: #687385 !important;
    font-size: 12px !important;
}

.nsk-mobile-contact-info i {
    color: var(--nsk-red);
}


/* ================= MOBILE SOCIAL ================= */

.nsk-mobile-social {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.nsk-mobile-social a {
    width: 34px !important;
    height: 34px !important;
    min-height: 34px !important;
    border: 1px solid #e1e5eb;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center !important;
    color: var(--nsk-navy) !important;
}


/* ================= BODY LOCK ================= */

body.nsk-menu-open {
    overflow: hidden;
}


/* =========================================================
   TABLET + MOBILE
========================================================= */

@media (max-width:1199px) {

    .nsk-topbar {
        display: none;
    }

    .nsk-header-inner {
        min-height: 82px;
    }

    .nsk-desktop-nav {
        display: none;
    }

    .nsk-contact-btn {
        display: none;
    }

    .nsk-mobile-toggle {
        display: flex;
    }

    .nsk-logo {
        width: 220px;
    }

}


/* ================= TABLET ================= */

@media (min-width:768px) and (max-width:1199px) {

    .nsk-header-inner {
        min-height: 90px;
    }

    .nsk-logo {
        width: 230px;
    }

}


/* ================= MOBILE ================= */

@media (max-width:767px) {

    .nsk-header-inner {
        min-height: 72px;
    }

    .nsk-logo {
        width: 180px;
    }

    .nsk-mobile-toggle {
        width: 43px;
        height: 43px;
    }

}


/* ================= SMALL MOBILE ================= */

@media (max-width:400px) {

    .nsk-logo {
        width: 160px;
    }

    .nsk-mobile-menu {
        max-width: 92%;
    }

    .nsk-mobile-menu-header {
        padding: 18px 20px;
    }

    .nsk-mobile-nav {
        padding: 15px 20px;
    }

}

.widget-logo a img {
    width: 300px !important;
    background-color: #fff !important;
    padding: 10px !important;
    border-radius: 10px !important;
}


/* =========================================================
   NSK FOOTER CONTACT
========================================================= */

.nsk-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 22px;
}


/* CONTACT ITEM */

.nsk-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}


/* ICON */

.nsk-contact-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 50%;

    color: #f7dc70;

    background: rgba(255, 255, 255, 0.04);

    font-size: 14px;

    transition: all .3s ease;
}


/* ICON HOVER */

.nsk-contact-item:hover .nsk-contact-icon {
    color: #071d3b;

    background: #f7dc70;

    border-color: #f7dc70;

    transform: translateY(-2px);
}


/* CONTACT CONTENT */

.nsk-contact-info {
    padding-top: 1px;
}


/* LABEL */

.nsk-contact-info span {
    display: block;

    margin-bottom: 4px;

    color: rgb(255, 255, 255);

    font-size: 16px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* DETAILS */

.nsk-contact-info p {
    margin: 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 14px;

    line-height: 1.7;
}


/* LINKS */

.nsk-contact-info a {
    color: rgba(255, 255, 255, 0.82) !important;

    transition: color .3s ease;
}


.nsk-contact-info a:hover {
    color: #f7dc70 !important;
}


/* MOBILE */

@media (max-width: 575px) {

    .nsk-footer-contact {
        gap: 18px;
    }

    .nsk-contact-icon {
        width: 40px;
        height: 40px;

        flex-basis: 40px;
    }

    .nsk-contact-info p {
        font-size: 13px;
    }

}

.footer-widgets-wrapper {
    padding: 40px 0px 40px !important;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    max-width: 1250px !important;
}

.footer-bottom {
    padding: 12px 0px !important;
    background-color: #071d45 !important;
    border-top: 1px solid #fff !important;
}

.footer-section {
    background-color: #071d45 !important;
}

.padding-doing-left {
    padding-left: 30px !important;
}

@media(max-width:767px) {
    .padding-doing-left {
        padding-left: 0px !important;
    }
}

.footer-widgets-wrapper .footer-widget-items .widget-content p,
.footer-widgets-wrapper .footer-widget-items .widget-content .list-area li a, .nsk-contact-info a {
    color: #fffffff6 !important;
}


.red {
    color: #bb0303;
}