ul.top-head-menu {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 5px 0px;
    gap: 30px;
}

.main-header.navbar-fixed {
}

nav.navigation {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    /* z-index: 9999; */
    z-index: 99;
}

.top-link {
    font-size: 16px;
    padding: 4px 20px;
    transition: all 0.3s ease 0s;
    border: none;
    border-radius: 50px;
    line-height: 170%;
    margin-left: 0px;
    background: var(--second-color);
    color: var(--white-color);
    height: 33px;
    overflow: hidden;
}

.top-link:hover {
}

.main-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header {
    background: rgb(220, 241, 255);
    z-index: 99;
}

ul.menu-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

a.menu-link {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    text-transform: capitalize;
    color: rgb(67, 67, 67);
    padding: 10px 0px;
    position: relative;
}

a.menu-link::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 0px;
    background: var(--main-color);
    transition: all 0.3s ease 0s;
    bottom: 24px;
}

a.menu-link:hover::before {
    width: 50%;
}

.footer-logo-area p {
    padding: 30px 0px;
    font-size: 14px;
}

.subscriber-group {
    border-bottom: 1px solid rgb(66, 159, 221);
    display: inline-flex;
    padding: 10px 0px;
}

input.subscriber-input {
    border: none;
    font-size: 16px;
    background: none;
}

button.subscriber-btn {
    color: var(--black-color) !important;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-nav h3 {
    font-size: 20px;
    color: rgb(0, 0, 0);
}

a.footer-link {
    font-size: 16px;
    color: rgb(18, 18, 18);
    transition: all 0.3s ease 0s;
    padding: 5px 0px;
}

.footer-nav {
    margin-bottom: 20px;
}

.footer-contact-inner p {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    gap: 5px;
    margin-bottom: 10px;
}

.f-icon {
    color: var(--second-color);
}

.footer-area {
    background: linear-gradient(
        255.38deg,
        rgba(244, 117, 33, 0.08) -0.57%,
        rgba(66, 159, 221, 0.05) 107.62%
    );
}

.mega-menu {
    position: absolute;
    background: var(--white-color);
    z-index: 9;
    overflow: hidden;
    filter: drop-shadow(rgba(165, 164, 164, 0.15) 0px 10px 20px);
    border-radius: 0px 0px 30px 30px;
    padding: 40px 0px;
    transition: all 0.3s ease 0s;
    opacity: 0;
    visibility: hidden;
    width: fit-content;
    min-height: fit-content;
}

.mega-menu-inner {
    display: grid;
}

.menu-title h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.menu-title {
    height: 100%;
    font-size: 14px;
    position: relative;
}

a.view-service {
    position: absolute;
    bottom: 0px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: var(--second-color);
    transition: all 0.3s ease 0s;
    font-size: 16px;
}

.menu-title p {
}

.menu-title p {
    line-height: 170%;
    font-size: 12px;
}

a.mega-link {
    color: var(--second-color);
    transition: all 0.3s ease 0s;
    padding: 5px 0px;
    font-size: 14px;
    line-height: 170%;
}

a.mega-link:hover {
    color: var(--main-color);
}

a.active {
    color: var(--main-color);
    /* font-weight: bold; */
}

a.view-service:hover {
    color: var(--main-color);
}

ul.menu-list li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu::before {
    content: "";
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: absolute;
    left: -50px;
    bottom: -30%;
    background: rgb(235, 247, 255);
}

.mega-menu::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgb(239, 255, 247);
    bottom: -30px;
    right: -50px;
    z-index: -1;
}

.mega-item {
    border-right: 1px solid rgb(221, 221, 221);
    height: 100%;
    padding: 0px 25px;
}

.po-width {
    width: 600px;
}

.welcome-content {
    text-align: center;
}

.welcome-content h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.welcome-content p {
    font-size: 16px;
}

a.return-home {
    margin-top: 41px;
    color: var(--main-color);
    transition: all 0.3s ease 0s;
}

a.return-home:hover {
    color: var(--second-color);
}

.contact-submit a {
    width: 100%;
    text-align: center;
}

a.social-link {
    height: 35px;
    width: 35px;
    background: var(--second-color);
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    transition: all 0.3s ease 0s;
    align-items: center;
    border-radius: 5px;
}

ul.footer-social-ul {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 35px;
}

a.social-link:hover {
    background: var(--main-color);
}

.mega-menu.service-mega-menu {
    width: 920px;
    left: -200px;
}

ul.menu-list li {
    position: relative;
}

.mega-menu.po-width.payment-menu {
    left: -170px;
}

.mega-menu.po-width.about-menu {
    left: -200px;
}

.menu-list li.active a.menu-link::before {
    width: 50%;
}

.mega-ul li.active a {
    color: var(--main-color);
}

.mobile-nav {
    display: none;
}

ul.menu-list li a.menu-link {
    padding: 35px 0px;
}

ul.top-head-menu li a::before {
    bottom: 3px;
}

.subscriber-btn span.icon-Subcribe-arrow {
    color: var(--second-color);
}

.goog-te-gadget .goog-te-combo {
    border: none;
    background: transparent;
    color: rgb(255, 255, 255);
}

.goog-te-gadget .goog-te-combo option {
    background-color: rgb(255, 255, 255);
    color: rgb(68, 68, 68);
}

.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}

.top-header {
    background: rgb(255, 255, 255);
}

.navigation.navbar-fixed .top-header {
    background: rgb(255, 255, 255);
}

.navigation.navbar-fixed .main-header {
    background: rgba(220, 241, 255, 0.97);
}

.footer-contact-inner {
    color: var(--black-color);
}
