/********** Template CSS **********/
:root {
    --primary: #B78D65;
    --light: #F8F8F8;
    --dark: #252525;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    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;
    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;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

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

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

/* Logo ve firma adı stili */
.logo-brand {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.logo-brand img {
    height: 55px;
    width: auto;
    margin-right: 15px;
}

.logo-brand h1 {
    margin: 0;
    padding-top: 10px; /* Yazıyı aşağı çekmek için padding eklendi */
    color: #c0a05e;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-size: 44px; /* Yazı boyutu büyütüldü */
    line-height: 1;
}

@media (max-width: 576px) {
    .logo-brand img {
        height: 45px;
    }
    
    .logo-brand h1 {
        font-size: 28px;
        padding-top: 6px; /* Mobilde daha az padding */
    }
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
    
    /* Mobil görünümde sticky navbar düzeltmesi */
    .navbar.sticky-top {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
    }
    
    /* Navbar tam yükseklikte görünsün */
    #mainNavbar {
        height: auto;
    }
    
    /* Hamburger buton düzeltmesi */
    .navbar-toggler {
        float: right;
        margin-top: 10px;
        margin-right: 15px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

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

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

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


/* Kategori listesi - Tüm Ürünler butonu */
.category-list .list-group-item {
    border-radius: 6px !important;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.category-list .list-group-item.active {
    background-color: var(--primary);
    border-color: var(--primary);
}

.category-list .list-group-item:hover:not(.active) {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
}

/* Kategoriler sidebar */
.category-accordion {
    border-radius: 10px;
    overflow: hidden;
}

/* Ana kategori linki */
.category-main-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 1.3rem; /* Küçültülmüş font boyutu */
    border-right: 1px solid rgb(107, 22, 22);
    padding-top: 6px !important; /* Daha kompakt görünüm */
    padding-bottom: 6px !important;
}

.category-main-link:hover {
    color: var(--primary);
    background-color: rgba(var(--bs-primary-rgb), 0.05);
}

/* Accordion butonları */
.toggle-accordion {
    width: 36px !important; /* Küçültülmüş genişlik */
    min-width: 36px !important;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    background-color: transparent !important;
    border: none;
    font-size: 0.8rem; /* Küçültülmüş ok işareti */
}

.toggle-accordion:after {
    margin: 0;
    font-size: 0.8rem; /* Ok işaretini küçült */
}

.toggle-accordion.collapsed:after {
    transform: rotate(-90deg);
}

/* Accordion item padding ayarı */
.accordion-item {
    border: 1px solid rgba(0,0,0,.125);
    margin-bottom: 5px; /* Kategori grupları arasında boşluk */
}

/* Accordion body padding ayarı */
.accordion-body {
    padding: 0.5rem !important;
}

/* Kategori linkleri için genel stil */
.category-link {
    color: var(--dark);
    text-decoration: none;
    display: block;
    transition: all 0.3s;
    font-size: 0.9rem; /* Tüm kategori linklerini küçült */
}

.category-link:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Aktif kategori stilleri */
.category-link.active {
    color: var(--primary);
    font-weight: 500;
}

/* Alt kategori toggle düğmeleri */
.toggle-child-categories {
    color: var(--dark);
    background: transparent !important;
}

.toggle-child-categories:hover {
    color: var(--primary);
}

.toggle-child-categories .fa-chevron-down {
    transition: transform 0.3s;
    font-size: 0.7rem;
}

.toggle-child-categories[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

/* Alt kategori liste öğeleri için */
.list-group-item {
    padding: 0.4rem 0.75rem; /* Daha kompakt görünüm */
    font-size: 0.9rem;
}

/* Alt kategori listesi */
.sub-accordion .list-group-item {
    border: none;
    padding: 0.25rem 0.5rem;
}

/* En alt seviye kategoriler */
.sub-accordion .ps-4 {
    font-size: 0.9rem;
}

/* Sticky sidebar için scroll çubuğu stili */
.sticky-sidebar::-webkit-scrollbar {
    width: 5px;
}

.sticky-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.sticky-sidebar::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.sticky-sidebar::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/* =====================
   Diğer Stil Elemanları
===================== */

/* Pagination */
.pagination .page-link {
    color: var(--primary);
    border-color: var(--primary);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Ürün detay modal */
#productDetailModal .modal-content {
    border-radius: 10px;
    overflow: hidden;
}

#productDetailModal .carousel-item img {
    height: 300px;
    object-fit: contain;
}

/* =====================
   Responsive Ayarlamalar
===================== */

@media (max-width: 991.98px) {
    .sticky-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .product-card .card-img-top {
        height: 180px;
    }
}


/* Sayfalama için CSS Stilleri */
/* Sayfalama stilleri - Düzeltilmiş */
.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
    margin: 2rem 0;
    justify-content: center;
}

.pagination .page-item {
    margin: 0 3px; /* Sayfa numaraları arasında boşluk arttırıldı */
}

.pagination .page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    line-height: 1.25;
    color: var(--bs-primary); /* Bootstrap primary değişkeni kullanılıyor */
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    font-weight: 500; /* Sayfa numaralarını daha okunaklı yaptık */
}

.pagination .page-link:hover {
    z-index: 2;
    color: #fff;
    text-decoration: none;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.pagination .page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    /* Aktif sayfa numarasını daha belirgin yapmak için: */
    box-shadow: 0 0 10px rgba(1, 95, 201, 0.5);
    font-weight: 600;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}

.pagination .page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.pagination .page-item:last-child .page-link {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

/* Vintage-pagination için olan stilleri buraya alıyoruz */
.vintage-pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    justify-content: center;
    margin: 2rem 0;
}

.vintage-pagination .page-item {
    margin: 0 3px;
}

.vintage-pagination .page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    line-height: 1.25;
    color: var(--bs-primary);
    background-color: #fff;
    border: 1px solid var(--bs-primary);
    transition: all 0.3s ease;
    font-weight: 500;
}

.vintage-pagination .page-link:hover {
    color: #fff;
    background-color: var(--bs-primary);
}

.vintage-pagination .page-item.active .page-link {
    color: #fff;
    background-color: var(--bs-primary);
    box-shadow: 0 0 10px rgba(1, 95, 201, 0.5);
    font-weight: 600;
}

.vintage-pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: 0; /* z-index'i -1'den 0'a veya pozitif bir değere yükseltin */
}


/* Kampanya Resimleri İçin Özel Stil */
.campaign-image {
    /* Masaüstü ve daha büyük ekranlar için */
    max-height: 550px; /* İstediğiniz maksimum yüksekliği burada ayarlayın */
    object-fit: cover; /* Resmi, belirtilen boyuta sığacak şekilde kırpar */
    object-position: center; /* Resmi ortalar */
    width: 100%; /* Resmin genişliği hala %100 olsun */
    /* Resmin üstten ve alttan "daralmış" görünmesi için bu ayarlar idealdir.
       Eğer ekstra boşluk isterseniz, container'ın padding'ini veya margin'ini ayarlayabilirsiniz.
       Ama direkt resmi küçültmek daha temiz bir çözüm. */
}

/* Mobil görünüm için (örneğin 768px altı) */
@media (max-width: 768px) {
    .campaign-image {
        max-height: none; /* Mobil görünümde yüksekliği serbest bırakır */
        object-fit: unset; /* Mobil görünümde object-fit ayarını sıfırlar */
        /* Ya da tamamen kaldırabilirsiniz, tarayıcı varsayılanına döner */
        /* object-fit: initial; */
    }
}

/* Küçük tabletler ve mobil cihazlar için farklı bir breakpoint de kullanabilirsiniz,
   örneğin 576px altı için: */
@media (max-width: 576px) {
    .campaign-image {
        max-height: none;
        object-fit: unset;
    }
}


/* Ürün Kartları Stilleri */
.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #8B4513;
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-badge.sale {
    background: #DC2626;
}

.product-badge.new {
    background: #059669;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.product-info {
    padding: 25px;
}

.product-category {
    color: #A0522D;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #3E2723;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-description {
    color: #5D4037;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    height: 45px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.price-current {
    font-size: 24px;
    font-weight: 700;
    color: #8B4513;
}

.price-old {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.product-features {
    margin-bottom: 20px;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    font-size: 13px;
    color: #5D4037;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8B4513;
    font-weight: bold;
}

.product-buttons {
    display: flex;
    gap: 10px;
}

.btn-product {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary-product {
    background: #8B4513;
    color: white;
}

.btn-primary-product:hover {
    background: #5D4037;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-product {
    background: transparent;
    color: #8B4513;
    border: 2px solid #8B4513;
}

.btn-outline-product:hover {
    background: #8B4513;
    color: white;
    transform: translateY(-2px);
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    color: #FFA500;
    margin-right: 8px;
}

.rating-count {
    font-size: 12px;
    color: #999;
}

.installment-info {
    background: #F5F5DC;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.installment-info small {
    color: #8B4513;
    font-weight: 600;
}

/* Blog Kartları için Kahverengi Tema */
.blog-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-item:hover .blog-img img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #8B4513;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    color: #A0522D;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #3E2723;
}

.blog-title:hover {
    color: #6F4E37;
}

.blog-excerpt {
    color: #5D4037;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #D7CCC8;
}

.blog-author {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #5D4037;
}

.blog-author i {
    margin-right: 5px;
    color: #8D6E63;
}

.blog-read-more {
    color: #8B4513;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-read-more:hover {
    color: #5D4037;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .product-info {
        padding: 20px;
    }
    
    .product-title {
        font-size: 16px;
        height: auto;
    }
    
    .product-description {
        height: auto;
    }
    
    .product-buttons {
        flex-direction: column;
    }
    
    .btn-product {
        margin-bottom: 10px;
    }
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


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

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

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.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);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    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;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}