/********** Template CSS **********/
:root {
    --primary: #cea962;
    --secondary: #FF6922;
    --light: #EFFDF5;
    --dark: #0E2E50;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 22px;
    bottom: 33px;
    z-index: 99;
}

.whatsapp-float {
    position: fixed;
    right: 19px;
    bottom: 99px;
    z-index: 99;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    color: #FFFFFF;
    font-weight: 700;
    background: #25D366;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(37, 211, 102, .35);
    transition: .3s;
}

.whatsapp-float i {
    font-size: 28px;
}

.whatsapp-float span {
    display: none;
}

.whatsapp-float:hover {
    color: #FFFFFF;
    background: #1ebe5d;
    transform: translateY(-3px);
}

@media (max-width: 576px) {
    .whatsapp-float {
        right: 20px;
        bottom: 95px;
        padding: 12px 14px;
    }

}


/*** 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-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: 50px;
}


/*** Navbar ***/
.nav-bar {
    position: relative;
    
    padding: 0 0rem;
    transition: .5s;
    z-index: 9999;
}

.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 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) {
    .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: #FFFFFF;
    background: var(--primary);
    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;
}


/*** Lead Form ***/
.lead-form-section {
    position: relative;
    z-index: 2;
    margin-top: -70px;
    padding: 0 0 48px;
}

.lead-form-card {
    padding: 36px;
   background: linear-gradient(135deg, #ffecb4 0%, #f7e2b8 100%);
    border: 1px solid rgba(206, 169, 98, .2);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(14, 46, 80, .12);
}

.lead-form-input {
    min-height: 56px;
    border: 1px solid rgba(14, 46, 80, .12);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: none;
}

.lead-form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgba(206, 169, 98, .15);
}

.form-response {
    display: none;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 500;
}

.form-response.is-success {
    display: block;
    color: #0f5132;
    background: #d1e7dd;
    border: 1px solid #badbcc;
}

.form-response.is-error {
    display: block;
    color: #842029;
    background: #f8d7da;
    border: 1px solid #f5c2c7;
}

.form-response-footer {
    margin-bottom: 12px;
}

@media (max-width: 991.98px) {
    .lead-form-section {
        margin-top: 0;
        padding-top: 48px;
    }
}

@media (max-width: 575.98px) {
    .lead-form-card {
        padding: 24px;
    }
}


/*** 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-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}


/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 1px dashed rgba(0, 185, 142, .3);
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}


/*** Projects ***/


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-image-carousel .owl-item img {
    height: 280px;
    object-fit: cover;
}

.property-image-carousel {
    position: relative;
    z-index: 1;
}

.property-item:hover .property-image-carousel img {
    transform: none;
}

.property-image-carousel .owl-dots {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: flex;
    gap: 6px;
}

.property-image-carousel .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, .55);
    border-radius: 50%;
}

.property-image-carousel .owl-dot.active span {
    background: #FFFFFF;
}

.property-item .position-absolute {
    z-index: 2;
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.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: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Vision ***/
.vision-section {
    position: relative;
    overflow: hidden;
    /* padding-left: 32px;
    padding-right: 32px; */
    /* background:
        radial-gradient(circle at top left, rgba(206, 169, 98, .18), transparent 32%),
        radial-gradient(circle at bottom right, rgba(14, 46, 80, .18), transparent 28%),
        linear-gradient(135deg, #fffdf8 0%, #f6efe3 48%, #f9f6ef 100%); */
}

.vision-section::before,
.vision-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.vision-section::before {
    width: 320px;
    height: 320px;
    top: -120px;
    right: -90px;
    background: rgba(206, 169, 98, .14);
}

.vision-section::after {
    width: 240px;
    height: 240px;
    bottom: -100px;
    left: -60px;
    background: rgba(14, 46, 80, .08);
}

.vision-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 64px;
    border-radius: 36px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(206, 169, 98, .22);
    box-shadow: 0 30px 70px rgba(14, 46, 80, .12);
    backdrop-filter: blur(6px);
}

.vision-eyebrow {
    display: inline-block;
    padding: 8px 16px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    background: rgba(206, 169, 98, .12);
    border-radius: 999px;
}

.vision-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.15;
    color: var(--dark);
}

.vision-text {
    max-width: 760px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5f6b7a;
}

.vision-infographic {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    align-items: center;
}

.vision-core {
    position: relative;
    display: flex;
    justify-content: center;
}

.vision-core-ring {
    position: relative;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    padding: 14px;
    background: conic-gradient(#23b5e8 0 24%, #ef4e62 24% 48%, #ff9e1b 48% 73%, #314a9c 73% 100%);
    box-shadow: 0 24px 50px rgba(14, 46, 80, .14);
}

.vision-core-ring::before {
    content: "";
    position: absolute;
    inset: 18px;
    background: #d9d9d9;
    border-radius: 50%;
}

.vision-core-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(14, 46, 80, .06);
}

.vision-core-label {
    color: #7f8791;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.vision-core-inner h3 {
    margin: 8px 0 10px;
    color: var(--dark);
    font-size: 2rem;
    text-transform: uppercase;
}

.vision-core-inner p {
    margin: 0;
    color: #7f8791;
    line-height: 1.6;
}

.vision-tracks {
    position: relative;
    display: grid;
    gap: 18px;
}

.vision-tracks::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 88px;
    left: -62px;
    width: 2px;
    background: linear-gradient(180deg, rgba(35, 181, 232, .25), rgba(49, 74, 156, .25));
}

.vision-track-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}

.vision-track-item::before {
    content: "";
    position: absolute;
    left: -62px;
    width: 62px;
    height: 2px;
    background: #cfd5dc;
}

.vision-track-node {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: -18px;
    color: inherit;
    font-size: 28px;
    background: #FFFFFF;
    border: 4px solid currentColor;
    border-radius: 50%;
    box-shadow: 0 14px 25px rgba(14, 46, 80, .12);
}

.vision-track-card {
    flex: 1;
    display: grid;
    grid-template-columns: 88px 1fr;
    min-height: 88px;
    background: #FFFFFF;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 18px 32px rgba(14, 46, 80, .12);
}

.vision-track-no {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #FFFFFF;
}

.vision-track-body {
    padding: 16px 28px 16px 20px;
}

.vision-track-tag {
    display: block;
    margin-bottom: 2px;
    color: #9ba3ad;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.vision-track-body h4 {
    margin-bottom: 4px;
    color: var(--dark);
    font-size: 1.1rem;
}

.vision-track-body p {
    margin: 0;
    color: #6f7782;
    font-size: .93rem;
    line-height: 1.55;
}

.vision-blue {
    color: #23b5e8;
}

.vision-blue .vision-track-no {
    background: linear-gradient(135deg, #23b5e8, #2d8fe5);
}

.vision-red {
    color: #ef4e62;
}

.vision-red .vision-track-no {
    background: linear-gradient(135deg, #ef4e62, #db3552);
}

.vision-orange {
    color: #ff9e1b;
}

.vision-orange .vision-track-no {
    background: linear-gradient(135deg, #ffb347, #ff8c12);
}

.vision-navy {
    color: #314a9c;
}

.vision-navy .vision-track-no {
    background: linear-gradient(135deg, #3f5bc2, #314a9c);
}

.vision-goal-banner {
    margin-top: 8px;
    padding: 24px 28px;
    color: #FFFFFF;
    background: linear-gradient(135deg, #0e2e50 0%, #17395d 100%);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(14, 46, 80, .2);
}

.vision-goal-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #d8b97b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .vision-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .vision-panel {
        padding: 36px 24px;
    }

    .vision-infographic {
        grid-template-columns: 1fr;
    }

    .vision-tracks::before,
    .vision-track-item::before {
        display: none;
    }

    .vision-core {
        margin-bottom: 6px;
    }
}

@media (max-width: 767.98px) {
    .vision-track-item {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .vision-track-node {
        margin-right: 0;
        margin-left: 16px;
    }

    .vision-track-card {
        grid-template-columns: 72px 1fr;
        border-radius: 28px;
    }

    .vision-track-no {
        font-size: 1.15rem;
    }

    .vision-track-body {
        padding: 16px 18px 16px 14px;
    }
}


/*** Why Choose ***/
.why-section {
    padding-left: 32px;
    padding-right: 32px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
}

.why-panel {
    padding: 38px 48px 46px;
    background: #ffffff;
}

.why-layout {
    display: grid;
    grid-template-columns: minmax(320px, 1.1fr) minmax(300px, .9fr);
    gap: 40px;
    align-items: start;
}

.why-copy {
    padding: 10px 0 0;
    min-width: 0;
}

.why-heading-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
}

.why-step {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #8f79ea;
}

.why-heading-wrap h2 {
    margin: 0;
    color: #7b61e8;
    font-size: clamp(2.7rem, 5vw, 4.25rem);
    line-height: .95;
    font-weight: 300;
    text-transform: uppercase;
    flex: 1;
}

.why-heading-wrap h2::first-line {
    font-weight: 800;
}

.why-arrow {
    flex-shrink: 0;
    color: #b3b3b3;
    font-size: 3.25rem;
}

.why-intro {
    max-width: 560px;
    margin-bottom: 34px;
    color: #5f6673;
    font-size: 1.2rem;
    line-height: 1.5;
}

.why-stats {
    display: flex;
    gap: 54px;
    flex-wrap: wrap;
}

.why-stat {
    min-width: 210px;
}

.why-stat h3 {
    margin-bottom: 8px;
    color: #7b61e8;
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 800;
}

.why-stat p {
    max-width: 220px;
    margin: 0;
    color: #616875;
    line-height: 1.45;
}

.why-figure {
    position: relative;
    min-height: 520px;
    width: 100%;
    overflow: hidden;
    border-top-left-radius: 220px;
    border-bottom-left-radius: 220px;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
    background: #f4f1ff;
}

.why-figure-shape {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(123, 97, 232, .08), rgba(123, 97, 232, .22));
}

.why-figure::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(123, 97, 232, .22));
    z-index: 1;
}

.why-figure-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(.15);
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: -34px;
    position: relative;
    z-index: 2;
}

.why-card {
    min-width: 0;
    padding: 28px 24px;
    text-align: center;
    border-radius: 22px;
    box-shadow: 0 18px 36px rgba(14, 46, 80, .12);
}

.why-card h4 {
    margin-bottom: 8px;
    font-size: 1.55rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.why-card p {
    margin: 0;
    line-height: 1.5;
    font-size: 1rem;
    overflow-wrap: anywhere;
}

.why-card-purple {
    color: #FFFFFF;
    background: linear-gradient(135deg, #8d6fff 0%, #5b35da 100%);
}

.why-card-cyan {
    color: #FFFFFF;
    background: linear-gradient(135deg, #25cce0 0%, #1099b7 100%);
}

.why-card-light {
    color: #31343a;
    background: #FFFFFF;
    border: 1px solid rgba(14, 46, 80, .08);
}

@media (max-width: 1199.98px) {
    .why-panel {
        padding: 34px 28px 40px;
    }

    .why-layout {
        gap: 28px;
    }

    .why-heading-wrap {
        gap: 16px;
    }

    .why-arrow {
        font-size: 2.6rem;
    }

    .why-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .why-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .why-panel {
        padding: 36px 24px;
    }

    .why-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .why-copy {
        order: 1;
    }

    .why-figure {
        order: 2;
        min-height: 420px;
        border-top-left-radius: 180px;
        border-bottom-left-radius: 180px;
    }

    .why-cards {
        grid-template-columns: 1fr;
        margin-top: 24px;
    }
}

@media (max-width: 575.98px) {
    .why-heading-wrap {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 10px;
    }

    .why-heading-wrap h2 {
        font-size: 2.25rem;
        flex-basis: 100%;
    }

    .why-arrow {
        font-size: 2rem;
    }

    .why-intro {
        font-size: 1rem;
    }

    .why-stats {
        gap: 24px;
    }

    .why-stat h3 {
        font-size: 2.4rem;
    }

    .why-stat p {
        max-width: 100%;
    }

    .why-figure {
        min-height: 300px;
        border-top-left-radius: 120px;
        border-bottom-left-radius: 120px;
    }

    .why-card {
        padding: 22px 18px;
    }

    .why-card h4 {
        font-size: 1.4rem;
    }

    .why-card p {
        font-size: .95rem;
    }
}


/*** Content Text Animation ***/
.text-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}

.text-reveal.reveal-left {
    transform: translate(-32px, 26px);
}

.text-reveal.reveal-right {
    transform: translate(32px, 26px);
}

.text-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .text-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/*** Footer ***/
.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 rgba(255,255,255,0.5);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    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 .form-control {
    border-color: rgba(255,255,255,0.5);
}

.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;
}
