.c-menu-outer {
    background-color: #044973 !important;
}

.c-menu>ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.c-menu>ul>li:first-child {
    position: relative;
    margin-left: 1px;
}

.c-menu>ul>li {
    border-right: 1px solid #003454;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.c-menu>ul>li:first-child:before {
    content: "";
    position: absolute;
    top: 0;
    left: -2px;
    width: 1px;
    height: 100%;
    background-color: #003454;
}

.c-menu>ul>li>a {
    font-size: 18px;
    display: block;
    color: #fff;
    padding: 0 10px;
    white-space: nowrap;
    height: 42px;
    line-height: 42px;
    font-weight: 500;
    text-transform: uppercase;
}

.c-menu>ul>li>a .icon-home {
    transform: translateY(-1px);
}

.c-footer-main {
    padding-top: 30px;
    padding-bottom: 30px;
    font-family: var(--font-family2);
    font-size: 14px;
}

.c-footer-row {
    display: grid !important;
    grid-template-columns: 0.875fr 1fr 0.625fr;
    gap: 30px;
}

.b-maincontent {
    line-height: 1.68;
}

.b-maincontent h3 {
    text-transform: uppercase;
    margin-bottom: 16px;
    font-size: 14px;
}

.c-powered {
    padding: 15px 0;
    background: #ececec;
}

.c-powered p {
    text-align: center;
    color: #666;
    font-size: 14px;
    position: relative;
    z-index: 4;
    margin-bottom: 0;
    line-height: 25px;
}

/* ==========================================================================
   Back To Top Button with Progress Ring
   ========================================================================== */
.progress-wrap {
    position: fixed;
    right: 24px;
    bottom: 24px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.06);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 280ms cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: #ffffff;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 200ms ease;
    z-index: 0;
}

.progress-wrap svg.progress-circle {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.progress-wrap svg.progress-circle path.progress-bg {
    fill: none;
    stroke: rgba(0, 0, 0, 0.06);
    stroke-width: 4;
}

.progress-wrap svg.progress-circle path.progress-bar {
    fill: none;
    stroke: #044973;
    stroke-width: 4;
    stroke-linecap: round;
    transition: stroke-dashoffset 10ms linear;
}

.progress-wrap .arrow-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #044973;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 200ms ease, color 200ms ease;
}

@media (max-width: 1200px) {
    .c-menu>ul>li>a {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .c-menu-outer {
        display: none !important;
    }

    .c-footer-col {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .c-footer-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}