
:root {
    --primary: #000000;
    --light: #F3F6F8;
    --dark: #0E2E50;
}

.marquee-logos-section {
  position: relative;
  width: 100%;
  height: 180px; /* Adjust as needed */
  overflow: hidden;
  margin: 0 auto;
}

.three-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 100%;
}

.three-bg::before,
.three-bg::after {
  content: "";
  display: block;
  height: 100%;
}

/* Three colored columns */
.three-bg {
  background:
    linear-gradient(to right, #EECDAC 33.33%, #E8F3ED 33.33%, #E8F3ED 66.66%, #fff 66.66%);
}

/* Marquee container overlays the background */
.marquee-track {
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  padding: 0 1rem;
  animation: marquee-left 20s linear infinite;
  z-index: 1;
}


/* Logo card styling */
.logo-card {
  width: 160px;
  padding: 22px 8px 8px 8px;
  text-align: center;
  margin: 0 10px;
  border-radius: 14px;
  background: transparent;
  /* Optionally add transparent backgrounds to fit over colored columns */
}

.logo-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  margin: 4px 0 0;
  color: black;
}

.dark-label {
  color: black !important;
  font-weight: 500;
}

@keyframes marquee-left {
  0% { transform: translateX(0);}
  100% { transform: translateX(-50%);}
}

/* Responsive */
@media (max-width: 900px) {
  .logo-card { width: 110px; padding: 10px 2px 4px 2px; }
  .marquee-logos-section { height: 100px; }
  .marquee-track { animation-duration: 10s;}
}

.cardhome {
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.3s;
}

.cardhome:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 12px 32px rgba(14,46,80,0.18), 0 0 0 1px rgba(22,163,74,0.08);
  z-index: 2;
}

/* Optional: add a subtle glow for the .bg-darker card */
.cardhome.bg-darker:hover {
  box-shadow: 0 16px 40px rgba(22,163,74,0.15), 0 0 0 2px #16A34A;
}


/* Service Item Hover */
.hover-service-item {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px;
    border-radius: 10px;
}

.hover-service-item:hover {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.08), rgba(22, 163, 74, 0.03));
    transform: translateX(5px);
}

/* Badge Animation on Hover */
.hover-service-item .badge {
    transition: all 0.3s ease;
}

.hover-service-item:hover .badge {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
}

/* Service Tooltip Styling - ADJACENT TO RIGHT */
.service-tooltip {
    position: absolute;
    left: 105%;  /* Position to the right, close to the item */
    top: 50%;
    transform: translateY(-50%);  /* Center vertically */
    width: 320px;
    max-width: 400px;
    background: linear-gradient(135deg, #0e2e50 0%, #1a4570 100%);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 
                0 0 0 1px rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    pointer-events: none;
}

.hover-service-item:hover .service-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Tooltip Arrow - LEFT SIDE */
.service-tooltip .tooltip-arrow {
    position: absolute;
    left: -8px;  /* Position on the left side */
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #0e2e50;  /* Point to the left */
}

/* Tooltip Text */
.service-tooltip p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    line-height: 1.6;
}

/* Accent Line */
.service-tooltip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #16A34A, #10b981);
    border-radius: 12px 0 0 12px;
}

/* Responsive - Adjust for smaller screens */
@media (max-width: 1400px) {
    .service-tooltip {
        width: 280px;
        left: auto;
        right: -290px;  /* Fixed position from right edge */
    }
}

@media (max-width: 1200px) {
    .service-tooltip {
        width: 260px;
        font-size: 13px;
        right: -270px;
    }
}

@media (max-width: 992px) {
    .service-tooltip {
        display: none;
    }
    
    .hover-service-item:hover {
        transform: translateX(0);
    }
}

/* Hover Item Base */
.hover-item {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px;
    border-radius: 12px;
    position: relative;
}

.hover-item:hover {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.08), rgba(22, 163, 74, 0.03));
    transform: translateX(8px);
    box-shadow: -4px 0 0 0 #16A34A;
}

/* Icon Box Animation */
.icon-box {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-item:hover .icon-box {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.2);
}

/* Custom Tooltip Styling */
.custom-tooltip {
    position: absolute;
    left: calc(100% + 25px);
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    background: linear-gradient(135deg, #0e2e50 0%, #1a4570 100%);
    color: white;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.hover-item:hover .custom-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
    animation: tooltipSlide 0.4s ease-out;
}

@keyframes tooltipSlide {
    from {
        transform: translateY(-50%) translateX(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

/* Tooltip Arrow */
.tooltip-arrow {
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid #0e2e50;
}

.tooltip-arrow::after {
    content: '';
    position: absolute;
    left: 2px;
    top: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #1a4570;
}

/* Tooltip Text Styling */
.custom-tooltip h6 {
    color: #16A34A;
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.custom-tooltip p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.6;
}

/* Accent Line */
.custom-tooltip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #16A34A, #10b981);
    border-radius: 16px 0 0 16px;
}

/* Responsive */
@media (max-width: 1400px) {
    .custom-tooltip {
        width: 320px;
        font-size: 12px;
    }
}

@media (max-width: 1200px) {
    .custom-tooltip {
        left: auto;
        right: 0;
        width: 280px;
    }
    
    .tooltip-arrow {
        left: auto;
        right: -12px;
        border-right: none;
        border-left: 12px solid #0e2e50;
    }
    
    .tooltip-arrow::after {
        left: auto;
        right: 2px;
        border-right: none;
        border-left: 10px solid #1a4570;
    }
}

@media (max-width: 992px) {
    .custom-tooltip {
        display: none;
    }
}

/* Custom Green Button - Solid */
.btn-custom-green {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: linear-gradient(135deg, #16A34A 0%, #15803d 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.btn-custom-green:hover {
  background: linear-gradient(135deg, #15803d 0%, #14532d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
  color: white;
}

.btn-custom-green:active {
  transform: translateY(0);
}

/* Custom Outline Green Button */
.btn-custom-outline-green {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: white;
  color: #16A34A;
  text-decoration: none;
  border: 2px solid #16A34A;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-custom-outline-green:hover {
  background: #16A34A;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 2px rgba(22, 163, 74, 0.3);
}

.btn-custom-outline-green:active {
  transform: translateY(0);
}

/* Custom list styling */
.custom-list li {
  position: relative;
  padding-left: 10px;
}

.custom-list li::marker {
  color: #16A34A;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .col-lg-6[style*="padding-left"] {
    padding-left: 15px !important;
  }
}



/*blog*/
/* Blog card hover effect */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Category item hover */
.category-item {
  transition: all 0.3s ease;
  background: transparent;
}

.category-item:hover {
  background: #f0fdf4;
  transform: translateX(5px);
}

/* Badge styling */
.badge {
  font-weight: 500;
  font-size: 12px;
}

/* Card title truncation */
.card h5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 50px;
}

/* Excerpt truncation */
.card p.small {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 40px;
}

/* Green button hover */
a.btn[style*="#16A34A"]:hover {
  background-color: #15803d !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(22, 163, 74, 0.3);
}


/* Greenish map theme */
.svgMap-map-wrapper {
  background: #e8f5f1 !important;
  position: relative !important;
}

.svgMap-country {
  fill: #b8e6d5 !important;
  stroke: #ffffff !important;
  stroke-width: 1.5 !important;
}

.svgMap-country:hover {
  fill: #b8e6d5 !important;
  cursor: default !important;
}

/* Hide default tooltips and zoom buttons */
.svgMap-tooltip,
.svgMap-map-controls-wrapper {
  display: none !important;
}

/* Custom Location Pins */
.location-pin {
  cursor: pointer;
  z-index: 100;
  transition: transform 0.3s ease;
}

.location-pin:hover {
  z-index: 1000;
  transform: translate(-50%, -100%) scale(1.2) !important;
}

/* Pin Marker with Image */
.pin-wrapper {
  position: relative;
}

.pin-marker {
  width: 50px;
  height: 65px;
  position: relative;
  filter: drop-shadow(0 5px 10px rgba(255, 69, 13, 0.4));
  transition: filter 0.3s ease;
}

.location-pin:hover .pin-marker {
  filter: drop-shadow(0 8px 20px rgba(255, 69, 13, 0.6));
}

/* Pin shape with image inside */
.pin-marker::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background: #ff450d;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 3px solid white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.pin-marker::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 15px solid #ff450d;
}

.pin-image {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  z-index: 10;
  border: 2px solid white;
}

/* Pulsing animation */
.pin-marker::before {
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0%, 100% {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 69, 13, 0.7);
  }
  50% {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), 0 0 0 15px rgba(255, 69, 13, 0);
  }
}

/* Tooltip - HIDDEN by default */
.pin-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: white;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1000;
  min-width: 200px;
  margin-bottom: 10px;
}

.pin-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top-color: white;
}

/* Show tooltip on hover */
.location-pin:hover .pin-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-20px);
}

.pin-tooltip strong {
  color: #ff450d;
  font-size: 18px;
  display: block;
  margin-bottom: 5px;
}

.pin-tooltip small {
  color: #0E2E50;
  display: block;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .pin-marker {
    width: 40px;
    height: 52px;
  }
  
  .pin-marker::before {
    width: 40px;
    height: 40px;
  }
  
  .pin-image {
    width: 28px;
    height: 28px;
    top: 6px;
    left: 6px;
  }
  
  .pin-tooltip {
    font-size: 12px;
    min-width: 160px;
    padding: 10px 14px;
  }
}

.pin-tooltip {
  padding: 5px 8px;  /* Very tight padding */
  line-height: 1.1;
}

.pin-tooltip strong {
  margin-bottom: 2px;
  font-size: 11px;
}

.pin-tooltip small {
  line-height: 1;
  margin: 1px 0;
  font-size: 12px;
}



#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/




.navbar .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 50px 0;
    color: #000000;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: black;
}

.sticky-top.navbar .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.sticky-top.navbar .navbar-nav .nav-link:hover,
.sticky-top.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar .navbar-brand img {
    transition: .5s;
}

.sticky-top.navbar .navbar-brand img {
    max-height: 60px;
    max-width: 60px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar {
        position: relative;
        background: #FFFFFF;
    }

    .navbar .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar .navbar-nav .nav-link,
    .sticky-top.navbar .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark);
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: var(--primary);
    }

    .navbar .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .2);
        z-index: 999;
    }
    
    .sticky-top.navbar {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        bottom: 10px;
        left: 0;
        background: black;
        opacity: 0;
        transition: .5s;
    }

    .sticky-top.navbar .navbar-nav .nav-link::before {
        background: var(--primary);
    }

    .navbar .navbar-nav .nav-link:hover::before,
    .navbar .navbar-nav .nav-link.active::before {
        bottom: -1px;
        left: 0;
        opacity: 1;
    }

    .navbar .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}





/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 12rem 0 9rem 0;
    background: url(../img/shape-bottom.png) center bottom no-repeat;
}

.page-header {
    margin-bottom: 6rem;
    padding: 12rem 0 6rem 0;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }

    .page-header {
        padding: 6rem 0;
    }
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(256, 256, 256, .5);
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    box-shadow: none;
    border-color: var(--primary);
}

.service-item .service-icon,
.service-item .service-btn {
    margin: -1px 0 0 -1px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 5px 0;
    transition: .5s;
}

.service-item .service-btn {
    margin: -1px -1px 0 0;
    border-radius: 0 5px;
    opacity: 0;
}

.service-item:hover .service-btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transform: scale(.85);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: none;
    border-color: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-item img {
    width: 50px;
    height: 50px;
}

.testimonial-carousel .owl-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 30px;
    text-align: center;
    transition: .5s;
    z-index: 1;
}

.team-item::before,
.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 40%;
    top: 0;
    left: 0;
    border-radius: 5px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: -1;
}

.team-item::after {
    top: auto;
    bottom: 0;
}

.team-item:hover::before,
.team-item:hover::after {
    background: #16A34A !important;
    transition: 0.5s;
}

.team-item h5,
.team-item p {
    /* transition: .5s; */
}

.team-item:hover h5,
.team-item:hover p {
    color: white;
}

.team-item img {
    padding: 15px;
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}