/********** Template CSS **********/
:root {
    --primary: #1E3A8A;
    --secondary: #10B981;
    --accent: #FBBF24;
    --background: #F8FAFC;
    --dark-text: #0F172A;
    --soft-text: #64748B;
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.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;
    background: rgba(255, 255, 255, 0.95) !important;
}

.spinner-border {
    border-width: 0.25em !important;
    border-color: var(--primary) !important;
    border-right-color: transparent !important;
}


/*** Button ***/
.btn {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 1.6;
}

.btn.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    background-color: #1e40af;
    border-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.btn.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #FFFFFF;
}

.btn.btn-secondary:hover {
    background-color: #059669;
    border-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

.btn.btn-outline-secondary {
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn.btn-outline-secondary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    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: 8px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .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,
.navbar-light a.btn {
    height: 90px;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-brand, .navbar-light a.btn {
        margin-left: 0px !important;
    }
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

/* Navbar Alignment Fixes */
.navbar {
    padding: 0;
    min-height: 75px;
}

.navbar-nav {
    align-items: center;
    padding: 0 25px;
    height: 75px;
    display: flex;
}

.navbar-nav .dropdown-menu {
    margin-top: 10px;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.navbar-nav .dropdown-item {
    padding: 10px 20px;
    margin: 2px 0;
    border-radius: 4px;
    transition: all 0.3s ease;
    color: #333;
}

.navbar-nav .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary);
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/* Navbar Collapse Responsive Padding */
#navbarCollapse {
    padding-right: 80px;
}

@media (max-width: 991.98px) {
    #navbarCollapse {
        padding-right: 0px !important;
    }
}

/* Mobile Responsive Navbar */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0;
        min-height: auto;
        max-width: 100% !important;
    }
    
    .navbar-brand {
        padding: 15px 25px;
        max-width: 100% !important;
    }
    
    .navbar-nav {
        align-items: stretch;
        padding: 0 25px;
        height: auto;
        display: block;
        max-width: 100% !important;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 15px;
        margin: 0;
        border-bottom: 1px solid #eee;
        color: var(--dark) !important;
        font-weight: 700;
        text-transform: uppercase;
        max-width: 100% !important;
    }
    
    .navbar-nav .dropdown {
        position: relative;
    }
    
    .navbar-nav .dropdown-menu {
        margin-top: 0;
        border: none;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        border-radius: 0;
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: auto !important;
        background: #fff !important;
        min-width: 200px !important;
        z-index: 1000 !important;
        transform-origin: top !important;
        transition: all 0.3s ease !important;
        opacity: 0 !important;
        visibility: hidden !important;
        max-width: 100% !important;
    }
    
    .navbar-nav .dropdown.show .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    .navbar-nav .dropdown-item {
        padding: 8px 15px;
        margin: 0;
        border-radius: 0;
        border-bottom: 1px solid #f0f0f0;
        color: #333 !important;
        font-weight: 500;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .navbar-nav .dropdown-item:hover {
        background-color: #f8f9fa;
        color: var(--primary) !important;
    }
    
    .navbar-nav .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        cursor: pointer;
        max-width: 100% !important;
    }
    
    .navbar-nav .dropdown-toggle::after {
        content: "\f107" !important;
        font-family: "Font Awesome 5 Free" !important;
        font-weight: 900 !important;
        margin-left: 8px !important;
        transition: transform 0.3s ease !important;
    }
    
    .navbar-nav .dropdown.show .dropdown-toggle::after {
        transform: rotate(180deg) !important;
    }
    
    #navbarCollapse {
        padding-right: 0px;
    }
}


/*** Top Header Bar ***/
.top-header-bar {
    background-color: var(--primary) !important;
    padding: 8px 110px !important;
}

.top-header-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

.top-header-left {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.top-header-right {
    display: flex !important;
    align-items: center !important;
}

.top-header-text {
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
    color: #fff !important;
}

.social-links {
    display: flex !important;
    gap: 12px !important;
}

.social-link {
    color: #fff !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

.social-link:hover {
    color: var(--accent) !important;
    transform: scale(1.1) !important;
}

.contact-icon {
    width: 18px !important;
    height: 18px !important;
    margin-right: 6px !important;
    transition: all 0.3s ease !important;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) !important;
    color: var(--accent) !important;
}

.social-icon {
    width: 18px !important;
    height: 18px !important;
    transition: all 0.3s ease !important;
    color: #FFFFFF !important;
}

.social-icon:hover {
    transform: scale(1.1) !important;
    color: #FFFFFF !important;
}

.social-link {
    text-decoration: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 32px !important;
    height: 32px !important;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #FFFFFF !important;
    transition: all 0.3s ease !important;
}

.social-link:hover {
    background: var(--primary) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

@media (max-width: 768px) {
    .top-header-bar {
        padding: 6px 0 !important;
        font-size: 12px !important;
    }
    
    .top-header-content {
        flex-direction: column !important;
        gap: 8px !important;
        padding: 0 15px !important;
    }
    
    .top-header-left {
        order: 2 !important;
    }
    
    .top-header-right {
        order: 1 !important;
    }
    
    .top-header-text {
        font-size: 11px !important;
    }
    
    .social-links {
        gap: 8px !important;
    }
    
    .social-link {
        font-size: 14px !important;
        width: 28px !important;
        height: 28px !important;
    }
}
/* Global Typography & Spacing */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--background);
}

h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-text);
    margin-bottom: 20px;
}

/* Mobile H1 Font Size */
@media (max-width: 768px) {
    h1 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 26px;
    }
}

h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-text);
    margin-bottom: 16px;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--dark-text);
    margin-bottom: 12px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--soft-text);
    margin-bottom: 16px;
}

/* Section Spacing */
.section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.clr.pd4_16.boxedBtn {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

a.clr.pd4_16.boxedBtn:hover {
    background-color: #1e40af;
    border-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    color: #FFFFFF;
}

.social-link:hover {
    background: var(--primary);
    color: #FFFFFF !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

a.clr.pd4_16.boxedBtn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

/* Card Design Standardization */
.card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    padding: 30px;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Grid Standardization */
.grid {
    display: grid;
    gap: 30px;
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
}

/* Hero Section Improvements - Desktop Only */
@media (min-width: 769px) {
    .header-carousel {
        height: 600px !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        overflow: hidden;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        position: relative;
    }

    .header-carousel .owl-carousel-item {
        position: relative;
        height: 600px !important;
        width: 100vw !important;
        overflow: hidden;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100vw !important;
        height: 100%;
        object-fit: cover;
        object-position: center;
        top: 0;
        left: 0;
        filter: brightness(0.7);
    }

    .header-carousel .area_slider {
        height: 600px !important;
        width: 100vw !important;
        background: transparent !important;
        display: flex;
        align-items: center;
    }

    .header-carousel .slider_content {
        display: none !important;
    }

    .header-carousel .container,
    .header-carousel .row,
    .header-carousel .col-sm-10,
    .header-carousel .col-lg-8 {
        display: none !important;
    }

    .header-carousel h5,
    .header-carousel h1,
    .header-carousel p {
        display: none !important;
    }
}

/* Mobile Slider - Keep Text */
@media (max-width: 768px) {
    .header-carousel {
        height: 550px !important;
        width: 100% !important;
        margin-left: 0;
        margin-right: 0;
        overflow: hidden;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        position: relative;
    }

    .header-carousel .owl-carousel-item {
        position: relative;
        height: 550px !important;
        width: 100% !important;
        overflow: hidden;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        top: 0;
        left: 0;
        opacity: 0.8;
    }

    .header-carousel .area_slider {
        height: 550px !important;
        width: 100% !important;
        background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(16, 185, 129, 0.8)) !important;
        display: flex;
        align-items: center;
    }

    .header-carousel .slider_content {
        display: block !important;
        animation: fadeInUp 1s ease-out;
    }

    .header-carousel .container,
    .header-carousel .row,
    .header-carousel .col-sm-10,
    .header-carousel .col-lg-8 {
        display: block !important;
    }

    .header-carousel h5 {
        display: block !important;
        color: var(--accent) !important;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .header-carousel h1 {
        display: block !important;
        color: white !important;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .header-carousel p {
        display: block !important;
        color: white !important;
        font-size: 16px;
        margin-bottom: 20px;
        opacity: 0.9;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Dots */
.header-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.header-carousel .owl-dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.header-carousel .owl-dot.active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

/* Slider Navigation */
.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #fff;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .header-carousel {
        height: 550px !important;
        width: 100% !important;
    }
    
    .header-carousel .owl-carousel-item {
        position: relative;
        height: 550px !important;
        width: 100% !important;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        top: 0;
        left: 0;
        opacity: 0.8;
    }
    
    .header-carousel .area_slider {
        height: 550px !important;
        width: 100% !important;
        background: linear-gradient(135deg, rgba(79, 172, 254, 0.9) 0%, rgba(0, 242, 254, 0.9) 100%);
        display: flex;
        align-items: center;
    }
    
    .header-carousel .slider_content {
        display: none !important;
    }
    
    .header-carousel .container {
        display: none !important;
    }
    
    .header-carousel .row {
        display: none !important;
    }
    
    .header-carousel .col-sm-10,
    .header-carousel .col-lg-8 {
        display: none !important;
    }
    
    .header-carousel h5,
    .header-carousel h1,
    .header-carousel p {
        display: none !important;
    }
    
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}
.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*color: #FFFFFF;*/
    color: #ffffff00;
    background: transparent;
    /*border: 1px solid #FFFFFF;*/
     border: 0px solid #ffffff00;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    /*background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/carousel-1.jpg);*/
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/image_top_background2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    /*background: var(--primary) !important;*/
    background: #ffa500 !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    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: 15px;
    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;
}