/********** Template CSS **********/
:root {
    --primary: #D81324;
    --secondary: #519beb;
    --light: #F2F2F2;
    --dark: #949090;
}

html,body {
    font-family: 'Poppins', sans-serif !important;
    max-width: 100%;
    overflow-x: hidden; /* Ini akan memotong semua elemen yang keluar jalur */
    margin: 0;
    padding: 0;
}

/* Menambahkan Background Logo Samar */
body::before {
    content: "";
    background-image: url('img/logo1.png'); 
    background-repeat: no-repeat;
    background-position: center;
    
    /* UKURAN UNTUK DESKTOP (Komputer/Laptop) */
    background-size: 600px; 
    
    opacity: 0.07; 
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -1; 
    pointer-events: none;
}

/* --- PERBAIKAN UNTUK MODE MOBILE (HP) --- */
@media (max-width: 576px) {
    body::before {
        /* Kecilkan ukuran logo agar tidak memenuhi layar HP */
        background-size: 300px; 
        
        /* Opsional: turunkan opacity sedikit lagi jika dirasa masih terlalu jelas */
        opacity: 0.07; 
    }
}

/* Pastikan judul dan elemen lain juga mengikuti */
h1, h2, h3, h4, h5, h6, p, .navbar-brand, .nav-link {
    font-family: 'Poppins', sans-serif;
}
.fw-medium {
    font-weight: 500 !important;
}

section {
    padding: 80px 0;
}

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

/*** Navbar Global ***/
.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: var(--dark);
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
    font-weight: 500;
}

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

/* Pengaturan Logo Agar Tidak Penyet */
.img-logo-nav {
    width: 200px; /* Ukuran default desktop */
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

/* Tinggi Navbar Desktop */
.navbar-light .navbar-brand {
    height: 75px;
    display: flex;
    align-items: center;
}

/*** RESPONSIVE SETTINGS (Untuk HP & Tablet) ***/
@media (max-width: 991.98px) {
    .navbar-light .navbar-brand {
        height: 60px; /* Tinggi navbar mengecil di HP */
    }

    .img-logo-nav {
        width: 140px; /* Lebar logo mengecil di HP agar tidak kebesaran */
        max-height: 45px;
    }

    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 15px;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
        padding-bottom: 10px;
    }
}

/* Sticky Navbar */
.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

/* Dropdown Menu Desktop */
@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;
    }
}

.dm-blue {
    color: #4e93dd; /* Menyesuaikan warna merah template (text-primary) */
}

.dm-problem-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Ubuntu', sans-serif; /* Mengikuti font template Anda */
}

.dm-title {
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.dm-highlight {
    color: #D81324; /* Menyesuaikan warna merah template (text-primary) */
}

/* Container Utama */
.dm-problem-row {
    max-width: 1100px;
    margin: 0 auto;
}

/* Pengaturan Kolom */
.dm-column-wrapper {
    text-align: center;
    padding: 10px;
}

/* List agar tetap rata kiri di dalam kolom yang rata tengah */
.dm-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block; 
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.dm-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
}

/* Titik Merah */
.dm-list li::before {
    content: "•";
    color: #D81324;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* --- KODE KHUSUS MOBILE (INSPEK HP) --- */
@media (max-width: 767.98px) {
    .dm-title {
        font-size: 17px !important; /* Kecilkan judul di HP */
        padding: 0 15px;
    }
    
    .dm-column-wrapper {
        text-align: left !important; /* Di HP lebih rapi rata kiri */
        padding-left: 15% !important; /* Beri jarak sedikit dari pinggir */
    }

    .dm-list {
        display: block; /* Buat list memenuhi lebar layar */
    }
}

.dm-footer-text {
    
    color: #666;
}

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    
}

/* Pastikan container video tidak overflow di layar kecil */
.video-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    touch-action: pan-y; /* Membantu scroll lancar di HP */
}

.video-carousel .item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

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

/* Pengaturan khusus Mobile */
@media (max-width: 767px) {
    #header-carousel {
        /* Kunci tinggi minimal agar saat transisi slide tidak 'anjlok' ke bawah */
        min-height: 250px; 
        background-color: #eee; /* Warna cadangan saat gambar loading */
    }

    #header-carousel .carousel-item {
        /* Pastikan item tidak overflow */
        overflow: hidden;
    }

    #header-carousel .carousel-item img {
        position: relative;
        width: 100%;
        /* Gunakan cover agar gambar memenuhi area dan tidak menyisakan ruang kosong */
        height: auto; 
        object-fit: cover; 
        /* Penting: hapus display none jika ada di level img secara paksa */
        display: block !important;
    }
}

/* Sisanya tetap sama */
.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Batasi lebar agar tidak melar di monitor besar */
.section-about {
    max-width: 1140px;
    margin: 0 auto;
}

/* Judul Utama */
.display-header {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0d1b3e;
}

/* Gambar & Shadow */
.shadow-image {
    filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.15));
}

/* Badge Nomor */
.number-badge {
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    color: #D81324;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #eee;
    font-size: 0.9rem;
}

.leading-relaxed {
    line-height: 1.6;
    font-size: 0.95rem;
}

/* PENYESUAIAN KHUSUS MOBILE */
@media (max-width: 768px) {
    .section-about {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .display-header {
        font-size: 1.3rem;
        text-align: center; /* Judul di tengah saat mobile */
    }

    .display-he{
        text-align: center;
    }

    
    .section-about .col-md-8 {
        margin-bottom: 25px; /* Memberi jarak bawah gambar agar tidak nempel teks */
    }
}


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

/* Mengecilkan Lebar Keseluruhan */
.container-compact {
    max-width: 900px; /* Dikecilkan dari 1100px agar tidak melebar */
    margin: 0 auto;
}

/* Judul Header Dikecilkan */
.title-top-small {
    color: #D81324;
    font-weight: 800;
    font-size: 1rem; /* Kecilkan judul atas */
    margin-bottom: 0;
}
.title-main-compact {
    font-weight: 800;
    font-size: 1.8rem; /* Kecilkan judul utama */
    letter-spacing: -0.5px;
    margin-bottom: 5px;
}
.title-sub-small {
    font-size: 0.9rem;
    color: #666;
}
.title-sub-small span {
    color: #D81324;
    font-weight: 700;
}

/* Card Ramping */
.promo-card-visual {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.2s;
}

.promo-header {
    background: #323a52;
    color: #fff;
    text-align: center;
    padding: 6px; /* Padding lebih tipis */
    font-weight: 700;
    font-size: 0.75rem; /* Font header kecil */
    text-transform: uppercase;
}

/* Tinggi Gambar Disesuaikan Agar Tidak Raksasa */
.promo-image-wrap {
    width: 100%;
    height: 250px; /* Diturunkan dari 380px agar lebih proporsional */
    overflow: hidden;
    background: #f8f8f8;
}

.promo-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-footer {
    padding: 10px; /* Padding tipis */
    text-align: center;
}

.promo-footer h5 {
    font-weight: 800;
    font-size: 0.95rem; /* Font harga lebih kecil */
    margin: 0;
}

/* --- OPTIMASI MOBILE (HP) --- */
@media (max-width: 576px) {
    /* Menampilkan 2 kartu per baris di HP agar tidak terlalu panjang ke bawah */
    .custom-row-compact .col {
        width: 50%;
    }

    .title-main-compact {
        font-size: 1.4rem;
    }

    .promo-image-wrap {
        height: 180px; /* Sangat ramping di HP */
    }

    .promo-footer h5 {
        font-size: 0.85rem;
    }
}

.radius-img-wrapper {
    position: relative;
    height: 320px;
    background-color: #f8f9fa;
}

.overlay-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(216, 19, 36, 0.9);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.alert-custom {
    padding: 12px 15px;
    border-radius: 12px;
    font-size: 0.85rem;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 576px) {
    .radius-img-wrapper { height: 220px; }
}

/* Styling Emergency Card */
.emergency-card {
    border-left: 10px solid #e62e2d;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.emergency-watermark {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.05);
    transform: rotate(-15deg);
    pointer-events: none;
}

/* Button Emergency Animation */
.btn-emergency {
    background: #25d366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-flex;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-emergency:hover {
    background: #128c7e;
    transform: translateY(-5px);
    color: white;
    box-shadow: 0 15px 25px rgba(38, 131, 72, 0.4);
}

.btn-emergency .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

/* Utility Square */
.btn-sm-square {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.z-index-1 {
    z-index: 1;
}


/* Footer Custom Styling */
.footer-custom {
    background-color: #ffffff;
    border-top: 1px solid #eee;
    color: #333;
    font-family: 'poppins', sans-serif;
}

.footer-logo .tagline {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-top: 5px;
    display: block;
}

.footer-logo .tagline strong {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 4px;
}

.description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    text-align: justify;
}

.section-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a2a4e; /* Warna gelap khas header */
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #D81324;
}

.award-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.copyright-text {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
}

/* Penyesuaian Responsif */
@media (max-width: 991.98px) {
    .copyright-text {
        text-align: center !important;
        margin-top: 30px;
    }
}

/* Penyesuaian Ukuran Container agar Elemen lebih "Napas" */
.custom-container-spare {
    max-width: 1140px;
}

.sparepart-section {
    font-family: 'Poppins', sans-serif;
    padding: 60px 0;
}

/* Badge Kecil */
.badge-promo {
    background-color: #D81324;
    color: white;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 1px;
}

/* Judul (Dibuat Lebih Besar & Tegas) */
.spare-title {
    font-size: 2.4rem; /* Diperbesar */
    line-height: 1.1;
    color: #0d1b3e;
    letter-spacing: -1px;
}

/* Deskripsi */
.spare-description p {
    font-size: 1.05rem; /* Diperbesar agar nyaman dibaca */
    line-height: 1.7;
    text-align: justify;
}

/* Visual Card di Kanan */
.sparepart-visual-card {
    position: relative;
    padding: 10px;
}

.spare-main-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    width: 100%;
    max-width: 450px; /* Ukuran gambar yang ideal */
    transition: transform 0.4s ease;
}

.sparepart-visual-card:hover .spare-main-img {
    transform: scale(1.02);
}

/* Badge Merah Melayang (Meniru gaya Dokter Mobil) */
.badge-new-floating {
    position: absolute;
    top: -10px;
    right: 10%;
    background: #D81324;
    color: white;
    padding: 10px 25px;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(216, 19, 36, 0.4);
    z-index: 5;
    transform: rotate(2deg); /* Sedikit miring agar unik */
}

/* Responsif untuk HP */
@media (max-width: 991px) {
    .spare-title {
        font-size: 1.8rem;
        text-align: center;
    }
    .spare-description p {
        
        font-size: 1rem;
    }
    .badge-new-floating {
        font-size: 0.9rem;
        padding: 8px 15px;
        right: 50%;
        transform: translateX(50%) rotate(0);
        top: -15px;
    }
    .sparepart-content {
        text-align: center;
    }
}



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

.service .nav .nav-link.active {
    background: var(--primary);
}

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

/* Footer Custom Styling */
.footer-custom {
    background-color: #ffffff;
    border-top: 1px solid #eee;
    color: #333;
    font-family: 'poppins', sans-serif;
}

.footer-logo .tagline {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-top: 5px;
    display: block;
}

.footer-logo .tagline strong {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 4px;
}

.description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    text-align: justify;
}

.section-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a2a4e; /* Warna gelap khas header */
}

.section-title,
.dm-title {
    text-align: center;
    margin-bottom: 20px;
    
}


.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #D81324;
}

.award-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.copyright-text {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
}

.footer-links li a,
.footer-link-list li a {
    line-height: 1.6;
}

/* Penyesuaian Responsif */
@media (max-width: 991.98px) {
    .copyright-text {
        text-align: center !important;
        margin-top: 30px;
    }
}

.footer-custom {
    background-color: #ffffff;
    border-top: 1px solid #f1f1f1;
    padding-top: 20px;
}

.footer-links li a:hover {
    color: #D81324 !important; /* Warna merah saat di-hover */
    padding-left: 5px;
    transition: 0.3s;
}

.copyright-text h5 {
    font-size: 1.1rem;
    margin: 0;
}

/* CSS untuk merapikan Link Footer */
.footer-link-list li {
    margin-bottom: 15px;
}

.footer-link-list li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-link-list li a:hover {
    color: #D81324;
    padding-left: 5px;
}

/* Memastikan gambar award tetap proporsional */
.awards img {
    max-width: 100%;
    object-fit: contain;
}

/* Mengatur ukuran teks Copyright */
.copyright-area h5 {
    font-size: 1.2rem;
    color: #000;
}


.tips-section {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
}

.section-title {
    font-size: 1.6rem; /* Ukuran disesuaikan agar pas dengan lebar video */
    line-height: 1.3;
    text-align: left;
}

/* --- KIRI: VIDEO SLIDER --- */
.video-slider-wrapper {
    position: relative;
    max-width: 100%;
}

.video-carousel {
    border-radius: 12px;
    overflow: hidden;
}

/* Navigasi Custom */
.nav-custom-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.nav-custom-btn:hover {
    background: #D81324;
    color: white;
}

.prev-tips { left: -17px; }
.next-tips { right: -17px; }

/* --- KANAN: PROFILE --- */
.profile-card-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    max-width: 360px;
    margin-bottom: 5px; /* Sedikit offset agar sejajar bawah dengan slider */
}

.profile-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.profile-floating-info {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 8px 15px;
    border-radius: 10px;
    width: 85%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 991px) {
    .section-title { text-align: center; }
    .tips-header { text-align: center; }
    .profile-card-wrapper { margin: 30px auto 0; }
}

/* Container Utama */
.custom-row-tight {
    max-width: 1050px; 
    margin: 0 auto !important;
}

.inspection-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.inspection-card:hover {
    transform: translateY(-5px);
}

.border-danger-top {
    border-top: 5px solid #D81324;
}

/* Gambar Desktop */
.inspection-img-wrapper {
    width: 100%;
    height: 230px; 
    overflow: hidden;
}

.inspection-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Desktop tetap cover agar seragam */
}

/* List Poin */
.check-list-points {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.check-list-points li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 6px;
    font-size: 0.85rem;
    color: #444;
    font-weight: 500;
    line-height: 1.4;
}

.check-list-points li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: #D81324;
    font-weight: bold;
}

/* --- PERBAIKAN KHUSUS MOBILE --- */
@media (max-width: 576px) {
    .inspection-section h2 {
        font-size: 1.8rem !important;
    }

    .inspection-img-wrapper {
        /* KUNCI PERBAIKAN: */
        height: auto; 
        aspect-ratio: 16 / 13; /* Menjaga bentuk tetap panjang (landscape) */
    }

    .inspection-img-wrapper img {
        /* Memastikan gambar tampil penuh tanpa memotong bagian samping */
        object-fit: cover; 
        width: 100%;
        height: 100%;
    }

    .inspection-card .p-3 {
        padding: 20px 15px !important;
    }

    .check-list-points li {
        font-size: 0.8rem;
    }
}



.header-container {
    text-align: center;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif; /* Pastikan font ini terpasang */
}

.title-top {
    color: #D81324; /* Merah Dokter Mobil */
    font-weight: 1000;
    font-size: 2.5rem;
    margin-bottom: 5px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.title-main {
    color: #000000;
    font-weight: 600;
    font-size: 2.6rem;
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.title-sub {
    color: #333;
    font-size: 1rem;
    font-weight: 200;
}

.title-sub span {
    color: #D81324;
    font-weight: 700;
}

/* Responsif untuk layar HP */
@media (max-width: 768px) {
    .title-top {
        font-size: 1.8rem;
    }
    .title-main {
        font-size: 2.2rem;
        
    }
    .title-sub {
        font-size: 1.1rem;
    }
}

/*** 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: #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, .9), rgba(0, 0, 0, .9)), url(../img/carousel-bg-1.jpg) center center no-repeat;
    background-size: cover;
}

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