@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

@font-face {
    font-family: myFirstFont;
    src: url(../font/custom.ttf);
}

@font-face {
    font-family: mySecondFont;
    src: url(../mon.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: myFirstFont; */
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
}

p,
span {
    color: rgb(63, 63, 63);
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5{
    font-weight: 400;
}

/* btn */
.theme-btn {
    background: #f1f1f1;
    color: #000;
    font-size: 13px;
    padding: 8px 20px;
    margin: 0 10px;
}

.theme-btn:hover {
    color: #000;
}






/* Marquee */
.custom-marquee {
    height: 25px;
    width: 100%;
    background: #d0d0d0;
    overflow: hidden;
    position: relative;
}

.custom-marquee div {
    display: block;
    width: 200%;
    height: 30px;
    position: absolute;
    overflow: hidden;
    animation: marquee 25s linear infinite;
}

.custom-marquee span {
    width: 100%;
}

@keyframes marquee {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}





/* header */
.head {
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head .custom_dropdown{
    width: 25%;
}

.custom_dropdown .dropdown-item{
    font-size: 12px;
}

.head .custom_dropdown i{
    font-size: 23px;
}

.head .logo img{
    width: 600px;
}

.nav-sticky{
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    position: fixed;
    top: 0;
    width: 100%;
    animation: newNav 0.6s ease-in-out;
    background: #ffffff;
    backdrop-filter: blur(10px);
}

@-webkit-keyframes newNav{
    0%{
        top: -100px;
    }
    100%{
        top: 0;
    }
}

.custom-nav{
    display: flex;
    align-items: center;
    list-style: none;
    justify-content: end;
    width: 25%;
    margin-bottom: 0 !important;
}

.custom-nav li a{
    color: #3d3d3d;
    font-family: 400;
}

.custom-nav li a i{
    font-size: 20px;
}

.nav-sticky .custom-nav{
    margin-bottom: 0;
}

.dropdown-toggle{
    background: transparent;
    border: none;
    outline: none;
}

.dropdown:hover>.dropdown-menu {
    display: block;
}

.dropdown{
    margin-right: 10px;
}

.dropdown-toggle::after{
    display: none;
}

#list{
    display: none;
    color: #000;
    font-size: 22px;
}

.nav-sticky #list{
    color: #fff;
}









/* video */
.video video{
    width: 100%;
    height: 600px;
    object-fit: cover;
}





/* current_auction */
.current_auction{
    margin: 50px 0;
}

.current_auction h5{
    display: initial;
    background: #e9e9e9;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    color: #3d3d3d;
}

.current_auction p{
    font-size: 17px;
    margin-top: 15px;
}

/* flip-box */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 200px;
    perspective: 1000px;
    border-radius: 5px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front {
    color: black;
}

.flip-card-front img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.flip-card-back {
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.flip-card-back button {
    padding: 10px 20px !important;
    background: #dbdbdb !important;
    color: #00254d;
}















/* highlight_auction */
.highlight_auction{
    margin: 100px 0 50px 0;
}

.highlight_auction h5{
    display: initial;
    background: #e9e9e9;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    color: #3d3d3d;
}

.highlight_auction p{
    font-size: 17px;
    margin-top: 15px;
    text-align: center;
}

.highlight_swiper img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}








/* foolow */
.follow{
    background: #e9e9e9;
    padding: 20px 0;
}

.follow h4{
    font-size:30px;
    font-weight: 600;
    font-family: 'Mercury Display A', 'Mercury Display B', serif !important;
    margin-bottom: 0 !important;
}

.follow .socail i{
    font-size: 30px;
    margin: 0 5px;
    color: #000;
}

.follow .store img{
    width: 100px;
    object-fit: contain;
}











/* footer */
.footer{
    padding: 100px 0 60px 0;
}

.footer h2,
.footer h4{
    color: #313131;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 700 !important;
}

.footer p{
    color: #292929;
    font-weight: 300;
    margin-bottom: 40px;
    font-family: mySecondFont;
}

.footer img{
    width: 14px;
}

.links a,
.links span{
    margin: 10px 0;
    color: #292929;
    font-weight: 300;
    display: block;
    font-size: 15px;
}

.links a:hover{
    color: #000;
}

.down-f{
    background: #ffffff;
    padding-bottom: 5px;
    color: #c0c0c0;
}












/* image_section */
.image_section img{
    object-fit: contain;
}

.image_section a{
    font-size: 19px;
    color: #1b1b1b;
    font-weight: 300;
}

.image_section span{
    font-size: 19px;
    color: grey;
}













/* category_banner */
.category_banner img{
    width: 100%;
    object-fit: contain;
    height: 400px;
}

/* tab manu */
.tabs_section ul.tabs{
	margin: 0px;
	padding: 0px;
	list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabs_section ul.tabs li{
	background: #ededed;
	color: #222;
	display: inline-block;
	width: 210px;
    font-size: 17px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
	cursor: pointer;
}

.tabs_section ul.tabs li.current{
	color: #222;
    font-weight: 700;
}

.tabs_section .tab-content{
	display: none;
	padding: 15px;
}

.tabs_section .tab-content p{
    text-align: justify;
    font-family: Mercury Display A,Mercury Display B,MercuryDisplay,serif !important;
    font-size: 14px !important;
}

.tabs_section .tab-content.current{
	display: inherit;
}



/* product Card */
.product_card{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px 0;
    margin-bottom: 15px;
}

.product_card img{
    width: 100%;
    height: 300px;
    padding: 30px 0;
    object-fit: contain;
}

.product_card h4{
    font-size: 18px;
    text-align: center;
}

.product_card .product_detail{
    padding: 0 15px;
}

.product_card h5{
    font-size: 16px;
    text-align: center;
}

.product_card button{
    width: 100%;
    border-radius: 0 !important;
    text-align: center;
    padding: 9px 0;
    margin-top: 10px;
    border: 1px solid #000;
}

.product_card button:hover{
    background: #f0f0f0c5;
}

.product_card button a{
    color: #000;
    font-weight: 700;
}


















/* Product Detail */
.image_slide{
    height: 500px;
    overflow-y: scroll;
}

.image_slide::-webkit-scrollbar {
    width: 4px;
    padding: 0 1px;
    background: rgb(236, 236, 236);
}

.image_slide::-webkit-scrollbar-thumb {
    background: #b9b9b9;
    border-radius: 5px;
    width: 3px;
}

.image_slide img{
    width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
    cursor: pointer;
}

.main_image_detail{
    width: 100%;
    height: 500px;
    object-fit: contain;
}

.detail_side h6{
    font-size: 20px;
    border-bottom: 2px solid rgb(199, 199, 199);
    padding-bottom: 5px;
}

.detail_side p{
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 0 !important;
}

.detail_side h4{
    margin: 40px 0 20px 0;
}

.place_bid{
    width: 100%;
    position: relative;
    display: flex;
    margin-top: 20px;
}

.place_bid input{
    width: 70%;
    height: 50px;
    border: 1px solid grey;
    border-radius: 4px;
    outline: none;
    border-bottom-right-radius: 0 !important;
    border-top-right-radius: 0 !important;
    padding: 10px;
}

.place_bid button{
    width: 30%;
    height: 50px;
    background: #000;
    color: #fff;
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
}

.place_bid button:hover{
    background: #f1f1f1;
    color: #000;
}

.detailed_button {
    display: initial;
    background: #e9e9e9;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    color: #3d3d3d;
}

















/* faq */
.wp-block-yoast-faq-block .schema-faq-section{
    border: 2px solid #e9e9e9;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.schema-faq-question {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 30px 65px 30px 20px;
    font-weight: 200 !important;
    font-size: 20px;
}

.schema-faq-question:after {
    position: absolute;
    content: "+";
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid #335548;
    line-height: 1;
    border-radius: 50%;
    font-size: 25px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #335548;
}

.schema-faq-section.active .schema-faq-question:after {
    content: "-";
    align-items: normal;
    font-size: 30px;
    line-height: 17px;
}

.schema-faq-question:hover{
    background: #eee;
    border-radius: 8px;
}

.schema-faq-section.active .schema-faq-question{
  background: #eee;
  border-radius: 0;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.schema-faq-answer {
    display: none;
    margin: 20px 0 20px;
    padding: 0 20px;
}

.schema-faq-answer span{
    display:block;
}

.faq p{
    text-align:justify;
    font-size: 14px;
}




















/* signin */
.signin{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.signin_form{
    backdrop-filter: blur(10px);
    background: #f1f1f1bb;
    padding: 50px 20px;
    border-radius: 10px;
}

.signin_form h3{
    text-align: center;
    font-size: 30px;
    padding-bottom: 30px;
}

.signin_form label{
    display: block;
    color: #1b1b1b;
}

.signin_form input[type=text],
.signin_form input[type=email],
.signin_form input[type=password],
.signin_form input[type=date],
.signin_form select{
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #302f2f;
    outline: none;
    background: #ffffff00;
}

.signin_form input[type=text]::placeholder,
.signin_form input[type=email]::placeholder,
.signin_form input[type=password]::placeholder,
.signin_form input[type=date]::placeholder{
    color: #302f2f;
}

.signin_form a{
    color: #1b1b1b;
}

.signin img{
    width: 100%;
    object-fit: contain;
    height: 80px;
    margin-bottom: 15px;
}

.signin_form button{
    background: #000;
    color: #fff;
    padding: 13px 0;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
}

.signin_form button:hover{
    color: #fff;
}















/* signup */
.signup{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    /* background: url(../images/login.jpg) no-repeat; */
    background-size: cover;
    background-position: center;
}

.signup_form{
    backdrop-filter: blur(10px);
    background: #eeeeeebb;
    padding: 50px 20px;
    border-radius: 10px;
}

.signup_form h3{
    text-align: center;
    font-size: 30px;
    padding-bottom: 30px;
}

.signup_form label{
    display: block;
    color: #1b1b1b;
}

.signup_form input[type=text],
.signup_form input[type=email],
.signup_form input[type=password],
.signup_form input[type=date],
.signup_form select{
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #302f2f;
    outline: none;
    background: #ffffff00;
}

.signup_form input[type=text]::placeholder,
.signup_form input[type=email]::placeholder,
.signup_form input[type=password]::placeholder,
.signup_form input[type=date]::placeholder{
    color: #302f2f;
}

.signup_form a{
    color: #1b1b1b;
}

.signup img{
    width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.signup_form button{
    background: #000;
    color: #fff;
    padding: 13px 0;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
}

.signup_form button:hover{
    color: #fff;
}

















/* contact */
.contact_side_left{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 25px;
}

.contact_side_left a{
    color: #000;
}

.contact_side_right{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 25px;
}

.contact_side_right input,
.contact_side_right textarea{
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid rgb(216, 216, 216);
    outline: none;
    background: rgb(243, 243, 243);
}

.subscribeModel{
    text-align: center;
    padding: 60px 0;
}

.subscribeModel h5{
    font-size: 18px;
    margin-bottom: 4px;
}

.subscribeModel h2{
    font-size: 50px;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    margin-bottom: 0 !important;
}

.subscribeModel h6{
    font-size: 16px;
}

.subscribeModel input{
    background: transparent;
    border: 0;
    border-bottom: 2px solid #000;
    outline: none;
    text-align: center;
    width: 80%;
    margin: 20px auto;
}

.subscribeModel button{
    background: #000;
    width: 100%;
    margin: 10px auto;
    color: #fff;
    padding: 14px 0;
}

.subscribeModel button:hover{
    color: #fff;
}


.buttonLoader {
    width: 40px;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
      radial-gradient(farthest-side,#c79e52 94%,#0000) top/8px 8px no-repeat,
      conic-gradient(#0000 30%,#c79e52);
    -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
    animation: l13 1s infinite linear;
  }
  @keyframes l13{
    100%{transform: rotate(1turn)}
  }
