/********** Template CSS **********/
:root {
    --primary: #d8f500;
    --secondary: #0B2154;
    --light: #F2F2F2;
    --dark: #111111;
    --muted-foreground: hsl(240, 5%, 64.9%);
    --color-primary: #d8f500cd;
    --color-black: hsl(0, 0%, 10%);
    --color-darks: hsl(0, 0%, 20%);
    --color-greys: hsl(0, 0%, 80%);
    --color-light: hsl(0, 0%, 96%);
    --color-white: hsl(0, 0%, 100%);
    --color-blues: hsl(217, 91%, 60%);
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}


.fw-medium {
    font-weight: 600 !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;
    }


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}


.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;
}


/*** 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 rgba(255, 255, 255, 0.5);
    }

    .navbar-light .navbar-brand,
    .navbar-light a.btn {
        height: 55px !important;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    font-weight: 500;
}

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

@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 {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

        #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;
}

.page-header-inner {
    background: rgba(0, 0, 0, .7);
}

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


/*** Facts ***/
.fact {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-bg-3.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*** Service ***/
.service .nav .nav-link {
    background:;
    transition: .5s;
}

    .service .nav .nav-link.active {
        background: #87a800;
    }

        .service .nav .nav-link.active h4 {
            color: #FFFFFF !important;
        }


/*** Booking ***/
.booking {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-bg-2.jpg) center center no-repeat;
    background-size: cover;
}

.date {
    position: relative;
}

.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: 2px;
}

.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 .team-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    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)
    }

/*** List item ***/
.list-section-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .list-section-container {
        grid-template-columns: 1fr 3fr;
    }
}
.td-center {
    vertical-align: middle;
}

.filter {
    position: sticky;
    top: 6rem;
    background-color: #373833;
    border-radius: 6px;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    padding: 10px;
}

.input {
    background-color: #373833;
    border: 1px solid #f1f5f9;
    border-radius: 6px;
    color: #f1f5f9;
}

.input-group-text {
    border-radius: 6px;
    background-color: #373833;
    border: 1px solid #f1f5f9;
    color: white;
}

.types-filter {
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.ks-cboxtags {
    list-style: none;
    padding-left: 0.2rem;
}

    ul.ks-cboxtags li {
        display: inline;
    }

        ul.ks-cboxtags li label {
            display: inline-block;
            background-color: rgba(36, 36, 36, 0.9);
            border: 2px solid rgba(139, 139, 139, 0.3);
            color: #cacaca;
            border-radius: 25px;
            white-space: nowrap;
            margin: 3px 0px;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
            transition: all 0.2s;
        }

        ul.ks-cboxtags li label {
            padding: 2px 8px;
            cursor: pointer;
            font-size: 14px;
        }

            ul.ks-cboxtags li label::before {
                display: inline-block;
                font-style: normal;
                font-variant: normal;
                text-rendering: auto;
                -webkit-font-smoothing: antialiased;
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
                font-size: 12px;
                padding: 2px 4px 0px 0px;
                content: "\f067";
                transition: transform 0.3s ease-in-out;
            }

        ul.ks-cboxtags li input[type="checkbox"]:checked + label::before {
            content: "\f00c";
            transform: rotate(-360deg);
            transition: transform 0.3s ease-in-out;
        }

        ul.ks-cboxtags li input[type="checkbox"]:checked + label {
            border: 2px solid #1bfa02;
            background-color: #111111;
            color: #d8f500cd;
            transition: all 0.2s;
        }

        ul.ks-cboxtags li input[type="checkbox"] {
            display: absolute;
        }

        ul.ks-cboxtags li input[type="checkbox"] {
            position: absolute;
            opacity: 0;
        }

.price-filter {
    padding-left: 0.2rem;
}
/*select with search*/
.wrapper-column {
    background-color: #373833;
    box-shadow: var(--shadow-medium);
    border: 1px solid #f1f5f9;
    border-radius: 6px;
}

.form-arrow {
    position: absolute;
    top: 0.4rem;
    right: 0.5rem;
    z-index: 10;
    font-size: 1rem;
    line-height: inherit;
    color: var(--color-white);
}

.select-search {
    width: 100%;
}

    .select-search .dropdown {
        position: relative;
    }

    .select-search .dropdown-select {
        position: relative;
        font-family: inherit;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        cursor: pointer;
        user-select: none;
        width: 100%;
        height: auto;
        padding: .375rem .75rem;
        border: none;
        outline: none;
        border-radius: 6px;
        color: white;
        background-clip: padding-box;
        background-color: #373833;
        transition: all 0.3s ease-in-out;
    }

    .select-search .dropdown-menu {
        position: absolute;
        display: none;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 10;
        border-radius: 6px;
        border: 1px solid #f1f5f9;
        background-color: #373833;
        box-shadow: var(--shadow-large);
        transition: all 0.3s ease-in-out;
    }

    .select-search .dropdown-menu-inner {
        max-height: 16rem;
        overflow-y: scroll;
        overflow-x: hidden;
    }

        .select-search .dropdown-menu-inner::-webkit-scrollbar {
            width: 5px;
            height: auto;
        }

        .select-search .dropdown-menu-inner::-webkit-scrollbar-thumb {
            border-radius: 0.25rem;
            background-color: var(--color-greys);
            box-shadow: var(--shadow-small);
        }

    .select-search .dropdown-menu-item {
        font-family: inherit;
        font-size: 1rem;
        font-weight: normal;
        line-height: inherit;
        cursor: pointer;
        user-select: none;
        padding: 0.5rem 0.5rem;
        background-color: #373833;
        transition: all 0.2s ease-in-out;
        color: white;
    }

        .select-search .dropdown-menu-item:hover {
            color: var(--color-black);
            background-color: var(--color-greys);
        }

        .select-search .dropdown-menu-item.is-select, .select-search .dropdown-menu-item.is-select:hover {
            color: var(--color-white);
            background-color: #d8f500cd;
        }

    .select-search .dropdown-menu-search {
        display: block;
        font-family: inherit;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
        width: 100%;
        height: auto;
        padding: 0.4rem 0.4rem;
        border: none;
        outline: none;
        color: white;
        background-clip: padding-box;
        background-color: #5a5c54;
    }


/* list plates */
.gallery {
    width: 100%;
    overflow: hidden;
}

.gallery-slider {
    width: 100%;
    height: auto;
    margin: 0 0 10px 0;
}

    .gallery-slider .swiper-slide {
        width: auto;
    }

        .gallery-slider .swiper-slide img {
            display: block;
            width: auto;
            max-height: 500px;
            margin: 0 auto;
        }
@media only screen and (max-width: 600px) {
    .gallery-slider .swiper-slide img {

        width: 100%;
        height: auto;
    }
}
.gallery-thumbs {
    width: 100%;
    padding: 0;
    overflow: hidden;
}

    .gallery-thumbs .swiper-slide {
        width: 100px;
        height:50px;
        text-align: center;
        overflow: hidden;
        opacity: 0.1;
        cursor: pointer;
    }

    .gallery-thumbs .swiper-slide-active {
        opacity: 1;
    }

    .gallery-thumbs .swiper-slide img {
        width: auto;
        height: 100%;
    }

.vip-wrapper .inside {
    z-index: 11;
    background: rgba(90, 90, 90, 0.75);
    width: 64px;
    height: 56px;
    position: absolute;
    top: 0px;
    right: 0;
    border-radius: 0px 0px 200px 200px;
    transition: all 0.5s, border-radius 2s, top 1s;
    overflow: hidden;
}
.vip-wrapper .inside .icon {
  position: absolute;
  right: 22px;
  top: 15px;
  color: var(--color-primary);
  opacity: 1;
}
    .vip-wrapper .inside:hover {
        z-index: 11;
        width: 100%;
        right: 0;
        top: 0;
        border-radius: 0;
        height: 100%;
    }
@media only screen and (min-width: 600px) {
    .vip-wrapper .inside {
        top: 0;
        right: 30%;
    }
        .vip-wrapper .inside:hover {
            width: 40%;
            right: 30%;
        }
}

.vip-wrapper .inside:hover .icon {
  opacity: 0;
  right: 15px;
  top: 15px;
}
.vip-wrapper .inside:hover .contents {
  opacity: 1;
  transform: scale(1);
  transform: translateY(0);
}
.vip-wrapper .inside .contents {
  padding: 5%;
  opacity: 0;
  transform: scale(0.5);
  transform: translateY(-200%);
  transition: opacity 0.2s, transform 0.8s;
}
.vip-wrapper .inside .contents table {
  text-align: left;
  width: 100%;
}
.vip-wrapper .inside .contents h1, .vip-wrapper .inside .contents p, .vip-wrapper .inside .contents table {
  color: white;
}
.vip-wrapper .inside .contents p {
  font-size: 13px;
}

.plates-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.plates-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.plates-count {
    font-size: 0.875rem;
    font-weight: 400;
    margin-left: 0.5rem;
    color: var(--muted-foreground);
}

.sort-container {
    display: flex;
    align-items: center;
}

.sort-icon {
    margin-right: 0.5rem;
    color: var(--muted-foreground);
}

.sort-select {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border: 1px solid var(--muted-foreground);
    border-radius: 6px;
    font-size: 0.875rem;
    width: 180px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' color='white' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1rem;
    background-color: #373833;
    color: #FFFFFF;
}

@media only screen and (max-width: 768px) {
    .sort-select {
        width: 140px;
    }
}

.list-item-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .list-item-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1000px) {
    .list-item-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.item-containter {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.plate-card {
    background-color: #373833;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

    .plate-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.2);
        border-color: rgba(0, 0, 0, 0.2);
    }

.card-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0) 0%, rgba(212, 175, 55, 0.1) 10%, rgba(255, 255, 255, 0) 20%);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.plate-card:hover .card-shine {
    opacity: 1;
}

.plate-content {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-delete-icon {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    border: 1px solid black;
    border-radius: 6px;
    padding: 0.5rem;
    background-color: rgba(216, 0, 0, 0.7);
    z-index: 2;
    cursor: pointer;
    color: white;
}

.plate-display {
    width: 100%;
    padding: 1.2rem 1rem;
    margin-bottom: 0.3rem;
    background-color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .plate-display::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(to bottom right, transparent, var(--secondary));
        opacity: 0.5;
    }

.plate-number {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    position: relative;
    color: black;
    z-index: 1;
}

.category-badge {
    display: inline-block;
    padding: 0.15rem 0.65rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.category-vip {
    background-color: #FDF6E3;
    color: #B7950B;
    border: 1px solid #F9E79F;
}

.category-special {
    background-color: #852600;
    color: #f5c9b8;
    border: 1px solid #4a1500;
}

.category-regular {
    background-color: #424bc9;
    color: #babef5;
    border: 1px solid #081196;
}

.plate-price {
    font-weight: 700;
    margin: 0.5rem 0 0.25rem;
}

.plate-location {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.location-icon {
    margin-right: 0.25rem;
}

.plate-footer {
    padding: 1.5rem;
    padding-top: 0;
}

.view-detail-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.5;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    background-color: var(--primary);
    color: black;
    width: 100%;
    z-index: 2;
}
.pulse-button span {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 15px;
    top: 15px;
    color: #333;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    float: right;
}

    .pulse-button span:before {
        font-family: "Font Awesome 5 Free";
        content: "\f095";
        width: 15px;
        height: 15px;
        display: block;
        margin: 14px 10px;
        -webkit-animation: wiggle 2s infinite;
        -moz-animation: wiggle 2s infinite;
        animation: wiggle 2s infinite;
    }

.pulse-button i {
    font-size: 15px;
    margin: 0 auto;
    opacity: 0.5;
}

.pulse-button {
    color: #333;
    font-size: 25px;
    font-weight: bold;
    position: relative;
    width: 340px;
    padding: 0px 0px 0px 30px;
    line-height: 25px;
    text-align: left;
    height: 80px;
    border: none;
    box-shadow: 0 0 0 0 rgba(255, 232, 160, 0.7);
    border-radius: 40px;
    background-color: #fed03d;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

    .pulse-button:hover {
        -webkit-animation: none;
        -moz-animation: none;
        -ms-animation: none;
        animation: none;
    }

@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(255, 232, 160, 0);
    }
}

@-moz-keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(255, 232, 160, 0);
    }
}

@-ms-keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(255, 232, 160, 0);
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(255, 232, 160, 0);
    }
}


/* safari and chrome */
@-webkit-keyframes wiggle {
    0% {
        -webkit-transform: rotate(15deg);
    }

    50% {
        -webkit-transform: rotate(-15deg);
    }

    100% {
        -webkit-transform: rotate(15deg);
    }
}

/* firefox */
@-moz-keyframes wiggle {
    0% {
        -moz-transform: rotate(15deg);
    }

    50% {
        -moz-transform: rotate(-15deg);
    }

    100% {
        -moz-transform: rotate(15deg);
    }
}

/* anyone brave enough to implement the ideal method */
@keyframes wiggle {
    0% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(-15deg);
    }

    100% {
        transform: rotate(15deg);
    }
}
/*** Testimonial ***/
.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: black !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);
    }

/* Pagination */
.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.pagination-button {
    width: 2.5rem;
    height: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid rgba(255, 221, 0);
    background-color: transparent;
    color: white;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

    .pagination-button:hover:not(:disabled) {
        background-color: var(--color-secondary);
    }

    .pagination-button.active {
        background-color: var(--color-primary);
        color: white;
        border-color: var(--color-primary);
    }

    .pagination-button:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

/*** Footer ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/footer-bgr.jpg) center center no-repeat;
    background-size: cover;
    padding-bottom: 66px;
}

    .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;
        }

.call-btn {
    margin-bottom: -10px;
    margin-right: -10px;
    border: 1px solid var(--primary);
    border-radius: 6px;
}

.contact-icon-zalo {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
/* START collapse filter*/
.collapse-section {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

    .collapse-section.open {
        max-height: 1000px; 
    }

.toggle-header {
    cursor: pointer;
    user-select: none;
}

    .toggle-header i {
        transition: transform 0.3s ease;
    }

    .toggle-header.active i {
        transform: rotate(180deg);
    }

/* END collapse filter*/