@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.min.css');
@import url('https://unpkg.com/aos@2.3.4/dist/aos.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

@font-face {
  font-family: 'Geometric';
  src: url('../fonts/geometric-231-reguler.ttf') format('truetype');
}

:root {
  --PageBackGround: #18191D;
  --white: #FFFFFF;
  --TextColor: rgba(255, 255, 255, 0.63);
  --Background: #1D1E22;
  --ButtonStroke: rgba(255, 255, 255, 0.1);
  --CardStrokeLight: rgba(255, 255, 255, 0.2);
  --CardStrokeGrey: #47464C;
  --TextFont: 'Manrope', sans-serif;
  --HeadingFont: 'Geometric', sans-serif;
}

/* ====== RESET ====== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--TextFont);
  line-height: 1.5;
  background-color: var(--PageBackGround);
  color: var(--TextColor);
  overflow-x: hidden;
}

/* ====== SCROLLBAR CUSTOMIZATION ====== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--Background);
  box-shadow: inset 0 0 1px var(--white);
}

::-webkit-scrollbar-thumb {
  background: var(--white);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--white);
}

/* ====== TYPOGRAPHY ====== */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--HeadingFont);
}

p {
  margin: 0;
  font-weight: 400;
  font-family: var(--TextFont);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

/* ====== BUTTONS & FORMS ====== */
button,
input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
  transition: all 0.3s ease;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/* ====== IMAGES & LISTS ====== */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ====== UTILITY CLASSES ====== */
.no-pad {
  padding: 0 !important;
}

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

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

/* ====== ACCESSIBILITY ====== */
:focus-visible {
  outline: 0px;
  outline-offset: 0px;
}

h2 {
  font-weight: 400;
  font-size: 75px;
  line-height: 91px;
  color: var(--white);
}

h1 {
  font-weight: 400;
  font-size: 95px;
  line-height: 103.3px;
  color: var(--white);
}

.t-btn {
  background-color: var(--Background);
  border: 3px solid var(--ButtonStroke);
  filter: drop-shadow(0 6px 13.18px black);
  box-shadow: inset 0 1.65px 3.3px 0 rgba(255, 255, 255, 0.3);
  padding: 18px 45px;
  transition: all 0.3s ease;
  color: #acacae !important;
  font-weight: 500;
  font-family: var(--TextFont);
  border-radius: 0;
  font-size: 25px;
}

.t-btn:hover {
  transition: all 0.3s ease;
  filter: drop-shadow(0 0px 0px black);
  color: var(--white);
}

footer .container-fluid {
  max-width: 1530px;
}

footer .col-lg-3 .text {
  max-width: 308px;
}

footer .col-lg-3:nth-child(2) .text {
  margin-left: 100px;
}

footer .col-lg-3:nth-child(3) .text {
  margin-left: 60px;
}

footer .col-lg-3:nth-child(4) .text {
  margin-left: auto;
}

footer .col-lg-3 .text h4 {
  font-size: 30px;
  color: var(--white);
  margin-bottom: 12px;
}

footer .col-lg-3 .text ul a {
  font-size: 16px;
  line-height: 50px;
  transition: all 0.3s ease;
}

footer .col-lg-3 .text ul a:hover {
  color: var(--white);
  transition: all 0.3s ease;
}

footer .col-lg-3 .text h3 {
  font-size: 35px;
  color: var(--white);
  margin-bottom: 18px;
}

footer .col-lg-3 .text p {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.8px;
}

footer .col-lg-3 .text.twoBoxAlign {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

footer ul.SocialLinks {
  display: flex;
  flex-direction: row;
  gap: 21px;
  margin-bottom: 32px;
  justify-content: center;
}

footer ul.SocialLinks a {
  line-height: unset;
  height: 53.33px;
  width: 53.33px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 20px !important;
  color: var(--white);
  background: rgba(255, 255, 255, 0.01);
  transition: all 0.3s ease;
}

footer ul.SocialLinks a:hover {
  transition: all 0.3s ease;
  background: black;
  transform: translateY(-10px);
}

.footerBottom ul {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  margin-top: 74px;
  align-items: center;
}

.childList {
    display: block !important;
}

.footerBottom ul li a {
  font-size: 16px;
  line-height: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: all 0.3s ease;
}

.footerBottom ul li i {
  font-size: 20px;
  color: var(--white);
  margin-right: 17px;
}

.footerBottom p {
  max-width: 1519px;
  margin: auto;
  text-align: center;
  font-size: 22px;
  line-height: 36px;
  letter-spacing: 0.88px;
  padding-bottom: 47px;
  padding-top: 42px;
}

footer .container-fluid.footerBottom {
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  max-width: 100%;
}

footer {
  padding-top: 107px;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}

.footerBottom ul li a:hover {
  transition: all 0.3s ease;
  color: var(--white);
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee 100s linear infinite;
}

.marquee-content span {
  display: inline-block;
  margin-right: 50px;
  vertical-align: middle;
}

.marquee-content img {
  height: auto;
  object-fit: contain;
  max-height: 85px;
  width: auto;
  vertical-align: middle;
}
header .col-lg-12{
    padding:0 !important;
}

header .row{
    margin:0 !important;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  50% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}

.HomeSection05 .row {
  align-items: center;
}

.HomeSection05 .container-fluid {
  max-width: 1500px;
}

.HomeSection05 .t-btn {
  margin-top: 80px;
  font-size: 26.36px;
  font-weight: 500;
  padding: 20px 95px;
}

.HomeSection05 {
  padding-bottom: 70px;
  padding-top: 70px;
}


header ul.menuBox {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: var(--Background);
  padding: 0 143px;
  gap: 40px;
  filter: drop-shadow(0px 0px 8px black);
  box-shadow: inset 0px 1.1px 2.3px 0 rgba(255, 255, 255, 0.3);
}

header {
  width: 100%;
  position: absolute;
  top: 45px;
  z-index: 999;
}

header .container-fluid {
  padding: 0;
}

header ul.menuBox a {
  color: var(--white);
  font-family: var(--TextFont);
  font-size: 18px;
  font-weight: 400;
  opacity: 0.6;
  transition: all 0.3s ease;
}

header ul.menuBox a:hover {
  transition: all 0.3s ease;
  opacity: 1;
}

header ul.menuBox .t-btn {
  opacity: 1;
  margin-top: -13px;
  margin-bottom: -13px;
}

section.HeroBanner .container-fluid {
  padding: 135px 146px 100px 129px;
}

.HeroBanner .imgBox img {
  max-width: 538px;
}

.HeroBanner .BannerLogo {
  margin-bottom: 75px;
  display: block;
  max-width: fit-content;
}

.HeroBanner p {
  font-size: 25px;
  line-height: 39.9px;
  margin: 39.6px 0 70px;
  max-width: 880px;
}

.HeroBanner .t-btn {
    font-size: 24px;
    line-height: 46px;
}

.HeroBanner .imgBox {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}

section.LogoMArquee .container-fluid {
  /*max-width: 1685px;*/
  padding: 70px 15px;
}

section.LogoMArquee .container-fluid img {
  filter: grayscale(1) contrast(0.5);
}

.HomeSection01 .container-fluid {
  padding: 100px 146px;
}

.cardFirstBorder {
  background: #141318;
  border: 3px solid #47464C;
  filter: drop-shadow(-22px 22px 30px black);
  padding: 10px;
}

.cardFirstBorder .cardsecondBorder {
  background: #1D1E22;
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 5.33px 5.33px 10.65px 0 black;
  filter: drop-shadow(0px 0px 10.65px black);
}

.ListCards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ListCards .WatchCard {
  min-height: 279px;
  display: flex;
  flex-direction: row;
}

.ListCards .WatchCard .Counter {
  min-height: 100%;
  width: 100%;
  max-width: 191px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ListCards .WatchCard .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding-left: 57px;
  position: relative;
}

.ListCards .WatchCard .text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-left: 4px solid rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 0 10.65px 0 black;
  filter: drop-shadow(0px 0px 10.65px black);
  width: 4px;
  background: rgba(255, 255, 255, 0.13);
}

.ListCards .WatchCard .text h3 {
  color: var(--white);
  font-size: 40px;
  letter-spacing: 0.8px;
}

.ListCards .WatchCard .text p {
  font-size: 25px;
  letter-spacing: 1.25px;
  line-height: 39.9px;
  max-width: 570px;
}

.ListCards .WatchCard .Counter span {
  height: 119px;
  background-color: #1D1E22 !important;
  width: 119px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid rgba(78, 78, 78, 0.1);
  box-shadow: inset 0 2.2px 4.5px 0 rgba(104, 104, 104, 0.3);
  filter: drop-shadow(-1px 6px 13.2px black);
  color: var(--white);
  font-size: 35.1px;
  font-weight: 500;
}

.mb-80 {
  margin-bottom: 80px;
}

.Homesection02 .container-fluid {
  padding: 70px 144px;
}

/*.Homesection02 .Grid33 {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(3, 1fr);*/
/*  gap: 44px;*/
/*}*/

.Homesection02 .Grid33 .cardFirstBorder {
    height: 100%;
}

.Homesection02 .Grid33 .imgBox img {
      width: 100%;
      height:100%;
  
}

.Homesection02 .Grid33 .imgBox{
    height:100%;
}

.Homesection02 .Grid33 .text {
  height: 100%;
  padding: 49px 50px 30px;
}

.twoBoxAlign {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.Homesection02 .Grid33 .text h3 {
  color: var(--white);
  font-size: 40px;
  letter-spacing: 5.2px;
}

.Homesection02 .Grid33 .text p {
  margin-top: 30px;
  color: var(--white);
  font-size: 25px;
  font-weight: 300;
  line-height: 42px;
  letter-spacing: 2px;
  margin-bottom: 55px;
}

.Homesection02 .Grid33 .cardFirstBorder:nth-child(3) .text p {
  letter-spacing: 0;
}

.Homesection02 .Grid33 .text .t-btn {
  width: 100%;
  font-size: 26.36px;
  padding: 20px 50px;
}

.HomeSection03 .container-fluid {
  max-width: 1360px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.HomeSection03 .text p {
  font-size: 30px;
  line-height: 55px;
}

.HomeSection03 .ABoutBox {
  margin: auto;
  max-width: 1091px;
  margin-top: 170px;
}

.HomeSection03 .ABoutBox p {
  margin-top: 55px;
  font-size: 39px;
  line-height: 60px;
  margin-bottom: 60px;
}

.HomeSection03 .ABoutBox .t-btn {
  font-size: 24.52px;
  padding: 19px 40px;
  line-height: 46px;
}

.HomeSection04 .container-fluid {
  padding: 100px 144px;
}

.HomeSection04 .text.cardsecondBorder {
  min-height: 386.86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 33.2px 18px 43.3px;
}

.HomeSection04 .text.cardsecondBorder h4 {
  color: var(--white);
  font-size: 25px;
  letter-spacing: 2.8px;
}

.HomeSection04 .text.cardsecondBorder p {
  color: var(--white);
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.SubBanner .container-fluid {
    max-width: 1140px;
    padding-top: 150px;
    padding-bottom: 40px;
    text-align: center;
}

.SubBanner .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 137px;
}

.ShopGrids .container-fluid {
    padding: 40px 130px 77px;
}

.ProductListingGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 81px;
}

.ProductListingGrid .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    padding: 57px 42px 47px;
    justify-content:space-between;
}

.ProductListingGrid .text img {
    margin-bottom: 26px;
    filter: drop-shadow(0px 6px 13.2px black);
    margin-left:20px !important;
}

.ProductListingGrid .text .infoBox p {
    font-size: 25px;
    color: var(--white);
    font-weight: 600;
    line-height: 45px;
}

.ProductListingGrid .text .infoBox p.ProductCode {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1.54px;
}

.ProductListingGrid .text .price {
    font-size: 25px;
    color: var(--white);
    font-weight: 600;
}

.ProductListingGrid .text .t-btn {
    width: 100%;
    font-family: var(--HeadingFont);
    font-size: 26.36px;
    font-weight: 400;
    line-height: 49.4px;
}

.ShopGrids .Bottomtext {
    text-align: center;
    margin-top: 170px;
}

.ShopGrids .Bottomtext p {
    font-size: 25px;
    line-height: 36px;
    letter-spacing: 0.2px;
}

.AboutUsSec .container-fluid {
    padding: 50px 130px 270px;
}

.AboutUsSec .text p {
    font-size: 30px;
    line-height: 45px;
    max-width: 995px;
}

.AboutUsSec .text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/*.AboutUsSec .imgBox img {
    filter: drop-shadow(-20px 20px 15px black);
}*/

.SubBanner .text p {
    font-size: 30px;
    margin-top: 30px;
}

.SelltradeSec .container-fluid {
    padding: 40px 130px 140px;
}

.SelltradeSec .leftContent .content {
       margin: 46px 0 40px;
    padding-left: 23px;
    max-width: 595px;
}

.SelltradeSec .leftContent .content h2 {
    line-height: 60px;
        font-size: 50px;
}

.SelltradeSec .leftContent .content ul {
    margin-top: 20px;
    list-style: inside;
    font-size: 25.5px;
    letter-spacing: 2.1px;
}


.SelltradeSec .ListCards .WatchCard .text {
    padding-top: 35px;
    padding-bottom: 38px;
    padding-right: 32px;
}

.SelltradeSec .ListCards .WatchCard .text .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.SelltradeSec .ListCards .WatchCard .text  ul {
    list-style: inside;
    font-size: 20px;
    letter-spacing: 1px;
}

.SelltradeSec .ListCards .WatchCard .Counter {
    align-items: flex-start;
    padding-top: 61px;
}

.SelltradeSec .ListCards .WatchCard .text p {
    max-width: 100%;
}

.SelltradeSec .ListCards .WatchCard {
    min-height: 242.5px;
}

.SelltradeSec .ButtonBox .t-btn {
    margin: auto;
    display: block;
    margin-top: 75px;
    max-width: fit-content;
    font-size: 24.52px;
    line-height: 46px;
}


.ConsignmentSec .leftContent .content {
    text-align: center;
    padding: 0;
    max-width: 100%;
    padding-bottom: 50px;
    position: relative;
    margin: 0;
    margin-top: 50px;
}

.ConsignmentSec .leftContent img {
    margin: auto;
    margin-bottom: 48px;
}

.ConsignmentSec .leftContent .content h3 {
    color: var(--white);
    font-size: 50px;
    line-height: 80px;
}

.ConsignmentSec .leftContent .content p {
    font-size: 30px;
    line-height: 45px;
    letter-spacing: 2.1px;
}

.ConsignmentSec .leftContent .content::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 80%;
    left: 50%;
    transform: translateX(-50% );
    filter: drop-shadow(0px 3px 11px black);
    height: 4px;
    background: #494A4D;
}

.ConsignmentSec .leftContent {
    padding-right: 65px;
        
}

.ConsignmentSec .ButtonBox {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.ConsignmentSec .ButtonBox .t-btn {
    margin: 0;
}

.ConsignmentSec .ButtonBox p {
    font-size: 30px;
    color: var(--white);
    letter-spacing: 0.6px;
}

.ConsignmentSec .ButtonBox span {
    max-width: 510px;
    text-align: center;
    color: var(--white);
    font-size: 20px;
    letter-spacing: 0.4px;
}

.ConsignmentSec .leftContent .content:nth-child(4)::after {
    content:none;
}

.WatchSubmitContactForm .container-fluid {
    padding: 50px 130px 170px;
}

.WatchSubmitContactForm form input, .WatchSubmitContactForm form textarea {
    background: #1D1E22;
    width: 100%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    padding: 10px 40px;
    box-shadow: inset 5.33px 5.33px 10.65px 0 black;
    filter: drop-shadow(0px 6px 13.18px black);
    color: var(--white);
    font-size: 30px;
    font-family: var(--HeadingFont);
    letter-spacing: 0.6px;
}

.ModalStyling .modal-header {
    border: 0;
    padding: 0;
}

.ModalStyling .modal-content {
    background: var(--Background);
    filter: drop-shadow(0 6px 13.18px black);
    box-shadow: inset 0 1.65px 3.3px 0 rgba(255, 255, 255, 0.3);
}

.ModalStyling .modal-header button.close {
    position: absolute;
    top: 8px;
    right: 15px;
    font-size: 40px;
    color: white;
    z-index:99;
}

.ModalStyling .modal-body {
    padding: 40px;
    text-align: center;
}

.ModalStyling .modal-body h3 {
    color: var(--white);
    text-align: center;
    font-size: 30px;
}

.ModalStyling .modal-body form {display: flex;flex-direction: column;align-items: flex-start;}

.ModalStyling .modal-body form input[type="email"] {
    background: #1D1E22;
    width: 100%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    box-shadow: inset 5.33px 5.33px 10.65px 0 black;
    filter: drop-shadow(0px 6px 13.18px black);
    color: var(--white);
    font-size: 16px;
    font-family: var(--HeadingFont);
    letter-spacing: 0.6px;
    margin: 30px 0;
}

.WatchSubmitContactForm form textarea{
    min-height:300px;
}

.WatchSubmitContactForm form {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.WatchSubmitContactForm form .row {
    column-gap: 30px;
}

.WatchSubmitContactForm form input::placeholder, .WatchSubmitContactForm form textarea::placeholder, .ModalStyling .modal-body form input[type="email"]::placeholder {
    color: var(--white);
}

.WatchSubmitContactForm form .CheckBoxes {
    /*max-width: 1250px;*/
    padding-top: 40px;
}

.WatchSubmitContactForm form input[type="radio"], .WatchSubmitContactForm form input[type="checkbox"] {
    padding: 0;
    width: 38px;
    height: 38px;
    border-radius: 100%;
    border: 0 !important;
    filter: drop-shadow(0px 0px 0px black);
    box-shadow: inset 0 0 0 0;
    accent-color: #1D1E22;
}

.WatchSubmitContactForm form  .d-flex {
    gap: 14px;
}

.WatchSubmitContactForm form label {
    margin: 0;
    margin-bottom: 5px;
    color: var(--white);
    font-size: 30px;
    font-family: var(--HeadingFont);
    letter-spacing: 0.8px;
}

.WatchSubmitContactForm form .PictureUpload p {
    font-size: 30px;
    letter-spacing: 0.6px;
    color: var(--white);
    margin-bottom: 46px;
    max-width: 100%;
    text-align: left;
}

/*.WatchSubmitContactForm form .PictureUpload {
    margin-top: 40px;
}*/

.WatchSubmitContactForm form p {
    font-size: 30px;
    color: var(--white);
    letter-spacing: 0.6px;
    text-align: center;
    margin: auto;
    max-width: 1380px;
}

.WatchSubmitContactForm form .t-btn {
    width: auto;
    margin: auto;
    display: block;
    padding: 19px 65px;
    font-size: 25px;
    line-height: 46px;
    filter: drop-shadow(0 6px 13.18px black);
    box-shadow: inset 0 1.65px 3.3px 0 rgba(255, 255, 255, 0.3);
    border: 3px solid var(--ButtonStroke);
    font-family: var(--TextFont);
}


.WatchSubmitContactForm form .d-flex {
    align-items: center;
}

.WatchSubmitContactForm form .d-flex label {
    margin: 0;
    font-size: 30px;
    letter-spacing: 0.6px;
    font-family: var(--TextFont);
}

.WatchSubmitContactForm form .CheckBoxes span {
    color: var(--white);
    font-size: 20px;
    letter-spacing: 0.4px;
    margin-top: 16px;
    display: block;
}

.InventorySingleSec .container-fluid {
    padding: 40px 130px 170px;
}

.InventorySingleSec .InventoryDescription {
    margin-top: 30px;
}

.InventorySingleSec .InventoryDescription p {
    color: var(--white);
    font-size: 28px;
    line-height: 45px;
    margin-top: 20px;
    letter-spacing: -0.1px;
    padding: 0 50px;
}

.InventorySingleSec .InventoryImage {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 47px;
}

.InventorySingleSec .InventoryImage img {filter: drop-shadow(0px 6px 13.2px black);max-height: 600px;max-width: 350px;}

.InventorySingleSec .InventoryDetail table {
    width: 100%;
}

.InventorySingleSec .InventoryDetail table td {
    position: relative;
}

.InventorySingleSec .InventoryDetail table tr td:nth-child(1) {color: var(--white);font-family: var(--HeadingFont);font-size: 40px;letter-spacing: 0.8px;padding: 13.2px 30px;}

.InventorySingleSec .InventoryDetail table tr td:nth-child(2) {font-size: 30px;letter-spacing: 1.5px;padding-left: 40px;}

.InventorySingleSec .InventoryDetail table tr {
    position: relative;
}

.InventorySingleSec .InventoryDetail table tr td::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 4px solid rgba(255, 255, 255, 0.13);
    box-shadow: inset 0 0 10.65px 0 black;
    filter: drop-shadow(0px 0px 10.65px black);
    background: rgba(255, 255, 255, 0.13);
    height: 4px;
}

.InventorySingleSec .InventoryDetail table tr:nth-child(1) td::before {
    content: none;
}

.InventorySingleSec .InventoryDetail table tr td:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-left: 4px solid rgba(255, 255, 255, 0.13);
    box-shadow: inset 0 0 10.65px 0 black;
    filter: drop-shadow(0px 0px 10.65px black);
    width: 4px;
    background: rgba(255, 255, 255, 0.13);
}

.InventorySingleSec .InfoBox {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ShopGrids .pagination-wrapper {
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.ShopGrids .pagination-wrapper  .page-numbers {border-radius: 100px;background: #1D1E22;filter: drop-shadow(0px 0px 13px black);
    box-shadow: inset 5px 5px 10px black;color: var(--white);font-size: 20px; display:inline-flex;border: 2px solid rgba(255, 255, 255, 0.2);
    height:50px;                                              
                                               width:50px;
                                               align-items: center;
                                               justify-content: center;
                                              }

.ShopGrids .pagination-wrapper .prev, .ShopGrids .pagination-wrapper .next {
    color: var(--white);
    font-size: 20px;
    background: #1D1E22;
    border: 2px solid rgba(255, 255, 255, 0.2);
    filter: drop-shadow(0px 0px 13px black);
    box-shadow: inset 5px 5px 10px black;
    padding: 10px 30px;
    display:block;
    height:unset;
    width:unset;
}

.watch-gallery {
	display: none;
	/*grid-template-columns: repeat(4, 1fr);*/
	/*gap: 15px;*/
	/*max-width: 650px;*/
}

.watch-gallery img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	object-fit: cover;
	user-select: none;
	pointer-events: none; /* image click disabled */
}

/* Lightbox overlay */
#lightbox {
	position: fixed;
	inset: 0;
	background: #18191d;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 999;
}

/* Lightbox image */
#lightbox img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 12px;
}

/* Controls */
#close,
#prev,
#next, .PictureUploadBox .image-box button.remove-preview {
	position: absolute;
	border-radius: 100px;background: #1D1E22;filter: drop-shadow(0px 0px 13px black);
    box-shadow: inset 5px 5px 10px black;color: var(--white);font-size: 20px; display:inline-flex;border: 2px solid rgba(255, 255, 255, 0.2);
    height:50px;                                              
                                               width:50px;
                                               align-items: center;
                                               justify-content: center;
	font-size: 28px;
	cursor:pointer;
}

/* Close button */
#close {
	top: 20px;
	right: 25px;
	font-size: 30px;
}

/* Prev / Next */
#prev {
	left: 20px;
}

#next {
	right: 20px;
}

/* Hover feedback */
#close:hover,
#prev:hover,
#next:hover {
	opacity: 0.7;
}

.InventorySingleSec .cardFirstBorder, .InventorySingleSec .InventoryImage {
    height: 100%;
}

.PictureUploadBox .add-box, .PictureUploadBox .image-box {
    height: 190px;
    width: 223px;
    background: #1D1E22;
    border: 4px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    filter: drop-shadow(0px 6px 12px black);
    box-shadow: inset 3px 3px 9px black;
    gap: 26px;
    cursor: pointer;
    position:relative;
}

.PictureUploadBox .add-box span.plus {
    font-size: 69px;
    color: var(--white);
    font-weight: 300;
    font-family: 'Manrope';
    line-height: 35px;
}

.PictureUploadBox .add-box span.text {
    color: var(--white);
    font-size: 25px;
    letter-spacing: 0.6px;
}

.PictureUploadBox .image-box button.remove-preview {
    top: 10px;
    right: 10px;
	font-size: 18px;
}

.PictureUploadBox .image-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

div#grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}

.MessageDisplay {
        background: #1D1E22;
    width: 100%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    box-shadow: inset 5.33px 5.33px 10.65px 0 black;
    filter: drop-shadow(0px 6px 13.18px black);
    color: var(--white);
    font-size: 20px;
    font-family: var(--HeadingFont);
    letter-spacing: 0.6px;
}

.OriginOfTime {
    padding: 30px 0 140px;
}

.OriginOfTime .imgBox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 21px;
    text-align: left;
    margin-bottom: 70px;
}

.OriginOfTime .imgBox ul {
    color: var(--white);
    font-size: 30px;
    display: grid;
    gap: 20px;
    margin-top: 40px;
    line-height: 35px;
    grid-template-columns: 1fr 1fr;
}

.OriginOfTime .imgBox ul span {
    font-size: 35px;
    font-family: var(--HeadingFont);
}

.OriginOfTime p {
    margin-top: 40px;
    font-size: 25px;
    line-height: 40px;
    text-align: justify;
    margin-bottom: 40px;
}

.OriginOfTime .ABoutBox {
    max-width: 1092px;
    margin: auto;
}

.OriginOfTime .ABoutBox .imageBox img {
    max-height: 500px;
    max-width: 500px;
    margin: auto;
    object-fit: cover;
}

.OriginOfTime .cardsecondBorder {
    padding: 15px 40px;
}

.InventorySingleSec .InfoBox ul {
    color: var(--white);
    font-size: 30px;
    display: flex;
    flex-direction: column;
  
    width: 100%;
   
    filter: drop-shadow(0px 6px 13.18px black);
    font-family: var(--HeadingFont);
    letter-spacing: 0.6px;
}

.InventorySingleSec .InfoBox ul i{
    font-size:25px;
}

.InventorySingleSec .col-lg-5 {
    position: relative;
    z-index: 1;
}

.originslider .slide-arrow {
    position: absolute;
    top: 50%;
    left:-100px;
    transform: translateY(-50%);
    cursor: pointer;
    color:white;
    border-radius: 100px;background: #1D1E22;filter: drop-shadow(0px 0px 13px black);
    box-shadow: inset 5px 5px 10px black;color: var(--white);font-size: 20px; display:inline-flex;border: 2px solid rgba(255, 255, 255, 0.2);
    height:50px;                                              
                                               width:50px;
                                               align-items: center;
                                               justify-content: center;
	font-size: 28px;
	cursor:pointer;
	z-index:99;
}
.originslider .slide-arrow.next-arrow{
    right:-100px;
    left:unset;
}

.OriginOfTime .nav-tabs {
    width: 100%;
    margin-bottom: 60px;
    gap: 20px;
}

.OriginOfTime .nav-tabs .nav-link {
    color: var(--white);
    font-size: 30px;
    line-height: normal;
    border-radius: 0;
    padding: 15px 40px;
    background: #1D1E22;
    border: 4px solid transparent;
    filter: drop-shadow(0px 0px 10.65px black);
    outline:none !important;
}

.OriginOfTime .nav-tabs .nav-link.active {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: inset 5.33px 5.33px 10.65px 0 black;
}

header ul.menuBox .current-menu-item a {
    opacity: 1;
}

header ul.menuBox li {
    position: relative;
}

header ul.menuBox li ul {
    position: absolute;
    top: 120%;
    background: #1D1E22;
    width: max-content;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 5.33px 5.33px 10.65px 0 black;
    filter: drop-shadow(0px 6px 13.18px black);
    color: var(--white);
    font-family: var(--HeadingFont);
    letter-spacing: 0.6px;
    line-height: normal;
    min-width: max-content;
    opacity: 0;
    transition: 0.3s;
    transform: translateY(20px) translateX(-50%);
    visibility: hidden;
    z-index: 1;
    left:50%;
        max-height: 50vh;
    overflow-y: overlay;
}

header ul.menuBox li ul::-webkit-scrollbar{
    width:5px;
}

header ul.menuBox li:hover ul {
    transition: 0.3s;
    visibility: visible;
    opacity: 1;
    transform: translateY(0px) translateX(-50%);
}

header ul.menuBox li ul li {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 10px 30px;
}

header ul.menuBox li ul li:last-child {
    border: 0;
}

.OriginOfTime .tab-content{
    width:100%;
}

.SelltradeSec .col-lg-7, .AboutUsSec .col-lg-4, .OriginOfTime .imgBox, .OriginOfTime .tab-content .tab-pane, .OriginOfTime .ABoutBox, .OriginOfTime .col-lg-12, .OriginOfTime .container, .OriginOfTime .tab-content  {
    overflow: visible;
}

.OriginOfTime .nav-tabs {
    display: none !important;
}

/* Hide spin buttons in Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide spin buttons in Firefox */
input[type='number'] {
  -moz-appearance: textfield;
  appearance: textfield; /* Standard property for newer browsers */
}

.privacypolicy .container-fluid {
    padding-top: 0;
    padding-bottom: 0;
}

.privacypolicy {padding: 100px 20px;}

section.AboutUsSec.privacypolicy p {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

section.AboutUsSec.privacypolicy ul {
    list-style: disc;
    margin-left: 50px;
    font-size: 20px;
}

section.AboutUsSec.privacypolicy h3{
    color:white;
    font-size:50px;
    margin-bottom:15px;
    margin-top:15px;
}

section.AboutUsSec.privacypolicy h4{
    color:white;
    font-size:30px;
    margin-bottom:15px;
    margin-top:15px;
}

section.AboutUsSec.privacypolicy a{
    color:white
    
}

.SelltradeSec .leftContent .cardFirstBorder {
    max-width: fit-content;
}

.Homesection02 .Grid33 .cardFirstBorder .cardsecondBorder {
    height: 100%;
}

.ProductListingGrid .text img {
    max-height: 470px;
    width: fit-content;
    object-fit:contain;
}

.ProductListingGrid .text {
    height: 100%;
}
/*@media only screen and (max-width: 1024px) {*/

/*}*/
.ProductListingGrid .cardFirstBorder:nth-child(1) { order: 7; }
.ProductListingGrid .cardFirstBorder:nth-child(2) { order: 8; }
.ProductListingGrid .cardFirstBorder:nth-child(3) { order: 9; }

.ProductListingGrid .cardFirstBorder:nth-child(4) { order: 4; }
.ProductListingGrid .cardFirstBorder:nth-child(5) { order: 5; }
.ProductListingGrid .cardFirstBorder:nth-child(6) { order: 6; }

.ProductListingGrid .cardFirstBorder:nth-child(7) { order: 1; }
.ProductListingGrid .cardFirstBorder:nth-child(8) { order: 2; }
.ProductListingGrid .cardFirstBorder:nth-child(9) { order: 3; }

/*.orderReset .cardFirstBorder {order: unset !important;}*/
    
/*}*/
.paged-3.page-paged-3 .cardFirstBorder { order: unset !important; }

.OriginOfTime .tab-content .cardFirstBorder.ImageBox {
    max-width: 600px;
    height: 500px;
    margin: 0 auto;
}

.OriginOfTime .tab-content .cardFirstBorder.ImageBox .cardsecondBorder {
    height: 100%;
    width: 100%;
}

.OriginOfTime .tab-content .cardFirstBorder.ImageBox img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}


.ShopGrids .filterRow {
    margin-bottom: 40px;
    row-gap:15px;
}

.ShopGrids .filterRow form input {
    width: 100%;
    /*padding: 10px;*/
    color: var(--white);
    font-size: 18.7px;
    font-family: var(--HeadingFont);
    letter-spacing: 0.6px;
        text-align: center;
}

.ShopGrids .filterRow form button {
    /*   padding: 10px 20px 3px;*/
    /*border-left: 1px solid rgba(255, 255, 255, 0.2) !important;*/
    /*box-shadow: inset 5.33px 5.33px 10.65px 0 #00000066 !important;*/
    /*filter: drop-shadow(0px 6px 13.18px black) !important;*/
        height: 40px;
    width: 40px;
    backdrop-filter: blur(4px);
    fill: #fff;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: inset 5.33px 5.33px 10.65px 0 #00000066 !important;
    filter: drop-shadow(0px 6px 13.18px black) !important;
}

.ShopGrids .filterRow form {
    display: flex;
    max-width: 300px;
        background: #1D1E22 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    /*border: 1px solid rgb(255 255 255 / 35%) !important;*/
    box-shadow: inset 5.33px 5.33px 10.65px 0 black !important;
    filter: drop-shadow(0px 6px 13.18px black) !important;
    /*padding-left: 10px;*/
    padding: 3px;
}

.ShopGrids .filterRow form input::placeholder {
    color: #fff;
    text-transform: capitalize;
}

.ShopGrids .filterRow .col-lg-6:last-child form {width: 100%;justify-content: end;max-width: 100%;}

.ShopGrids .filterRow {
    align-items: end;
}

.ShopGrids .filterRow .col-lg-6:last-child form select {
    background: #1D1E22;
    border: 3px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    box-shadow: inset 5.33px 5.33px 10.65px 0 black;
    filter: drop-shadow(0px 6px 13.18px black);
    color: var(--white);
    font-size: 20px;
    font-family: var(--HeadingFont);
    letter-spacing: 0.6px;
}

    .categoryDropdown {
    display: none;
}
.categoryDropdown.active {
    display: block;
}

.childList {
    display: none;
    
}
.childList.open {
    display: block;
}

.parentItem {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.childItem {
    cursor: pointer;
    padding: 5px 0;
}

.categoryFilter {
    width: 300px;
    position: relative;
}

.filteralign {
    display: flex;
    justify-content: flex-end;
}

.selectedCategory {
       background: #1D1E22;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3px 3px 3px 20px;
    box-shadow: inset 5.33px 5.33px 10.65px 0 black;
    filter: drop-shadow(0px 6px 13.18px black);
    color: var(--white);
    font-size: 16px;
    letter-spacing: 0.6px;
    text-align: center;
}

.categoryDropdown {
    position: absolute;
    top: 120%;
    z-index: 9;
    background: #1D1E22;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 5.33px 5.33px 10.65px 0 #00000047;
    filter: drop-shadow(0px 6px 13.18px #0000002b);
    padding: 10px 20px;
    width:300px;
    right:0;
    max-height:400px;
    overflow-y:overlay;
}

.categoryDropdown .parentItem {
    border-bottom: 1px solid #ffffff1a;
    padding: 5px 0;
}

.categoryDropdown .childItem {
    font-size: 14px;
    line-height: normal;
     transition: 0.3s;
     border-radius: 5px;
     padding-left: 15px;
}

.categoryDropdown .childList.open {
    border-bottom: 1px solid #ffffff1a;
}

.categoryItem {
    border-bottom: 1px solid #ffffff1a;
    margin-bottom: 10px;
    padding: 5px 0;
}

.categoryDropdown .childItem:hover {
    color: white;
    transition: 0.3s;
    background: #ffffff10;
}

.ShopGrids .filterRow form button svg {
 height: 18px;
    color: #ffffff !important;
    fill: #ffffff !important;
    width: 24px;
    margin-bottom: -3px;
}

.labelBox p {
    font-family: 'Manrope';
    letter-spacing: 0.6px;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.selectedCategory p {
    width: 100%;
}

.selectedCategory {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    cursor:pointer;
}

.selectedCategory svg {
       height: 40px;
    width: 40px;
    backdrop-filter: blur(4px);
    fill: #fff;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: inset 5.33px 5.33px 10.65px 0 #00000066 !important;
    filter: drop-shadow(0px 6px 13.18px black) !important;
}

.mobmenu-content form {
    width: 100%;
    overflow: hidden;
    display: flex;
    background: #1D1E22 !important;
    border: 1px solid rgb(255 255 255 / 35%) !important;
    box-shadow: inset 5.33px 5.33px 10.65px 0 black !important;
    filter: drop-shadow(0px 6px 13.18px black) !important;
    padding-left: 10px;
    max-width: 85%;
    margin: auto;
    margin-top: 15px;
}

.mobmenu-content form input[type="text"] {width: 100%;padding: 10px;color: var(--white);font-size: 16px;font-family: 'Manrope';letter-spacing: 0.6px;}
.mobmenu-content form input[type="text"]::placeholder {
    color: #fff;
}

.mobmenu-content form button {
    padding: 10px 15px 3px;
    border-left: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: inset 5.33px 5.33px 10.65px 0 #00000066 !important;
    filter: drop-shadow(0px 6px 13.18px black) !important;
}

.mobmenu-content form button svg {
    height: 20px;
    width: 20px;
    color: #ffffff !important;
    fill: #ffffff !important;
}

.page-template-origin-of-time .SubBanner .container-fluid {
    /*max-width: 100%;*/
    /*padding-left: 0;*/
    /*padding-right: 0;*/
    /*padding-top:100px;*/
}

.page-template-blog .SubBanner .container-fluid, .page-template-origin-of-time .SubBanner .container-fluid {
    max-width: 1680px;
    padding-top: 180px;
}

/*.page-template-origin-of-time .SubBanner .imgBox {*/
/*    margin-top: 80px;*/
/*}*/

.OriginOfTime #tabSelectDropdown {
    max-width: 300px;
    height: 48px;
    padding: 3px 10px;
    padding-right: 53px;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.OriginOfTime .tab-select-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.OriginOfTime .tab-select-wrapper .SelectBoxDesign {
    position: relative;
        margin-bottom: 50px;
}


.OriginOfTime .tab-select-wrapper .SelectBoxDesign .categoryItem {
    cursor: pointer;
}


.OriginOfTime .tab-content .tab-pane {
    margin-bottom: 50px;
}

.OriginOfTime #tabSelectDropdown option {
    text-align: left;
}

.OriginOfTime #tabSelectDropdown option:first-child{
    text-align:center;
    text-align-last: center;
}

.page-template-origin-of-time .SubBanner .imgBox img {
    width: 100%;
}

.OriginOfTime .tab-select-wrapper .SelectBoxDesign .selectedCategory p {
    margin: 0;
    font-size: 16px;
    font-family: 'Manrope';
    line-height: normal;
    text-align: center;
}

.OriginOfTime .tab-select-wrapper .SelectBoxDesign .selectedCategory {width: 300px;}

.OriginOfTime .bannerDown {
    max-width: 100%;
    width: 100%;
}

.OriginOfTime .bannerDown p {
    text-align: center;
    margin-top: 0;
    color: #fff;
    /*font-style: italic;*/
    font-family: 'Manrope';
}

.OriginOfTime .tab-select-wrapper .SelectBoxDesign .selectedCategory {
    width: 500px !important;
}

.OriginOfTime .tab-select-wrapper .SelectBoxDesign .selectedCategory p {
    font-size: 18px !important;
}

.container.lastImageBox {
    max-width: 1600px;
}

.OriginOfTime .tab-select-wrapper .SelectBoxDesign .categoryDropdown {
    width: 500px;
}

.MobileImage {
    display: none;
}

.postBox img {
    /*height: 250px;*/
    width: 100%;
    object-fit: cover;
}

.postBox {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.postBox span {
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
}

.postBox h3 {
    font-family: 'Manrope';
    color: #fff;
    font-size: 25px;
    text-transform: capitalize;
}

.postBox a {
    font-size: 18px;
    color: #fff;
    text-decoration: underline;
    display: inline-block;
    margin-top: 10px;
}

.postBox a i {
    margin-left: 10px;
    transition: 0.3s;
}

.postBox a:hover i {
    transition: 0.3s;
    margin-left: 5px;
}

.postBox .cardFirstBorder {
    order: unset !important;
    margin-bottom: 30px;
}

.singlepostpage .featured-image {
    margin-bottom: 60px;
}

.singlepostpage .LatestBox {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 40px;
    column-gap: 30px;
}

.singlepostpage .postBox h3 {
        font-size: 20px;
    margin-top: 5px;
    line-height: 35px;
    padding: 0 50px;
}
.singlepostpage .postBox {
    text-align: center;
        align-items: center;
}

.singlepostpage .postBox a {
    font-size: 14px;
    margin-top: 0;
}

.singlepostpage .blogContent h2 {
    font-size: 45px;
    line-height: normal;
    text-align:center;
}

.singlepostpage .blogContent span {
    color: #fff;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
}

.singlepostpage .LatestBox.MobileImage {
    display: none;
}

.singlepostpage .blogContent p {
    margin-top: 15px;
}

/*.stickysideBar {*/
/*    position: sticky;*/
/*    top: 50px;*/
/*}*/

form input:focus::placeholder {
    opacity: 0;
}

.page-template-origin-of-time .SubBanner .container-fluid .text {
    width: 100%;
}

.page-template-origin-of-time .SubBanner .container-fluid .text p {
    margin-bottom: 20px;
}
.stickysideBar .text h2 {
    font-size: 44px;
    margin-bottom: 30px;
    text-transform: capitalize;
    line-height: normal;
}

.blogContent h2 {
    margin-bottom:20px;
}

.stickysideBar {
    padding-right: 80px;
}

.catlogText p {
    font-size: 30px;
    max-width: 700px;
    margin: auto;
    color: #fff;
    line-height: normal;
    margin-top: -30px;
}

.singlepostpage .blogContent h2 {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

.singlepostpage .blogContent p {
    margin-right: auto;
    margin-left: auto;
    max-width: 90%;
}

.page-template-sell-trade-your-timepiece .SelltradeSec .container-fluid {
    margin: auto;
    max-width: 1900px;
}

.page-template-sell-trade-your-timepiece .SelltradeSec .container-fluid .leftContent {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.footerBottom p span {
    font-size: 18px;
    display: block;
    text-align: center;
    margin-top: 10px;
    text-transform: capitalize;
}

.footerBottom p span a {
    color: #fff;
    text-decoration: underline;
}

@media only screen and (max-width: 1750px) {
    .HomeSection04 .text.cardsecondBorder h4 {
    font-size: 25px;
}
header ul.menuBox {
    gap: 30px;
}
.ProductListingGrid {
    gap: 30px;
}

.ProductListingGrid .text {
    padding: 40px 30px;
    gap: 20px;
}

.ProductListingGrid .text img {
    max-height: 450px;
    object-fit: contain;
}
header ul.menuBox {
    gap: 20px;
}

.WatchSubmitContactForm form .d-flex label {
    font-size: 20px;
}
}
@media only screen and (max-width: 1600px) {
    
    .page-template-blog .SubBanner .container-fluid {
    padding: 120px 50px 20px;
}
    header ul.menuBox a {
}

header ul.menuBox {
    padding: 0 50px;
}

section.HeroBanner .container-fluid {
    padding: 100px 50px 50px;
}

.HomeSection01 .container-fluid {
    padding: 50px 50px;
}

.Homesection02 .container-fluid {
    padding: 70px 50px;
}

.HomeSection04 .container-fluid {
    padding: 50px 50px;
}

.HomeSection04 .text.cardsecondBorder {
    padding: 30px 10px 30px;
}

.HomeSection05 .container-fluid {
    padding: 0 50px;
}

.HomeSection05 .t-btn {
    margin-top: 50px;
}

.HomeSection05 {
    padding: 0;
    padding-bottom: 20px;
}

footer {padding-top: 50px;}

/*.Homesection02 .Grid33 {*/
/*    gap: 20px;*/
/*}*/

.Homesection02 .Grid33 .text {
    padding: 30px 20px 20px;
}

.Homesection02 .Grid33 .text p {
    font-size: 22px;
    line-height: unset;
}
.AboutUsSec .container-fluid {
    padding: 50px 50px 100px;
}
.ShopGrids .container-fluid {
    padding: 40px 50px;
}

.ShopGrids .Bottomtext {
    margin-top: 100px;
}
.InventorySingleSec .container-fluid {
    padding: 40px 50px 100px;
}
.SelltradeSec .container-fluid {
    padding: 40px 50px 100px;
}
.WatchSubmitContactForm .container-fluid {
    padding: 50px 50px 100px;
}
header ul.menuBox {
    gap: 20px;
}

header ul.menuBox a {
    font-size: 16px;
}

.HeroBanner .BannerLogo {
    margin-bottom: 50px;
    max-width: 250px;
}

h1 {
    font-size: 70px;
    line-height: normal;
}

.HeroBanner p {
    font-size: 20px;
    line-height: unset;
    margin: 20px 0 40px;
}

.HeroBanner .imgBox img {
    max-width: 400px;
}

.HeroBanner .t-btn {
    font-size: 20px;
    line-height: unset;
}

.t-btn {
    line-height: normal;
}

.marquee-content img {
    max-height: 60px;
}

h2 {
    font-size: 50px;
    line-height: normal;
}

.HomeSection01 .imgBox img {
    max-width: 350px;
    margin: auto;
}

.ListCards .WatchCard .text {
    padding-left: 20px;
    gap: 10px;
}

.ListCards .WatchCard .Counter {
    max-width: 150px;
}

.ListCards .WatchCard .Counter span {
    height: 80px;
    width: 80px;
    font-size: 25px;
}

.ListCards .WatchCard .text h3 {
    font-size: 30px;
}

.ListCards .WatchCard .text p {
    font-size: 20px;
    line-height: unset;
}

.ListCards .WatchCard {
    min-height: 200px;
}
.ConsignmentSec .leftContent .content h3 {
    font-size: 35px;
    line-height: 50px;
}

.ConsignmentSec .leftContent .content p {
    font-size: 20px;
    letter-spacing: 1px;
    line-height: normal;
}
}
@media only screen and (max-width: 1440px) {
    
    .page-template-sell-trade-your-timepiece .SelltradeSec .ListCards .WatchCard {
    min-height: 190px;
}

.page-template-sell-trade-your-timepiece .SelltradeSec .ListCards .WatchCard .Counter {
    padding-top: 40px;
}
    
    
    .OriginOfTime .cardFirstBorder.DownImage {
    max-width: 100% !important;
}
    
    .privacypolicy {padding: 50px 20px;}

section.AboutUsSec.privacypolicy p {
    font-size: 16px;
}

section.AboutUsSec.privacypolicy ul {
    margin-left: 20px;
    font-size: 16px;
}

section.AboutUsSec.privacypolicy h3{
    font-size:35px;
}

section.AboutUsSec.privacypolicy h4{
    font-size:25px;
}


    header ul.menuBox .t-btn {
    line-height: normal;
    padding: 15px 30px;
}

header ul.menuBox .t-btn a {
    display: block;
}

header ul.menuBox {
    padding: 5px 50px;
}

.HeroBanner .imgBox img {
    max-width: 300px;
}

.HeroBanner .imgBox {
    justify-content: center;
}

.t-btn {
    padding: 15px 30px !important;
    line-height: normal !important;
    font-size: 18px !important;
}

section.LogoMArquee .container-fluid {
    padding: 40px 0px;
}

.mb-80 {
    margin-bottom: 50px;
}

.Homesection02 .Grid33 .text p {
    line-height: normal;
    font-size: 18px;
    margin: 20px 0 30px;
}

.Homesection02 .Grid33 .text h3 {
    font-size: 30px;
    letter-spacing: 2px;
}

.Homesection02 .Grid33 .text .t-btn {
    font-size: 18px;
    padding: 15px 30px;
}

.HomeSection03 .text p {
    font-size: 25px;
    line-height: unset;
}

.HomeSection03 img {
    /*max-width: 300px;*/
    justify-self: center;
}

.HomeSection03 .container-fluid {
    padding-top: 50px;
    padding-bottom: 50px;
}

.HomeSection03 .ABoutBox {
    margin-top: 100px;
}

/*.HomeSection03 .ABoutBox .imgBox img {*/
/*    max-width: 500px;*/
/*}*/

.HomeSection03 .ABoutBox p {
    font-size: 20px;
    max-width: 900px;
    margin: 30px auto;
}

.HomeSection04 .text.cardsecondBorder {
    gap: 10px;
    min-height: 350px;
}

.HomeSection04 .text.cardsecondBorder p {
    font-size: 16px;
    line-height: unset;
    letter-spacing: 0.5px;
}

.HomeSection04 .text.cardsecondBorder h4 {
    font-size: 22px;
    letter-spacing: 3px;
}

.HomeSection04 .text.cardsecondBorder h4 br {
    display: none;
}

.footerBottom p {
    font-size: 15px;
    line-height: normal;
    padding: 20px;
}

.footerBottom ul {
    padding: 20px 0;
    margin-top: 50px;
    gap: 5px;
}

.SubBanner .text {
    gap: 50px;
}

.SubBanner .text img {
    max-width: 200px;
}

.SubBanner .container-fluid {
    padding-top: 120px;
    padding-bottom: 10px;
}

.AboutUsSec .text p {
    font-size: 20px;
    line-height: unset;
}
.ProductListingGrid .text img {
    max-height: 220px;
    width: 100%;
    margin-bottom: 15px;
    margin-right: -10px !important;
}

.ProductListingGrid .text .infoBox p, .ProductListingGrid .text .infoBox p.ProductCode {
    font-size: 20px;
    line-height: unset;
}

.ProductListingGrid .text {
    padding: 30px 15px 15px;
}

.ProductListingGrid .text .price {
    font-size: 22px;
}

.ShopGrids .pagination-wrapper {
    margin-top: 50px;
    gap: 15px;
}

.ShopGrids .Bottomtext {
    margin-top: 50px;
}

.ShopGrids .Bottomtext p {
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0;
}
.InventorySingleSec .InventoryDetail table tr td:nth-child(2) {
    font-size: 20px;
    letter-spacing: 0.5px;
}

.InventorySingleSec .InventoryDetail table tr td:nth-child(1) {
    font-size: 25px;
}

.InventorySingleSec .InventoryImage img {
    max-height: 415px;
}

.InventorySingleSec .InfoBox ul {
    font-size: 20px;
}

.InventorySingleSec .InventoryImage {
    padding: 20px;
}

.InventorySingleSec .InventoryDescription p {
    font-size: 20px;
    line-height: unset;
    padding: 0;
    letter-spacing: 1px;
}
.SubBanner .text p {
    font-size: 20px;
    margin-top: 10px;
}

/*.SelltradeSec .leftContent .content h2 {*/
/*    line-height: normal;*/
/*    font-size: 35px;*/
/*}*/

/*.SelltradeSec .leftContent .content ul {*/
/*    margin-top: 20px;*/
/*    font-size: 20px;*/
/*    letter-spacing: 1px;*/
/*}*/

.SelltradeSec .leftContent .content {
    margin: 30px 0;
    max-width: 500px;
}

.SelltradeSec .ButtonBox .t-btn {
    margin-top: 50px;
}
.ConsignmentSec .ButtonBox {
    /*margin: 0;*/
    gap: 20px;
}
.WatchSubmitContactForm form {
    row-gap: 20px;
}

.WatchSubmitContactForm form .row {
    column-gap: 10px;
}

.WatchSubmitContactForm form label {
    font-size: 25px;
}

.WatchSubmitContactForm form .d-flex label {
    font-size: 16px;
}

.WatchSubmitContactForm form .CheckBoxes {
    padding-top: 20px;
    flex-wrap: wrap;
}

.WatchSubmitContactForm form .PictureUpload p {
    font-size: 25px;
}

.WatchSubmitContactForm form p {
    font-size: 20px;
    line-height: normal;
}

.WatchSubmitContactForm form input[type="radio"], .WatchSubmitContactForm form input[type="checkbox"] {
    height: 25px;
    width: 25px;
}

.WatchSubmitContactForm form .t-btn {
    margin-top: 30px;
}
.OriginOfTime .nav-tabs .nav-link {
    font-size: 20px;
    padding: 10px 30px;
}

.OriginOfTime .nav-tabs {
    margin-bottom: 50px;
}

.OriginOfTime .cardFirstBorder {
    max-width: 500px !important;
}

.OriginOfTime .cardsecondBorder {
    padding: 10px 30px;
}

.OriginOfTime .imgBox ul {
    font-size: 20px;
    line-height: normal;
}

.OriginOfTime .imgBox ul span {
    font-size: 25px;
}

.OriginOfTime .ABoutBox .cardFirstBorder {
    max-width: 100% !important;
}

.OriginOfTime .ABoutBox .imgBox~ .cardFirstBorder .cardsecondBorder {padding: 20px !important;}

.OriginOfTime .ABoutBox .imgBox~ .cardFirstBorder .cardsecondBorder p {
    margin: 0;
    font-size: 20px;
    line-height: unset;
    letter-spacing: 1px;
}

.OriginOfTime {
    padding-bottom: 70px;
}
/*.page-template-origin-of-time .SubBanner {*/
/*    padding-top: 85px;*/
/*}*/

.ABoutBox.cardFirstBorder.imgBox.DownImage {
    max-width: 1092px !important;
}

header ul.menuBox a {
    font-size: 15px;
}
.footerBottom ul li a {
    font-size: 14px;
    line-height: normal;
}

.catlogText {
    margin-bottom: 50px;
}

.stickysideBar {
    padding-right: 20px;
}

.singlepostpage .postBox h3 {
    padding: 0;
}

}
@media only screen and (max-width: 1199px) {
    
    .catlogText p {
    font-size: 25px;
    max-width: 590px;
    margin: auto;
    color: #fff;
    line-height: normal;
    margin-top: -20px;
    margin-bottom: 30px;
}
        .page-template-origin-of-time .SubBanner .container-fluid {
    padding-top: 0 !important;
}

.page-template-origin-of-time .SubBanner .container-fluid .row, .page-template-blog .SubBanner .container-fluid .row {
    margin: 0 !important;
}

.page-template-origin-of-time .SubBanner .container-fluid .row .col-lg-12, .page-template-blog .SubBanner .container-fluid .row .col-lg-12 {
    padding: 0 !important;
}
       .AboutUsSec .imgBox img{
        display:none !important;
    }
    header {
    display: none;
}
footer ul.SocialLinks {
    gap: 10px;
    margin-bottom: 20px;
}

footer ul.SocialLinks a {
    height: 40px;
    width: 40px;
    font-size: 14px !important;
}
section.LogoMArquee .container-fluid .col-lg-12 {
    padding: 0 !important;
}

section.LogoMArquee .container-fluid .row {
    margin: 0 !important;
}

    .footerBottom ul {
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer .col-lg-3:nth-child(2) .text {
    margin-left: 50px;
}

footer .col-lg-3:nth-child(3) .text {
    margin-left: 0px;
}

footer .col-lg-3 .text p {
    font-size: 15px;
    line-height: normal;
}

footer .col-lg-3 .text ul a {
    line-height: 40px;
}

.HomeSection04 .text.cardsecondBorder h4 {
    letter-spacing: 1px;
}

.HomeSection04 .text.cardsecondBorder img {
    max-width: 50px;
}

.HomeSection04 .cardFirstBorder {
    height: 100%;
}

.HomeSection04 .text.cardsecondBorder {
    height: 100%;
    min-height: 0;
}

#mobmenuright .t-btn {
    background: transparent;
    border: none;
    box-shadow: none;
    filter: none;
    padding: 0 10% !important;
    max-width:100% !important;
    width:100% !important;
}

/*#mobmenuright .t-btn a {*/
/*    background-color: var(--Background);*/
/*    border: 3px solid var(--ButtonStroke);*/
/*    filter: drop-shadow(0 6px 13.18px black);*/
/*    box-shadow: inset 0 1.65px 3.3px 0 rgba(255, 255, 255, 0.3);*/
/*    margin-top: 10px;*/
/*}*/

.mob-menu-header-holder {
    background: #1D1E22 !important;
    width: 100%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 5.33px 5.33px 10.65px 0 black;
    filter: drop-shadow(0px 6px 13.18px black);
}

.page-template-blog .SubBanner .container-fluid, .page-template-origin-of-time .SubBanner .container-fluid {
    padding-top: 50px !important;
    padding-right: 40px;
    padding-left: 40px;
}

.mobmenu .headertext img {
    max-width: 450px;
    object-fit: contain;
}

}
@media only screen and (max-width: 991px) {
    
    .singlepostpage .blogContent h2 {
    max-width: 100%;
}

.singlepostpage .blogContent p {
    max-width: 100%;
}
    
    .AboutUsSec .MobileImage {
    margin-top: 40px;
}
    
        .catlogText p {
        font-size: 18px;
        max-width: 590px;
        margin: auto;
        color: #fff;
        line-height: normal;
        margin-top: 0px;
        margin-bottom: 30px;
    }
    
    .stickysideBar {
    padding-right: 0;
}

.singlepostpage .postBox h3 {
    padding: 0;
    font-size: 18px;
    line-height: unset;
}
    
    .singlepostpage .LatestBox {
    display: grid;
    grid-template-columns: 1fr;
}
    
    .singlepostpage .row {
    flex-direction: column-reverse;
}
    
    
        .singlepostpage .featured-image {
        margin-bottom: 50px;
    }
    
    
    .mobmenu-content #mobmenuright .sub-menu a {
    padding: 5px;
    padding-right:0;
    font-size: 15px;
}
    /*.leftContent img {*/
    /*    max-width: 100% !important;*/
    /*}*/
    
    .SelltradeSec .col-lg-7 {
    overflow: unset;
}

    section.HeroBanner .container-fluid {
    padding: 50px 20px;
}

.HeroBanner .BannerLogo {
    margin: auto;
    margin-bottom: 30px;
    max-width: 200px;
}

h1 {
    font-size: 50px;
    text-align: center;
}

.HeroBanner p {
    text-align: center;
    font-size: 16px;
}

.HeroBanner .t-btn {
    margin: auto;
    display: block;
    max-width: fit-content;
}

.HeroBanner .imgBox img {
    margin-top: 50px;
    max-width: 200px;
}

section.LogoMArquee .container-fluid {
    padding: 20px 0;
}

.marquee-content img {
    max-height: 50px;
}

.row {
    row-gap: 50px;
}

.text p {
    text-align: center;
}

.HomeSection04 .mb-80 {
    margin: 0;
}

h2 {
    text-align: center;
}

.t-btn {
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: fit-content;
}

.HomeSection05 .row {
    row-gap: 0;
}

footer .col-lg-3 .text {
    max-width: 100%;
    text-align: center;
}

footer .col-lg-3:nth-child(2) .text, footer .col-lg-3:nth-child(3) .text {
    margin: 0;
}

footer ul.SocialLinks {
    justify-content: center;
}

.footerBottom ul {
    flex-direction: column;
}.SubBanner .container-fluid {
    padding-top: 50px;
}

.SubBanner .text {
    gap: 20px;
}

.imgBox {
    display: flex;
    justify-content: center;
    align-items: center;
}
.ProductListingGrid {
    grid-template-columns: 1fr 1fr;
}
.InventorySingleSec .InventoryImage img {
    max-height: 300px;
}

.InventorySingleSec .InfoBox button.t-btn {
    max-width: 100% !important;
    width: 100%;
}

.InventorySingleSec .InventoryDescription {
    flex-direction: column-reverse;
}
.SelltradeSec .leftContent {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.SelltradeSec .leftContent .content {
    padding: 0;
}

.SelltradeSec .leftContent .content ul {
    text-align: center;
}

.SelltradeSec .row {
    flex-direction: column-reverse;
}

.SelltradeSec .ListCards .WatchCard .text p {
    text-align: left;
}

.ConsignmentSec .ButtonBox {
    margin-top: 50px;
}

.ConsignmentSec .ButtonBox p {
    font-size: 16px;
}

.ConsignmentSec .ButtonBox span {
    font-size: 16px;
}

.ConsignmentSec .leftContent {
    padding: 0;
}

.ConsignmentSec .leftContent .content {
    padding-bottom: 40px;
    margin-top: 0;
}

.ConsignmentSec .leftContent .content:last-child {
    padding: 0;
    margin: 0;
}

.SelltradeSec .container-fluid {
    padding-bottom: 50px;
}

.leftContent img {
    max-width: 150px;
}
.WatchSubmitContactForm form label, .WatchSubmitContactForm form .CheckBoxes span, .WatchSubmitContactForm form .PictureUpload p {
    font-size: 18px;
    line-height: normal;
}

.PictureUploadBox .add-box, .PictureUploadBox .image-box {
    height: 120px;
    width: 140px;
    gap: 10px;
}

.PictureUploadBox .add-box span.plus {
    font-size: 30px;
}

.PictureUploadBox .add-box span.text {
    font-size: 16px;
}

.WatchSubmitContactForm form input, .WatchSubmitContactForm form textarea {
    font-size: 18px;
    padding: 10px;
}

.WatchSubmitContactForm .container-fluid {
    padding: 50px 20px;
}
.OriginOfTime .nav-tabs {
    margin-bottom: 0;
}

.ShopGrids .filterRow .col-lg-6:last-child form select {
    padding: 5px;
    font-size: 16px;
}

.ShopGrids .filterRow form input {
    padding: 10px;
    font-size: 16px;
}

.ShopGrids .filterRow form button {
    padding: 10px 20px;
}
.ShopGrids .filterRow form {
    gap: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.ShopGrids .filterRow form button svg {padding: 10px;height: 35px;width: 35px;padding-bottom: 5px;}

.categoryFilter {
    width: 100%;
}
.page-template-blog .SubBanner .container-fluid {
    padding-top: 20px;
}

.postBox .cardFirstBorder {
    width: 100%;
}

.postBox .cardFirstBorder img {
    max-width: 100% !important;
}

.singlepostpage .LatestBox {
    gap: 40px;
}

.leftContent .cardsecondBorder img {
    max-width: 100%;
}

}
@media only screen and (max-width: 767px) {
    
    
    .stickysideBar .text h2 {
    font-size: 35px;
}
    
    .page-template-blog .SubBanner .container-fluid {
    padding: 0 !important;
}
    
    .DexktopImage{
        display:none;
    }
    .MobileImage {
    display: block;
}

.singlepostpage .LatestBox.DexktopImage {
    display: none;
}


.singlepostpage .blogContent h2 {
    font-size: 25px;
            margin-top: 0;
}

.singlepostpage .blogContent {
    /*margin-bottom: 40px;*/
}
    
    .OriginOfTime .cardFirstBorder.DownImage .cardsecondBorder, .OriginOfTime .cardFirstBorder.DownImage img {
    width: 100% !important;
    max-width:100% !important;
}
    
    .selectedCategory svg {
    height: 30px;
    width: 35px;
}

.selectedCategory {
    padding: 8px 8px 8px 20px;
}
    
    .ShopGrids .filterRow .col-lg-6:first-child {
    display: none;
}

.filteralign {
    max-width: 85%;
    margin: auto;
}
    .AboutUsSec .imgBox img{
        display:none !important;
    }
    
        .privacypolicy {padding: 0px 0px;}

section.AboutUsSec.privacypolicy h3{
    font-size:30px;
}

section.AboutUsSec.privacypolicy h4{
    font-size:20px;
}
    
    .OriginOfTime .cardsecondBorder {
    text-align: center;
}
    .HomeSection03 .ABoutBox .imgBox img {
    max-width: 100%;
}
h1 {
    font-size: 35px;
}

.t-btn {
    font-size: 16px !important;
}

.HeroBanner .imgBox img {
    margin-top: 0;
}

section.LogoMArquee .container-fluid {
    padding: 0 !important;
}

h2 {
    font-size: 35px;
}

.imgBox img {
    max-width: 200px !important;
}

.Homesection02 .Grid33 .imgBox img{
    max-width:100% !important;
}

.container-fluid {
    padding-right: 20px !important;
    padding-left: 20px !important;
}

.ListCards .WatchCard {
    flex-direction: column;
}

.ListCards .WatchCard .text {
    padding: 20px;
}

.ListCards .WatchCard .Counter {
    max-width: 100%;
    height: 90px;
}

.ListCards .WatchCard .text::before {
    border-top: 4px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
    height: 4px;
    width: 100%;
}

.ListCards .WatchCard .text h3 {
    text-align: center;
    font-size: 25px;
}

.ListCards .WatchCard .text p {
    font-size: 16px;
    line-height: normal;
}

.ListCards .WatchCard .Counter span {
    height: 50px;
    width: 50px;
    font-size: 18px;
}

.cardFirstBorder {
    padding: 7px;
}

.Homesection02 .container-fluid {
    padding-top: 20px;
}

.HomeSection03 .container-fluid {
    padding-top: 0;
}

.HomeSection03 .text p {
    font-size: 18px;
}

.HomeSection03 .ABoutBox {
    margin-top: 50px;
}

.HomeSection03 .ABoutBox .imgBox img {
    max-width: 100% !important;
}

.HomeSection04 .container-fluid {
    padding-top: 0;
}

.HomeSection05 .imgBox img {
    max-width: 100% !important;
}

.footerBottom ul {
    text-align: center;
}

.footerBottom p {
    padding: 20px 0;
}

footer .row {
    row-gap: 20px;
}

footer .col-lg-3 .text.twoBoxAlign {
    gap: 40px;
}

.AboutUsSec .container-fluid {padding: 50px 20px;}

.AboutUsSec .text {
    gap: 15px;
}

.AboutUsSec .text p {
    font-size: 16px;
}

.AboutUsSec .row {
    flex-direction: column-reverse;
        gap: 0;
}

.AboutUsSec .imgBox img {
    max-width: 100px !important;
    display:none;
}
.SubBanner .text img {
    max-width: 150px;
}
.ProductListingGrid {
    grid-template-columns: 1fr;
}

.ProductListingGrid .text img {
                max-height: 230px;
        margin-bottom: 0;
        margin-right: -12px !important;
                margin-left: 0 !important;
}

.ProductListingGrid .text .infoBox p, .ProductListingGrid .text .infoBox p.ProductCode {
    font-size: 14px;
}

.ProductListingGrid .text .price {
    font-size: 15px;
}

.ShopGrids .pagination-wrapper .page-numbers {
    font-size: 16px;
    height: 30px;
    width: 30px;
}

.ShopGrids .pagination-wrapper .prev, .ShopGrids .pagination-wrapper .next {
    height: unset !important;
    width: unset !important;
    padding: 5px 10px;
    display: block !important;
}

.ShopGrids .pagination-wrapper .page-numbers {
    display: none;
}

.ShopGrids .pagination-wrapper .page-numbers.current, .ShopGrids .page-numbers.current + .page-numbers {
    display: flex !important;
}
.InventorySingleSec .InventoryImage img {
    max-height: 200px;
}

.InventorySingleSec .InventoryDetail table tr td:nth-child(1) {
    font-size: 18px;
    padding: 10px;
}

.InventorySingleSec .InventoryDetail table tr td:nth-child(2) {
    font-size: 16px;
    letter-spacing: 0;
    padding: 5px 5px 5px 15px;
}

.InventorySingleSec .InventoryDescription p {
    font-size: 16px;
    letter-spacing: 1px;
}

.InventorySingleSec .container-fluid {
    padding-bottom: 50px;
}

.SubBanner .text p {
    font-size: 16px;
}

.SelltradeSec .ListCards .WatchCard .Counter {
    padding: 0;
    align-items: center;
}

.SelltradeSec .ListCards .WatchCard .text p {
    text-align: center;
    font-size: 16px;
}

.SelltradeSec .ListCards .WatchCard .text ul {
    font-size: 10px;
    line-height: normal;
    margin: 0px 20px;
    list-style: disc;
}

.SelltradeSec .ListCards .WatchCard .text {
    padding: 20px;
}

.SelltradeSec .leftContent .content h2 {
    font-size: 25px;
    letter-spacing: 1px;
}

.SelltradeSec .leftContent .content ul {
    text-align: left;
    font-size: 16px;
    line-height: normal;
    max-width: fit-content;
    margin: auto;
    margin-top: 20px;
}

.ConsignmentSec .ButtonBox .t-btn {
    margin: 0 !important;
}

.ConsignmentSec .leftContent .content h3 {
    font-size: 25px;
}

.ConsignmentSec .leftContent .content p {
    font-size: 16px;
    line-height: normal;
}


.page-id-271 .SelltradeSec .row {
    flex-direction: column !important;
    gap: 0;
}
.WatchSubmitContactForm form .row {
    flex-direction: column;
    gap: 20px;
}

.WatchSubmitContactForm form .row .col {
    display: block;
    min-height: max-content !important;
}

.WatchSubmitContactForm form input[type="radio"], .WatchSubmitContactForm form input[type="checkbox"] {
    height: 15px;
    width: 15px !important;
}

.WatchSubmitContactForm form input, .WatchSubmitContactForm form textarea {
    width: 100% !important;
    margin: 0 !important;
}

.WatchSubmitContactForm form p {
    font-size: 11px !important;
    text-align: left;
}

input#c_check ~ label {
    font-size: 12px;
}
.nav-tabs .nav-item {
    margin: 0 !important;
}

.OriginOfTime .nav-tabs .nav-link {
    font-size: 15px;
    padding: 7px 20px;
    border-width: 2px;
}

.OriginOfTime .nav-tabs {
    padding: 0 5px;
    gap: 10px;
}

.OriginOfTime .imgBox ul {
    grid-template-columns: 1fr;
}

.OriginOfTime .imgBox .imageBox {
    width: 100%;
}

.OriginOfTime .cardsecondBorder {
    font-size: 16px !important;
    padding: 10px;
}

.OriginOfTime .cardsecondBorder span {
    font-size: 18px !important;
}

.OriginOfTime .ABoutBox .imgBox~ .cardFirstBorder .cardsecondBorder p {
    font-size: 16px;
}

.OriginOfTime .imgBox {
    margin-bottom: 30px;
}
.WatchSubmitContactForm form textarea {
    min-height: 150px;
}
.AboutUsSec .container-fluid {
    padding-top: 10px;
}
.page-template-sell-trade-your-timepiece .leftContent img {
    max-width: 100%;
}
.page-template-origin-of-time .SubBanner img {
    max-width: 200px;
}
.page-template-contact .SubBanner h2 {
    margin-top: 30px;
}
.OriginOfTime .tab-content .cardFirstBorder.ImageBox {
    height: fit-content;
}

.ShopGrids .filterRow .col-lg-6:last-child form select {
    max-width: 100px;
    font-size: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ShopGrids .filterRow .col-lg-6:last-child form {
    max-width: 100% !important;
    width: 100%;
}

.ShopGrids .filterRow form button {
    font-size: 10px;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.ShopGrids .filterRow form input {
    font-size: 10px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ShopGrids .filterRow {
    margin-bottom: 30px;
}

.ShopGrids .filterRow form {
    gap: 5px;
}

.OriginOfTime .tab-select-wrapper .SelectBoxDesign .selectedCategory {
    height: 50px !important;
    width:300px !important;
}

.OriginOfTime .tab-select-wrapper .SelectBoxDesign .categoryDropdown {
    width: 300px;
}

.OriginOfTime .tab-select-wrapper .SelectBoxDesign .selectedCategory p {
    font-size: 14px !important;
}
.page-template-origin-of-time .SubBanner .container-fluid{
    padding: 0 !important;
}

.page-template-origin-of-time .SubBanner .container-fluid .MobileImage {
    min-width: 100%;
    /*margin-bottom: 20px;*/
}

.container.lastImageBox {
    padding: 0px 30px;
}

.OriginOfTime {
    padding-bottom: 0;
}

.OriginOfTime .row {
    gap: 0;
}

.page-template-origin-of-time .SubBanner .container-fluid  .row {
    margin: 0;
}

.page-template-origin-of-time .SubBanner .container-fluid .row .col-lg-12 {
    padding: 0;
}

.page-template-origin-of-time .SubBanner .container-fluid .imgBox, .page-template-blog .SubBanner .container-fluid .imgBox {flex-direction: column;gap: 40px;padding: 50px 20px 0px;}

.page-template-origin-of-time .SubBanner .container-fluid .imgBox .cardFirstBorder.MobileImage, .page-template-blog .SubBanner .container-fluid .imgBox .cardFirstBorder.MobileImage {
    width: 100%;
}

.page-template-origin-of-time .SubBanner .container-fluid .imgBox .cardFirstBorder.MobileImage img, .page-template-blog .SubBanner .container-fluid .imgBox .cardFirstBorder.MobileImage img {
    min-width: 100%;
}

.MobileImage img {
    margin: auto;
}

.page-template-blog .SubBanner .container-fluid .MobileImage {
    min-width: 100%;
}

.page-template-blog form button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-template-blog form button svg {
    padding: 0 !important;
}

.page-template-blog form {
    gap: 0 !important;
    max-width: 300px !important;
    margin: auto;
}

.page-template-blog form input {
    font-size: 18px !important;
}

.postBox {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blogContent {
    text-align: center;
}

.blogContent h2 {
    margin: 20px 0;
}

.MobileImage img {
    max-width: 150px !important;
}
.singlepostpage .container-fluid {
    padding-top: 30px;
}




.singlepostpage .LatestBox.MobileImage img {
    max-width: 100% !important;
}

.singlepostpage .postBox h3 {
    text-align: left;
    width: 100%;
}

.singlepostpage .postBox a {
    width: 100%;
    text-align: left;
}

.singlepostpage .blogContent p {
    margin-top: 10px;
}

.AboutUsSec .MobileImage img {
    max-width: 100% !important;
}

.page-template-sell-trade-your-timepiece .SelltradeSec .ListCards .WatchCard .Counter {
padding-top: 0;
}

.footerBottom ul {
max-width: 310px;
margin-left: auto;
margin-right: auto;
}

.footerBottom ul li a {
    align-items: flex-start;
}

.footerBottom ul li {
    padding-right: 25px;
}

.footerBottom ul li:last-child {
    padding: 0;
}

.footerBottom ul li i {
    margin-top: 7px;
}

.mobmenu .headertext img {
    max-width: 100%;
}

.footerBottom p {
    font-size: 12px;
}

.InventorySingleSec .InfoBox {
    flex-direction: row;
    flex-wrap: wrap;
}

    .InventorySingleSec .InfoBox .t-btn {
        max-width: 48.5% !important;
        width: 48.5% !important;
        padding: 15px 5px !important;
        font-size: 12px !important;
}

.InventorySingleSec .InfoBox .cardFirstBorder {
    width: 100%;
}

.InventorySingleSec .InfoBox {gap: 10px;}
.footerBottom p span {
    font-size: 10px;
}
.footerBottom ul li:first-child i {
    margin-right: 0px;
    margin-left: 15px;
}
}