﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

.top-links {
    font-size: 14px;
}

.search-box {
    position: relative;
}

    .search-box input {
        padding-right: 40px;
    }

    .search-box button {
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        border: none;
        background: none;
    }



.live-card {
    background: #f2f2f2;
    padding: 15px;
    border-radius: 6px;
    height: 100%;
}

.live-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.watch-link {
    font-size: 13px;
    color: #7a2ea6;
    font-weight: 600;
    text-decoration: none;
}

    .watch-link:hover {
        text-decoration: underline;
    }

.auction-card {
    background: #f3f3f3;
    padding: 18px;
    border-radius: 6px;
    height: 100%;
}

.auction-title {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.auction-date {
    font-size: 13px;
    color: #444;
    margin-bottom: 12px;
}

.auction-img {
    margin-bottom: 12px;
}

.coming {
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
}

.open {
    font-size: 12px;
    font-weight: 600;
}

.auction-link {
    color: #7a2ea6;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

    .auction-link:hover {
        text-decoration: underline;
    }

.card img {
    height: 220px;
    object-fit: cover;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: black;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.carousel-control-prev {
    left: -60px;
}

.carousel-control-next {
    right: -60px;
}

#carouselExampleDark img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Tablet */
@media (max-width:992px) {
    #carouselExampleDark img {
        height: 350px;
    }
}

/* Mobile */
@media (max-width:576px) {
    #carouselExampleDark img {
        height: auto;
    }
}

#carouselExampleDark {
    overflow: hidden;
}
/* only mobile slider arrow fix */
/* only mobile slider arrow */
@media (max-width:576px) {

.carousel-control-prev,
.carousel-control-next{
    width:auto;
    height:auto;
    background:none;
    
}

.carousel-control-prev{
    left:15px;
}

.carousel-control-next{
    right:15px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:25px;
    height:25px;
    background-size:100% 100%;
}

}
.banner-img {
    position: relative;
    width: 100%;
}

    .banner-img img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        display: block;
    }

/* center content */
.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    color: #fff;
    max-width: 500px;
}

    .banner-content h1 {
        font-size: 48px;
        font-weight: 600;
    }

    .banner-content p {
        font-size: 18px;
        margin: 15px 0;
    }

/* Tablet */
@media (max-width:992px) {

    .banner-img img {
        height: 400px;
    }

    .banner-content h1 {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width:576px) {

    .banner-img img {
        height: 280px;
    }

    .banner-content h1 {
        font-size: 18px;
    }

    .banner-content p {
        font-size: 12px;
    }
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: 0.5s;
}

.slide {
    min-width: 33.33%;
    padding: 10px;
}

    .slide img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 6px;
    }

/* arrows */

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 2;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* mobile */

@media (max-width:768px) {
    .slide {
        min-width: 100%;
    }
}
.navbar-toggler{
border:none;
outline:none;
}

.hamburger{
display:block;
width:25px;
height:3px;
background:black;
position:relative;
transition:0.3s;
}

.hamburger::before,
.hamburger::after{
content:'';
position:absolute;
width:25px;
height:3px;
background:black;
left:0;
transition:0.3s;
}

.hamburger::before{
top:-8px;
}

.hamburger::after{
top:8px;
}

/* animation */

.navbar-toggler.active .hamburger{
background:transparent;
}

.navbar-toggler.active .hamburger::before{
top:0;
transform:rotate(45deg);
}

.navbar-toggler.active .hamburger::after{
top:0;
transform:rotate(-45deg);
}

.footer-links li{
margin-bottom:8px;
}

.footer-links a{
text-decoration:none;
color:#000;
font-size:14px;
}

.footer-links a:hover{
text-decoration:underline;
}

.footer-social i{
font-size:20px;
margin-right:15px;
cursor:pointer;
}

.footer-social i:hover{
color:#6f42c1;
}

/* mobile fix */

@media (max-width:576px){

footer h2{
font-size:22px;
}

.footer-social{
margin-top:15px;
}

}