inpu :focus,
textarea:focus,
button:focus,
a:focus {
    outline: none;
    box-shadow: none;
}


.menu-wrapper {
    position: relative;
    z-index: 99999;
    overflow: visible;
    margin-top: 24px;

}
.wnd_menu {
    display: flex;
    gap: 20px;
}
.wnd_menu .menu-item {
  padding: 10px 0;
}
.wnd_menu .menu-item .menu-item-a {
    position: relative;
}
.wnd_menu .menu-item .menu-item-a::after {
  content: '';
  display: block;
  position: absolute;
  height: 5px;
  width: 0;
  left: 0;
  top: calc(100% + 5px);
  background-color: #0a50a1;
  transition: 0.3s all;
}
.wnd_menu .menu-item.active_hover .menu-item-a::after {
  width: 100%;
  transition: 0.3s all;
}
.wnd_menu .menu-item .menu-item-a {
    display: flex;
    align-items: center;
    color: #222;
    font-weight: 600;
}
.wnd_menu .menu-item .menu-item-a:hover {
    color: #0B41CD;
}
.wnd_menu .menu-item .menu-item-a  > svg {
    transition: 0.3s all;
    transform: rotate(0);
}

.wnd_menu .menu-item.active_hover .menu-item-a  > svg {
  transform: rotate(180deg);
}
ul.wnd_menu > li {
    position: static;
}


.mega-menu-wrapper {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 9999;
    /* padding: 40px 0; */
    max-height: 80vh;
    overflow-y: auto;
}

.mega-menu-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}
.mega-menu-column {
   flex: 1;
   padding-top: 40px;
   padding-bottom: 40px;
}
.mega-menu-column.column-1 {
    border-right: 1px solid #dfdfdf;
    padding-right: 20px;
}
.mega-menu-column.column-2,
.mega-menu-column.column-3 {
    padding-left: 20px;
    padding-right: 20px;
}
.mega-menu-column.column-4 {
    padding-left: 20px;
} 
.mega-menu-column.column-4.has-content {
    border-left: 1px solid #dfdfdf;
}


.mega-menu-section .mega-menu-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
     gap: 10px;
    margin-bottom: 30px;
}

.mega-menu-section .mega-menu-title:hover {
    color: #0b41cd;
}
.mega-menu-section .mega-menu-list li {
    margin-bottom: 10px;
}
.mega-menu-section .mega-menu-list li  a {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 10px;
   font-size: 13px;
   color: #222;
   line-height: 1.4;
   font-weight: 600;
   padding: 5px 0px ;
}
.mega-menu-section .mega-menu-list > li:hover > a {
  color: #0b41cd;
}



.mega-menu-card {
    margin-bottom: 20px;
}

.mega-menu-card-image {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 45%; 
    overflow: hidden;
    border-radius: 10px;
    transition: 0.3s all;
    cursor: pointer;
}
.mega-menu-card-image:hover {
    opacity: 0.8;
}

.mega-menu-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mega-menu-card-title  {
    margin-top: 5px;
}
.mega-menu-card-title  a {
     display: flex;
     gap: 20px;
     justify-content: space-between;
     align-items: center;
     font-size: 13px;
     font-weight: 600;
     color: #1f1f1f;
     transition: 0.3s all;
}
.mega-menu-card-title  a:hover {
    color: #0B41CD;
}
.mega-menu-section .mega-menu-list li  a svg,
.mega-menu-section .mega-menu-title  svg,
.mega-menu-card-title  a  svg{
    flex-shrink: 0;
}

.mega-menu-close {
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.64px;
    color: #0b41cd;
    padding: 20px 0;
    border-top: 1px solid #dfdfdf;
    cursor: pointer;
}

/* Search Overlay Styles */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    backdrop-filter: blur(5px);
    background: hsla(60, 20%, 95%, .5);
}

.search-overlay.active {
    display: flex;
}
.search-overlay-content {
     width: 100%;
     background-color: white;
     position: relative;
     padding: 32px;
}
.search-overlay-content .search-form-container {
    display: flex;
    align-items: center;
    gap: 20px;
}
.search-overlay-content .search-form {
    position: relative;
    flex: 1;
}
.search-overlay-content .search-form .search-field {
  height: 48px;
  border-radius: 8px;
  border: 1px solid #0b41cd;
  padding: 18px 60px 18px 20px;
  background-color: white;
  width: 100%;
}
.search-overlay-content .search-form  .search-submit {
     top: 50%;
     transform: translateY(-50%);
     /* background-color: red; */
     height: 100%;
     right: 0;
     width: 50px;

}
.search-overlay-content .search-form .search-field::placeholder {
    color: #222;
    opacity: 1; /* Firefox */
}

.search-overlay-content .search-form .search-field::-webkit-input-placeholder {
    color: #222;
}

.search-overlay-content .search-form .search-field:-ms-input-placeholder {
    color: #222;
}
.search-overlay-content .search-submit {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 18 18'%3E%3Cpath stroke='%230B41CD' stroke-linecap='round' d='m12.379 12.879 4.243 4.242'/%3E%3Ccircle cx='7.379' cy='7.879' r='6.5' fill='%23f1f8fe' stroke='%230B41CD'/%3E%3C/svg%3E") !important;
}
.search-overlay-content .search-close-button {
    width: 28px;
    height: 28px;
    background-color: transparent;
    border: 1px solid #0B41CD;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.search-overlay-content .search-close-button:focus {
    outline: none;
}

.search-wrapper {
    display: inline-block;
}
.search-button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}
.search-button:focus {
    outline: none;
}

.search-button:hover {
    opacity: 0.7;
}


/* Mobile Menu Styles */


.mobile-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.mobile-search-button,
.mobile-menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-menu-toggle {
    flex-direction: column;
    gap: 4px;
    width: 24px;
    height: 24px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
     position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}
.mobile-menu-back {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #222;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
     pointer-events: none;
     opacity: 0;
  
}
.mobile-menu-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.mobile-menu-header-right button {
    border: none;
    background-color: transparent;
    padding: 0;
}

.mobile-menu-overlay-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay-backdrop.active {
    opacity: 1;
    visibility: visible;
}

 /* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 335px;
    height: 100%;
    background: #fff;
    z-index: 999999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow: hidden;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}
.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-content {
   position: relative;
    height: calc(100vh - 60px);
    overflow: hidden;
}
.mobile-menu-level-content {
    padding: 40px;
}
.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobile-menu-list .menu-item {
   padding: 20px 0 ;
}
.mobile-menu-list .menu-item  > a {
    color: #222;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 140%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.mobile-menu-list .menu-item  > a > svg {
    flex-shrink: 0;
    transform: rotate(270deg);
}
.mobile-mega-menu-section .mobile-mega-menu-title {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 15px;
    color: #222;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 140%;
    margin-bottom: 40px;
}
.mobile-mega-menu-section .mobile-mega-menu-title svg{
   flex-shrink: 0;
}
.mobile-mega-menu-list  .mobile-mega-menu-item {
    border-bottom: 1px solid #e0e0e0;
}
.mobile-mega-menu-list  .mobile-mega-menu-item a {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 10px;
   font-size: 13px;
   color: #222;
   line-height: 1.4;
   font-weight: 600;
   padding: 15px 0px ;
}
.mobile-mega-menu-list  .mobile-mega-menu-item svg {
    flex-shrink: 0;
}

.mobile-menu-level {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow-y: auto;
    transform: translateX(0);
    transition: transform 0.3s ease;
    background: #fff;
}
.mobile-menu-level[data-level="0"] {
    transform: translateX(0);
}

.mobile-menu-level[data-level="1"] {
    transform: translateX(100%);
}

.mobile-menu-level[data-level="2"] {
    transform: translateX(200%);
}

.mobile-menu-level[data-level="3"] {
    transform: translateX(300%);
}

.mobile-menu-level.active {
    transform: translateX(0) !important;
}

.mobile-menu-level.prev {
    transform: translateX(-100%);
}

.mobile-menu-cards {
    margin-top: 40px;
}
.mobile-menu-card   {
    margin-bottom: 20px;
}
.mobile-menu-card  .mobile-menu-card-image {
    height: 117px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    display: block;
}
.mobile-menu-card  .mobile-menu-card-image img {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.mobile-menu-card-title  {
    margin-top: 5px;
}
.mobile-menu-card-title a {
     /* display: flex;
     gap: 20px;
     justify-content: space-between;
     align-items: center; */
     font-size: 13px;
     font-weight: 600;
     color: #1f1f1f;
}
.mobile-menu-card-title svg {
    flex-shrink: 0;
}
.mobile_contact_sitemap {
    display: flex;
    align-items: center;
    gap: 5px;

    border-top: 1px solid #dfdfdf;
    margin-top: 20px;
    padding-top: 20px;
}
.mobile_contact_sitemap a {
    font-size: 12px;
    color: #767676;
    font-weight: 600;
}
@media (max-width: 991.98px) { 
  .desktop_class {
     display: none;
   }
  .chugai_header {
    padding-top: 0;
    width: 100%;
  }
  .mobile_class {
    display: block;
  }
}
@media (max-width: 767.98px) { 
    .mobile-logo img {
        max-width: 200px;
        height: auto;
    }
}