/********** Template CSS **********/
:root {
    --primary: #0E2E50;   /* Updated to Blue */
    --secondary: #FF6922;
    --light: #EFFDF5;
    --dark: #0E2E50;
    --mustard-yellow: #eeba2c;
    
    /* Override Bootstrap variables */
    --bs-primary: #0E2E50;
    --bs-secondary: #FF6922;
    --bs-light: #EFFDF5;
    --bs-dark: #0E2E50;
}



/* Push modal content down to avoid navbar overlap */
.modal-dialog {
  margin-top: 80px; /* Adjust this value to match your navbar height */
}



/* Ensure modal is on top of navbar */
.modal {
  z-index: 1055;
}
body {
    color: #000000;
    background-color: #ffffff;
}

.container {
    background-color: transparent;
    color: #333333;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.container h1,
.container h2,
.container h3,
.container h4,
.container h5,
.container h6 {
    color: #000000;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.container p,
.container span,
.container li {
    color: #555555;
    line-height: 1.7;
}

.section-title {
    position: relative;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #eeba2c;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#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;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-primary {
    color: #ffffff;
    background-color: var(--mustard-yellow);
    border-color: var(--mustard-yellow);
}

.btn-primary:hover {
    color: #ffffff;
    background-color: #ffd700;
    border-color: #ffd700;
}

/* Ensure proper contrast for text-primary elements */
.text-primary {
    color: var(--mustard-yellow) !important;
}

.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;
}


/*** Header ***/
.header {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

/*** Navbar ***/
.nav-bar {
    position: relative;
    margin-top: 45px;
    padding: 0 3rem;
    transition: .5s;
    z-index: 9999;
    margin-bottom: 2rem;
}

.navbar {
    padding: 0;
    background: #0e2e50 !important;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-light {
    background: #0e2e50 !important;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 1.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
    color: #eeba2c !important;
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-light .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3) !important;
    margin: 1rem;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-light .navbar-brand {
    color: #ffffff !important;
    font-weight: 700;
    padding: 1rem 1.5rem;
}

.navbar-light .navbar-brand .text-primary {
    color: #eeba2c !important;
}

.navbar-light .navbar-brand:hover {
    color: #eeba2c !important;
}

.navbar-light .navbar-brand:hover .text-primary {
    color: #ffffff !important;
}

.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    margin-top: 0;
    background-color: #0e2e50;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #eeba2c !important;
}

.navbar .btn-primary {
    margin: 1rem 1.5rem;
    padding: 0.5rem 1.5rem;
    background-color: #eeba2c;
    border-color: #eeba2c;
    color: #000000;
    font-weight: 500;
}

.navbar .btn-primary:hover {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 15px;
    color: #333333;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #eeba2c;
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    background: #eeba2c;
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
    border: 1px dashed var(--primary) !important;
}


/*** About ***/
.about {
    background-color: #0e2e50;
    color: #ffffff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 46, 80, 0.9) 0%, rgba(14, 46, 80, 0.95) 100%);
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
    background: transparent;
}

.about-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-img img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.03);
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: #eeba2c;
    transform: skew(20deg);
    z-index: 1;
    opacity: 0.1;
    transition: all 0.5s ease;
}

.about-img:hover::before {
    left: 0;
    opacity: 0.2;
}


/*** Category ***/
.category-section {
    background-color: #0e2e50;
    padding: 5rem 0;
    color: #ffffff;
}

.category-section .section-title {
    color: #ffffff;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
}

.category-section .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #eeba2c;
}

.cat-item {
    margin-bottom: 30px;
}

.cat-item div {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    height: 100%;
}

.cat-item:hover div {
    background: #eeba2c;
    border-color: #eeba2c;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cat-item div i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #eeba2c;
    transition: all 0.3s ease;
}

.cat-item:hover div i {
    color: #000000;
    transform: scale(1.1);
}

.cat-item div h5 {
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cat-item:hover div h5 {
    color: #000000;
}

.cat-item div p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    transition: all 0.3s ease;
}

.cat-item:hover div p {
    color: #333333;
}


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: #000000;
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #000000;
    background-color: #eeba2c;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .3s;
}

.property-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.05);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 0, 0, 0.1) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 0, 0, 0.1) !important;
}


/*** Team ***/
.team-item {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: .5s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.team-item .btn {
    color: #000000;
    background: #f8f9fa;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border: none;
}

.team-item .btn:hover {
    color: #000000;
    background: #eeba2c;
}

.team-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #eeba2c !important;
}

.team-item:hover .bg-mustard,
.property-item .bg-mustard {
    background-color: #eeba2c !important;
    color: #fff !important;
    font-weight: 500;
    border-radius: 4px !important;
    padding: 6px 12px !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Specific styles for property item badges */
.property-item .bg-mustard {
    background-color: #eeba2c !important;
    color: #fff !important;
    font-weight: 500;
    border-radius: 4px !important;
    padding: 6px 12px !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Ensure proper contrast for text-white elements */
.bg-mustard.text-white {
    color: #fff !important;
}

/* Ensure white text for badges */
.bg-mustard.text-white {
    color: #fff !important;
}

/* Ensure proper contrast for text-primary elements */
.bg-mustard .text-primary {
    color: #fff !important;
}

.team-item:hover .bg-primary i {
    color: #000000 !important;
}


/*** Primary Background ***/
.bg-primary {
    background: linear-gradient(135deg, #0e2e50 0%, #1a4b7a 100%) !important;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.bg-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.3;
    z-index: 0;
}

.bg-primary > * {
    position: relative;
    z-index: 1;
}

.bg-primary .form-control,
.bg-primary .form-select {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.bg-primary .form-control:focus,
.bg-primary .form-select:focus {
    background-color: #ffffff;
    border-color: #eeba2c;
    box-shadow: 0 0 0 0.25rem rgba(238, 186, 44, 0.25);
}

.bg-primary .btn-search {
    background-color: #eeba2c;
    color: #000000;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bg-primary .btn-search:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*** Search Section ***/
.search-container {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-top: -50px;
    position: relative;
    z-index: 1;
    color: #333333;
    border: 1px solid #eeeeee;
}

.search-container .form-control,
.search-container .form-select {
    color: #333333;
}

.search-container .form-control::placeholder {
    color: #999999;
}

.search-container .form-control,
.search-container .form-select {
    height: 55px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0 20px;
    font-size: 15px;
    transition: all 0.3s;
    background-color: #f8f9fa;
}

.search-container .form-control:focus,
.search-container .form-select:focus {
    border-color: #eeba2c;
    box-shadow: 0 0 0 0.25rem rgba(238, 186, 44, 0.25);
    background-color: #ffffff;
}

.search-container .btn-search {
    height: 55px;
    background: #000000;
    color: #ffffff;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border-radius: 8px;
}

.search-container .btn-search:hover {
    background: #eeba2c;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-container .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/*** Testimonial ***/
.testimonial-carousel {
    padding: 2rem 1.5rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin: 3rem 0;
    color: #333333;
    border: 1px solid #eeeeee;
}

.testimonial-carousel .testimonial-text,
.testimonial-carousel h5,
.testimonial-carousel p,
.testimonial-carousel h6,
.testimonial-carousel small {
    color: #333333;
}

.testimonial-carousel .testimonial-item .border {
    background: #ffffff;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding: 3rem 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 2px solid #eeba2c !important;
    background: #ffffff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-carousel .testimonial-item .border::before {
    content: '"\201D';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: rgba(238, 186, 44, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-carousel .testimonial-item .testimonial-text {
    position: relative;
    z-index: 1;
    color: #333333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

.testimonial-carousel .testimonial-item .d-flex {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .testimonial-item .flex-shrink-0 img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #eeba2c;
    padding: 2px;
}

.testimonial-carousel .testimonial-item .ps-3 h5 {
    color: #000000;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 16px;
}

.testimonial-carousel .testimonial-item .ps-3 small {
    color: #666666;
    font-size: 14px;
}

.testimonial-carousel .testimonial-item .ps-3 p {
    color: #666666;
    margin: 0;
    font-size: 14px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    background: #eeba2c;
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
    border: none;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: #000000;
    color: #ffffff;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    color: #eeba2c !important;
    font-size: 24px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #ffd700 !important;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.property-item img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}


/* Add styles for all carousel navigation arrows */
.owl-nav .owl-prev,
.owl-nav .owl-next {
    color: #eeba2c !important;
    font-size: 24px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
    color: #ffd700 !important;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: #eeba2c;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #ffd700 !important;
}

.breadcrumb-item.active {
    color: #eeba2c !important;
    font-weight: 500;
}

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .btn.btn-social:hover {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.footer .btn.btn-link {
    color: #ffffff;
    padding: 0;
    margin: 0 0 10px 0;
    transition: .5s;
}

.footer .btn.btn-link:hover {
    color: #ffffff;
    padding: 0;
    margin: 0 0 10px 0;
    text-decoration: none;
}

/* Update footer text color to white */
.footer .text-white-50 {
    color: #ffffff !important;
}

.footer .text-white-50:hover {
    color: #ffffff !important;
}

.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 .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #ffffff;
}

.footer .copyright a {
    color: #ffffff !important;
    text-decoration: none;
}

.footer .copyright a:hover {
    color: #ffffff !important;
    text-decoration: none;
}

/* Ensure all footer text is white */
.footer {
    color: #ffffff !important;
}

.footer * {
    color: #ffffff !important;
}

.footer .copyright a {
    color: #ffffff !important;
    text-decoration: none;
}

.footer .footer-menu a {
    color: #ffffff;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    text-decoration: none;
}

.footer .footer-menu a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}













