@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* font-family: 'Roboto', sans-serif; */

/* body,
html {
  overflow-x: hidden;
} */
/* body,html{
    width: 100%;
} */
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: normal;
  font-style: normal;
  color: var(--text-clr);
  font-size: 18px;
  line-height: 1.2;
  background-color: #fff;
  /* scroll-behavior: smooth; */
}

body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

body::-webkit-scrollbar-track {
  background: #eee;
}

body::-webkit-scrollbar-thumb {
  background: var(--primary-clr);
  border: none;
  border-radius: 10px;
}

:root {
  scroll-behavior: inherit;
  --primary-clr: #00152B;
  --white: #fff;
  --black: #000;
  --secondary-clr: #FFA723;
  --text-clr: #375472;
}

b,
strong {
  font-weight: 700;
}

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

p {
  margin: 0 0 15px 0;
  color: var(--text-clr);
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 25px 0;
  padding: 0;
  color: var(--white);
  font-weight: 700;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1,
.h1-title {
  font-weight: 700;
  font-size: 50px;
  line-height: 1.4;
  text-align: center;
  color: var(--white);
  margin: 0 0 25px 0;
}

h1 .scnd-txt,
.h1-title .scnd-txt,
.scnd-txt {
  color: var(--secondary-clr);
}

.inr-bnr-sec h1,
.inr-bnr-sec .h1-title {
  color: var(--secondary-clr);
}

h2,
.h2-title {
  font-weight: 700;
  font-size: 34px;
  line-height: 1.4;
  text-align: center;
  color: var(--primary-clr);
}

h3,
.h3-title {
  font-weight: 500;
  font-size: 30px;
  line-height: 1.2;
}

h4,
.h4-title {
  font-size: 18px;
  line-height: 1.2;
}

h5,
.h5-title {
  font-size: 20px;
  line-height: 1.2;
}

a {
  display: inline-block;
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: var(--primary-clr);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: var(--secondary-clr);
}

img {
  max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
  background-color: #EBEBEB;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 10px;
  color: var(--primary-clr);
  /* border: 1px solid rgba(255, 255, 255, 0.7); */
  height: 60px;
  padding: 0 20px;
  outline: none !important;
  font-size: 18px;
  /* -webkit-box-shadow: 0 4px 22px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.25); */
  border: none;
  background: #EBEBEB;
}

textarea {
  background-color: #EBEBEB;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 10px;
  /* border: 1px solid rgba(255, 255, 255, 0.7); */
  padding: 12px 20px;
  width: 100%;
  color: var(--primary-clr);
  height: 128px;
  resize: none;
  /* -webkit-box-shadow: 0 4px 22px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.25); */
  outline: none !important;
  border: none;
}

select {
  /* border: 1px solid rgba(255, 255, 255, 0.7); */
  width: 100%;
  padding: 0 20px;
  background: url(../images/sort-down.svg) no-repeat calc(100% - 34px) center #EBEBEB;
  background-size: 10px;
  padding-right: 50px;
  /* -webkit-box-shadow: 0 4px 22px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.25); */
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  color: #B5B5B5;
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

input[type="submit"],
input[type="button"] {
  background: var(--secondary-clr);
  color: var(--white);
  height: 55px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: auto;
  border-radius: 100px;
  padding-left: 34px;
  padding-right: 34px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover,
input[type="button"]:hover {
  background: var(--primary-clr);
  color: var(--white);
}

::-webkit-input-placeholder {
  opacity: 1;
  color: #B5B5B5;
}

:-ms-input-placeholder {
  opacity: 1;
  color: #B5B5B5;
}

select:disabled,
select option:disabled {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #B5B5B5 !important;
  opacity: 1 !important;
}

::-moz-placeholder {
  opacity: 1;
  color: #B5B5B5;
}

:-moz-placeholder {
  opacity: 1;
  color: #B5B5B5;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e42;
  background: transparent;
}

.form_input_check label input[type="checkbox"]+span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */
.form_input_check label input[type="checkbox"]:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* custom radio */

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type="radio"]+span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio label input[type="radio"]+span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.form_input_radio label input[type="radio"]:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */

/* navbar*/

/* .main-head {
  padding: 10px 0;
} */
.main-head {
  z-index: 999;
  background: var(--white);
}

.main-head.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  animation: slide-down 0.7s;
  -ms-animation: slide-down 0.7s;
  -webkit-animation: slide-down 0.7s;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}

@-webkit-keyframes slide-down {
  0% {
    transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
  }
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
  }
}

.main-head.fixed .navbar {
  padding: 10px 0;
}

.main-head.fixed .navbar-brand {
  width: 100px;
}

.main-head.fixed .top-header {
  padding: 7px 0;
}

.navbar-brand {
  padding: 0;
  margin: 0;
  width: 110px;
  display: inline-block;
}

.navbar-brand img {
  width: 100%;
}

.navbar {
  background: none;
  margin: 0;
  padding: 26px 0;
  min-height: inherit;
  height: inherit;
  border: none;
  border-radius: 0;
  -webkit-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.navbar-nav li {
  position: relative;
  list-style: none;
}

.navbar-nav>li {
  margin: 0 15px;
  /* padding: 20px 0; */
  position: relative;
}

.navbar-nav>li:last-child {
  margin-right: 0;
}

.navbar-nav>li:first-child {
  margin-left: 0;
}

.navbar-nav>li>a {
  color: var(--primary-clr);
  line-height: 1.2;
  position: relative;
  font-weight: 600;
  text-transform: capitalize;
}

.navbar-nav>li>a:hover,
.navbar-nav>li.current-menu-item a {
  color: var(--secondary-clr);
}

/* navbar submenu*/

.sub-menu {
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  width: 140px;
  padding: 0;
}

.sub-menu>li>a {
  color: var(--text-clr);
  display: block;
  width: 100%;
  padding: 6px 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.sub-menu>li {
  width: 100%;
  display: block;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li.current-menu-item>a {
  background: var(--theme-gradient);
  color: #fff;
}

.navbar-nav>li:last-child>.sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}

/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

/* for push-menu */
.navbar-collapse .navbar-toggler {
  display: none;
}

#navoverlay {
  display: block;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  margin: 0;
  padding: 0;
  z-index: 99;
  -webkit-transition: background-color 0.5s linear;
  -o-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
}

.navbar-nav {
  margin: 0 auto;
}

/* for push-menu end*/
.top-header {
  width: 100%;
  padding: 9px 0;
  background: var(--primary-clr);
}

.top-hdr ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top-hdr ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-hdr ul li span {
  display: inline-block;
  width: 26px;
  height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--secondary-clr);
  margin-right: 6px;
}

.top-hdr ul li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}

.top-hdr ul li a:hover {
  color: var(--secondary-clr);
}

/* Global Classes */

.cmn-btn {
  font-size: 14px;
  font-weight: 600;
  color: #771B1B;
  background: var(--secondary-clr);
  overflow: hidden;
  border-radius: 30px;
  padding: 9px 26px;
  text-align: center;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 128px;
  min-height: 39px;
}

.cmn-btn .btn-arr {
  display: block;
  margin-left: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.cmn-btn.hdr-btn {
  padding-left: 15px;
  padding-right: 15px;
  height: 50px;
  background: var(--primary-clr);
  color: var(--white);
  font-size: 18px;
}

.cmn-btn.hdr-btn:hover {
  color: var(--primary-clr);
  background: var(--secondary-clr);
}

.cmn-btn.hdr-btn:hover .btn-arr {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cmn-btn:hover {
  color: var(--white);
  background: var(--primary-clr);
}

.cmn-btn:hover .btn-arr {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slick-dots li {
  line-height: 0;
}

.slick-dots li button {
  font-size: 0;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #D9D9D9;
  width: 25px;
  height: 7px;
  border-radius: 9px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.slick-dots li:not(:last-child) {
  margin-right: 5px;
}

.slick-dots li button:hover,
.slick-dots li.slick-active button {
  background: var(--secondary-clr);
}

.slick-arrow {
  position: absolute;
  top: 40%;
  font-size: 0;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: url(../images/chevronright.png) no-repeat center;
  background-size: cover;
  width: 40px;
  height: 40px;
  z-index: 2;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  /* pointer-events: none; */
}

.slick-arrow.slick-prev {
  left: -50px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.slick-arrow.slick-next {
  right: -50px;
}

.cmn-gap {
  padding: 30px 0;
}

.sec-head {
  margin-bottom: 28px;
  text-align: center;
}

.sec-head .head-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.sec-head .head-icon::before {
  content: "";
  position: absolute;
  left: 0;
  width: calc(50% - 28px);
  height: 2px;
  background: var(--primary-clr);
  bottom: 11px;
  pointer-events: none;
  z-index: -1;
  border-radius: 5px;
}

.sec-head .head-icon::after {
  content: "";
  position: absolute;
  right: 0;
  width: calc(50% - 28px);
  height: 2px;
  background: var(--primary-clr);
  bottom: 11px;
  pointer-events: none;
  z-index: -1;
  border-radius: 5px;
}

.sec-head h2 {
  margin-bottom: 5px;
}

.sec-head .secnm {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-clr);
  text-transform: uppercase;
}

.sec-head.head-left,
.sec-head.head-left h2 {
  text-align: left;
}

/* Global Classes */

/* Hero Section Begin */

.bnr-item-inr {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 608px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
  position: relative;
}

.bnr-img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
  position: absolute;
  filter: none !important;
  ;
}

.bnr-item-inr::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* z-index: -1; */
}

.hero-inr {
  border-radius: 20px;
  overflow: hidden;
}

.bnr-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.bnr-content p {
  color: var(--white);
  max-width: 857px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

.bnr-content .cmn-btn {
  height: 47px;
  color: var(--white);
}

.bnr-slider {
  position: relative;
}

.bnr-slider .slick-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* End of Hero Section */

/* About Section Begin */

.about-inr {
  background: rgba(239, 242, 255, .5);
  border-radius: 20px;
  padding: 90px 50px 90px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.abt-left {
  background: var(--primary-clr);
  border-radius: 20px;
  padding: 1px 24px 25px;
}

.abt-img {
  margin-top: -70px;
  border-radius: 20px;
  overflow: hidden;
  padding: 1px 2px;
  position: relative;
  z-index: 1;
}

.abt-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  /* transform: translate(-50% , -50%); */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #1a1a0000), to(#FEB03A));
  background: -o-linear-gradient(#1a1a0000 25%, #FEB03A 100%);
  background: linear-gradient(#1a1a0000 25%, #FEB03A 100%);
  z-index: -1;
  border-radius: 20px;
}

.abt-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.abt-left-inr {
  padding-top: 70px;
}

.abt-content p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
}

/* End Of About Section */

/* Auction Section Begin */

.auction-inr {
  padding: 60px;
  border-radius: 20px;
  background: #EEEEEE;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.card-ftr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.card-dtls {
  padding-right: 12px;
}

.card-dtls ul li {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
}

.card-dtls ul li b {
  font-weight: 600;
}

.card-dtls ul li:last-child {
  margin-bottom: 0;
}

.card {
  padding: 22px 15px;
  border-radius: 20px;
  background: rgba(253, 253, 253, .3);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.card:hover .card-img img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.card-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.card-bdy h3 {
  margin-bottom: 7px;
  font-weight: 600;
}

.card-bdy {
  margin-bottom: 15px;
}

.card-bdy p {
  font-size: 16px;
}

.card-wrp {
  padding: 21px;
}

.card-slider .slick-list {
  margin: -21px;
}

.card-slider .slick-dots {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 47px;
}

.card-slider .slick-dots li button:hover,
.card-slider .slick-dots li.slick-active button {
  background: var(--primary-clr);
}

.card-slider .slick-dots li button {
  background: #9F9F9F;
}

.card-img-outer {
  position: relative;
}

.card-img-icons {
  display: flex;
  align-items: center;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.card-img-icons>* {
  display: block;
  width: 30px;
  margin-right: 10px;
  -webkit-transition: all ease-in-out .3s;
  -moz-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.card-img-icons>*:last-child {
  margin-right: 0;
}

.card-img-icons .heart-icon {
  position: relative;
  min-height: 30px;
}

.card-img-icons .heart-icon img {
  width: 100%;
  opacity: 1;
  visibility: visible;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all ease-in-out .3s;
  -moz-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.card-img-icons .heart-icon img.heart-icon-red {
  opacity: 0;
  visibility: hidden;
}

.card-img-icons span.cdicon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-clr);
  padding: 5px;
}

.card-img-icons .heart-icon:hover .heart-icon-red,
.card-img-icons .heart-icon.active .heart-icon-red {
  opacity: 1;
  visibility: visible;
}

/* End Of Auction Section */

/* Why Choose Section Begin */

.why-choose-inr {
  border-radius: 20px;
  padding: 60px;
  background: rgba(239, 242, 255, .5);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.why-choose-inr .sec-head {
  max-width: 734px;
  margin-left: auto;
  margin-right: auto;
}

.why-choose-inr .head-icon,
.sec-head p {
  max-width: 548px;
  margin-left: auto;
  margin-right: auto;
}

.sec-head p {
  font-size: 16px;
  font-weight: 400;
}

.wc-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* align-items: center; */
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.wc-cd-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary-clr);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.wccd-content {
  width: calc(100% - 100px);
  padding-left: 24px;
}

.wccd-content h3 {
  margin-bottom: 15px;
  color: var(--primary-clr);
}

.wccd-content p {
  font-size: 16px;
  font-weight: 400;
}

.why-choose-cards .row {
  --bs-gutter-x: 32px;
  --bs-gutter-y: 50px;
}

.why-choose-cards {
  max-width: 1120px;
  margin: 0 auto;
}

/* End Of Why Choose Section */

/* Services Section Begin */

.services-sec .service-inr {
  padding: 60px 70px;
}

.service-inr {
  text-align: center;
  padding: 60px;
  background: var(--white);
  border-radius: 20px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-inr .sec-head {
  display: inline-block;
}

.service-inr .card {
  text-align: left;
}

.service-inr .card .card-img {
  margin-bottom: 17px;
}

.service-inr .card-ftr .cmn-btn {
  margin-left: auto;
}

.service-inr .card-bdy p {
  padding: 0 37px 0 0;
}

.service-inr .card-bdy h3 {
  font-weight: 600;
}

.card-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.card-slider .card-wrp {
  height: inherit;
}

.card-slider .card-wrp .card {
  height: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.service-inr .card-slider .slick-arrow {
  background-image: url(../images/chevronright-brdr.png);
  border: 2px solid var(--primary-clr);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--white);
  background-size: 10px;
}

.service-inr .card-slider .slick-arrow:hover {
  background-color: var(--secondary-clr);
  border-color: var(--secondary-clr);
}

.service-inr .card-slider .slick-list {
  margin: -25px;
}

.service-inr .card-slider .card-wrp {
  padding: 25px;
}

/* End Of Services Section */

/* Pricing Section begin */

.pricing-inr {
  padding: 60px 0;
  background: var(--white);
  border-radius: 20px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: all ease-in-out .3s;
  -moz-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.text-center .sec-head {
  display: inline-block;
  -webkit-transition: all ease-in-out .3s;
  -moz-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.pricing-inr .sec-head {
  margin-bottom: 76px;
}

.pricing-cards-row {
  --bs-gutter-x: 62px;
  --bs-gutter-y: 24px;
}

.pricing-card {
  padding: 30px 24px;
  border: 1px solid var(--primary-clr);
  border-radius: 20px;
  background: #EBF4FF;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -webkit-transition: all ease-in-out .3s;
  -moz-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.memtype-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background: var(--primary-clr);
  border-radius: 5px;
  padding: 8px 14px;
  margin-bottom: 10px;
  display: inline-block;
  -webkit-transition: all ease-in-out .3s;
  -moz-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.mem-type p {
  font-size: 16px;
  color: #333333;
  font-weight: 400;
  -webkit-transition: all ease-in-out .3s;
  -moz-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.mem-type {
  margin-bottom: 30px;
  -webkit-transition: all ease-in-out .3s;
  -moz-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.price {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--primary-clr);
  margin-bottom: 24px;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  -webkit-transition: all ease-in-out .3s;
  -moz-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.price-amount {
  display:block;
  font-size: 28px;
  font-weight: 500;
  color: var(--primary-clr);
  line-height: 1;
  text-transform: uppercase;
  -webkit-transition: all ease-in-out .3s;
  -moz-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.validity {
  display:block;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-clr);
  -webkit-transition: all ease-in-out .3s;
  -moz-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.subs-includes ul li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-clr);
  -webkit-transition: all ease-in-out .3s;
  -moz-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.subs-includes ul li:last-child {
  margin-bottom: 0;
}

.subs-includes ul li img {
  margin-right: 20px;
  width: 16px;
  -webkit-transition: all ease-in-out .3s;
  -moz-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.subs-includes {
  margin-bottom: 64px;
}

.buy-btn {
  display: flex;
  width: 100%;
  background: var(--primary-clr);
  color: var(--white);
}

.buy-btn:hover {
  color: var(--white);
  background: var(--secondary-clr);
}

.pricing-card .cmn-btn {
  height: 60px;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
}

.pricing-card:hover {
  background: var(--primary-clr);
  color: var(--white);
  border-color: var(--secondary-clr);
}

.pricing-card:hover .memtype-tag {
  background: var(--secondary-clr);
}

.pricing-card:hover .mem-type p,
.pricing-card:hover .validity,
.pricing-card:hover .price-amount,
.pricing-card:hover .subs-includes ul li {
  color: var(--white);
}

.pricing-card:hover .cmn-btn {
  color: var(--white);
  background: var(--secondary-clr);
}

.pricing-card .cmn-btn:hover {
  background: var(--white);
  color: var(--primary-clr);
}

.pricing-card:hover .subs-includes ul li img {
  filter: brightness(0) invert(1);
}

.pricing-card:hover .price {
  border-color: var(--secondary-clr);
}

/* End of Pricing Section */

/* Faq Section Begin */

.faq-inr {
  background: var(--primary-clr);
  padding: 60px;
  border-radius: 20px;
}

.faq-inr .sec-head h2 {
  margin-bottom: 20px;
  color: var(--white);
}

.faq-inr .sec-head p {
  color: #C7C7C7;
}

.faq-item {
  margin-bottom: 32px;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--white);
  /* -webkit-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s; */
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item .question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  cursor: pointer;
  /* margin-bottom: 15px; */
}

.faq-item .question h3 {
  margin-bottom: 0;
  margin-right: 15px;
  max-width: 90%;
  font-size: 24px;
}

.faq-item .answer {
  margin-top: 20px;
}

.faq-item.active {
  background: var(--white);
}

.faq-item.active h3,
.faq-item.active .faq-indicator i {
  color: var(--primary-clr);
}

.faq-item .faq-indicator {
  margin-left: auto;
  color: var(--white);
}

.faq-item .faq-indicator i {
  -webkit-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.faq-tab-head {
  margin-bottom: 50px;
}

.faq-tab-head ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.faq-tab-head ul li {
  border: 1px solid var(--secondary-clr);
  border-radius: 30px;
  padding: 10px 20px;
  color: var(--secondary-clr);
  background: transparent;
  margin-right: 15px;
  cursor: pointer;
  font-size: 16px;
  -webkit-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.faq-tab-head ul li:last-child {
  margin-right: 0;
}

.faq-tab-head ul li:hover,
.faq-tab-head ul li.active {
  color: #771B1B;
  background: var(--secondary-clr);
}

.show-more {
  cursor: pointer;
  -webkit-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.show-more:hover {
  background: var(--white);
  color: var(--primary-clr);
}

.btn-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* End Of Faq Section */

/* Help Section Begin */

.contact-cards ul li {
  margin-bottom: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.help-inr {
  padding: 60px;
  background: var(--white);
  border-radius: 20px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.contact-cards ul li:last-child {
  margin-bottom: 0;
}

.contact-cards ul li .cntct-icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 5px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: var(--secondary-clr);
}

.contact-cards ul li .cntct-content {
  padding-left: 22px;
  width: calc(100% - 60px);
}

.contact-cards ul li .cntct-content h3 {
  color: var(--primary-clr);
  margin-bottom: 6px;
}

.contact-cards ul li .cntct-content a {
  font-size: 16px;
}

.contact-cards ul li .cntct-content p {
  font-size: 15px;
}

.contact-cards ul li .cntct-content a,
.contact-cards ul li .cntct-content p {
  font-weight: 500;
  color: var(--text-clr);
}

.sendemail-form {
  --bs-gutter-x: 28px;
  --bs-gutter-y: 24px;
}

.help-inr .sec-head {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.help-inr .sec-head::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  bottom: 0;
  background: var(--primary-clr);
}

/* End Of Help Section */

/* Footer Section Begin */

footer {
  background: var(--primary-clr);
}

.footer-inr {
  padding: 72px 0 110px;
}

.ftr-widget ul li a,
.ftr-widget p {
  color: var(--white);
  font-size: 16px;
  line-height: 1.5;
}

.ftr-widget ul li a:hover {
  color: var(--secondary-clr);
}

.ftr-widget ul li {
  margin-bottom: 10px;
  padding: 0 10px;
}

.ftr-widget ul li:last-child {
  margin: 0;
}

.ftr-widget:first-child {
  width: 33%;
}

.ftr-widget:nth-child(2) {
  width: 21%;
}

.ftr-widget:nth-child(3) {
  width: 22%;
}

.ftr-widget:last-child {
  width: 24%;
}

.ftr-widget-head {
  color: var(--secondary-clr);
  font-size: 24px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding-right: 9px;
  margin-bottom: 15px;
}

.ftr-widget-head::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 2px;
  background: var(--secondary-clr);
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.ftr-brand {
/*   margin-bottom: 20px; */
  width: 160px;
  display: inline-block;
}

.ftr-brand img {
  width: 100%;
}

.ftr-widget-inr {
  max-width: 360px;
}

.ftr-widget .social-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ftr-widget .social-links ul li {
  margin-bottom: 0;
  margin-right: 13px;
}

.ftr-widget .social-links ul li a {
  background: var(--secondary-clr);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px;
  border: 1px solid var(--secondary-clr);
}

.ftr-widget .social-links ul li a:hover {
  background: var(--white);
  border-color: var(--white);
}

.copyright {
  background: var(--secondary-clr);
}

.copyright-inr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 19px 0;
}

.devcmpnynm {
  margin-left: auto;
  color: var(--primary-clr);
  font-weight: 500;
}

.cprt-txt {
  margin: 0;
  color: var(--primary-clr);
  font-weight: 500;
  font-size: 18px;
}

.devcmpnynm a:hover {
  color: var(--white);
}

/* End of Footer Section */

/* Details Page Begin */

.inr-bnr {
  width: 100%;
  height: 100%;
  min-height: 340px;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  z-index: 1;
  position: relative;
}

.inr-bnr::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #00152B 0%, #00152B00 84%);
  pointer-events: none;
  z-index: -1;
}

.progress-bar-container {
  width: 100%;
  background-color: #E2E0E0;
  height: 7px;
  margin-top: 13px;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: var(--secondary-clr);
  width: 0;
  -webkit-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.auc-nav-item {
  cursor: pointer;
  padding: 0 13px;
}

.auc-nav-item .ani-img {
  border-radius: 20px;
  overflow: hidden;
}

.auc-nav-item .ani-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.auc-slider-nav .slick-list {
  margin: 0 -13px;
}

.auc-slider-wrp {
  margin-bottom: 19px;
}

.auc-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

.auc-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.auction-date-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 39px;
}

.auction-date {
  background: var(--primary-clr);
  border-radius: 10px;
  padding: 10px 20px;
  margin-right: 80px;
}

.auction-date p {
  color: var(--white);
  font-weight: 600;
}

.auction-time p {
  font-weight: 600;
  color: var(--primary-clr);
}

.dt-icon {
  margin-right: 10px;
}

.auction-date,
.auction-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.auc-id {
  text-align: center;
  font-weight: 600;
  color: var(--white);
  background: var(--primary-clr);
  padding: 10px 20px;
  border-radius: 0 10px 10px 0;
  position: absolute;
  left: 0;
  top: 22px;
  display: inline-block;
  min-width: 272px;
}

.video-wrp-inr {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  opacity: 0;
}

.auc-sec-vdo {
  position: relative;
  overflow: hidden;
}

.auc-sec-vdo.active .video-wrp-inr {
  opacity: 1;
  z-index: 2;
}

.thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.play-btn-wrp.active {
  opacity: 0;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.vdo-play-btn {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--secondary-clr);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.play-btn-wrp .vdo-play-btn i {
  font-size: 26px;
  position: static;
  color: var(--white);
}

.play-btn-wrp {
  width: 96px;
  height: 96px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.play-btn-wrp::after,
.play-btn-wrp::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  z-index: -1;
  -webkit-animation: scale 3s infinite cubic-bezier(0.25, 1, 0.5, 1);
  animation: scale 3s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

.play-btn-wrp::after {
  width: 130px;
  height: 130px;
  z-index: -1;
  background: rgb(255, 255, 255);
  -webkit-animation: smallScale 2.5s infinite linear;
  animation: smallScale 2.5s infinite linear;
  opacity: 0.4;
}

.play-btn-wrp::before {
  width: 170px;
  height: 170px;
  z-index: -2;
  background: rgb(255, 255, 255);
  -webkit-animation: fadeIn 4s infinite linear;
  animation: fadeIn 4s infinite linear;
  opacity: 0.2;
}

@-webkit-keyframes fadeIn {
  from {
    -webkit-transform: translate(-50%, -50%) scale(0.5);
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.2;
  }

  to {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes fadeIn {
  from {
    -webkit-transform: translate(-50%, -50%) scale(0.5);
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.2;
  }

  to {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}

@-webkit-keyframes smallScale {
  from {
    -webkit-transform: translate(-50%, -50%) scale(0.5);
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.4;
  }

  to {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

@keyframes smallScale {
  from {
    -webkit-transform: translate(-50%, -50%) scale(0.5);
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.4;
  }

  to {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

.auc-dtls-tab-head {
  margin-bottom: 37px;
  padding-top: 22px;
}

.auc-dtls-tab-head ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -13px -13px 0;
}

.auc-dtls-tab-head ul li {
  padding: 10px 20px;
  color: var(--primary-clr);
  font-size: 16px;
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--primary-clr);
  border-radius: 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 13px 13px 0;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

.auc-dtls-tab-head ul li.active {
  color: var(--white);
  background: var(--primary-clr);
}

.auc-dtls-tab-head ul li:hover {
  color: var(--white);
  background: var(--primary-clr);
}

.auc-dtl-tab.location {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary-clr);
}

.auc-dtl-tab.location img,
.auc-dtl-tab.location iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.auc-dtl-tab p,
.auc-dtls-right p {
  color: var(--primary-clr);
  font-weight: 500;
}

.head-wrp-center .sec-head {
  display: inline-block;
}

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

.material-dtl-table {
  width: 100%;
  max-width: 770px;
  margin: 0 0 40px auto;
  border-collapse: collapse;
}

.material-dtl-table table {
  width: 100%;
  border-collapse: collapse;
}

.material-dtl-table td {
  padding: 33px 15px 18px;
  border-bottom: 1px solid #000;
  font-weight: 600;
}

/* .material-dtl-table tr:last-child td {
  border-bottom: none;
} */
.material-dtl-table td:first-child {
  font-weight: bold;
  color: #333;
  width: 40%;
}

.material-dtl-table td:last-child {
  text-align: right;
  color: var(--primary-clr);
  font-weight: 600;
}

.material-dtl-table a {
  text-decoration: none;
  color: var(--primary-clr);
  font-weight: 500;
  line-height: 1;
}

.material-dtl-table p {
  color: var(--primary-clr);
  font-weight: 500;
}

.material-dtl-table a:hover {
  text-decoration: underline !important;
}

.material-dtl-table img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-left: 5px;
  margin-bottom: 5px;
}

.auc-dtls .row {
  --bs-gutter-x: 68px;
}

.heading {
  margin-bottom: 25px;
}

.heading h2,
.heading .h2-title {
  text-align: left;
  display: inline-block;
  padding-bottom: 10px;
  position: relative;
}

.heading h2::after,
.heading .h2-title::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 2px;
  background: var(--primary-clr);
}

.pay-form .input-grp input::-webkit-outer-spin-button,
.pay-form .input-grp input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: none;
}

.payemd .payinfo {
  color: var(--primary-clr);
  font-weight: 600;
  font-size: 16px;
}

.payemd .heading .h2-title {
  margin-bottom: 25px;
}

.payemd .heading {
  margin-bottom: 30px;
}

.pay-form .input-grp input[type='number'] {
  height: 100%;
  width: 100%;
  background: var(--white);
  color: var(--primary-clr);
  left: 0;
  top: 0;
  border: 1px solid #8E8E8E;
  border-radius: 10px 0 0 10px;
  padding: 15px;
}

.pay-form .input-grp input[type='submit'] {
  width: 205px;
  height: 100%;
  border-radius: 0 10px 10px 0;
  font-size: 22px;
  font-weight: 600;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #771B1B;
}

.pay-form .input-grp input[type='submit']:hover {
  color: var(--white);
}

.pay-form .input-grp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  /* align-items: center; */
}

.pay-form-inr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.auction-inr .card-bdy,
.auction-inr .card-ftr {
  padding-left: 10px;
}

/* End Of Details Page */

.card-bdy p.collapsed {
  max-height: 76px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.card-bdy p.expanded {
  max-height: 76px;
  overflow-y: auto;
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  text-overflow: unset;
}

.card-bdy p {
  scrollbar-width: thin;
  scrollbar-color: var(--secondary-clr) transparent;
}

.card-bdy p::-webkit-scrollbar {
  width: 2px;
}

.card-bdy p::-webkit-scrollbar-thumb {
  background-color: var(--secondary-clr);
  border-radius: 2px;
}

.card-bdy p::-webkit-scrollbar-track {
  background: transparent;
}


/* -----Responsive Css------ */

@media only screen and (max-width: 1499px) {
  .service-inr {
    padding: 60px 50px;
  }

  .services-sec .service-inr {
    padding: 60px 70px;
  }

  .service-inr .card-slider .card-wrp {
    padding: 15px;
  }

  .service-inr .card-slider .slick-list {
    margin: -15px;
  }

  .auc-dtls .row {
    --bs-gutter-x: 12px;
  }

  .auc-dtls-left-wrp .auc-dtl-left {
    padding-right: 40px;
  }
}

@media only screen and (max-width: 1420px) {
  .pricing-cards-row {
    --bs-gutter-x: 52px;
  }
}

@media only screen and (max-width: 1399px) {
  .pricing-cards-row {
    --bs-gutter-x: 24px;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1364px;
  }
}

@media only screen and (max-width: 1199px) {
  .navbar-nav>li>a {
    font-size: 16px;
  }

  .navbar-nav>li {
    margin: 0 12px;
  }

  .navbar-brand {
    width: 100px;
  }

  .cmn-btn.hdr-btn {
    font-size: 16px;
    min-width: auto;
    padding: 9px 12px;
    height: auto;
  }

  .cmn-btn .btn-arr {
    margin-left: 9px;
  }

  .about-inr {
    border-radius: 15px;
    padding: 60px 30px;
  }

  .abt-left {
    border-radius: 15px;
    padding: 1px 12px 15px;
  }

  h2,
  .h2-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .sec-head {
    margin-bottom: 20px;
  }

  .abt-content p {
    font-size: 14px;
    line-height: 1.2;
  }

  .abt-right-wrp {
    width: 60%;
  }

  .about-left-wrp {
    width: 40%;
  }

  .card-wrp {
    padding: 12px;
  }

  .card-slider .slick-list {
    margin: -12px;
  }

  .card {
    padding: 15px;
  }

  .card-dtls~.cmn-btn {
    margin-top: 12px;
  }

  .slick-arrow {
    width: 35px;
    height: 35px;
  }

  .auction-inr {
    padding: 40px 50px;
    border-radius: 15px;
  }

  .slick-arrow.slick-prev {
    left: -45px;
  }

  .slick-arrow.slick-next {
    right: -45px;
  }

  .card-slider .slick-dots {
    margin-top: 40px;
  }

  .why-choose-inr,
  .faq-inr,
  .help-inr,
  .service-inr,
  .services-sec .service-inr {
    padding: 40px;
    border-radius: 15px;
  }

  .wc-cd-img {
    width: 80px;
    height: 80px;
    padding: 10px;
  }

  .wccd-content {
    width: calc(100% - 80px);
    padding-left: 15px;
  }

  .wccd-content h3 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .faq-item .answer {
    margin-top: 15px;
  }

  .faq-item {
    margin-bottom: 25px;
    padding: 25px;
    border-radius: 15px;
  }

  input[type="text"],
  input[type="tel"],
  input[type="password"],
  input[type="email"],
  select {
    /* border: 1px solid rgba(255, 255, 255, 0.7); */
    height: 50px;
    padding: 0 15px;
    font-size: 16px;
  }

  .ftr-widget-head::after {
    width: 30px;
  }

  .ftr-widget-head {
    font-size: 21px;
  }

  .auc-nav-item {
    padding: 0 10px;
  }

  .auc-dtls-tab-head ul li {
    margin: 13px 13px 0;
  }

  .pricing-card {
    padding: 20px 15px;
  }

  .subs-includes ul li img {
    margin-right: 10px;
  }

  .price-amount {
    font-size: 36px;
  }

  .validity {
    font-size: 15px;
  }

  .pricing-card .cmn-btn {
    height: 50px;
  }

  .mem-type{
  margin-bottom: 20px;
  }
  .price {
      padding-bottom: 16px;
      margin-bottom: 20px;
  }
  .subs-includes ul li {
      margin-bottom: 12px;
  }
  .subs-includes {
      margin-bottom: 40px;
  }
}

@media only screen and (max-width: 1024px) {


  /* navbar*/
  .navbar-nav .clickD {
    position: absolute;
    right: 0;
    top: 17px;
    width: 20px;
    height: 20px;
    background: url(images/sort-down.svg) center center no-repeat;
    display: block;
    background-size: 10px;
    cursor: pointer;
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu>li.menu-item-has-children .clickD {
    top: 8px;
    right: 5px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .sub-menu>li.menu-item-has-children .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .navbar-nav>li.menu-item-has-children {
    padding-right: 20px;
  }

  .sub-menu>li.menu-item-has-children>a {
    padding-right: 20px;
  }

  .sub-menu.show {
    display: block;
  }

  .navbar-nav>li {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .navbar-nav>li.current-menu-item>a:after,
  .navbar-nav>li>a:after,
  .navbar-nav>li.menu-item-has-children>a:after {
    width: 100%;
    opacity: 0;
  }

  .navbar-nav>li.current-menu-item>a:after,
  .navbar-nav>li>a:hover:after,
  .navbar-nav>li.menu-item-has-children:hover>a:after {
    width: 100%;
    opacity: 1;
  }

  /* navbar end*/
}

@media only screen and (max-width: 991px) {

  /* navbar*/
  .navbar-toggler {
    position: relative;
    width: 33px;
    margin-left: 20px;
    height: 28px;
    padding: 0;
    outline: none !important;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    /* z-index: 999; */
  }

  .stick,
  .stick:after,
  .stick:before {
    width: 30px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
    top: auto;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    border-radius: 5px;
  }

  .stick:before {
    content: "";
    top: -10px;
    left: 0;
  }

  .stick:after {
    content: "";
    top: 10px;
    left: 0;
  }

  .stick.open {
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
    background: transparent;
  }

  .stick.open:before {
    -webkit-transform: rotate(45deg) translate(42px, -28px);
    -ms-transform: rotate(45deg) translate(42px, -28px);
    transform: rotate(45deg) translate(42px, -28px);
    left: 2px;
  }

  .stick.open:after {
    -webkit-transform: rotate(-45deg) translate(42px, 28px);
    -ms-transform: rotate(-45deg) translate(42px, 28px);
    transform: rotate(-45deg) translate(42px, 28px);
    left: 2px;
  }

  .navbar-nav .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu>li.menu-item-has-children .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  .sub-menu,
  .navbar-nav>li>.sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
    right: inherit;
  }

  .navbar-nav>li.menu-item-has-children {
    padding-right: 0;
  }

  .navbar-nav>li {
    margin: 0;
    padding: 0;
  }

  .navbar-nav>li>a {
    padding: 8px 20px;
    display: inline-block;
    width: 100%;
  }

  .navbar-nav li.menu-item-has-children>a {
    padding-right: 30px;
  }

  .sub-menu>li>a {
    padding-left: 40px;
  }

  .sub-menu .sub-menu>li>a {
    padding-left: 60px;
  }

  .sub-menu .sub-menu .sub-menu>li>a {
    padding-left: 80px;
  }

  .navbar-nav>li>a:after {
    bottom: 0;
  }

  /* navbar end*/

  /* push nav */

  .navbar-collapse {
    background: #fff;
    position: fixed;
    top: 0;
    height: 100% !important;
    width: 290px;
    overflow-y: auto;
    -webkit-transition: inherit !important;
    -o-transition: inherit !important;
    transition: inherit !important;
    right: 0;
    margin: 0;
    display: block !important;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.2s ease-in-out !important;
    -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
    transition: -webkit-transform 0.2s ease-in-out !important;
    -o-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
    z-index: 100;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform 0.2s ease-in-out !important;
    -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
    transition: -webkit-transform 0.2s ease-in-out !important;
    -o-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
  }

  .navbar-collapse .navbar-nav {
    margin: 80px 0 0;
    padding: 0 0 40px 0;
  }

  .navbar-collapse .navbar-toggler {
    display: block;
    right: 20px;
    top: 20px;
    position: absolute;
  }

  #navoverlay.open {
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: all;
    -webkit-transition: background-color 0.5s linear;
    -o-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
  }

  body.open-nav,
  html.open-nav {
    height: 100%;
    overflow: hidden;
  }

  /* push nav end */

  .cmn-btn.hdr-btn {
    margin-left: auto;
  }

  .navbar-toggler {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  h1,
  .h1-title {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero-inr {
    border-radius: 15px;
  }

  .bnr-item-inr {
    min-height: auto;
    padding: 80px 40px;
  }

  .about-left-wrp,
  .abt-right-wrp {
    width: 100%;
  }

  .about-inr,
  .auction-inr {
    padding: 30px;
  }

  .about-inr .row {
    --bs-gutter-y: 24px;
  }

  .abt-content p {
    font-size: 16px;
  }

  h2,
  .h2-title {
    font-size: 28px;
  }

  .why-choose-cards .row {
    --bs-gutter-y: 30px;
  }

  .wccd-content h3 {
    margin-bottom: 8px;
    font-size: 22px;
  }

  .wc-cd-img {
    width: 70px;
    height: 70px;
    padding: 12px;
  }

  .faq-tab-head ul li {
    padding: 8px 15px;
    margin-right: 12px;
    margin-top: 12px;
  }

  .faq-tab-head ul {
    margin-top: -12px;
  }

  .why-choose-inr,
  .faq-inr,
  .help-inr,
  .service-inr,
  .services-sec .service-inr {
    padding: 30px;
    border-radius: 15px;
  }

  .faq-item {
    margin-bottom: 20px;
    padding: 20px;
  }

  p {
    font-size: 16px;
  }

  .faq-item .question h3 {
    font-size: 20px;
  }

  .faq-item .answer {
    margin-top: 12px;
  }

  .contact-cards ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
  }

  .contact-cards ul li {
    padding: 0 15px;
  }

  .help-inr>.row {
    --bs-gutter-y: 30px;
  }

  .sendemail-form {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }

  input[type="submit"] {
    height: 45px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
  }

  .ftr-widget:first-child {
    width: 100%;
    margin-bottom: 25px;
  }

  .ftr-widget-inr {
    max-width: 100%;
  }

  .ftr-widget:nth-child(2) {
    width: 30%;
  }

  .ftr-widget:nth-child(3),
  .ftr-widget:last-child {
    width: 35%;
  }

  .ftr-brand {
    margin-bottom: 10px;
  }

  .footer-inr {
    padding: 70px 0;
  }

  .copyright-inr {
    padding: 15px 0;
  }

  .cprt-txt,
  .devcmpnynm {
    font-size: 16px;
  }

  .navbar {
    padding: 15px 0;
  }

  .wccd-content {
    width: calc(100% - 70px);
    padding-left: 12px;
  }

  .auc-dtls-left-wrp .auc-dtl-left {
    padding-right: 0;
  }

  .auc-dtls-tab-head {
    margin-bottom: 25px;
    padding-top: 20px;
  }

  .auc-dtls .row {
    --bs-gutter-y: 30px;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .payemd .heading .h2-title,
  .heading {
    margin-bottom: 20px;
  }

  .material-dtl-table td {
    padding: 15px;
  }

  .pricing-inr {
    padding: 40px 12px;
  }

  .pricing-inr .sec-head {
    margin-bottom: 60px;
  }

  .auction-inr .card-bdy, .auction-inr .card-ftr {
      padding-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .navbar {
    padding: 12px 0;
  }

  .cmn-btn .btn-arr {
    margin-left: 8px;
    width: 25px;
  }

  .navbar-toggler {
    margin-left: 15px;
  }

  .bnr-item-inr {
    padding: 60px 20px;
  }

  .bnr-item-inr {
    padding: 50px 15px;
  }

  h1,
  .h1-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .bnr-slider .slick-dots {
    bottom: 25px;
  }

  .about-inr,
  .auction-inr {
    padding: 25px;
  }

  h2,
  .h2-title {
    font-size: 26px;
  }

  .card {
    padding: 12px;
  }

  .wccd-content h3 {
    margin-bottom: 6px;
    font-size: 20px;
  }

  .wc-cd-img {
    width: 60px;
    height: 60px;
  }

  .wccd-content {
    width: calc(100% - 60px);
    padding-left: 12px;
  }

  .service-inr {
    padding: 0 20px;
  }

  .why-choose-inr,
  .faq-inr,
  .help-inr,
  .service-inr,
  .services-sec .service-inr {
    padding: 25px;
  }

  .faq-item {
    margin-bottom: 15px;
    padding: 15px;
  }

  .faq-tab-head {
    margin-bottom: 30px;
  }

  .contact-cards ul li {
    margin-bottom: 15px;
  }

  .footer-inr {
    padding: 50px 0;
  }

  .ftr-widget:nth-child(2),
  .ftr-widget:nth-child(3) {
    width: 50%;
  }

  .ftr-widget:last-child {
    width: 100%;
  }

  .footer-inr .row {
    --bs-gutter-y: 24px;
  }

  .ftr-widget:first-child {
    margin-bottom: 0;
  }

  .cprt-txt,
  .devcmpnynm {
    font-size: 15px;
  }

  .ftr-widget .social-links ul li a {
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .cmn-btn.hdr-btn {
    padding: 7px 10px;
  }

  .bnr-content .cmn-btn {
    height: 45px;
  }

  .cmn-btn {
    padding: 8px 20px;
    min-width: 110px;
  }

  .faq-item .question h3 {
    font-size: 18px;
  }

  .card {
    border-radius: 15px;
  }

  .inr-bnr {
    min-height: 250px;
    padding: 30px;
    border-radius: 15px;
  }

  .auction-date-time {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .auction-date {
    padding: 10px 15px;
    margin-right: 10px;
  }

  .auc-id {
    padding: 10px 15px;
    min-width: 200px;
  }

  .material-dtl-table td {
    padding: 15px 12px;
  }

  .material-dtl-table {
    overflow: auto;
  }

  .material-dtl-table table {
    min-width: 516px;
  }

  .pay-form .input-grp input[type='number'] {
    padding: 12px;
  }

  .pay-form .input-grp input[type='submit'] {
    width: auto;
    font-size: 18px;
  }

  .pricing-inr .sec-head {
    margin-bottom: 40px;
  }

  .pricing-card {
    padding: 15px 12px;
  }

  .price-amount {
    font-size: 32px;
  }

  .pricing-card .cmn-btn {
    height: 45px;
  }
}

@media only screen and (max-width: 575px) {

  h1,
  .h1-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .about-inr,
  .auction-inr {
    padding: 20px;
  }

  h2,
  .h2-title {
    font-size: 24px;
  }

  .card {
    border-radius: 12px;
  }

  .slick-arrow {
    top: auto;
    bottom: 30px;
  }

  .card-slider .slick-dots {
    margin-top: 80px;
  }

  .slick-arrow.slick-prev {
    left: 50%;
    -webkit-transform: translateX(-40px) rotate(180deg);
    -ms-transform: translateX(-40px) rotate(180deg);
    transform: translateX(-40px) rotate(180deg);
  }

  .slick-arrow.slick-next {
    right: 50%;
    -webkit-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
  }

  .copyright-inr {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .cprt-txt {
    margin-bottom: 5px;
  }

  .cprt-txt,
  .devcmpnynm {
    text-align: center;
    font-size: 16px;
    margin-left: 0;
  }

  .auc-dtls-tab-head ul {
    margin: -12px -12px 0;
  }

  .auc-dtls-tab-head ul li {
    margin: 12px 12px 0;
  }

  .material-dtl-table {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-clr) transparent;
  }

  .material-dtl-table::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }

  .material-dtl-table::-webkit-scrollbar-thumb {
    background: var(--secondary-clr);
    border-radius: 4px;
  }

  .material-dtl-table::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .auc-slider-nav .slick-list {
    margin: 0 -10px;
  }
}

@media only screen and (max-width: 479px) {
  .top-hdr ul li a {
    font-size: 14px;
  }

  .top-hdr ul li span {
    width: 23px;
    height: 23px;
    margin-right: 4px;
  }

  h1,
  .h1-title {
    font-size: 24px;
  }

  .bnr-content .cmn-btn {
    height: 40px;
  }

  h2,
  .h2-title {
    font-size: 22px;
  }

  .cmn-btn {
    padding: 8px 12px;
    min-width: 100px;
  }

  .card-dtls {
    padding-right: 4px;
  }

  .wccd-content {
    width: calc(100% - 50px);
    padding-left: 10px;
  }

  .wc-cd-img {
    width: 50px;
    height: 50px;
  }

  .wccd-content h3 {
    font-size: 17px;
  }

  .why-choose-cards .row {
    --bs-gutter-y: 20px;
  }

  .service-inr {
    padding: 0 6px;
  }

  .faq-tab-head ul li {
    padding: 8px 12px;
    margin-right: 10px;
  }

  .why-choose-inr,
  .faq-inr,
  .help-inr,
  .service-inr,
  .services-sec .service-inr {
    padding: 12px;
  }

  .faq-item .question h3 {
    font-size: 17px;
    margin-right: 10px;
    max-width: calc(100% - 26px);
  }

  .sendemail-form .input-grp.w-50 {
    width: 100% !important;
  }

  input[type="submit"] {
    height: 40px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 17px;
  }

  .sendemail-form {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
  }

  .top-hdr ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 0;
  }

  .contact-cards ul li .cntct-content {
    padding-left: 12px;
    width: calc(100% - 50px);
  }

  .contact-cards ul li .cntct-icon {
    width: 50px;
    height: 50px;
  }

  .dt-icon {
    margin-right: 6px;
  }

  .auction-date {
    padding: 9px 12px;
    margin-right: 5px;
  }

  .auc-id {
    padding: 10px 12px;
    min-width: 150px;
  }

  .auc-nav-item .ani-img {
    border-radius: 15px;
    overflow: hidden;
  }

  .auc-dtls-tab-head ul li {
    margin: 10px 6px 0;
    padding: 9px 12px;
  }

  .auc-dtls-tab-head ul {
    margin: -10px -6px 0;
  }

  .auc-slider-nav .slick-list {
    margin: 0 -10px;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .payemd .heading .h2-title,
  .heading {
    margin-bottom: 12px;
  }
}

@media only screen and (max-width: 375px) {
  .top-hdr ul li a {
    font-size: 12px;
  }

  .bnr-item-inr {
    padding: 40px 12px;
  }

  .bnr-content p {
    margin-bottom: 15px;
  }

  .bnr-slider .slick-dots {
    bottom: 20px;
  }

  .about-inr,
  .auction-inr {
    padding: 12px;
    border-radius: 12px;
  }

  .abt-img,
  .abt-img img,
  .abt-img::before {
    border-radius: 12px;
  }

  .faq-tab-head ul li {
    padding: 6px 9px;
    margin-right: 6px;
  }

  .contact-cards ul li .cntct-content {
    padding-left: 12px;
    width: calc(100% - 40px);
  }

  .contact-cards ul li .cntct-icon {
    width: 40px;
    height: 40px;
  }

  .ftr-widget:nth-child(2),
  .ftr-widget:nth-child(3) {
    width: 100%;
  }

  .cprt-txt,
  .devcmpnynm {
    font-size: 15px;
  }

  .footer-inr {
    padding: 40px 0;
  }

  .pay-form .input-grp input[type='submit'] {
    /* width: 100%; */
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    border-radius: 8px;
    height: 40px;
  }

  .pay-form .input-grp input[type='number'] {
    height: 40px;
    border-radius: 8px;
    margin-bottom: 10px;
  }

  .pay-form .input-grp {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .auc-id {
    font-size: 16px;
  }

  .auction-date {
    margin-bottom: 10px;
  }
}
.aucdt-wrp-inr {
    flex-wrap: wrap;
}

.pricing-sec.secnm {
  font-size: 24px; /* increase size only here */
}