.post,
.page {
    margin-bottom: 0;
}

.base-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0px 6px 40px 0px rgba(0, 0, 0, 0.06);
}

.base-header .wrap {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 15px 120px;
    align-items: center;
}

.base-header .wrap .logo-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
}

.base-header .wrap .logo-wrap>a {
    display: flex;
    width: auto;
    flex-direction: column;
}

.base-header .wrap .logo-wrap>a img {
    max-width: unset;
    width: auto;
    max-height: 54px;
}

.base-header .wrap .action-button-wrap {
    display: flex;
    gap: 20px;
}

.base-header .wrap .action-button-wrap .callus-wrap {
    display: flex;
    gap: 6px;
    align-items: center;
}

.base-header .wrap .action-button-wrap .callus-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.base-header .wrap .action-button-wrap .callus-details p {
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    /* 100% */
    letter-spacing: 0.84px;
    text-transform: uppercase;
    margin: 0;
}

.base-header .wrap .action-button-wrap .callus-details a {
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 140% */
    letter-spacing: -0.4px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    -webkit-text-decoration-style: solid;
    text-decoration-style: solid;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: capitalize;
}

.base-header .wrap .action-button-wrap .contactus-wrap a {
  padding: 12px 24px;
  border-radius: 200px;
  background: #44637B;
  border: 1px solid #44637B;
  color: #FFF;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0;
  text-transform: capitalize;
  display: block;
  transition: all ease-in-out 200ms;
  text-decoration: none;
}

.base-header .wrap .action-button-wrap .contactus-wrap a:hover {
    text-decoration: none;
    background: #01A38F;
    color: #fff;
    border-color: #01A38F;
}
.base-header .wrap .action-button-wrap .contactus-wrap a .mobile-text {
  display: none;
}
.base-header .wrap nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.base-header .wrap nav>ul {
    display: flex;
}

.base-header .wrap nav>ul .menu-item {
    margin: 0;
    position: relative;
}

.base-header .wrap nav ul .menu-item a {
  color: #000;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0;
  text-transform: capitalize;
  padding: 16px 12px;
  display: block;
  text-decoration: none;
}

.base-header .wrap nav>ul>.menu-item:hover>a {
    color: #0C55A5;
}

.base-header .wrap nav>ul>.menu-item-has-children:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7' fill='none'%3E%3Cpath d='M8.5 1.66895L5 5.66895L1.5 1.66895' stroke='%230382B7' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") !important;

}

.base-header .wrap nav ul .menu-item-has-children>ul>.menu-item>a {
    color: #000;
}

.base-header .wrap nav ul .menu-item-has-children>ul>.menu-item {
    border-bottom: 1px solid var(--Grey-Grey-200, #EAEAEA);
}

.base-header .wrap nav ul .menu-item-has-children>ul>.menu-item:last-of-type {
    border-bottom: unset;
}

.base-header .wrap nav ul .menu-item-has-children>ul>.menu-item>a:hover {

    background: #F2F2F2;
}

.base-header .wrap .menu-item-has-children {
    position: relative;
}

.base-header .wrap .menu>.menu-item-has-children::after {
    content: "";
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7' fill='none'%3E%3Cpath d='M8.5 1.66895L5 5.66895L1.5 1.66895' stroke='%23808080' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
    width: 10px;
    height: 7px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all ease-in-out 200ms;
}

.base-header .wrap .menu>.menu-item-has-children:hover::after {
    rotate: 180deg;
}

.base-header .wrap .menu-item-has-children>ul {
    display: none;
    position: absolute;
    width: 247px;
    background: #fff;
    border: solid 1px #eaeaea;
    border-radius: 2px;
    left: -20px;
}

.base-header .wrap .menu-item-has-children:hover>ul {
    display: block;
}

.base-header .wrap .menu-item-has-children>ul li>ul {
    display: none;
    z-index: 1;
    width: 242px;
    left: unset;
    top: 0;
    right: -242px;
    background: transparent;
    padding-left: 5px;
    border: unset;
}

.base-header .wrap .menu-item-has-children>ul li:hover>ul {
    display: block;
}

.base-header .wrap .menu-item-has-children:hover .dropdown-menu {
    display: block !important;
    margin-top: 0;
    padding: 0;
    overflow: hidden;
}

.base-header .wrap .menu-item-has-children:hover .dropdown-menu li a {
    padding: 8px 24px;
    text-align: left;
    border-bottom: solid 1px #eaeaea;
}

.base-header .wrap .dropdown-item:focus,
.base-header .wrap .dropdown-item:hover {
    background: #f2f2f2;
}

.base-header .wrap .dropdown-menu {
    right: 0;
    left: unset !important;
}

.base-header .wrap .menu-item-has-children:hover .dropdown-menu li:last-of-type a {
    border-bottom: unset;
}

.base-header .wrap .menu-item-has-children .dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: 2px;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='6' viewBox='0 0 9 6' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.77454 1.81641L4.73102 4.85993C4.54425 5.04669 4.24145 5.04669 4.05468 4.85993L1.01117 1.81641C0.824402 1.62965 0.824402 1.32684 1.01117 1.14007C1.19793 0.953309 1.50074 0.953309 1.6875 1.14007L4.39285 3.84542L7.0982 1.14007C7.28496 0.953309 7.58777 0.953309 7.77454 1.14007C7.9613 1.32684 7.9613 1.62965 7.77454 1.81641Z' fill='%23808080' stroke='%23808080' stroke-width='0.4'/%3E%3C/svg%3E");
    width: 9px;
    height: 6px;
    background-size: cover;
    border: unset;
}

.base-header .wrap .menu-item-has-children>ul>li.menu-item-has-children:hover>a {
    background: #f2f2f2;
}

.base-header .wrap .menu-item-has-children>ul>li.menu-item-has-children:hover ul li:hover>a {
    background: #B2D8E8;
}

.toogle-menu-mobile {
    display: none;
    border: none;
    padding: 0;
    background: unset;
    margin-bottom: -1px;
    outline: none !important;
    width: 100%;
    max-width: 46px;
    height: 40px;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
}


/* Responsive Area */
@media screen and (max-width: 1266px) {
  .base-header {
    box-shadow: unset !important;
  }
    .base-header .wrap .menu>.menu-item-has-children:hover::after {
        rotate: unset;
    }

    .base-header .wrap .menu>.menu-item-has-children.show::after {
        rotate: 0deg;
    }

    .base-header .wrap .menu>.menu-item-has-children.show>ul>li.menu-item-has-children {
        background: #f1f1f1;
    }

    .base-header .wrap .menu .menu-item-has-children>a {
        max-width: 66%;
        padding-right: 0 !important;
    }

    .base-header .menu-item-has-children.show>ul {
        display: none !important;
    }

    .base-header .wrap .action-button-wrap .callus-details,
    .base-header .wrap .action-button-wrap .contactus-wrap {
        display: none;
    }

    .base-header .wrap .menu-item-has-children:hover .dropdown-menu li a {
        text-align: center;
    }

    .toogle-menu-mobile {
        display: flex;
    }

    /* .toogle-menu-mobile svg {
        height: 74px;
        width: 74px;
    } */

    .base-header .wrap {
      padding: 8px 16px;
    }

    .base-header .wrap .columns {
        display: none;
    }

    .base-header .wrap nav ul .menu-item a {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: #000;
        text-transform: capitalize;
        padding: 12px 20px;
    }

    .base-header .wrap nav ul .menu-item a:active {
        background: #CDDEF0 !important;
    }

    .base-header .wrap .columns.active-menu {
      display: block;
      position: absolute;
      right: 0;
      top: 83px;
      z-index: 99;
      background: #fff;
      width: 400px;
      height: calc(100vh - 79px);
      overflow: scroll;
    }

    .base-header .wrap .columns.active-menu nav>ul {
        flex-direction: column;
    }

    .base-header .wrap .columns.active-menu nav>ul>.menu-item {
        padding: 0;
    }

    .base-header .wrap .columns.active-menu nav ul .menu-item {
        border-bottom: solid 1px #d9d9d9;
    }

    .base-header .wrap .columns.active-menu nav ul .menu-item-type-custom>a {
        padding: 16px 20px;
    }

    .base-header .wrap .columns.active-menu nav ul .menu-item-type-custom a {
        position: relative;
    }

    .base-header .wrap .columns.active-menu .menu-item-has-children .dropdown-toggle::after {
        position: absolute;
        right: 20px;
        top: 15px;
        width: 19px;
        height: 12px;
        transition: all ease-in-out 200ms;
    }

    .base-header .wrap .menu>.menu-item-has-children ul li.menu-item-has-children::after {
        content: "";
        position: absolute;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7' fill='none'%3E%3Cpath d='M8.5 1.66895L5 5.66895L1.5 1.66895' stroke='%2385695C' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
        width: 10px;
        height: 7px;
        top: 0;
        bottom: 0;
        margin: auto;
        right: 0;
        background-repeat: no-repeat;
        background-size: contain;
        transition: all ease-in-out 200ms;
    }

    .base-header .wrap .columns.active-menu .menu-item-has-children.show .dropdown-toggle::after,
    .base-header .wrap .menu>.menu-item-has-children ul li.menu-item-has-children.show-child::after {
        rotate: 180deg;
    }

    .base-header .menu-item-has-children>ul {
        display: none !important;
    }

    .base-header .wrap .menu-item-has-children:hover .dropdown-menu {
        display: none !important;
    }

    .base-header .wrap .menu-item-has-children.show>ul.sub-menu {
        display: block !important;
        position: relative !important;
        transform: unset !important;
        width: 100% !important;
        border: unset !important;
        padding: 0 !important;
        left: 0 !important;
    }

    .base-header .menu-item-has-children.show>ul li a {
        text-align: left !important;
        padding: 16px 40px !important;
    }

    .base-header .menu-item-has-children>ul li a {
        background: #f1f1f1 !important;
    }

    .base-header .wrap .menu>.menu-item-has-children::after,
    .base-header .wrap .menu>.menu-item-has-children ul li.menu-item-has-children::after {
        width: 14px;
        height: 11px;
        right: 24px;
        margin: unset;
        top: 24px;
        background-image: url("data: image/svg+xml, %3Csvg%20width%3D%2214%22%20height%3D%228%22%20viewBox%3D%220%200%2014%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M13%201L7%207L1%201%22%20stroke%3D%22%23808080%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");

    }

    header .wrap .menu-item-has-children>ul li.show-child>ul {
        display: block !important;
        position: unset;
        width: 100%;
        background: transparent;
        padding-left: 0;
        border: unset;
        border-top: solid 1px #d9d9d9;
    }

    header .wrap .menu-item-has-children>ul li.show-child>ul li a {
        padding: 16px 60px !important;
        background: #EAEAEA !important;
    }

    header .wrap .menu-item-has-children>ul li.show-child>ul li a:active {
        background: #EAF4FB !important;
    }

    .base-header .wrap .columns.active-menu nav ul .menu-item-has-children.show {
        background: #0F2775;
    }

    .base-header .wrap .columns.active-menu nav ul .menu-item-has-children.show>a {
        color: #fff;
    }

    .base-header .wrap .columns.active-menu nav ul .menu-item-has-children.show>a {
        background: transparent;
    }

    .base-header .wrap .columns.active-menu nav ul .menu-item-has-children.show:after {
        background-image: url("data: image/svg+xml, %3Csvg%20width%3D%2214%22%20height%3D%228%22%20viewBox%3D%220%200%2014%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M13%207L7%201L1%207%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E") !important;
    }

    .base-header .wrap .columns.active-menu nav ul .menu-item-has-children.show .sub-menu li a {
        background: #F4F4F4 !important;
    }
}

.base-header .wrap .logo-wrap {
    margin-right: auto;
}

@media screen and (max-width: 1266px) {

    /* .base-header .wrap .logo-wrap>a {
        width: 146px;
    } */
    .base-header .wrap .logo-wrap>a img {
        max-height: 32px;
    }
}

@media screen and (max-width: 767px) {

    .base-header .wrap .logo-wrap>a {
        max-width: 146px;
    }

    .base-header .wrap .columns.active-menu {
        width: 100%;
        height: calc(100vh - 60px);
        overflow: scroll;
        top: 70px;
    }

    /* .toogle-menu-mobile svg {
        height: 54px;
        width: 54px;
    } */
	
	.base-header .wrap .logo-wrap {
    	gap: 6px;
	}
}

.pulse {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #EA6042;
    margin: 0 13px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 #EA6042;
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}

@media screen and (max-width: 767px) {
    .pulse {
        margin: 0;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 #EA6042;
    }

    70% {
        -webkit-box-shadow: 0 0 0 6px rgba(63, 169, 245, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(63, 169, 245, 0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #EA6042;
    }

    70% {
        box-shadow: 0 0 0 6px rgba(63, 169, 245, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(63, 169, 245, 0);
    }
}

@media (max-width: 1266px) {
    .base-header .wrap .action-button-wrap .contactus-wrap {
        display: initial;
        white-space: nowrap;
    }

    .base-header .wrap .action-button-wrap .contactus-wrap a {
      padding: 10px 16px;
      font-size: 14px;
      line-height: 14px;
    }

    .pulse {
        margin: 0;
        width: 26px;
        height: 26px;
    }

    .base-header .wrap .action-button-wrap {
        gap: 6px;
        align-items: center;
    }
}

.scroll-logo {
    position: relative;
    overflow: hidden;
    width: 200px;
    height: 70px;
}

.scroll-logo .scroll-logo-container {
    display: flex;
    width: 100%;
    height: 100%;
    transform: translateX(0%);
    transition: transform 1s ease-in-out;
}

.scroll-logo .scroll-logo-container img {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

@media (max-width: 767px) {
    .scroll-logo {
        width: 116px;
        height: 28px;
    }
}

.base-header .top-bar {
    display: flex;
    flex-flow: column nowrap;
    padding: 12px 20px;
    background: #FDF4EB;
    align-items: center;
}

.base-header .top-bar .top-bar-wrap {
  width: 100%;
  max-width: 1320px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

.base-header .top-bar .top-bar-wrap .top-bar-left {
    display: flex;
    flex-flow: row wrap;
    gap: 20px;
    justify-content: flex-end;
}
.base-header .top-bar .top-bar-wrap .top-bar-left a {
  display: flex;
  align-items: center;
  font-family: Roboto;
  font-weight: 400;
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 0px;
  text-decoration: none;
  color: #000;
}
.base-header .top-bar .top-bar-wrap .top-bar-left .topbar-link {
    display: flex;
    flex-flow: row wrap;
    gap: 8px;
    align-items: center;
    color: #FFF;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 100% */
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    -webkit-text-decoration-style: solid;
    text-decoration-style: solid;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.base-header .top-bar .top-bar-wrap .top-bar-left .topbar-link .icon {
    width: 18px;
    height: 18px;
}

.base-header .top-bar .top-bar-wrap .top-bar-left .topbar-link .icon svg {
    width: 100%;
    height: 100%;
}
.header-trans.mobile-wpml {
  display: none;
}
@media (max-width: 767px) {
    .base-header .top-bar {
        padding: 8px 20px;
    }

    .base-header .top-bar .top-bar-wrap {
        align-items: center;
    }

    .base-header .top-bar .top-bar-wrap .top-bar-left {
        justify-content: center;
        gap: 5px;
    }

    .base-header .top-bar .top-bar-wrap .top-bar-left .topbar-link {
        font-size: 12px;
        line-height: 12px
    }

    .base-header .top-bar .top-bar-wrap .top-bar-left .topbar-link .icon {
        width: 12px;
        height: 12px;
    }
    .base-header .wrap .action-button-wrap .contactus-wrap a .mobile-text {
      display: block;
    }
    .base-header .wrap .action-button-wrap .contactus-wrap a .desktop-text {
      display: none;
    }
    .header-trans.mobile-wpml {
      display: block;
    }
    .header-trans.desktop-wpml {
      display: none;
    } 
  }

@media (min-width: 1267px) {
    .base-header .wrap nav>ul>.menu-item.menu-item-has-children>a {
        padding-right: 30px;
    }

    .base-header .wrap nav>ul>.menu-item.menu-item-has-children:after {
        right: 10px;
    }
}
.wpml-ls-statics-footer.wpml-ls.wpml-ls-legacy-list-horizontal {
  display: none !important;
}

@media (min-width: 1267px) {
    .base-header .wrap nav>ul .menu-item.two-columns .sub-menu {
        width: 880px;
        padding: 40px;
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        top: 109px;
        z-index: 99;
    }

    .base-header .wrap nav>ul .menu-item.two-columns:hover .sub-menu {
        background: #FFFFFF;
        display: flex;
        flex-flow: row wrap;
    }

    .base-header .wrap nav>ul .menu-item.two-columns .sub-menu li {
        width: 100%;
        max-width: 50%;
        border: 0;
    }

    .base-header .wrap nav>ul .menu-item.two-columns .sub-menu li a {
        padding: 12px 16px;
        font-size: 16px;
        line-height: 22px;
        font-weight: 400;
        font-family: 'Roboto', sans-serif;
        color: #000;
    }
}

.wpml-language-switcher {
  position: relative;
  cursor: pointer;
}

.current-language {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border: solid 1px #E4E4E4;
  border-radius: 4px;
  box-shadow: 1px 1px 4px 0px rgb(0 0 0 / 8%);
  min-width: 103px;
}

.current-language span,
.language-dropdown span {
  font-family: Roboto;
  font-weight: 400;
  font-size: 10px;
  line-height: 16px;
}

.current-language img,
.language-dropdown a img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 3px;
}

.current-language svg {
  transition: transform 0.3s ease;
}

.current-language.active svg {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  min-width: 103px;
  display: none;
  z-index: 999;
}

.language-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s;
}

.language-dropdown a:hover {
  background: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .current-language {
    min-width: unset;
    gap: 2px;
    padding: 4px;
  }
  .language-dropdown {
    min-width: 49px;
  }
  .language-dropdown a {

    padding: 4px;
  }
  .wpml-language-switcher {
    margin-right: 2px;
  }
  .base-header .top-bar .top-bar-wrap .top-bar-left a {
    font-size: 14px;
    line-height: 14px;
  }
  .pulse {
    margin: 0 10px;
    width: 15px;
    height: 15px;
  }
}

















.base-header .wrap.enforce-mobile .menu>.menu-item-has-children:hover::after {
    rotate: unset;
}

.base-header .wrap.enforce-mobile .menu>.menu-item-has-children.show::after {
    rotate: 0deg;
}

.base-header .wrap.enforce-mobile .menu>.menu-item-has-children.show>ul>li.menu-item-has-children {
    background: #f1f1f1;
}

.base-header .wrap.enforce-mobile .menu .menu-item-has-children>a {
    max-width: 66%;
    padding-right: 0 !important;
}

.base-header.enforce-mobile .menu-item-has-children.show>ul {
    display: none !important;
}

/* .base-header .wrap.enforce-mobile .action-button-wrap .callus-details,
.base-header .wrap.enforce-mobile .action-button-wrap .contactus-wrap {
    display: none;
} */

.base-header .wrap.enforce-mobile .menu-item-has-children:hover .dropdown-menu li a {
    text-align: center;
}
.base-header .wrap.enforce-mobile .logo-wrap>a img {
  max-height: 54px;
}

.wrap.enforce-mobile .toogle-menu-mobile {
  display: flex;
  height: 46px;
}
.wrap.enforce-mobile .toogle-menu-mobile svg {
  height: 100%;
  width: auto;
}
/* .toogle-menu-mobile svg {
    height: 74px;
    width: 74px;
} */

.base-header .wrap.enforce-mobile {
  padding: 14px 20px;
  position: relative;
  max-width: 100%;
}

.base-header .wrap.enforce-mobile .columns {
    display: none;
}

.base-header .wrap.enforce-mobile nav ul .menu-item a {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
    text-transform: capitalize;
    padding: 12px 20px;
}

.base-header .wrap.enforce-mobile nav ul .menu-item a:active {
    background: #CDDEF0 !important;
}

.base-header .wrap.enforce-mobile .columns.active-menu {
  display: block;
  position: absolute;
  right: 0px;
  top: 82px;
  z-index: 99;
  background: #fff;
  width: 100%;
  height: fit-content;
  max-height: 400px;
  overflow: auto;
}

.base-header .wrap.enforce-mobile .columns.active-menu nav>ul {
    flex-direction: column;
	padding: 0 40px 40px;
}

.base-header .wrap.enforce-mobile .columns.active-menu nav>ul>.menu-item {
    padding: 0;
}

.base-header .wrap.enforce-mobile .columns.active-menu nav ul .menu-item {
    border-bottom: solid 1px #d9d9d9;
}

.base-header .wrap.enforce-mobile .columns.active-menu nav ul .menu-item-type-custom>a {
    padding: 16px 20px;
}

.base-header .wrap.enforce-mobile .columns.active-menu nav ul .menu-item-type-custom a {
    position: relative;
}

.base-header .wrap.enforce-mobile .columns.active-menu .menu-item-has-children .dropdown-toggle::after {
    position: absolute;
    right: 20px;
    top: 15px;
    width: 19px;
    height: 12px;
    transition: all ease-in-out 200ms;
}

.base-header .wrap.enforce-mobile .menu>.menu-item-has-children ul li.menu-item-has-children::after {
    content: "";
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7' fill='none'%3E%3Cpath d='M8.5 1.66895L5 5.66895L1.5 1.66895' stroke='%2385695C' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
    width: 10px;
    height: 7px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all ease-in-out 200ms;
}

.base-header .wrap.enforce-mobile .columns.active-menu .menu-item-has-children.show .dropdown-toggle::after,
.base-header .wrap.enforce-mobile .menu>.menu-item-has-children ul li.menu-item-has-children.show-child::after {
    rotate: 180deg;
}

.base-header .wrap.enforce-mobile .menu-item-has-children>ul {
    display: none !important;
}

.base-header .wrap.enforce-mobile .menu-item-has-children:hover .dropdown-menu {
    display: none !important;
}

.base-header .wrap.enforce-mobile .menu-item-has-children.show>ul.sub-menu {
  display: block !important;
  position: relative !important;
  transform: unset !important;
  width: 100% !important;
  border: unset !important;
  padding: 0 !important;
  left: 0 !important;
  top: unset;
}
.base-header .wrap.enforce-mobile nav>ul .menu-item.two-columns .sub-menu li {
  max-width: 100%;
}
.base-header .wrap.enforce-mobile .menu-item-has-children.show>ul li a {
    text-align: left !important;
    padding: 16px 40px !important;
}

.base-header .wrap.enforce-mobile .menu-item-has-children>ul li a {
    background: #f1f1f1 !important;
}

.base-header .wrap.enforce-mobile .menu>.menu-item-has-children::after,
.base-header .wrap.enforce-mobile .menu>.menu-item-has-children ul li.menu-item-has-children::after {
    width: 14px;
    height: 11px;
    right: 24px;
    margin: unset;
    top: 24px;
    background-image: url("data: image/svg+xml, %3Csvg%20width%3D%2214%22%20height%3D%228%22%20viewBox%3D%220%200%2014%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M13%201L7%207L1%201%22%20stroke%3D%22%23808080%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E") !important;
}

header .wrap.enforce-mobile .menu-item-has-children>ul li.show-child>ul {
    display: block !important;
    position: unset;
    width: 100%;
    background: transparent;
    padding-left: 0;
    border: unset;
    border-top: solid 1px #d9d9d9;
}

header .wrap.enforce-mobile .menu-item-has-children>ul li.show-child>ul li a {
    padding: 16px 60px !important;
    background: #EAEAEA !important;
}

header .wrap.enforce-mobile .menu-item-has-children>ul li.show-child>ul li a:active {
    background: #EAF4FB !important;
}

.base-header .wrap.enforce-mobile .columns.active-menu nav ul .menu-item-has-children.show {
    background: #0F2775;
}

.base-header .wrap.enforce-mobile .columns.active-menu nav ul .menu-item-has-children.show>a {
    color: #fff;
}

.base-header .wrap.enforce-mobile .columns.active-menu nav ul .menu-item-has-children.show>a {
    background: transparent;
}

.base-header .wrap.enforce-mobile .columns.active-menu nav ul .menu-item-has-children.show:after {
    background-image: url("data: image/svg+xml, %3Csvg%20width%3D%2214%22%20height%3D%228%22%20viewBox%3D%220%200%2014%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M13%207L7%201L1%207%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E") !important;
}

.base-header .wrap.enforce-mobile .columns.active-menu nav ul .menu-item-has-children.show .sub-menu li a {
    background: #F4F4F4 !important;
}
.base-header .wrap.enforce-mobile  .action-button-wrap .contactus-wrap {
    display: initial;
    white-space: nowrap;
}

/* .base-header .wrap.enforce-mobile  .action-button-wrap .contactus-wrap a {
    padding: 8.377px 15.464px;
    font-size: 10.926px;
    line-height: 15.296px;
} */

.base-header .wrap.enforce-mobile  .action-button-wrap {
  gap: 24px;
  align-items: center;
  width:100%;
  justify-content: flex-end;
} 

/* .base-header .wrap.enforce-mobile  .pulse {
  margin: 0;
  width: 26px;
  height: 26px;
} */

.otgs-development-site-front-end {
  display: none;
}

.header-container.base-header > .wrap {
  transition: height 0.2s ease, padding 0.2s ease;
}