/********** Template CSS **********/
:root {
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #0F172B;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    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: 2px;
}


/*** Brand ***/
.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.site-brand-logo {
    max-height: 72px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    flex-shrink: 0;
}

.site-brand-name {
    display: none;
}

@media (max-width: 991.98px) {
    .site-brand-logo {
        max-height: 58px;
        max-width: 150px;
    }
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}


/*** Header ***/
#header-carousel .carousel-item {
    position: relative;
    height: 520px;
    overflow: hidden;
}

#header-carousel .carousel-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 43, .7);
    z-index: 1;
    justify-content: flex-start !important;
    padding-top: 7.5rem;
    padding-bottom: 2rem;
}

#header-carousel .carousel-caption .display-3 {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    line-height: 1.35;
    margin-bottom: 1.25rem !important;
}

#header-carousel .carousel-caption h6 {
    margin-bottom: 0.75rem !important;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 991.98px) {
    #header-carousel .carousel-item {
        height: 420px;
    }

    .carousel-caption {
        padding-top: 6rem;
    }
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        height: 340px;
    }

    .carousel-caption {
        padding-top: 4.5rem;
    }

    #header-carousel .carousel-caption .display-3 {
        font-size: 1.5rem;
    }

    #header-carousel .carousel-caption .btn {
        padding: 0.6rem 1.25rem !important;
        font-size: 0.85rem;
    }
}

/*** News ticker ***/
.news-ticker {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid #e8ecf1;
    min-height: 42px;
    max-height: 42px;
    overflow: hidden;
}

.news-ticker-label {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: 0 1rem;
    background: linear-gradient(135deg, #fea116, #f59e0b);
    color: #fff;
    font-weight: 700;
    font-size: .8rem;
    white-space: nowrap;
    z-index: 2;
    box-shadow: -4px 0 12px rgba(254, 161, 22, .25);
}

.news-ticker-label svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
}

.news-ticker-viewport {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.news-ticker-rotate {
    position: relative;
    height: 42px;
}

.news-ticker-item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 0 1.25rem;
    font-size: .84rem;
    color: #334155;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .55s ease, transform .55s ease, visibility .55s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-ticker-item.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.news-ticker-item.is-leaving {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
}

.news-ticker-item a {
    color: #334155;
    text-decoration: none;
    transition: color .2s ease;
}

.news-ticker-item a:hover {
    color: var(--primary);
}

.news-ticker-badge {
    display: inline-flex;
    align-items: center;
    padding: .12rem .5rem;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 700;
    line-height: 1.2;
}

.news-ticker-item--job .news-ticker-badge {
    background: rgba(20, 184, 166, .12);
    color: #0f766e;
}

.news-ticker-item--service .news-ticker-badge {
    background: rgba(59, 130, 246, .12);
    color: #1d4ed8;
}

.news-ticker-item--discount .news-ticker-badge {
    background: rgba(239, 68, 68, .12);
    color: #dc2626;
}

.news-ticker-item--general .news-ticker-badge {
    background: rgba(100, 116, 139, .12);
    color: #475569;
}

@media (max-width: 576px) {
    .news-ticker {
        min-height: 38px;
        max-height: 38px;
    }

    .news-ticker-label {
        padding: 0 .7rem;
        font-size: .74rem;
    }

    .news-ticker-label svg {
        width: 13px;
        height: 13px;
    }

    .news-ticker-rotate {
        height: 38px;
    }

    .news-ticker-item {
        padding: 0 .85rem;
        font-size: .78rem;
    }
}

/*** About section ***/
.about-section .about-lead {
    color: #5a6474;
    line-height: 1.85;
    font-size: 1rem;
}

.about-glass-cards {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.about-glass-card {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(255, 255, 255, .75);
    box-shadow:
        0 8px 28px rgba(15, 23, 43, .06),
        inset 0 1px 0 rgba(255, 255, 255, .9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform .25s ease, box-shadow .25s ease;
}

.about-glass-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 34px rgba(15, 23, 43, .1),
        inset 0 1px 0 rgba(255, 255, 255, .95);
}

.about-glass-card--mission {
    background: linear-gradient(135deg, rgba(254, 161, 22, .1), rgba(255, 255, 255, .6));
    border-color: rgba(254, 161, 22, .22);
}

.about-glass-card h5,
.about-glass-card h6 {
    margin: 0 0 .35rem;
    font-weight: 700;
    color: var(--dark);
    font-size: .95rem;
}

.about-glass-card p {
    margin: 0;
    color: #5a6474;
    font-size: .86rem;
    line-height: 1.7;
}

.about-glass-card-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(254, 161, 22, .18);
    color: var(--primary);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.about-glass-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

.about-glass-card-icon--mission {
    background: linear-gradient(135deg, #fea116, #f59e0b);
    border-color: transparent;
    color: #fff;
}

.about-image-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(15, 23, 43, .1);
    border: 1px solid rgba(255, 255, 255, .85);
    background: #fff;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 320px;
    max-height: 520px;
}

@media (max-width: 576px) {
    .about-glass-card {
        padding: .85rem .9rem;
    }

    .about-image {
        min-height: 220px;
        max-height: 360px;
    }
}

.page-header {
    position: relative;
    min-height: 320px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--dark);
}

.page-header-inner {
    min-height: 320px;
    display: flex;
    align-items: center;
    background: rgba(15, 23, 43, .72);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}


/*** Section Title ***/
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0 4.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.8;
}

.section-title::before,
.section-title::after {
    position: absolute;
    content: "";
    top: 50%;
    width: 3.5rem;
    height: 3px;
    margin-top: -1.5px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title::before {
    left: 0;
}

.section-title::after {
    right: 0;
}

.section-title.text-start {
    padding: 0 0 0 4.5rem;
}

.section-title.text-start::before {
    display: block;
}

.section-title.text-start::after {
    display: none;
}

.section-title.text-end {
    padding: 0 4.5rem 0 0;
}

.section-title.text-end::before {
    display: none;
}

.section-title.text-end::after {
    display: block;
}

.section-heading {
    font-size: clamp(2rem, 3.5vw, 2.85rem);
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0 !important;
}

.carousel-caption .section-title,
.bg-dark .section-title.text-white {
    padding: 0;
    font-size: 1rem;
    letter-spacing: 2px;
}

.carousel-caption .section-title::before,
.carousel-caption .section-title::after,
.bg-dark .section-title.text-white::before,
.bg-dark .section-title.text-white::after {
    display: none;
}

/*** Page promo strip ***/
.page-promo-strip {
    background: var(--dark);
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.page-promo-strip-frame,
.page-promo-strip-link {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    line-height: 0;
}

.page-promo-strip-link {
    transition: transform .3s ease, box-shadow .3s ease;
}

.page-promo-strip-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(254, 161, 22, .25);
}

.page-promo-strip img {
    display: block;
    width: 100%;
    max-height: 140px;
    object-fit: cover;
    border-radius: 12px;
}

@media (max-width: 767.98px) {
    .page-promo-strip {
        padding: 1rem 0;
    }

    .page-promo-strip img {
        max-height: 110px;
    }
}

/*** Section promo banner (legacy) ***/
.section-promo-banner {
    padding: 3.5rem 0;
    background: var(--dark);
}

.section-promo-banner-frame {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
    background: #f3f4f6;
}

.section-promo-banner-frame img {
    display: block;
    width: 100%;
    height: auto;
}


/*** Service ***/
.service-item {
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF !important;
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Testimonials ***/
.testimonials-section {
    background: #f8fafc;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 43, .06);
    transition: transform .3s ease, box-shadow .3s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(254, 161, 22, .12);
}

.testimonial-card-quote {
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: .9;
}

.testimonial-card-text {
    flex: 1;
    margin-bottom: 1.25rem;
    color: #475569;
    line-height: 1.75;
    font-size: .92rem;
}

.testimonial-card-author {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding-top: 1rem;
    border-top: 1px solid #eef2f7;
    margin-top: auto;
}

.testimonial-card-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(254, 161, 22, .25);
}

.testimonial-card-avatar--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #ffb84d);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-card-meta h6 {
    font-weight: 700;
    color: var(--dark);
    font-size: .9rem;
    margin: 0 0 .15rem;
}

.testimonial-card-meta small {
    display: block;
    color: #64748b;
    font-size: .8rem;
    line-height: 1.4;
}

@media (max-width: 767.98px) {
    .testimonial-card {
        padding: 1.25rem;
    }
}


/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}

.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;
}


/*** Layout ***/
.site-wrapper {
    width: 100%;
    max-width: 100%;
}

.container-xxl > .container {
    max-width: 100%;
}

@media (min-width: 1200px) {
    .container-xxl {
        max-width: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .container-xxl > .container {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/*** Apply Wizard ***/
.apply-wizard {
    max-width: 860px;
    margin: 0 auto;
}

.apply-wizard-intro h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.apply-wizard-alert {
    max-width: 860px;
    margin: 0 auto 1.5rem;
}

.apply-step-nav {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.apply-step-nav-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    width: 108px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: .3s;
}

.apply-step-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #94a3b8;
    box-shadow: 0 8px 24px rgba(15, 23, 43, .08);
    border: 2px solid #e2e8f0;
    transition: .3s;
}

.apply-step-icon svg {
    width: 34px;
    height: 34px;
}

.apply-step-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
    text-align: center;
    line-height: 1.35;
    max-width: 100px;
}

.apply-step-nav-item.is-active .apply-step-icon {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(254, 161, 22, .35);
}

.apply-step-nav-item.is-active .apply-step-label {
    color: var(--dark);
}

.apply-step-nav-item.is-done .apply-step-icon {
    background: #fff;
    color: var(--primary);
    border-color: var(--primary);
}

.apply-step-nav-item.is-done .apply-step-label {
    color: var(--dark);
}

.apply-step-nav-item.is-locked {
    opacity: 0.45;
    cursor: not-allowed;
}

.apply-step-nav-item.is-locked .apply-step-icon {
    background: #f8fafc;
}

.apply-step-connector {
    width: 42px;
    height: 2px;
    background: #e2e8f0;
    margin-top: 34px;
    flex-shrink: 0;
    transition: .3s;
}

.apply-step-connector.is-done {
    background: var(--primary);
}

.apply-wizard-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(15, 23, 43, .1);
    overflow: hidden;
}

.apply-step-pane {
    display: none;
    padding: 1.75rem 1.75rem 1.5rem;
}

.apply-step-pane.is-active {
    display: block;
}

.apply-step-pane-head {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eef2f7;
}

.apply-step-pane-head h4 {
    margin-bottom: 0.35rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
}

.apply-step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid #eef2f7;
}

.apply-ack-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.25rem;
}

@media (max-width: 991.98px) {
    .apply-step-nav-item {
        width: 88px;
    }

    .apply-step-icon {
        width: 58px;
        height: 58px;
        border-radius: 14px;
    }

    .apply-step-icon svg {
        width: 28px;
        height: 28px;
    }

    .apply-step-label {
        font-size: 0.7rem;
        max-width: 84px;
    }

    .apply-step-connector {
        width: 20px;
        margin-top: 29px;
    }
}

@media (max-width: 767.98px) {
    .apply-step-nav {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .apply-step-connector {
        display: none;
    }

    .apply-step-nav-item {
        width: 100%;
    }

    .apply-step-pane {
        padding: 1.25rem;
    }

    .apply-step-actions {
        flex-direction: column-reverse;
    }

    .apply-step-actions .btn {
        width: 100%;
    }
}

/*** Careers ***/
.job-content-ltr {
    direction: ltr;
    text-align: left;
}

html[dir="rtl"] .job-content-ltr {
    text-align: left !important;
}

html[dir="rtl"] .job-content-ltr .text-start {
    text-align: left !important;
}

.career-show-row {
    align-items: flex-start;
}

.career-apply-sidebar {
    align-self: flex-start;
    width: 100%;
}

.career-job-card {
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    overflow: hidden;
    height: auto;
}

.career-job-card-image {
    display: block;
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.career-job-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.career-job-card-body h5 {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
}

.career-job-card-actions {
    margin-top: 1rem;
}

.job-content-ltr h5.text-primary {
    text-align: left;
}

/*** Footer ***/
.footer {
    position: relative;
    margin-top: 0;
    padding-top: 5rem;
}

/*** Footer ***/
.footer-brand-logo {
    max-height: 64px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
}

.footer-brand-block {
    padding: 0 .5rem;
}

.footer-brand-block p {
    line-height: 1.8;
    opacity: .9;
}

.footer-visitor-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .75rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
}

.footer-visitor-label {
    color: rgba(255, 255, 255, .75);
    font-size: .9rem;
}

.footer-visitor-count {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .02em;
}

.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;
}