/* ==============================
   Google Fonts Import
============================== */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

/* ==============================
   Font Variables
============================== */

:root {
  --font-open-sans: "Open Sans", sans-serif;
  --font-raleway: "Raleway", sans-serif;
  --font-playfair: "Playfair Display", serif;
}

/* ==============================
   Utility Classes
============================== */

.open-sans {
  font-family: var(--font-open-sans);
}

.raleway {
  font-family: var(--font-raleway);
}

.playfair-display {
  font-family: var(--font-playfair);
}

/* ==============================
   Global Font Rules
============================== */

/* Paragraphs */

p {
  font-family: var(--font-open-sans);
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

/* Navigation Links */

li a {
  font-family: var(--font-raleway);
}

/* All Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-playfair);
}

/* Button Style */

.common-button {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: #fff;
  background-color: #245d8c;
  border: 1px solid #245d8c;
  padding: 14.5px 20px;
  text-decoration: none;
  letter-spacing: 0px;
  transition: 300ms;
  display: inline-block;
}

section {
  padding: 80px 0px;
}

.common-button:hover {
  background-color: #000;
  border-color: #000;
}

.section-title span {
  font-size: 16px;
  line-height: normal;
  color: #245d8c;
  font-family: var(--font-raleway);
  font-weight: 600;
}

.section-title h2 {
    font-weight: 600;
    font-size: 24px;
    color: #000000;
    line-height: normal;
    margin-bottom: 10px;
}

.custom-arrow {
  background-color: #5d8eb7;
  color: white;
  border: none;
  border-radius: 0;
  font-size: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: background-color 0.3s ease;
}

.custom-arrow:hover {
  background-color: #5d8eb7;
  /* Darker on hover */
  color: white;
}

.team-section .slick-prev {
  left: -50px !important;
}


/***** top-bar *****/

.top-bar .location-bar {
  display: flex;
  justify-content: space-between;
}

.top-bar * {
  color: #fff;
}

.top-bar {
  padding: 10px 0px;
  background: linear-gradient(90deg, #4a6f8d 0%, #2f5676 100%);
}

.top-bar label {
  font-weight: 400;
  margin: 0px;
}

.top-bar .top-bar-location span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-section {
  padding: 80px 0px;
}

/***** End top-bar *****/

/***** Header *****/

.site-header {
    padding: 0px 0px;
    box-shadow: rgb(97 97 97 / 20%) 0px 8px 24px;
    background: #fff;
    border-bottom: 1px solid #375e7d1a;
}
.site-header .main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header .brand-logo img {
  width: 100%;
  max-width: 230px;
}
.site-header .right-menu {
  display: flex;
  align-items: center;
}

.site-header .nav-links {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 25px;
}

.site-header .nav-links a:is(:link, :visited) {
  color: #000;
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
  text-decoration: none;
}

.site-header .nav-cta {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-left: 20px;
  margin-left: 20px;
  border-left: 0.14px solid #000;
}

.site-header .nav-cta span {
  font-size: 12px;
  font-weight: 500;
  color: #000 !important;
}

.site-header .nav-cta a {
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-open-sans);
  color: #000;
}

.site-header .menu-toggle {
  height: 40px;
  width: 40px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
}

.site-header .right-cta-bx {
  display: flex;
  align-items: center;
  gap: 27px;
}

/***** End Header *****/








/***** footer *****/

.footer-top .footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 17px;
  list-style: none;
  padding: 0;
  margin-bottom: 55px;
  align-items: center;
}
.footer-menu a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
}
.footer-menu a:not(.dropdown-item) {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.footer-menu .btn-outline {
    border: 1px solid #000;
    padding: 14px 20px;
    text-align: center;
    line-height: initial;
}

.footer-menu .btn-primary {
  background-color: #1e5c8d;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
}

.footer-middle {
  margin-bottom: 35px;
  gap: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.footer-left {
  flex: 1 1 250px;
}

.footer-left p {
  margin: 10px 0;
}

.footer-certificates {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex: 1 1 300px;
}

.footer-certificates img {
  height: 90px;
  object-fit: contain;
}

.social-icons {
  margin-bottom: 10px;
}

.social-icons a {
  color: #000;
  font-size: 18px;
  margin-right: 10px;
  height: 40px;
  width: 40px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-icons {
  display: flex;
  align-items: center;
}

.footer-right .btn-primary {
  background-color: #1e5c8d;
  color: #fff;
  padding: 10px 15px;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.reviews {
  font-size: 14px;
  margin-top: 13px;
}

.stars {
  color: black;
  font-weight: bold;
}

.footer-bottom {
  background-color: #1e5c8d;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom .privacy-policy {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
}

.site-footer {
    background-color: #f5f5f5;
    padding-top: 80px;
}

footer .common-button {
  color: #fff;
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
}

footer .inner-bx {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
footer .inner-bx p {
    color: #fff;
    font-weight: 400;
    margin: 0;
}

/***** End footer *****/

.footer-left a {
  text-decoration: none;
  color: #000;
}
.footer-bottom a {
  text-decoration: none;
  color: #fff;
}

.mobile-top-bar {
  display: none;
}

/*--------------------------------------------------------------
 # Sidebar Css
--------------------------------------------------------------*/

.side-bar {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 350px;
  padding: 50px 50px;
  height: 100%;
  display: block;
  background-color: #fff;
  backdrop-filter: blur(7px);
  z-index: 1900;
  transition: all 600ms ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow: visible;
}
.side_bar_menu ul li {
  list-style: none;
}
.side-bar .inner {
  padding: 40px 20px 0 0;
}
.side_bar_menu ul {
  padding-left: 0;
}
@media (max-width: 991px) {
  .side-bar .inner {
    padding: 40px 0 0 0;
  }
}
.side-bar .inner-main-wrapper-desk .thumbnail {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 25px;
}
.side_bar_menu {
  margin-bottom: 25px;
}
.side_bar_menu ul li a {
  text-align: left;
  display: block;
  padding: 0;
  font-weight: 600;
  font-size: 16px;
  color: #245d8c;
  text-transform: capitalize;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  width: 100%;
  background: transparent;
}
.side_bar_menu ul li a:hover {
  color: #000;
}
.side_bar_menu ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #245d8c52;
}
.side_bar_location h4 {
  font-weight: 600;
  color: #160201;
  font-size: 30px;
  text-transform: capitalize;
  margin: 25px 0;
}
.side_bar_address {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d5b87450;
}
.side_bar_address h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #ffffff;
  font-weight: 500;
}
.side_bar_address p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
}
.side_bar_address a {
  color: #ffffff;
  font-size: 14px;
}
.side-bar .inner-main-wrapper-desk .thumbnail img {
  width: 150px;
  margin-left: 0;
}
.side-bar .inner-main-wrapper-desk .banner-shape-area {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 20px;
  opacity: 1;
  transition-delay: 0.7s;
}
.side-bar .inner-main-wrapper-desk .banner-shape-area .shape {
  height: 10px;
  width: 10px;
  line-height: 10px;
  transform: rotate(45deg);
  margin: 0 6px;
  background: var(--color-primary);
  display: block;
}
.side-bar .inner-main-wrapper-desk .inner-content .footer .social-area {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.side-bar .inner-main-wrapper-desk .inner-content .footer .social-area li {
  list-style: none;
  margin: 0 5px;
  color: #fff;
}
.side-bar .inner-main-wrapper-desk .inner-content .footer .social-area li a {
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
}
.side-bar
  .inner-main-wrapper-desk
  .inner-content
  .footer
  .social-area
  li
  a:hover {
  color: #000000;
  background-color: #d5b874;
  border-color: #d5b874;
}
.side-bar button:hover {
  background-color: #000;
  border-color: #000;
}
.side-bar.show {
  right: 0;
  overflow-y: auto;
}
.side-bar button {
  max-width: 100%;
  height: 40px;
  width: 40px;
  position: absolute;
  left: 0;
  top: 0;
  background: #3f6584;
  padding: 6px;
  border: 1px solid #3f6584;
}
.side-bar button i {
  color: #fff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
#side_bar_overlay.bgshow {
  background: #0e1013;
  opacity: 70%;
  visibility: visible;
  pointer-events: visible;
  z-index: 999;
  top: 0;
}
#side_bar_overlay {
  cursor: "";
  background: #0e1013;
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease-in-out;
  pointer-events: none;
  z-index: 50;
}

.side_bar_cn img {
  margin-bottom: 28px;
}

#menu-home-2025-main-menu li {
  padding: 36px 0;
}

/*************** simple dropdown *****/
.si_drp {
  position: relative;
}

.si_drp .sub-sm-menu {
  position: absolute;
  max-width: max-content;
  padding: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 235px;
  background: #fff;
  margin-top: 15px;
  box-shadow: 0px 0px 0 5px #ffffff4f !important;
  border-radius: 0;
  border-top: 2px solid #245d8c;
  z-index: 77;
  top: -18px;
  display: none;
  transition: all 0.5s;
  margin-top: 3px;
}
.si_drp .sub-sm-menu {
  list-style-type: none;
}
.si_drp:hover ul.sub-sm-menu {
  top: 71px;
  display: block;
  transition: all 0.5s;
}

.si_drp .sub-sm-menu::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  position: absolute;
  z-index: 0;
  top: -14px;
  right: 0;
  border-bottom: none;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #245d8c;
}

.si_drp .sub-sm-menu li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #245d8c8f;
  /* display: inline-block; */
  padding: 0 !important;
  transition: all 0.3s ease-in-out;
}

.si_drp .sub-sm-menu li:hover {
  background-color: #245d8c;
  color: #fff !important;
}

.si_drp .sub-sm-menu li a {
  padding: 14px 12px;
  transition: all 0.5s;
  display: block;
  color: #000 !important;
  text-transform: capitalize;
  font-size: 14px;
}
.si_drp .sub-sm-menu li:hover a {
  color: #fff !important;
}

/****************** services mega-menu dropdown ******************/
.mega_menu p {
  white-space: normal;
}

/* .right-side-bx {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-left: 9px;
}

#btn-bx2 a {
    padding: 10px 15px !important;
    width: max-content;
} */

.mega_menu_item a {
  padding: 0;
  margin: 10px 0px 0px 0px;
  border-bottom: 1px solid #eee;
  padding-bottom: 7px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: start;
}

.inner-menu a {
  background: transparent !important;
  color: #000 !important;
}

.mega_menu_item a:hover {
  color: #245d8c !important;
}

.mega_menu_item a::before {
  height: 1px;
  width: 0%;
  transition: 0.3s;
  position: absolute;
  content: "";
  background-color: #245d8c;
  left: 0;
  bottom: -1px;
}

.mega_menu_item a:hover::before {
  width: 100%;
}

.mega_menu_item a {
  white-space: normal;
  position: relative;
  text-transform: capitalize;
  padding-left: 25px;
}

.mega_menu_item a::after {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  background-color: #245d8c;
  left: -1px;
  top: 5px;
  outline: 2px solid #245d8c;
  outline-offset: 2px;
  border-radius: 10px;
}

.mega_menu_item a:hover {
  padding: 0;
  margin: 10px 0px 0px 0px;
  padding-bottom: 7px;
  padding-left: 25px;
  text-transform: capitalize !important;
}

.mega_menu_item a:focus {
  padding: 0;
  margin: 10px 0px 0px 0px;
  padding-bottom: 7px;
  justify-content: start;
  display: flex;
  align-items: start;
  text-transform: capitalize !important;
  padding-left: 25px;
}

div#nav-menu {
  width: 100%;
  display: flex;
  gap: 25px;
}

.mega_menu_item {
  width: calc(100% - 40%);
  padding: 14px 0px;
  display: flex;
  flex-wrap: wrap;
}

.mega_menu_item + .mega_menu_item {
  width: calc(100% - 66%);
}

.mega_menu_item {
  width: calc(100% - 40%);
  padding: 14px 0px;
  display: flex;
  flex-wrap: wrap;
}

.mega_menu_img {
  background: gray;
  width: 100%;
  height: 330px;
}

.mega_menu_item img {
  height: 100% !important;
  object-fit: cover;
  width: 100%;
}
.inner-menu {
  width: 100%;
}

.inner-menu a i {
  transform: scaleX(-1);
}

.mega_menu_img {
  background: gray;
  width: 100%;
  height: 330px;
}

.mega_menu {
  display: none !important;
}

.mega_menu_dropdown:hover .mega_menu {
  display: flex !important;
  gap: 2rem;
  justify-content: center;
}

.mega_menu_dropdown {
  position: static !important;
}

.mega_menu_dropdown:hover .mega_menu {
  display: flex !important;
  gap: 2rem;
  justify-content: center;
}

.mega_menu_2 .mega_menu {
  width: 100%;
  border-top: 2px solid #245d8c;
  right: 12px;
  top: 106px;
  max-width: 100%;
  padding: 0px 15px 0px 15px;
  align-items: center;
  z-index: 777;
  left: 50%;
  transform: translate(-50%, 7%);
}

.mega_menu {
  left: 0;
  right: 0;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  transition: 0.5s;
  box-shadow: 0px 0 5px 1px rgb(91 86 86 / 40%);
  position: absolute;
  align-items: flex-start;
}
/* 
.mega_menu_2 .mega_menu:before {
  display: block;
  background: none;
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #245d8c;
  position: absolute;
  top: -13px;
  left: 56%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
} */


.site-header .menu-toggle {
       display: none;
    }
.site-header .dropdown-item {
    display: block;
    width: 100%;
    padding: 0 !important;
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: var(--bs-dropdown-item-border-radius,0);
}	
@media (max-width: 1366px) {
  .mega_menu_2 .mega_menu:before {
    left: 39%;
  }
  .site-header .nav-links {
      gap: 15px;
  }
  .site-header .nav-links a:is(:link, :visited) {
      font-size: 15px;
  }
}

@media (max-width: 1280px) {
  .mega_menu_2 .mega_menu:before {
    left: 35%;
  }
}

@media (max-width: 1269px) {
    .site-header .menu-toggle {
       display: none;
    }
  .site-header {
    padding: 15px 0px;
  }
  .mobile-top-bar {
    display: block;
  }

  .mobile-top-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    border-bottom: 1px solid #245d8c;
  }

  .mobile-top-bar a {
    padding: 10px 0px;
    background: #245d8c;
    display: flex;
    font-weight: 500 !important;
    justify-content: center;
    gap: 10px;
    align-items: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-top-bar a + a {
    background: #000;
    color: #fff;
  }
  .top-bar {
    display: none;
  }
  #menu-home-2025-main-menu {
    display: none;
  }
  .site-header .nav-cta {
    display: none;
  }
      .mob-expand-submenu i {
        left: 1px !important;
        top: 0px !important;
    }
    .mobmenur-container {
        position: absolute;
        right: 0px;
        top: 4em !important;
        background: #fcc95a;
        height: 45px;
        width: 45px;
        display: grid;
        place-items: center;
        margin-right: 4% !important;
        font-size: 10px !important;
    }
 #mobmenuright a {
    padding: 7px 10px;
    width: 100%;
    background: transparent !important;
    border-bottom: 0.1px solid #ffffff12 !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    color: #fff !important;
    font-family: var(--font-raleway) !important;
    letter-spacing: 0px !important;
}
    .menu-item-872 {
        position: relative;
    }
.mobmenu-right-panel .mob-cancel-button {
    color: #ffffff !important;
    height: 35px;
    width: 35px;
    background: #1b496f;
    font-size: 25px !important;
    display: grid !important;
    place-content: center;
}
.menu-item-1038 span {
    color: #fff !important;
}
.menu-item-has-children span {
    color: #fff !important;
}
    .mobmenu-right-panel {
        background-color: #1d1d1d !important;
    }
    .mob-icon-menu:before {
        margin: 0 !important;
    }
    .mobmenu r-container i {
        color: #ffffff !important;
    }
    .mobmenu-content li {
        padding: 0 !important;
    }
    ul#mobmenuright {
        margin-top: 35px !important;
    }
    .mob-menu-logo-holder {
        display: none !important;
    }
    .mob-menu-header-holder.mobmenu {
        background: transparent !important;
        display: block !important;
        position: absolute;
    }
    .mobmenu .headertext {
        display: none;
    }
    body.mob-menu-slideout-over {
        padding: 0px !important;
    }
    .mobmenu-content #mobmenuright>li>a:hover {
        background-color: transparent !important;
    }
  .mobmenu-content #mobmenuright .sub-menu {
    background-color: #1b496f !important;
}
.mob-expand-submenu {
    position: relative !important;
    right: 0px !important;
    float: right !important;
    height: 25px;
    width: 25px;
    display: grid;
    place-content: center;
    top: 1px !important;
    background: #1b496f !important;
    border-radius: 50%;
    z-index: 777 !important;
    left: auto !important;
}
.dashicons-arrow-down:before {
display: none !important;
}
    .mobmenu-content #mobmenuright li:hover {
        background-color: #0d789e91 !important;
    }
    .mob-expand-submenu i {
        font-size: 18px !important;
        color: #ffffff !important;
        margin-top: 1px !important;
    }
    .mob-menu-header-holder.mobmenu.mob-menu-header-holder.mobmenu {
        /* z-index: 99999999 !important; */
        position: absolute !important;
        inset: 0 auto auto auto !important;
        height: 0px;
    }
    .mob-menu-header-holder.mobmenu {
        background: transparent !important;
        display: block !important;
    }
.mobmenur-container.mobmenur-container.mobmenur-container.mobmenur-container {
    position: absolute;
    right: 0px;
    top: 60px !important;
    background: #245d8c;
    height: 35px;
    width: 35px;
    display: grid;
    place-items: center;
    margin-right: 2% !important;
    font-size: 10px !important;
}
    .mobmenu-content li {
        border: 0px !important;
    }
    .mobmenu-right-panel {
        width: 280px !important;
    }
    .site-header{
        display: block !important;
    }
    .mobmenu-right-panel {
    background-color: #245d8c !important;
}


.mob-menu-header-holder {
    display: none !important;
}
.slideout-over{
    padding-top: 0px !important;
}



.mobmenu-left-panel .mobmenu-left-bt, .mobmenu-right-panel .mobmenu-right-bt {

    text-decoration: none !important;
}
}

@media (max-width: 1024px) {
  #topTabContent .row .col-md-6 {
    width: 100%;
    max-width: 100%;
  }
  #topTabContent .row {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .footer-middle {
    grid-template-columns: 1fr;
  }
  .footer-left {
    width: 100%;
    text-align: center;
  }
  .footer-right {
    align-items: center;
    margin-top: 17px;
  }
  .footer-top .footer-menu {
    align-items: center;
    flex-direction: column;
    gap: 30px;
    border-bottom: 1px solid #0000003d;
    padding-bottom: 35px;
    margin-bottom: 35px;
  }
	section {
		padding: 40px 0px;
	}
}

@media (max-width: 767px) {
  .footer-middle {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-right {
    align-items: center;
  }
  footer .inner-bx {
    justify-content: center;
    flex-wrap: wrap;
  }
  .side-bar {
    max-width: 300px;
    padding: 50px 22px;
  }
}


.site-header .main-nav {
  position: inherit !important;
}

#menu-wrapper {
  display: flex !important;
  width: 100%;
  justify-content: space-between;
  max-width: 100%;
}

.right-menu {
  position: inherit !important;
}





section#bottom_contact-3, section#call-to-action-black {
    float: none;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  transform: translateY(-150%);
  /* padding: 0.5rem 0.75rem; */
  color: #fff;
  z-index: 9999;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.18s ease, opacity 0.18s ease;
  opacity: 1;
  pointer-events: none;
  padding: 11px 25px;
  text-transform: capitalize;
  font-size: 18px;
  background: #245d8c;
  border-radius: 100px;
  box-shadow: 0px 0px 0 5px #245d8c57;
}

/* When focused (via keyboard) make it visible */
.skip-link:focus,
.skip-link:active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  outline: 3px solid #ffd600; /* very visible focus ring */
  outline-offset: 2px;
}

/* Optional: style for when using mouse (if you want always-visible small button) */
/* .skip-link { transform: translateY(0); opacity: 1; } */



a.dropdown-item {
    padding: 0 !important;
}
li#menu-item-7084 a.dropdown-item {
    color: #fff;
}