:root {
    --bg-color: #fafafa;
    --menu-bg: #ffffff;
    --card-bg: rgb(243, 244, 245);
    --text-primary: rgb(0, 30, 80);
    --text-secondary: #666666;
    --text-white: #fff;
    --dark-blue: rgb(0, 30, 80);
    --hover-blue: rgb(0, 64, 197);
    --transition-speed: 0.4s;
    --easing: cubic-bezier(0.76, 0, 0.24, 1);
    --font-family-head: "VWHeadWeb-Bold";
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "VWHeadWeb-Regular";
    height: 200vh;
    background: var(--bg-color);
}


/* =========================================
TOP NAVIGATION HEADER (FIXED)
========================================= */


/* /* header {
  position: absolute;
  left: 5%;
  right: 5%;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 100;
  height: 64px;
}to

header .logo img {
  width: 25px;
}

.topnav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.topnav a {
  font-size: 15px;
  text-decoration: none;
  font-weight: bold;
  color: var(--text-white);
  transition: color 0.2s ease;
}

.topnav a:hover {
  color: var(--hover-blue) !important;
} */


/* =========================================
TOP NAVIGATION HEADER (FIXED)
========================================= */

header {
    position: absolute;
    top: 16px;
    left: 4.5%;
    right: 4.5%;
    /* Added to allow it to span across if needed */
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 100;
    /* Kept below the sidebar */
}

header .logo a svg {
    transition: all 0.2s ease;
}

header .logo a:is(:hover, :focus) svg {
    fill: rgb(76, 199, 244) !important;
}

.topnav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.topnav a {
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    color: var(--text-white);
    transition: color 0.2s ease;
    position: relative;
    font-family: 'VWHeadWeb-Regular';
    line-height: 18px;
}

.topnav a:before {
    opacity: 0;
    content: "";
    position: absolute;
    bottom: -5px;
    inset-inline: 15%;
    background: rgb(0, 176, 240);
    height: 2px;
    transition: 0.3s cubic-bezier(0.14, 1.12, 0.67, 0.99);
}

.topnav a:hover::before {
    opacity: 1;
    inset-inline: 0px;
}

.topnav a:hover {
    color: rgb(0, 176, 240) !important;
}


/* This is the Hamburger specifically for the Top Nav on Mobile */

.top-hamburger {
    display: none;
    /* Hidden on desktop */
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
}

.top-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    margin: 4px 0;
}


/* Responsive Top Nav Logic */

@media screen and (max-width: 1100px) {
    header {
        justify-content: space-between;
    }
    .topnav {
        display: none;
    }
    .topnav.responsive .top-hamburger {
        position: absolute;
        right: 0;
        top: -45px;
    }
    .topnav.responsive a {
        display: block;
        text-align: left;
        width: 100%;
        padding: 8px 0;
    }
}

*/
/* =========================================
SIDEBAR NAVIGATION MENU
========================================= */


/* SIDEBAR TRIGGER HAMBURGER */

.menu-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    /* Moved to right as requested in previous iterations */
    z-index: 990;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    padding: 12px;
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
}


/* OVERLAY */

#menuOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-speed) ease;
    z-index: 999;
}

#menuOverlay.active {
    opacity: 1;
    pointer-events: auto;
}


/* SIDEBAR */

#sideMenu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    /* Important: Keep this 100%, not 200vh! */
    width: 40%;
    background: var(--menu-bg);
    transform: translateX(-100%);
    transition: all var(--transition-speed) var(--easing);
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

#sideMenu.open {
    transform: translateX(0);
}

#sideMenu.level-open {
    width: 70%;
}

@media (max-width: 1024px) {
    #sideMenu,
    #sideMenu.level-open {
        width: 100%;
    }
}


/* CLOSE BUTTON */

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    cursor: pointer;
    z-index: 100;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    border: 1px solid var(--dark-blue);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.menu-close:hover {
    color: rgb(255, 255, 255);
    background: var(--hover-blue);
    border: 1px solid var(--hover-blue);
}


/* PANELS WRAPPER */

.menu-panels-wrapper {
    position: relative;
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

@media (min-width: 1100px) {
    .menu-panels-wrapper #modelsMenu {
        width: min(69.96vw, 1706.66px);
    }
}


/* CONTENT PANELS */

.menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 80px 32px 180px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--menu-bg);
    transition: transform var(--transition-speed) var(--easing);
}

.panel-active {
    transform: translateX(0);
}

.panel-left {
    transform: translateX(-100%);
}

.panel-right {
    transform: translateX(100%);
}


/* LEVEL 1 NAVIGATION BUTTONS */

.menu-primary {
    list-style: none;
}

.nav-button {
    background: none;
    border: none;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    text-align: left;
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.nav-button:hover {
    color: var(--hover-blue);
}

.nav-button .arrow,
.menu-secondary a .arrow {
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    color: var(--text-primary);
}

.nav-button:hover .arrow,
.menu-secondary a:hover .arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--hover-blue);
}

.nav-button .arrow svg,
.menu-secondary a .arrow svg {
    width: 32px;
    height: 32px;
}


/* LEVEL 1 SECONDARY LINKS */

.menu-secondary {
    margin-top: 40px;
    list-style: none;
}

.menu-secondary a {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: bold;
    border: 0px;
    margin: 0px;
    background: none;
    cursor: pointer;
    position: relative;
    display: flex;
    padding: 8px 32px 8px 0px;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    width: 100%;
    text-align: left;
}


/* MENU TITLE H2 */

.menu-title {
    color: rgb(60, 72, 77);
    margin: 14px 0;
    font-family: var(--font-family-head);
    font-weight: bold;
    font-size: 0.88rem;
    line-height: 120%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: VWHeadWeb-Regular;
}


/* LEVEL 2 BACK BUTTON */

.menu-back {
    position: absolute;
    top: 20px;
    left: 20px;
    margin: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-back button {
    background: transparent;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    color: var(--text-primary);
    border: none;
    padding: 0;
    transition: color 0.2s ease;
    text-transform: uppercase;
}

.menu-back button:hover {
    color: var(--hover-blue);
}

.menu-back span {
    color: rgb(0, 14, 38);
    margin: unset;
    font-family: var(--text-primary);
    font-weight: bold;
    font-size: 0.88rem;
    line-height: 120%;
    letter-spacing: 0.5px;
    flex: 1 1 0%;
    min-width: 0px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
}

.back-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--dark-blue);
    color: var(--dark-blue);
    transition: all 0.2s ease;
}

.menu-back button:hover .back-icon {
    color: rgb(255, 255, 255);
    background: var(--hover-blue);
    border: 1px solid var(--hover-blue);
}


/* MODEL CARDS */

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.model-card {
    height: 100%;
    display: flex;
    flex-flow: column-reverse;
    overflow: hidden;
    padding: 0px;
    border-radius: 12px;
    border-bottom: 0px;
    background: var(--card-bg);
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    cursor: pointer;
}

.model-image-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-card img {
    max-width: 233px;
    width: 100%;
    object-fit: contain;
    mix-blend-mode: darken;
    transition: transform 0.4s ease;
}

.model-card:hover img {
    transform: scale(1.1);
}

.model-info {
    padding-bottom: 20px;
    transition: transform 0.2s ease;
    transform: translateY(10px);
}

.model-card-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
    transition: transform 0.2s ease;
    transform: translateY(10px);
}

.model-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.model-links span {
    font-size: 18px;
    font-weight: normal;
    border-bottom: 1px solid var(--text-primary);
}

.model-card:hover .model-card-title {
    transform: translateY(0px);
}

.model-card:hover .model-info {
    transform: translateY(0px);
}

.model-card:hover .model-links {
    opacity: 1;
}

.model-links span:hover {
    color: var(--hover-blue);
    border-color: var(--hover-blue);
}

@media (max-width: 999px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .model-card:hover img {
        transform: scale(1);
    }
    .model-info {
        transition: none;
        transform: translateY(0);
    }
    .model-card .model-links {
        opacity: 1;
    }
}

@media (max-width: 1100px) {
    .model-links {
        justify-content: left;
    }
    .menu-content {
        padding-bottom: 220px;
    }
    .models-grid {
        grid-template-columns: none;
    }
    .model-card {
        flex-flow: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        height: auto;
        background: none;
        border-bottom: solid 1px #ddd;
        border-radius: unset;
        padding-bottom: 15px;
    }
    .model-info {
        padding: 0;
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 16px;
    }
    .model-card img {
        max-width: 134px;
    }
    .model-image-wrapper {
        justify-content: end;
    }
    .model-card-title {
        margin-bottom: 15px;
    }
}


/* SERVICES LIST */

.services-grid {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: none;
    }
}

.service-btn {
    position: relative;
    display: flex;
    padding: 5px;
    gap: 16px;
    align-items: center;
    background: var(--card-bg);
    border-radius: 8px;
    text-decoration: none;
    border: 0px;
    margin: 0px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    color: var(--text-primary);
    min-height: 60px;
}

.service-btn .service-arrow {
    position: absolute;
    right: 12px;
    opacity: 0;
    transform: translateX(-25px);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.service-btn.has-child:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

.service-img-wrapper {
    overflow: hidden;
    width: 80px;
    height: 80px;
    border-radius: 4px;
    flex-shrink: 0;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.service-btn:hover .service-img-wrapper img {
    transform: scale(1.1);
}

.services-text strong {
    font-size: 18px;
    transition: color 0.2s ease;
    display: block;
}

.service-btn:hover .services-text strong {
    color: var(--hover-blue);
}

.service-btn:hover .service-arrow {
    color: var(--hover-blue);
}

.services-text p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
}


/* ACTIVE STATE FOR MENU ITEMS */

.service-btn.active-item {
    background: #ffffff;
    box-shadow: 0 0 0 1px var(--hover-blue), 0 4px 12px rgba(0, 64, 197, 0.15);
}

.service-btn.active-item .services-text strong {
    color: var(--hover-blue);
}

.service-btn.active-item .service-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--hover-blue);
}


/* LEVEL 2 MORE SECTION */

.level2-more {
    margin-top: 50px;
}

.level2-more-title {
    font-weight: bold;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgb(60, 72, 77);
    text-transform: uppercase;
}

.level2-more-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.level2-more-links li {
    display: flex;
    flex-wrap: wrap;
}

.level2-more-links a {
    text-decoration: none;
    color: rgb(0, 30, 80);
    font-size: 18px;
    font-weight: bold;
}

.level2-more-links a:hover {
    color: var(--hover-blue);
}

@media (max-width: 1100px) {
    .level2-more-links {
        grid-template-columns: none;
    }
}


/* STICKY BOTTOM AREAS */

.menu-bottom-area {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 5px;
    background: var(--menu-bg);
    border-top: 1px solid #eee;
    z-index: 9999;
}

.level-1-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.level-1-bottom a {
    font-size: 12px;
    text-decoration: none;
    padding: 0 10px;
    border-right: 1px solid #ddd;
    line-height: 1;
    margin-bottom: 8px;
    font-weight: inherit;
    display: inline-grid;
    position: relative;
    cursor: pointer;
    text-align: inherit;
    color: var(--text-primary);
}

.level-1-bottom a:last-child {
    border-right: none;
    padding-right: 0;
}

.level-2-bottom {
    display: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.level-2-bottom a {
    position: relative;
    display: inline-flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    min-height: 44px;
    min-width: 44px;
    padding: 0px 32px;
    margin: 0px;
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    color: rgb(255, 255, 255);
    background: var(--dark-blue);
    border: solid 1px var(--dark-blue);
    transition: all 0.2s ease;
    width: 33%;
    max-width: 270px;
    font-size: 14px;
}

.level-2-bottom a.outline {
    background: transparent;
    color: var(--text-primary);
    border: solid 1px var(--dark-blue);
}

.level-2-bottom a:hover {
    color: rgb(255, 255, 255) !important;
    background: var(--hover-blue);
    border: solid 1px var(--hover-blue);
}

@media (max-width: 1100px) {
    .level-2-bottom {
        align-items: center;
        flex-direction: column-reverse;
    }
    .level-2-bottom a {
        width: 100%;
        max-width: 90%;
    }
}

.Banner img {
    width: 100%;
}

#desktopMenuMobileBtn {
    display: none;
}

@media (max-width: 1100px) {
    #desktopMenuMobileBtn {
        display: block;
        color: rgb(255, 255, 255);
        transform: scaleX(-1);
    }
    .menu-primary {
        margin: 0;
        padding: 0;
    }
    .menu-secondary {
        padding-left: 0;
    }
    .menu-content {
        padding: 92px 27px 50% 27px;
    }
    .model-card:hover .model-card-title {
        transform: translateY(10px);
    }
}


/* header section Sticky Css */

.ekJeiT {
    --shim: linear-gradient(rgba(0, 0, 0, 0.7) 45%, rgba(0, 0, 0, 0));
    position: absolute;
    z-index: -1;
    inset-block-start: 0px;
    inset-inline-start: 0px;
    width: 100%;
    height: 128px;
    background: var(--shim);
}

header.offline {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 100;
    padding: 20px;
    padding-inline: min(4.16vw, 106.66px);
    transition: transform 0.3s;
}

.header-scrolled {
    background: #FFF;
    transition: transform 0.3s;
    background-color: rgb(255, 255, 255);
    transform: translateY(0px);
    border-bottom: 1px solid rgb(194, 202, 207);
    pointer-events: auto;
}

.header-scrolled .logo a svg {
    fill: rgb(0, 14, 38);
}

.header-scrolled .logo a:hover svg {
    fill: rgb(0, 53, 159) !important;
}

.header-scrolled .topNav a {
    color: rgb(0, 30, 80);
}

.header-scrolled .topNav a:hover {
    color: rgb(0, 64, 197) !important;
}

.header-scrolled .topNav a:hover::before {
    background: rgb(0, 64, 197);
    height: 1.5px;
}

.header-scrolled a#desktopMenuMobileBtn {
    color: rgb(0, 30, 80);
}


/* header section Sticky Css End*/


/* Search Icon css */


/* @media screen and (min-width: 1025px) {
   button.sc-klVQfs.YsaOt {
       position: absolute;
       right: 5%;
   }
}

button.sc-klVQfs.YsaOt {
   outline: none;
   border: none;
   background: transparent;
   color: #FFF;
}

button.sc-klVQfs.YsaOt:hover {
   color: rgb(0, 176, 240);
   outline: 0px;
}

.header-scrolled button.sc-klVQfs.YsaOt {
   color: rgb(0, 30, 80);
}

.header-scrolled button.sc-klVQfs.YsaOt:hover {
   color: rgb(0, 53, 159);
}

@media screen and (max-width: 749px) {
   button.sc-klVQfs.YsaOt {
       position: absolute;
       right: 15%;
   }
}

@media screen and (min-width: 750px) and (max-width: 1024px) {
   button.sc-klVQfs.YsaOt {
       position: absolute;
       right: 10%;
   }
} */


/* Search Icon css */


/* -------------------------------- Footer nd old header css ----------------------------------------------------------------- */

.nav-menu,
header.vw-header {
    position: fixed;
    width: 100%;
    left: 0
}

.close-menu-section .menu-close span,
.menu-nav-container-rh .nav-sec ul li a,
.nav-menu-bottom ul li a {
    font-family: VWTextWeb-Regular;
    color: #fff;
    text-decoration: none
}

@font-face {
    font-family: VWHeadWeb-Bold;
    font-style: normal;
    font-weight: 700;
    src: url("fonts/VWHeadWeb-Bold.eot?") format("eot"), url("fonts/VWHeadWeb-Bold.woff") format("woff"), url("fonts/VWHeadWeb-Bold.ttf") format("truetype"), url('fonts/VWHeadWeb-Bold.svg#str-replace("VWHeadWeb-Bold", " ", "_")') format("svg")
}

@font-face {
    font-family: VWHeadWeb-Regular;
    font-style: normal;
    font-weight: 400;
    src: url("fonts/VWHeadWeb-Regular.eot?") format("eot"), url("fonts/VWHeadWeb-Regular.woff") format("woff"), url("fonts/VWHeadWeb-Regular.ttf") format("truetype"), url('fonts/VWHeadWeb-Regular.svg#str-replace("VWHeadWeb-Regular", " ", "_")') format("svg")
}

@font-face {
    font-family: VWHeadWeb-Light;
    font-style: normal;
    font-weight: 400;
    src: url("fonts/VWHeadWeb-Light.eot?") format("eot"), url("fonts/VWHeadWeb-Light.woff") format("woff"), url("fonts/VWHeadWeb-Light.ttf") format("truetype"), url('fonts/VWHeadWeb-Light.svg#str-replace("VWHeadWeb-Light", " ", "_")') format("svg")
}

@font-face {
    font-family: VWTextWeb-Light;
    font-style: normal;
    font-weight: 400;
    src: url("fonts/VWTextWeb-Light.eot?") format("eot"), url("fonts/VWTextWeb-Light.woff") format("woff"), url("fonts/VWTextWeb-Light.ttf") format("truetype"), url('fonts/VWTextWeb-Light.svg#str-replace("VWTextWeb-Light", " ", "_")') format("svg")
}

@font-face {
    font-family: VWTextWeb-Bold;
    font-style: normal;
    font-weight: 700;
    src: url("fonts/VWTextWeb-Bold.eot?") format("eot"), url("fonts/VWTextWeb-Bold.woff") format("woff"), url("fonts/VWTextWeb-Bold.ttf") format("truetype"), url('fonts/VWTextWeb-Bold.svg#str-replace("VWTextWeb-Bold", " ", "_")') format("svg")
}

@font-face {
    font-family: VWTextWeb-Regular;
    font-style: normal;
    font-weight: 400;
    src: url("fonts/VWTextWeb-Regular.eot?") format("eot"), url("fonts/VWTextWeb-Regular.woff") format("woff"), url("fonts/VWTextWeb-Regular.ttf") format("truetype"), url('fonts/VWTextWeb-Regular.svg#str-replace("VWTextWeb-Regular", " ", "_")') format("svg")
}

@font-face {
    font-family: icomoon;
    src: url("fonts/icomoon.eot?nfkvzm");
    src: url("fonts/icomoon.eot?nfkvzm#iefix") format("embedded-opentype"), url("fonts/icomoon.ttf?nfkvzm") format("truetype"), url("fonts/icomoon.woff?nfkvzm") format("woff"), url("fonts/icomoon.svg?nfkvzm#icomoon") format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: block
}

* {
    box-sizing: border-box
}

.banner,
header.vw-header .logo-section .vw-header-logo img {
    width: 100%
}

.banner img {
    width: 100%;
    display: block
}

header ul {
    margin: 0;
    padding: 0
}

header.vw-header {
    height: 100px;
    transition: .3s ease-in;
    color: #fff;
    background: #000;
    background: linear-gradient(180deg, #000 0, rgba(255, 255, 255, 0) 100%);
    transform: translateY(0);
    top: 0;
    font-family: VWTextWeb-Light;
    z-index: 10
}

header.vw-header .m-button {
    position: absolute;
    left: 63px;
    top: 18px;
    font-size: 12px;
    cursor: pointer;
    z-index: 1
}

header.vw-header .m-button span {
    display: inline-block;
    vertical-align: middle
}

header.vw-header .m-button .m-txt {
    padding-left: 16px;
    font-size: 14px;
    color: #fff;
    font-weight: 700
}

header.vw-header .m-button .hmb-icon {
    width: 18px;
    height: 2px;
    position: relative;
    background: #fff
}

header.vw-header .m-button .hmb-icon::after {
    width: 22px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -8px;
    content: ""
}

header.vw-header .m-button .hmb-icon::before {
    width: 24px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    top: -8px;
    content: ""
}

.menu-nav-container ul.nave li a:hover,
header.vw-header .m-button:hover .m-txt {
    color: #4cc7f4
}

header.vw-header .m-button:hover .hmb-icon,
header.vw-header .m-button:hover .hmb-icon::after,
header.vw-header .m-button:hover .hmb-icon::before {
    background: #4cc7f4
}

header.vw-header .logo-section {
    width: 100%;
    position: relative;
    margin-top: 29px;
    transition: top .3s ease-in;
    top: 0
}

header.vw-header .logo-section.hide {
    top: -100px
}

header.vw-header .logo-section:before {
    width: calc(67% - 4px);
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    content: ""
}

header.vw-header .logo-section:after {
    width: calc(34% - 82px);
    height: 2px;
    background: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    content: ""
}

header.vw-header .logo-section .vw-header-logo {
    width: 48px;
    height: 48px;
    margin-left: 67.5%;
    display: block
}

.nav-menu {
    top: 0;
    background: linear-gradient(90deg, #00437a 0, #002053 100%);
    z-index: 1;
    height: 100vh;
    display: none
}

.nav-menu-top {
    width: 100%;
    height: calc(100% - 100px);
    overflow-x: auto
}

.nav-menu-bottom {
    width: 100%;
    height: 100px;
    padding-left: 100px
}

.nav-menu-bottom ul {
    list-style: none;
    padding: 40px 0 0
}

.nav-menu-bottom ul li {
    display: inline-block;
    margin: 0 3px;
    font-size: 14px;
    color: #fff
}

.nav-menu-bottom ul li a {
    font-size: 15px;
    cursor: pointer;
    line-height: 16px
}

.menu-nav-container-rh .nav-sec ul li a:hover,
.nav-menu-bottom ul li a:hover,
.sec-nav .sub-nav-menu-container .sub-nav-menu-rh .nav-sec ul li a:hover {
    background: rgba(194, 202, 207, .2)
}

.close-menu-section {
    width: 100%;
    padding: 20px 40px 100px
}

.close-menu-section .menu-close {
    display: inline-block;
    cursor: pointer;
    transition: .25s ease-in-out
}

.close-menu-section .menu-close span {
    font-size: 13px;
    line-height: 14px;
    display: inline-block;
    padding-right: 5px;
    vertical-align: middle
}

.close-menu-section .menu-close span img {
    width: 24px
}

.menu-nav-section {
    width: 100%;
    height: calc(100% - 150px)
}

.menu-nav-container,
.sec-nav .sub-nav-menu-container .sub-nav-menu-lh {
    width: 70%;
    float: left
}

.menu-nav-container {
    padding: 0 100px;
    position: relative;
    z-index: 1;
    transition: .25s ease-in-out
}

.menu-nav-container ul.nave {
    list-style: none;
    padding-left: 0;
    width: 300px
}

.menu-nav-container ul.nave li,
.menu-nav-container ul.nave li.active a::after,
.sec-nav .sec-nav-links>li.sub-nav2.active ul,
.sub-nav-open .btm-nav-open {
    display: block
}

.menu-nav-container ul.nave li a {
    text-decoration: none;
    color: #fff;
    display: block;
    font-size: 24px;
    line-height: 30px;
    padding: 10px 20px 10px 0;
    cursor: pointer;
    font-weight: 200;
    position: relative
}

.menu-nav-container ul.nave li a::after {
    width: 100%;
    height: 1px;
    background: #4cc7f4;
    position: absolute;
    left: 0;
    bottom: 2px;
    content: "";
    display: none
}

.menu-nav-container ul.nave li a span {
    position: absolute;
    right: 0;
    top: 10px
}

.menu-nav-container ul.nave li a span img {
    width: 15px
}

.menu-nav-container-rh {
    width: 30%;
    float: right;
    border-left: 1px solid #96a3a8;
    min-height: 100%
}

.menu-nav-container-rh .nav-sec,
.sec-nav .sub-nav-menu-container .sub-nav-menu-rh .nav-sec {
    padding: 0 45px
}

.menu-nav-container-rh .nav-sec ul,
.sec-nav .sub-nav-menu-container .sub-nav-menu-rh .nav-sec ul {
    list-style: none;
    padding-left: 0;
    width: 100%
}

.menu-nav-container-rh .nav-sec ul li,
.sec-nav .sub-nav-menu-container .sub-nav-menu-rh .nav-sec ul li {
    display: block;
    margin-top: 12px
}

.menu-nav-container-rh .nav-sec ul li a {
    display: inline-block;
    position: relative;
    font-size: 15px;
    line-height: 20px;
    cursor: pointer;
    font-weight: 500
}

.menu-nav-container-rh .nws-cta,
.sec-nav .sub-nav-menu-container .sub-nav-menu-rh .nws-cta {
    max-width: 400px;
    padding: 0 45px;
    margin-top: 50px
}

.menu-nav-container-rh .nws-cta a {
    width: 100%;
    display: block;
    color: #fff;
    text-decoration: none
}

.menu-nav-container-rh .nws-cta a h2,
.sec-nav .sub-nav-menu-container .sub-nav-menu-rh .nws-cta a h2 {
    font-size: 20px;
    font-family: VWHeadWeb-Bold;
    margin-top: 20px
}

.menu-nav-container-rh .nws-cta a .nws-cta-img,
.sec-nav .sub-nav-menu-container .sub-nav-menu-rh .nws-cta a .nws-cta-img {
    width: 100%;
    overflow: hidden
}

.menu-nav-container-rh .nws-cta a .nws-cta-img img,
.sec-nav .sub-nav-menu-container .sub-nav-menu-rh .nws-cta a .nws-cta-img img {
    width: 100%;
    transition: .25s ease-in-out
}

.menu-nav-container-rh .nws-cta a:hover .nws-cta-img img,
.sec-nav .sub-nav-menu-container .sub-nav-menu-rh .nws-cta a:hover .nws-cta-img img {
    transform: scale(1.05)
}

.nav-menu-sub {
    width: calc(100% - 60px);
    position: fixed;
    right: -100%;
    top: 0;
    background: #fff;
    height: 100vh;
    z-index: 1;
    transition: .25s ease-in-out
}

.sub-nav-open .nav-menu-sub {
    right: 0
}

.sub-nav-open .menu-close span.close-txt,
.sub-nav-open .nav-menu-bottom {
    display: none
}

.sub-nav-open .close-menu-section .menu-close {
    margin-left: -20px
}

.menu-back-btn {
    padding: 20px 8vw
}

.menu-back-btn a {
    display: inline-block;
    cursor: pointer
}

.menu-back-btn a span {
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
    line-height: 14px;
    color: #000
}

.menu-back-btn a span img {
    width: 25px
}

.sec-nav {
    height: calc(100% - 100px);
    width: 100%;
    overflow: auto
}

.sec-nav .tab-content {
    padding-left: 8vw;
    padding-right: 8vw
}

.sec-nav .tab-content h2 {
    font-size: 30px;
    font-family: VWTextWeb-Light;
    color: #000
}

.sec-nav .sub-nav-menu-container .sub-nav-menu-rh {
    width: 30%;
    float: left;
    border-left: 1px solid #ccc
}

.sec-nav .sub-nav-menu-container .sub-nav-menu-rh .nav-sec ul li a {
    text-decoration: none;
    color: #000;
    display: inline-block;
    position: relative;
    font-size: 15px;
    line-height: 20px;
    cursor: pointer;
    font-weight: 500;
    font-family: VWTextWeb-Regular
}

.sec-nav .sub-nav-menu-container .sub-nav-menu-rh .nws-cta a {
    width: 100%;
    display: block;
    color: #000;
    text-decoration: none
}

.sec-nav .sec-nav-links {
    list-style: none;
    margin-top: 50px;
    position: relative;
    width: 280px
}

.sec-nav .sec-nav-links>li {
    display: block;
    width: 260px;
    cursor: pointer;
    margin-top: 10px;
    font-family: VWTextWeb-Light;
    transition: .25s ease-in-out
}

.sec-nav .sec-nav-links>li>a {
    display: block;
    position: relative;
    font-size: 20px;
    line-height: 22px;
    color: #000;
    text-decoration: none;
    padding: 10px
}

.sec-nav .sec-nav-links>li ul>li>a:hover,
.sec-nav .sec-nav-links>li>a:hover {
    color: #6a767d
}

.sec-nav .sec-nav-links>li.sub-nav2>a:after {
    width: 9px;
    height: 9px;
    position: absolute;
    right: 10px;
    top: 17px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(-45deg);
    border-radius: 2px;
    content: ""
}

.sec-nav .sec-nav-links>li.sub-nav2.active a:before {
    border-bottom: 1px solid #000;
    content: ""
}

.sec-nav .sec-nav-links>li ul {
    list-style: none;
    margin-top: 0;
    position: absolute;
    left: calc(100% + 20px);
    top: 0;
    display: none
}

.sec-nav .sec-nav-links>li ul>li {
    display: block;
    width: 240px;
    cursor: pointer;
    margin-bottom: 20px;
    font-family: VWTextWeb-Light;
    transition: .25s ease-in-out
}

.sec-nav .sec-nav-links>li ul>li>a {
    display: block;
    position: relative;
    font-size: 20px;
    line-height: 22px;
    color: #000;
    text-decoration: none
}

.btm-nav-open {
    position: absolute;
    width: 280px;
    height: calc(100% - 150px);
    cursor: pointer;
    display: none
}

.btm-nav-open .btm-nav-open-btn {
    position: absolute;
    width: 10px;
    height: 10px;
    cursor: pointer;
    bottom: 20px;
    left: 20px;
    transition: .25s ease-in-out;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(-45deg)
}

.sub-nav-open.sub-nav-open-half .btm-nav-open-btn {
    left: 240px;
    transform: rotate(135deg)
}

.sub-nav-open.sub-nav-open-half .nav-menu-sub {
    right: -220px
}

.sub-nav-open .menu-nav-container {
    padding-left: 60px
}

@media screen and (max-width:960px) {
    header.vw-header .m-button {
        left: 20px
    }
    header.vw-header .logo-section:before {
        width: calc(50% - 30px)
    }
    header.vw-header .logo-section:after {
        width: calc(50% - 34px)
    }
    header.vw-header .logo-section .vw-header-logo {
        margin-left: calc(50% - 24px)
    }
    .nav-menu-bottom {
        padding-left: 40px;
        padding-right: 40px
    }
    .close-menu-section {
        padding: 20px 40px
    }
    .menu-nav-container {
        width: 100%;
        padding: 0 40px
    }
    .menu-nav-container-rh {
        width: 100%;
        min-height: initial;
        border-left: none;
        padding-left: 40px;
        padding-right: 40px;
        padding-bottom: 50px
    }
    .menu-nav-container-rh .nav-sec,
    .sec-nav .sub-nav-menu-container .sub-nav-menu-rh .nav-sec {
        padding: 0;
        margin-top: 100px
    }
    .menu-nav-container-rh .nws-cta,
    .sec-nav .sub-nav-menu-container .sub-nav-menu-rh .nws-cta {
        max-width: 100%;
        padding: 0
    }
    .nav-menu-sub {
        width: calc(100% - 40px)
    }
    .sub-nav-open .close-menu-section .menu-close {
        margin-left: -32px
    }
    .sec-nav .sec-nav-links>li,
    .sec-nav .sub-nav-menu-container .sub-nav-menu-lh {
        width: 100%
    }
    .sec-nav .sub-nav-menu-container .sub-nav-menu-rh {
        width: 100%;
        border-left: none;
        padding-bottom: 50px
    }
    .sec-nav .sec-nav-links {
        margin-top: 25px;
        width: 100%
    }
    .sec-nav .sec-nav-links>li>a {
        padding: 10px 0
    }
    .sec-nav .sec-nav-links>li.sub-nav2>a:after {
        transform: rotate(45deg);
        border-right: 2px solid #001e50;
        border-bottom: 2px solid #001e50
    }
    .sec-nav .sec-nav-links>li.sub-nav2.active.sub-nav2>a:after {
        transform: rotate(225deg)
    }
    .sec-nav .sec-nav-links>li ul {
        position: initial;
        top: initial;
        padding: 20px
    }
    .sub-nav-open .btm-nav-open {
        display: none
    }
    .sub-nav-open .menu-nav-container {
        padding-left: 40px
    }
}

.sub-nav-open .menu-nav-container ul.nave li a {
    font-size: 16px;
    line-height: 22px;
    padding: 8px 20px 8px 0
}

.sub-nav-open .menu-nav-container ul.nave {
    list-style: none;
    padding-left: 0;
    width: 190px
}

.scroll-hide {
    overflow: hidden!important
}

#divcol2 {
    z-index: 1000
}

@media screen and (min-width:960px) {
    .sec-nav .sec-nav-links>li.sub-nav2.active {
        border: 1px solid #000
    }
    #backArrow {
        position: relative;
        z-index: 1000
    }
}

.scroll-hide header.vw-header {
    z-index: 10000
}

@media only screen and (max-width:968px) {
    .extIntCenterBotton {
        top: 15%!important;
        height: 50px!important
    }
}

section.footer-main {
    padding-top: 50px!important;
    width: 100%;
    /* height: 100% */
}

@media screen and (min-width:1200px) {
    section.footer-main.container {
        max-width: 1300px!important
    }
}

section.footer-main .footer-container {
    /* border-top: 2px solid #001e50; */
    border-top: 1px solid rgb(208, 209, 213);
    border-bottom: 1px solid #bbbcbe
}

section.footer-main .footer-container .footer_links ul,
section.footer-main .footer-container .footer_social_links ul {
    list-style: none
}

section.footer-main .footer-container .footer_links ul li a,
section.footer-main .footer-container .footer_social_links ul li a {
    font-weight: 400;
    cursor: pointer;
    color: #001e50;
    text-decoration: none;
    line-height: 38px;
    font-size: 15px;
    font-family: VWTextWeb-Regular
}

section.footer-main .footer-container .footer_bottom_links ul a:hover,
section.footer-main .footer-container .footer_links ul li a:hover,
section.footer-main .footer-container .footer_social_links ul a:hover {
    background-color: rgba(194, 202, 207, .2)
}

section.footer-main .footer-container .footer_social_links .social_link {
    font-weight: 700;
    font-size: 16px;
    padding-bottom: 20px;
    font-family: VWTextWeb-Regular
}

section.footer-main .footer-container .footer_social_links h3 {
    font-size: 16px;
    line-height: 19px;
    text-align: right
}

section.footer-main .footer-container .footer_bottom_links ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap
}

section.footer-main .footer-container .footer_bottom_links ul li a {
    flex-wrap: nowrap;
    color: #001e50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 19px;
    font-family: VWTextWeb-Regular
}

section.footer-main .footer-container .footer_bottom_links .copyrightVw p {
    font-size: 13px;
    font-weight: 400;
    border-top: 1px solid #bbbcbe;
    padding-top: 30px;
    margin-top: 50px;
    font-family: VWTextWeb-Regular
}

@media screen and (min-width:768px) {
    section.footer-main .footer-container {
        padding: 80px 150px 30px 80px
    }
    section.footer-main .footer-container .footer_social_links {
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        flex-direction: column
    }
    section.footer-main .footer-container .footer_bottom_links {
        padding-top: 20px
    }
    section.footer-main .footer-container .footer_bottom_links li:nth-child(2),
    section.footer-main .footer-container .footer_bottom_links li:nth-child(3),
    section.footer-main .footer-container .footer_bottom_links li:nth-child(4) {
        padding-left: 12px
    }
    section.footer-main .footer-container .footer_bottom_links .copyrightVw {
        padding-left: 0
    }
    section.footer-main .footer-container .footer_bottom_links .copyrightVw p {
        width: 30%
    }
}

@media screen and (max-width:767px) {
    section.footer-main .footer-container {
        padding: 40px 0
    }
    section.footer-main .footer-container .footer_links ul,
    section.footer-main .footer-container .footer_social_links ul {
        padding: 16px
    }
    section.footer-main .footer-container .footer_bottom_links ul {
        padding-left: 0
    }
    section.footer-main .footer-container .footer_bottom_links .copyrightVw,
    section.footer-main .footer-container .footer_bottom_links ul li a {
        padding-left: 16px
    }
    section.footer-main .footer-container .footer_bottom_links .copyrightVw p {
        width: 80%
    }
}


/* --------------------------------------- END ------------------------------------------ */

@media (min-width: 992px) {
    section.footer-main .footer-container .row .justify-content-lg-start {
        justify-content: flex-start !important;
    }
}

section.footer-main .footer-container .row .d-flex {
    display: flex !important;
}

@media (min-width: 576px) {
    section.footer-main .footer-container .row .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (max-width: 576px) {
    section.footer-main .footer-container .row .col-xs-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

@media (min-width: 992px) {
    section.footer-main .footer-container .row .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }
}

section.footer-main .footer-container .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

section.container.footer-main {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

.d-block.footer_social_links {
    display: block !important;
}

section.footer-main .footer-container ol,
section.footer-main .footer-container ul {
    padding-left: 2rem;
}

@media screen and (min-width: 768px) {
    section.footer-main .footer-container .footer_bottom_links {
        margin-bottom: 5%;
    }
}

@media screen and (max-width: 768px) {
    section.footer-main .footer-container .footer_bottom_links {
        margin-bottom: 10%;
    }
}