* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Lato';
}

html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

a {
    text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 0 !important;
    outline-offset: 0 !important
}

body {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #000;
    background: #f5f5f7;
    position: relative;
}
main{
    flex: 1;
    min-height: 100vh;
}
:root {
    /* color codes */
    --primary-color: #2a2e6d;
    --secondary-color: #8e8e8e;
}

body::-webkit-scrollbar-thumb {
    background-color: #2a3158;
    border-radius: 8px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #2c3e70;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px transparent;
    border-radius: 8px;
    background-color: transparent;
}

body::-webkit-scrollbar {
    width: 3px;
    background-color: transparent;
}

body::-webkit-scrollbar-thumb {
    background-color: #2c3e70;
    border: 1px solid transparent;
    border-radius: 30px;
}

*::-webkit-scrollbar-thumb {
    background-color: #2a3158;
    border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
    background: #2c3e70;
}

*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px transparent;
    border-radius: 8px;
    background-color: transparent;
}

*::-webkit-scrollbar {
    width: 3px;
    background-color: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: #d0bb68;
    border: 1px solid transparent;
    border-radius: 30px;
}
.container {
    position: relative;
    box-sizing: border-box;
    width: calc(100% - 160px);
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.mobile {
    display: none !important;
}

.d-grid {
    display: grid;
}

.two-clm {
    grid-template-columns: repeat(2, 1fr);
}

.three-clm {
    grid-template-columns: repeat(3, 1fr);
}

.gap-30 {
    gap: 30px;
}
.hidden {
  opacity: 0;
  position: relative;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}
.section-title {
    font-size: 36px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: rgb(35, 85, 155);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, transparent, rgb(208, 187, 104), transparent);
}

.section-title-inner::after {
    display: none;
}

.section-padding {
    padding: 40px 0;
}

input,
textarea,
select {
    padding: 10px 12px;
    border: 2px solid #ddd;
    color: #000;
    border-radius: 8px;
    outline: none;
    appearance: none;
    width: 100%;
    font-family: 'Lato' !important;
}
input:focus,
textarea:focus,
select:focus{
    border-color: #23559B;
}
/* header top */
.grayscale-mode {
    filter: grayscale(100%);
    transition: filter 0.5s ease;
    overflow-x: hidden;
}
header {
    background: #F9F9F9;
    position: relative;
}

.mobile-menu-header {
    display: none;
}
.menu-section.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.menu-section.fixed .main-logo svg{
    margin: 0;
}
.menu-section.fixed .main-logo{
    padding-top: 10px;
    padding-bottom: 10px;
}
.sub-dropdown-head .gg-chevron-down {
    display: none;
}

.mob-menu-ico {
    display: none;
}

.header-top {
    background: #FFFFFF;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.07) 20%, rgba(35, 85, 155, 1) 40%);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 40px;
    gap: 20px;
}

.header-top-links,
.header-top-links a {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 15px 0;
    gap: 10px;
    position: relative;
    cursor: pointer;
}

.header-top-links span {
    display: flex;
}

.header-top-links a {
    padding: 0;
}

.stjohnsmenu-dropdown {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px;
    width: max-content;
    min-width: 200px;
    transition: all 0.3s ease;
    z-index: 10;
}
.header-top-links .stjohnsmenu-dropdown {
    padding: 0;
}
.header-top-links:hover .stjohnsmenu-dropdown {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

.stjohnsmenu-dropdown-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #fff;
    color: #000;
    border-bottom: 1px solid #d0bb68;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.stjohnsmenu-dropdown-links:hover {
    background: #eceeff;
}

.font-controls {
    display: flex;
    align-items: center;
}

.font-btn {
    background: none;
    font-size: 20px !important;
    font-weight: 700 !important;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    color: #23559b;
}

.font-indicator {
    font-size: 24px;
    font-weight: 700;
    color: #23559b;
    margin: 0 8px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    height: 20px;
    width: 32px;
    position: absolute;
    cursor: pointer;
    top: 5px;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
    border: 2px solid #23559b;
}
.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 4px;
    background-color: #23559b;
    transition: .4s;
    border-radius: 50%;
    top: 2px;
}
.gg-chevron-down {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs, 1));
    width: 22px;
    height: 22px;
    border: 2px solid transparent;
    border-radius: 100px;
    transition: 0.4s ease-in-out;
}
.gg-chevron-down::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    left: 4px;
    top: 2px;
}

.gg-chevron-right {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs, 1));
    width: 22px;
    height: 22px;
    border: 2px solid transparent;
    border-radius: 100px;
}

.gg-chevron-right::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(-45deg);
    right: 6px;
    top: 4px;
}

.gg-arrow-right {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs, 1));
    width: 22px;
    height: 22px;
}

.gg-arrow-right::after,
.gg-arrow-right::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    right: 3px;
}

.gg-arrow-right::after {
    width: 8px;
    height: 8px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    bottom: 7px;
}

.gg-arrow-right::before {
    width: 16px;
    height: 2px;
    bottom: 10px;
    background: currentColor;
}

.nav-item-flex {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 15px;
    height: 100%;
}

.menu-section,
.nav-bar {
    display: flex;
    align-items: center;
}

.menu-section {
    align-items: stretch;
}

.nav-bar {
    gap: 10px;
    height: 100%;
}

.nav-bar a {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding: 10px 0;
}

.gg-search {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs, 1));
    width: 16px;
    height: 16px;
    border: 2px solid;
    border-radius: 100%;
    margin-left: -4px;
    margin-top: -4px;
    color: #23559b;
    cursor: pointer;
}

.gg-search::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    border-radius: 3px;
    width: 2px;
    height: 8px;
    background: currentColor;
    transform: rotate(-45deg);
    top: 10px;
    left: 12px;
}

.gg-close-o {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs, 1));
    width: 22px;
    height: 22px;
    border: 2px solid;
    border-radius: 40px;
}

.gg-close-o::after,
.gg-close-o::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 12px;
    height: 2px;
    background: currentColor;
    transform: rotate(45deg);
    border-radius: 5px;
    top: 8px;
    left: 3px;
}

.gg-close-o::after {
    transform: rotate(-45deg);
}

.search-icon {
    background-color: #dde5f9;
    width: 40px;
    height: 40px;
    border: 1px solid #23559b;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
}

.search-sec {
    display: none;
    align-items: center;
    /* padding-right: 150px; */
}
.sidebar-btn{
    display: flex;
    align-items: stretch;
}
.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.search-open {
    visibility: visible;
    opacity: 1;
}

.search-popup .form-group {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    width: 50%;
    position: relative;
    margin-top: 100px;
}

.search-popup .form-group input {
    border: 1px solid #23559b;
    border-radius: 8px;
    padding: 10px 35px 10px 10px;
    font-size: 16px;
    flex: 1;
}

.search-popup .form-group button {
    background: none;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 13px;
    z-index: 9;
}

.search-close {
    height: 40px;
    width: 40px;
    background: #23559b;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    right: -25px;
    top: -25px;
    cursor: pointer;
    color: #fff;
    z-index: 99999;
}

.menu-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    position: relative;

}

.main-logo {
    padding-left: 40px;
    min-height: 100px;
}

.main-logo svg {
    display: block;
    width: 300px;
    height: auto;
    margin-top: -25px;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex: 1;
    margin-right: 20px;
}

.dropdown-img {
    position: relative;
}

.dropdown-img span {
    position: absolute;
    padding-left: 8px;
    margin-left: 15px;
    border-left: 3px solid #23559b;
    color: #fff;
    bottom: 20px;
    left: 0;
}

.dropdown-mega-menu {
    position: absolute;
    width: 100%;
    left: 0;
    top: 120%;
    background-color: #e4efff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    z-index: 1000;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.dropdown-mega-menu-show {
    visibility: visible;
    opacity: 1;
    top: 100%;
}
.dropdown-sec {
    display: flex;
    gap: 15px;
}
.dropdown-sec .d-grid{
    align-items: baseline;
    height: max-content;
}
.dropdown-links a,
.sub-menu-dropdown span {
    display: block;
    padding: 5px 10px;
    font-weight: 400;
    font-size: 14px;
    position: relative;
    transition: all .3s ease-in-out;
    cursor: pointer;
    line-height: 24px;
}

.dropdown-links a:hover,
.sub-menu-dropdown span:hover {
    color: #fff;
}

.dropdown-links a:hover:before,
.sub-menu-dropdown span:hover:before {
    width: 100%;
}

.submenu-active::before {
    width: 100% !important;
}

.submenu-active {
    color: #fff !important;
}
.nav-item-first-link{
    font-size: 18px;
}
.dropdown-links a:before,
.sub-menu-dropdown span:before,
.submenu-active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #23559b;
    z-index: -1;
    transition: all .3s ease-in-out;
}

.sub-menu-dropdown {
    position: relative;
}

.sub-menu-dropdown .gg-chevron-right {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
}

.sub-menu-dropdown:hover span.gg-chevron-right {
    color: #fff;
}

.sub-menu-dropdown .gg-chevron-right::before {
    display: none;
}

.sub-menu-dropdown:hover .sub-menu-links {
    visibility: visible;
    opacity: 1;
    left: 100%;
    top: 0;
}

.sub-menu-links {
    position: absolute;
    top: 15px;
    left: 100%;
    background: #e4efff;
    padding: 10px;
    min-width: 200px;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease-in-out;
    border-left: 1px solid #d0bb68;
}

.sub-menu-links a {
    position: relative;
    display: block;
    color: #000;
    text-decoration: none;
    z-index: 1;
}

.sub-menu-links a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #23559b;
    z-index: -1;
    transition: width 0.3s ease-in-out;
}

.sub-menu-links a:hover::before {
    width: 100%;
}

.sub-menu-links a:hover {
    color: #fff;
}

.drop-down-link-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    
}
.sub-dropdown-head{
    display: block;
    font-weight: bold;
}
.drop-down-link-box a {
    color: #000;
}

.mega-nav-drop {
    /* if content is more need to uncomment this code */
    max-width: 70%;
    left: 50%;
    transform: translateX(-50%);
    /* max-width: 100%;
    left: unset;
    right: 0;
    transform: unset; */
}

.mega-nav-drop-show {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

.p-unset {
    position: unset !important;
}

.nav-active {
    background: #e4efff;
}

.nav-links,
.nav-item {
    height: 100%;
}

.nav-active .gg-chevron-down {
    transform: rotate(180deg);
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

.sidebar-btn button {
    border-right: 1px solid transparent;
    background: linear-gradient(to right, #d0bb68 100%, #fff 100%);
    color: #000;
    padding: 8px 40px 8px 10px;
    font-size: 18px;
    margin: auto;
    border-right: none !important;
    border: 1px solid #23559b;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    transition: all .3s ease;
    cursor: pointer;
    width: fit-content;
    /* position: absolute;
    right: 0;
    top: 83px; */
}
.partner-dropdown-item{
    display: flex;
    gap: 10px;
    align-items: center;
}
.partner-dropdown-item img{
    height: 45px;
    display: inline-block;
}
.sidebar-btn button svg {
    width: 25px;
    height: 25px;
    fill: #000;
    margin-left: 6px;
}

.sidebar {
    position: fixed;
    right: -378px;
    top: 0;
    width: 378px;
    overflow-y: scroll;
    height: 100%;
    background: #4d4d4d;
    transition: right .3s ease-in-out;
    z-index: 9999;
    padding: 0;
    box-shadow: rgba(50, 50, 93, .25) 0 30px 60px -12px inset, rgba(0, 0, 0, .3) 0 18px 36px -18px inset;
    height: 100vh;
}

.body-content.shift-left {
    transform: translateX(-378px);
}

.body-content {
    transition: transform .3s ease;
    width: 100%;
     height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.sidebar span.sidebar-head {
    margin: 0 0 0;
    text-transform: uppercase;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    background-color: #d0bb684a;
    color: #d0bb68;
    display: block;
}

.sidebar a {
    display: block;
    font-size: 18px;
    color: #ffffffcc;
    background-color: #4d4d4d;
    padding: 15px 0;
    border-bottom: 1px solid #d0bb683b;
    text-decoration: none;
}

.quick-links {
    padding: 0 30px;
}

.sidebar a:hover {
    color: #d0bb68;
    text-decoration: underline;
    text-underline-offset: 3px;
}

#page-open {
    display: flex;
    position: relative;
    overflow: hidden;
}

.sidebar.active {
    right: 0;
}

.stj-header {
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
}

.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    /* optional */
}

.header-top {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-top.hide {
    transform: translateY(-100%);
    opacity: 0;
}

.primary-btn {
    position: relative;
    background: #d0bb68;
    color: #000000;
    padding: 10px 40px;
    border: 1px solid #23559b;
    border-radius: 40px;
    font-size: 18px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease-in-out;
    display: inline-block;
    font-weight: bold;
    text-align: center;
}

.primary-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #23559b;
    z-index: -1;
    transition: width 0.3s ease-in-out;
    border-radius: 20px;
}

.primary-btn:hover {
    color: #fff;
}

.primary-btn:hover::before {
    width: 100%;
}
.banner-skeleton-loader{
  height: 80vh;
  width: 100%;
  background: #E8F2FF;
  display: flex;
  align-items: center;
  justify-content: center;
 }
footer {
    background-color: #ebf3FFFF;
    width: 100%;
}

.footer-cont {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 50px;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 25px 0;
    align-items: center;
    justify-content: center;
    text-align: start;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    padding: 0 50px;
}

.footer-links a:not(:nth-child(3n))::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    border-right: 2px solid #d4b34a
}

.copy-right {
    background-color: #23559b;
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
}

.copy-right span {
    color: #d4b34a;
    margin: 0 10px;
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.breadcrumb {
    font-size: 14px;
    color: #666;
    padding: 10px 0;
}

.breadcrumb a {
    text-decoration: none;
    color: #86868b;
}

.breadcrumb span {
    margin: 0 5px;
}

.breadcrumb strong {
    text-decoration: none;
    color: #23559b;
}

.inner-title-sec {
    display: flex;
    align-items: center;
    gap: 15px;
}

.inner-title-sec .inner-title-icon {
    width: 87px;
    height: 83px;
    background: #D0BB68;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.innerpage-title-box {
    padding: 40px 0px;
    background: #23559B;
}

.inner-main-title h1 {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}
.st-johns-container{
    min-height: 100vh;
}
.no-data-container {
    flex-grow: 1;
    text-align: center;
    padding: 60px 20px;
    background: #f9f9ff;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
}
.no-data-container p {
    font-size: 16px;
    line-height: 24px;
    color: #000;
    margin-bottom: 8px;
}
.disabled-link {
    pointer-events: none;
    color: gray;
    text-decoration: none;
    opacity: .6;
    cursor: not-allowed;
}
@media (max-width: 1440px) {
    .sidebar-btn button{
        padding: 8px 10px 8px 10px;
    }
    .nav-item-first-link {
    font-size: 18px;
}
.main-logo {
    min-height: 80px;
}
.sidebar-btn button{
    top: 75px;
}
}
@media (max-width:1280px){
    .nav-item-first-link {
        font-size: 16px;
    }
}
@media (max-width: 1199px) {
    .main-logo svg {
        display: block;
        width: 200px;
        height: auto;
    }
    .nav-item-flex {
        padding: 5px;
    }
    .nav-bar {
        gap: 10px;
    }
    .nav-links span {
        font-size: 13px;
    }
    .sidebar-btn button {
        padding: 8px 10px 8px 10px;
        font-size: 14px;
        top: 68px;
    }
    .sidebar-btn button {
        position: unset;
    }
    .header-top {
        padding-right: 0;
    }
    .search-sec {
        padding-right: 15px;
    }
    .main-logo{
        min-height: 60px;
    }
    .dropdown-img-sec{
        width: 140px;
        flex-shrink: 0;
    }
    .dropdown-img img{
        width: 100%;
        display: block;
    }
}

@media (min-width: 1921px) and (max-width: 2560px)  {
    .dropdown-mega-menu{
        width: 800px;
        left: 50%;
        transform: translateX(-50%);
    }
    .about-us-menu{
        width: 500px;
    }
    .nav-item{
        position: relative;
    }
    .mega-nav-drop{
        max-width: 800px;
    }
    .courses-menu{
        width: 700px;
    }
    
}
@media (min-width: 1560px) and (max-width: 1920px)  {
    .dropdown-mega-menu{
        width: 800px;
        left: 50%;
        transform: translateX(-50%);
    }
    .about-us-menu{
        width: 500px;
    }
    .nav-item{
        position: relative;
    }
    .mega-nav-drop{
        max-width: 800px;
    }
    .courses-menu{
        width: 700px;
    }
}
@media (max-width:1280px){
    .country-code {
        width: 45%;
    }
} 
@media (max-width:1199px){
    .country-code {
        width: 45%;
    }
} 
@media (max-width: 991px) {
    .container {
        width: calc(100% - 80px);
    }
    .mobile {
        display: block !important;
    }
    .desktop {
        display: none !important;
    }
    .menu-bar {
        position: fixed;
        height: 100vh;
        width: 70%;
        background: #fff;
        top: 0;
        left: -100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 30px;
        transition: left .3s ease-in-out;
        z-index: 9;
        display: block;
    }
    .gg-menu {
        transform: scale(var(--ggs, 1));
    }
    .gg-menu,
    .gg-menu::after,
    .gg-menu::before {
        box-sizing: border-box;
        position: relative;
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 3px;
        background: currentColor;
    }
    .gg-menu::after,
    .gg-menu::before {
        content: "";
        position: absolute;
        top: -6px;
    }
    .gg-menu::after {
        top: 6px;
    }
    .mob-menu-ico {
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }
    .mob-menu-ico span {
        color: #000;
    }
    .gg-menu-right-alt::after {
        width: 10px;
        right: 0;
        top: 6px;
    }
    .nav-flex {
        justify-content: flex-end;
        padding-right: 40px;
        align-items: center;
    }
    .dropdown-mega-menu {
        position: unset;
        opacity: 1;
        visibility: visible;
        display: grid;
        grid-template-rows: 0fr;
        transition: .3s ease-in-out;
        padding-left: 15px;
        box-shadow: none;
        padding: 0;
        border: none;
    }
    .nav-bar {
        display: block;
        max-height: 80%;
        overflow-y: scroll;
        margin-top: 40px;
    }
    .nav-links,
    .nav-item {
        height: auto;
        justify-content: space-between;
    }
    .dropdown-sec {
        flex-direction: column;
        overflow: hidden;
        gap: 0;
    }
    .dropdown-links .two-clm{
        grid-auto-columns: 1fr;
    }
    
    .nav-links {
        border-bottom: 1px solid #ddd;
    }
    .dropdown-img {
        display: none;
    }
    .dropdown-mega-menu-show {
        grid-template-rows: 1fr;
        border-top: 1px solid #ddd;
    }
    .dropdown-links {
        padding: 0 15px 0 30px;
    }
    .dropdown-links a {
        border-bottom: 1px solid #ddd;
        padding: 10px 0;
        font-size: 14px;

    }
    .sub-menu-dropdown span:first-child{
        padding-left: 0;
        font-size: 14px;
    }
    .sub-menu-links a{
        font-size: 14px;
    }
    
    .dropdown-links a:last-child {
        border-bottom: none;
    }
    .nav-links span {
        font-size: 16px;
        font-weight: 500;
        padding-left: 10px;
    }
    .p-unset {
        position: fixed !important;
    }
    .mega-nav-drop {
        max-width: 100%;
        left: 0;
        transform: translateX(0);
    }
    .drop-down-link-box {
        display: block;
    }
    .sub-dropdown-box {
        display: grid;
        grid-template-rows: 0fr;
        transition: .3s ease-in-out;
        padding-left: 15px;
        grid-template-columns: 1fr;
    }
    .sub-dropdown-box-show {
        grid-template-rows: 1fr;
        border-bottom: 1px solid #ddd;
    }
    .sub-drop-hidden {
        overflow: hidden;
    }
    .sub-dropdown-box  a{
        font-size: 14px !important;
    }
    .sub-dropdown-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    .drop-down-link-box {
        padding: 0 15px;
    }
    .sub-dropdown-head {
        font-weight: normal;
        padding: 10px 0;
        border-bottom: 1px solid #ddd;
    }
    .sub-dropdown-head span.gg-chevron-right {
        transform: translateY(-50%) rotate(90deg) !important;
        color: #000 !important;
    }
    .submenu-active span.gg-chevron-right {
        color: #000 !important;
        transform: translateY(-50%) rotate(-90deg) !important;
    }
    .sub-dropdown-head span:first-child {
        padding: 0;
    }
    /* .sub-menu-links {
        position: unset;
        opacity: 1;
        visibility: visible;
        border: none;
        box-shadow: none;
    }
        .sub-menu-links {
        overflow: hidden;
        padding: 0 0 0 35px;
        border-bottom: 1px solid #ddd;
    } */
    .sub-menu-links a:hover::before {
        width: 0%;
    }
    .sub-menu-links a:hover {
        color: #000;
    }
     .sub-menu-links{
        position: unset;
        opacity: 1;
        visibility: visible;
        display: grid;
        grid-template-rows: 0fr;
        transition: .3s ease-in-out;
        padding-left: 15px;
        box-shadow: none;
        padding: 0;
        border-bottom: 1px solid #ddd;
        border-left: none;
        padding-left: 15px;
    }
    .sub-nav-item-flex{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .sub-menu-dropdown .gg-chevron-right{
        position: unset;
        transform: unset;
        padding: 0 !important;
    }
    .sub-menu-dropdown .gg-chevron-right::after{
        transform: rotate(45deg) !important;
        top: 10px;
    }
    .sub-menu-links.sub-menu-links-active{
        grid-template-rows: 1fr;
    }
    .sub-menu-dropdown:hover span.gg-chevron-right{
        color: #000;
        
    }
    .submenu-active {
        color: #000 !important;
    }
    .submenu-active span.gg-chevron-right {
        color: #000 !important;
    }
    .nav-item-flex {
        padding: 10px;
    }
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        border-bottom: 1px solid #ddd;
    }
    .col.menu-close {
        padding: 5px;
    }
    .mobile-menu-header {
        display: flex;
    }
    .sub-dropdown-head .gg-chevron-down {
        display: block;
    }
    .sub-dropdown-head .gg-chevron-down {
        transform: rotate(0deg) !important;
    }
    .mob-menu-ico {
        display: flex;
    }
    
    .dropdown-sec .d-grid{
        display: block !important;
    }
    .header-top {
        background: #23559b;
    }
    #partnerToggle span:first-child {
        display: none;
    }
    .sidebar-btn button {
        border-radius: 0;
        display: block;
    }
    .header-top-links,
    .header-top-links a {
        padding: 0;
    }
    .sidebar-btn button svg {
        margin-left: 0;
    }
    .section-title {
    font-size: 26px;
    }
    .sidebar{
    width: 50%;
    right: -50%;
  }
  .body-content.shift-left {
    transform: translateX(-50%);
}
.main-logo {
        min-height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .main-logo svg{
        margin-top: 0;
    }
    .ftr-logo svg{
        width: 200px;
        display: block;
        margin: 0 auto 40px auto;
    }
   .footer-links a:last-child::after{
    display: none;
   }
}

@media (max-width: 767px) {
    .container {
        width: calc(100% - 15px);
    }
    .menu-bar {
        width: 100%;
    }
    .nav-flex {
        padding-right: 5px;
    }
    .main-logo {
    padding-left: 15px;
    padding-bottom: 10px;
    padding-top: 10px;
}
.search-popup .form-group {
    width: 100%;
    margin-top: 50px;
}
.search-popup{
    padding: 15px;
    align-items: center;
}
.search-close {
    right: -10px;
    top: -40px;
}
.footer-cont{
    display: block;
}
.footer-links{
    grid-template-columns: repeat(2, auto);
    gap: 10px;
    text-align: center;
}
.footer-links a{
    padding: 0 15px;
}
.footer-links a:nth-child(3n){
    border-right: none;
}
.footer-social{
    justify-content: center;
    margin-top: 20px;
}
.inner-title-sec .inner-title-icon{
    width: 50px !important;
    height: 50px !important;
    border-radius: 10px !important;
}
.inner-title-sec .inner-title-icon svg{
    width: 30px !important;
    height: auto !important;
}
.sidebar{
    width: 85%;
    right: -85%;
  }
  .body-content.shift-left {
    transform: translateX(-85%);
}
.innerpage-title-box {
    padding: 20px 0px !important;
}
.inner-main-title h1 {
    font-size: 20px;
}
}