/********** Template CSS **********/
:root {
    --primary: #2563EB;
    --secondary: #0F172A;
    --light: #F8FAFC;
    --dark: #0B1220;

    --surface: rgba(255, 255, 255, .86);
    --surface-2: rgba(241, 245, 249, .80);
    --muted: #475569;

    --glass-border: rgba(255, 255, 255, .28);
    --glass-border-soft: rgba(15, 23, 42, .10);

    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 22px;

    --shadow-sm: 0 1px 2px rgba(2, 6, 23, .08);
    --shadow-md: 0 10px 30px rgba(2, 6, 23, .10);
    --shadow-lg: 0 18px 55px rgba(2, 6, 23, .16);

    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);

    --bs-primary: var(--primary);
    --bs-primary-rgb: 37, 99, 235;
    --bs-secondary: var(--secondary);
    --bs-secondary-rgb: 15, 23, 42;
    --bs-light: var(--light);
    --bs-light-rgb: 248, 250, 252;
    --bs-dark: var(--dark);
    --bs-dark-rgb: 11, 18, 32;
    --bs-body-font-family: "Ubuntu", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    --bs-body-bg: var(--light);
    --bs-body-color: var(--dark);
    --bs-link-color: var(--primary);
    --bs-link-hover-color: #1D4ED8;
    --bs-border-radius: var(--radius-sm);
    --bs-border-radius-lg: var(--radius-md);
}

body {
    background: radial-gradient(1200px circle at 10% 0%, rgba(37, 99, 235, .10), transparent 45%), radial-gradient(900px circle at 90% 10%, rgba(6, 182, 212, .10), transparent 40%), var(--bs-body-bg);
    color: var(--bs-body-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Barlow", var(--bs-body-font-family);
    letter-spacing: .01em;
}

p {
    color: var(--muted);
}

.section-eyebrow {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--primary);
}

.card-soft {
    background: var(--surface);
    border: 1px solid var(--glass-border-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: transform .25s ease, box-shadow .25s ease;
}

.card-soft:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.icon-badge {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, .12);
    color: var(--primary);
    font-size: 1.35rem;
}

.icon-badge i {
    color: inherit;
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    overflow-wrap: anywhere;
}

a {
    color: var(--bs-link-color);
    text-decoration: none;
}

a:hover {
    color: var(--bs-link-hover-color);
    text-decoration: none;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    border-radius: 999px !important;
    background: var(--gradient-primary) !important;
    border: none !important;
    box-shadow: var(--shadow-lg);
}

/*** 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 {
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: none;
    border-radius: var(--radius-sm);
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 .25rem rgba(37, 99, 235, .25);
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: var(--shadow-sm);
}

.btn.btn-primary:hover {
    filter: brightness(.98);
}

.btn.btn-secondary {
    background: var(--secondary);
    border: none;
    box-shadow: var(--shadow-sm);
}

.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: var(--radius-sm);
}

/*** 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.navbar-light {
    background: rgba(255, 255, 255, .68) !important;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 8px 30px rgba(2, 6, 23, .10) !important;
}

.navbar-brand h2 {
    font-size: 1.15rem;
    line-height: 1.2;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 22px;
    padding: 22px 0;
    color: var(--dark);
    font-size: 14px;
    text-transform: none;
    font-weight: 600;
    letter-spacing: .02em;
    outline: none;
    position: relative;
}

.navbar-light .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 14px;
    height: 2px;
    width: 0;
    background: var(--primary);
    border-radius: 999px;
    transition: width .2s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
width: 100%;
}

@media (max-width: 991.98px) {
.navbar-light .navbar-nav .nav-link  {
margin-right: 0;
padding: 10px 0;
}

.navbar-light .navbar-nav .nav-link::after {
bottom: 4px;
}

.navbar-light .navbar-nav {
border-top: 1px solid #EEEEEE;
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
height: auto;
padding-top: 12px;
padding-bottom: 12px;
}

.navbar-brand h2 {
font-size: 1rem;
line-height: 1.2;
white-space: normal;
}
}

@media (min-width: 992px) {
.navbar-light .navbar-brand,
.navbar-light a.btn {
height: 75px;
}
}

.navbar-light.sticky-top {
top: -100px;
transition: .5s;
}

.navbar .dropdown-menu {
border-radius: var(--radius-md);
padding: 10px;
background: rgba(255, 255, 255, .78);
border: 1px solid var(--glass-border);
box-shadow: var(--shadow-md);
-webkit-backdrop-filter: blur(6px);
backdrop-filter: blur(6px);
}

.navbar .dropdown-item {
border-radius: 10px;
padding: 10px 12px;
font-weight: 500;
color: rgba(11, 18, 32, .90);
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
background: rgba(37, 99, 235, .10);
color: var(--primary);
}

@media (min-width: 992px) {
.navbar .nav-item .dropdown-menu {
display: block;
border: none;
margin-top: 0;
top: 150%;
opacity: 0;
visibility: hidden;
transition: .5s;
}

.navbar .nav-item:hover .dropdown-menu {
top: 100%;
visibility: visible;
transition: .5s;
opacity: 1;
}
}

/*** Header ***/
.carousel-caption {
left: 0;
right: 0;
bottom: 0;
top: auto;
padding: 1.75rem 0 2.5rem;
max-height: 280px;
display: flex !important;
align-items: flex-end !important;
background: linear-gradient(180deg, rgba(2, 6, 23, 0) 0%, rgba(2, 6, 23, .55) 35%, rgba(2, 6, 23, .88) 100%);
z-index: 1;
}

#header-carousel .carousel-item {
height: 520px;
}

#header-carousel .carousel-item img {
filter: saturate(1.05) contrast(1.03);
height: 100%;
object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
width: 3rem;
height: 3rem;
background-color: rgba(255, 255, 255, .14);
border-radius: 999px;
-webkit-backdrop-filter: blur(8px);
backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
#header-carousel .carousel-item {
position: relative;
height: 320px;
min-height: 0;
}

.carousel-caption {
padding: 1.25rem 0 1.75rem;
max-height: 220px;
}

#header-carousel .carousel-item img {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
}
}

.page-header {
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-md);
}

.page-header-inner {
background: linear-gradient(90deg, rgba(2, 6, 23, .88) 0%, rgba(2, 6, 23, .62) 55%, rgba(2, 6, 23, .38) 100%);
}

.breadcrumb-item + .breadcrumb-item::before {
color: var(--light);
}

.breadcrumb a {
color: rgba(255, 255, 255, .92);
}

.breadcrumb a:hover {
color: #FFFFFF;
}

.home-bg {
background: linear-gradient(rgba(2, 6, 23, .35), rgba(2, 6, 23, .35)), url(../img/carousel-bg-1.jpg) center center / cover no-repeat;
background-attachment: scroll;
}

@media (max-width: 991.98px) {
    body.home-bg {
        position: relative;
        background: none;
    }

    body.home-bg::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -1;
        background: linear-gradient(rgba(2, 6, 23, .35), rgba(2, 6, 23, .35)), url(../img/carousel-bg-1.jpg) center center / cover no-repeat;
        transform: translateZ(0);
        will-change: transform;
    }
}

@media (min-width: 992px) {
.home-bg {
background-attachment: fixed;
}
}

.theme-panel {
background: var(--gradient-primary);
border-radius: var(--radius-lg);
border: 1px solid rgba(255, 255, 255, .18);
box-shadow: var(--shadow-md);
}

.theme-panel--featured {
    border: 1px solid rgba(255, 255, 255, .38);
    box-shadow: 0 18px 55px rgba(2, 6, 23, .22), 0 18px 55px rgba(37, 99, 235, .16);
    position: relative;
    overflow: hidden;
}

.theme-panel--featured::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, .18), rgba(2, 6, 23, .40)),
        radial-gradient(900px circle at 0% 0%, rgba(255, 255, 255, .14), transparent 45%);
    pointer-events: none;
}

.theme-panel--featured::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: rgba(255, 255, 255, .55);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .10);
    pointer-events: none;
}

.theme-panel--featured h2 {
    font-family: var(--bs-body-font-family);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 1.15rem;
    margin-bottom: 1rem !important;
}

.theme-panel--featured ul li {
    color: rgba(255, 255, 255, .94);
    line-height: 1.55;
}

.about-section .about-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem 1.75rem;
    text-align: left;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.about-section .about-card h6 {
    margin-bottom: .85rem !important;
}

.about-section .about-card h1 {
    margin-bottom: 1.25rem !important;
}

.alumni-grid {
    position: relative;
}

.alumni-grid--collapsed {
    overflow: hidden;
    transition: max-height .35s ease;
}

.alumni-grid--collapsed::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0) 0%, rgba(2, 6, 23, .32) 60%, rgba(2, 6, 23, .55) 100%);
    pointer-events: none;
}

.alumni-toggle-icon {
    transition: transform .2s ease;
}

#alumniToggle[aria-expanded="true"] .alumni-toggle-icon {
    transform: rotate(180deg);
}

.alumni-avatar {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .92);
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .18);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow-sm);
}

.alumni-photo {
    width: 72px;
    height: 72px;
    max-width: 72px;
    max-height: 72px;
    border-radius: 999px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .about-section .about-card {
        padding: 1.5rem 1.1rem;
    }
}

.home-panel {
    background: rgba(2, 6, 23, .30);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, .10);
    padding: 2.25rem 1.5rem;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.home-panel,
.home-panel h1,
.home-panel h2,
.home-panel h3,
.home-panel h4,
.home-panel h5,
.home-panel h6,
.home-panel p,
.home-panel small,
.home-panel li,
.home-panel span {
    color: rgba(255, 255, 255, .92);
}

.home-panel a,
.home-panel .text-reset {
    color: rgba(255, 255, 255, .92) !important;
}

.home-panel .card-soft {
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: none;
}

.home-panel .card-soft,
.home-panel .card-soft * {
    color: rgba(255, 255, 255, .92) !important;
}

.home-panel .team-item {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .14);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.home-panel .team-item .position-relative {
    aspect-ratio: 4 / 3;
}

.home-panel .team-item .position-relative > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-panel .team-item .bg-light {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-panel .bg-light {
    background: rgba(2, 6, 23, .35) !important;
}

.home-panel .bg-light,
.home-panel .bg-light * {
    color: rgba(255, 255, 255, .92) !important;
}

.home-quick-links .card-soft {
    background: rgba(2, 6, 23, .28);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: none;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.home-quick-links,
.home-quick-links h1,
.home-quick-links h2,
.home-quick-links h3,
.home-quick-links h4,
.home-quick-links h5,
.home-quick-links h6,
.home-quick-links p,
.home-quick-links small,
.home-quick-links li,
.home-quick-links span,
.home-quick-links a,
.home-quick-links .text-reset {
    color: rgba(255, 255, 255, .92) !important;
}

.home-quick-links .icon-badge {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .40);
    color: rgba(2, 6, 23, .86);
}

@media (max-width: 768px) {
    .home-bg {
        background-attachment: scroll;
    }

    .home-panel {
        padding: 1.5rem 1rem;
    }
}

/*** Facts ***/
.fact {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-bg-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*** Service ***/
.service .nav .nav-link {
    background: var(--surface);
    transition: .5s;
    border: 1px solid var(--glass-border-soft);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.service .nav .nav-link:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.service .nav .nav-link.active {
    background: var(--gradient-primary);
    border-color: rgba(37, 99, 235, .35);
    box-shadow: var(--shadow-lg);
}

.service .nav .nav-link.active h4 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active,
.service .nav .nav-link.active * {
    color: #FFFFFF !important;
}

.service .nav .nav-link i {
    color: var(--primary);
}

.service .nav .nav-link.active i {
    color: #FFFFFF !important;
}

.workshop-brochure {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.workshop-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: var(--shadow-sm);
    cursor: zoom-in;
}

.workshop-img--brochure {
    max-height: 340px;
}

#imageZoomModal .modal-content {
    background: rgba(2, 6, 23, .92);
}

#imageZoomModal .modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#imageZoomModal .btn-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    opacity: .95;
}

#imageZoomModalImg {
    max-height: 100vh;
    max-width: 100vw;
    width: auto;
    height: auto;
    object-fit: contain;
}

/*** Booking ***/
.booking {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .6)), url(../img/carousel-bg-2.jpg) center center no-repeat;
    background-size: cover;
}

.training-card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.training-card h1,
.training-card h2,
.training-card h3,
.training-card h4,
.training-card h5,
.training-card h6,
.training-card p,
.training-card span {
    color: rgba(11, 18, 32, .92) !important;
}

.training-card--highlight {
    background: var(--gradient-primary);
    border: 1px solid rgba(37, 99, 235, .35);
    box-shadow: var(--shadow-lg);
}

.training-card--highlight,
.training-card--highlight * {
    color: rgba(255, 255, 255, .96) !important;
}

.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}

/*** Team ***/
.team-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--glass-border-soft);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: transform .25s ease, box-shadow .25s ease;
}

.team-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.team-item .team-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, .88) 0%, rgba(6, 182, 212, .88) 100%);
    transform: scale(0);
    transition: .5s;
}

.team-item:hover .team-overlay {
    transform: scale(1);
}

.team-item .team-overlay .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-overlay .btn:hover {
    color: #FFFFFF;
    background: var(--secondary)
}

/*** Testimonial ***/
.testimonial-item {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--glass-border-soft);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    padding: 22px;
    margin-bottom: 22px;
}

.testimonial-item .testimonial-text {
    border-radius: var(--radius-md);
}

.testimonial-item img {
    object-fit: cover;
}

.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;
}

.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 {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .9)), url(../img/carousel-bg-1.jpg) center center no-repeat;
    background-size: cover;
}

.footer p {
    color: rgba(255, 255, 255, .86);
}

.footer a {
    color: rgba(255, 255, 255, .92);
}

.footer a:hover {
    color: #FFFFFF;
}

.footer > .container {
    background: rgba(2, 6, 23, .35);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    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, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}