:root {
  --primary-color1: #32c36c;
  --primary-color2: #f9395f;
  --primary-color3: #029e7c;
  --font-primary: "Saira", sans-serif;
  --font-secondary: "Quicksand", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-family: var(--font-secondary);
  font-weight: 500;
}

a {
  color: unset;
  text-decoration: none;
}
a:focus {
  outline: 0 solid;
}
a:hover {
  text-decoration: none;
  color: unset;
}

img {
  max-width: 100%;
}

input:focus,
textarea:focus,
button:focus {
  outline: none;
}

ul {
  list-style: none;
}

i.bx {
  vertical-align: middle;
}

/*================================================
2. Mixins Css
=================================================*/
.pt-120 {
  padding-top: 120px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pt-120 {
    padding-top: 90px;
  }
}
@media (max-width: 991px) {
  .pt-120 {
    padding-top: 80px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pb-120 {
    padding-bottom: 90px;
  }
}
@media (max-width: 991px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .pb-120 {
    padding-bottom: 60px;
  }
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-60 {
  padding-bottom: 60px;
}

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

.mb-120 {
  margin-bottom: 120px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .mb-120 {
    margin-bottom: 90px;
  }
}
@media (max-width: 991px) {
  .mb-120 {
    margin-bottom: 80px;
  }
}

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

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

.mt-30 {
  margin-top: 30px;
}

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

.mt50-minus {
  margin-top: -50px;
}

.sec-mar {
  margin: 120px 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sec-mar {
    margin: 90px 0;
  }
}
@media (max-width: 991px) {
  .sec-mar {
    margin: 80px 0;
  }
}

.swiper-fix {
  margin: -12px;
  padding: 12px;
}

.para {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
  font-family: var(--font-secondary);
}

.eg-card {
  border-radius: 5px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
}

.eg-btn {
  border-radius: 5px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  transition: all 0.4s ease;
  text-transform: capitalize;
  font-family: var(--font-primary);
}

.btn--primary {
  background: #1f2230;
  color: #fff;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.btn--primary::before {
  width: 100%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0%;
  left: 0%;
  background: var(--primary-color1);
  transition: all 0.52s;
  z-index: -1;
  border-radius: 5px;
}
.btn--primary::after {
  width: 100%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0%;
  left: 0%;
  background: var(--primary-color1);
  transition: all 0.52s;
  z-index: -1;
  border-radius: 5px;
}
.btn--primary:hover {
  color: #fff;
}
.btn--primary:hover::before {
  transform: rotateX(90deg);
}
.btn--primary:hover::after {
  transform: rotateY(90deg);
}

.btn--primary2 {
  background: #1f2230;
  color: #fff;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  border-radius: 100px;
}
.btn--primary2::before {
  width: 100%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0%;
  left: 0%;
  background: var(--primary-color2);
  transition: all 0.52s;
  z-index: -1;
  border-radius: 100px;
}
.btn--primary2::after {
  width: 100%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0%;
  left: 0%;
  background: var(--primary-color2);
  transition: all 0.52s;
  z-index: -1;
  border-radius: 100px;
}
.btn--primary2:hover {
  color: #fff;
}
.btn--primary2:hover::before {
  transform: rotateX(90deg);
}
.btn--primary2:hover::after {
  transform: rotateY(90deg);
}

.btn--primary3 {
  background: #1f2230;
  color: #fff;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  border-radius: 100px;
}
.btn--primary3::before {
  width: 100%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0%;
  left: 0%;
  background: var(--primary-color3);
  transition: all 0.52s;
  z-index: -1;
  border-radius: 100px;
}
.btn--primary3::after {
  width: 100%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0%;
  left: 0%;
  background: var(--primary-color3);
  transition: all 0.52s;
  z-index: -1;
  border-radius: 100px;
}
.btn--primary3:hover {
  color: #fff;
}
.btn--primary3:hover::before {
  transform: rotateX(90deg);
}
.btn--primary3:hover::after {
  transform: rotateY(90deg);
}

.btn--primary3-outline {
  border: 1px solid var(--primary-color3);
  color: var(--primary-color3);
  white-space: nowrap;
  transition: all 0.52s ease;
}
.btn--primary3-outline:hover {
  background: var(--primary-color3);
  color: #fff;
}

.btn--lg {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 17px 32px;
}
@media (max-width: 767px) {
  .btn--lg {
    padding: 12px 27px;
  }
}

.btn--md {
  padding: 14px 45px;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .btn--md {
    padding: 10px 40px;
  }
}

.btn--sm {
  font-size: 16px;
  font-weight: 600;
  padding: 6px 15px;
}

.header-btn {
  background-color: var(--primary-color1);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-primary);
  padding: 9px 20px;
}

.action-btn {
  min-width: 26px;
  height: 26px;
  line-height: 0px;
  border: none;
  outline: none;
}
.action-btn.red {
  background: var(--primary-color2);
}
.action-btn.green {
  background: var(--primary-color1);
}

.section-title1 {
  text-align: center;
}
.section-title1 h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1f2230;
  margin-top: -5px;
}
.section-title1 p {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: #696969;
}

.section-title2 {
  text-align: center;
}
.section-title2 h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1f2230;
  margin-top: -5px;
}
.section-title2 p {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-secondary);
  color: #696969;
}

.section-title4 {
  text-align: center;
}
.section-title4 h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1f2230;
  margin-top: -5px;
  position: relative;
  display: inline-block;
}
@media (max-width: 767px) {
  .section-title4 h2 {
    font-size: 2.1rem;
  }
}
.section-title4 h2::before {
  content: url("../images/icons/sec-arro1.svg");
  position: absolute;
  top: -5px;
  left: -55px;
}
@media (max-width: 767px) {
  .section-title4 h2::before {
    left: -45px;
  }
}
.section-title4 h2::after {
  content: url("../images/icons/sec-arro2.svg");
  position: absolute;
  top: -5px;
  right: -55px;
}
@media (max-width: 767px) {
  .section-title4 h2::after {
    right: -45px;
  }
}
.section-title4 p {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: #696969;
}

.hover-style {
  background: #fff;
  position: relative;
  z-index: 1;
}
.hover-style::before {
  width: 100%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0%;
  left: 0%;
  background: var(--primary-color1);
  transition: all 0.52s;
  z-index: -1;
  border-radius: 5px;
  opacity: 0;
}
.hover-style::after {
  width: 100%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0%;
  left: 0%;
  background: var(--primary-color1);
  transition: all 0.52s;
  z-index: -1;
  border-radius: 5px;
  opacity: 0;
}
.hover-style:hover::before {
  transform: rotateX(90deg);
  opacity: 0.2;
}
.hover-style:hover::after {
  transform: rotateY(90deg);
  opacity: 0.2;
}

.hover-border1 {
  background: #fff;
  position: relative;
  z-index: 1;
}
.hover-border1::before {
  content: "";
  width: 0%;
  height: 2px;
  position: absolute;
  bottom: 0%;
  left: 0%;
  background: var(--primary-color1);
  transition: all 0.52s;
  z-index: -1;
}
.hover-border1:hover::before {
  width: 100%;
}

.hover-border2 {
  background: #fff;
  position: relative;
  z-index: 1;
}
.hover-border2::before {
  content: "";
  width: 0%;
  height: 2px;
  position: absolute;
  bottom: 0%;
  left: 0%;
  background: var(--primary-color2);
  transition: all 0.52s;
  z-index: -1;
}
.hover-border2:hover::before {
  width: 100%;
}

.hover-border3 {
  background: #fff;
  position: relative;
  z-index: 1;
}
.hover-border3::before {
  content: "";
  width: 0%;
  height: 2px;
  position: absolute;
  bottom: 0%;
  left: 0%;
  background: var(--primary-color3);
  transition: all 0.52s;
  z-index: -1;
}
.hover-border3:hover::before {
  width: 100%;
}

/*=======================================
 3. preloader start
=======================================*/
.preloader-close-btn {
  position: absolute;
  right: 20px;
  top: 30px;
  font-size: 16px;
  transition: ease-in-out 0.5s linear;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
}

.egns-preloader {
  min-width: 100%;
  min-height: 100%;
  position: fixed !important;
  z-index: 999999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
}
.egns-preloader.close {
  display: none;
  visibility: hidden;
}

.egns-preloader::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: -1;
}

.circle-border {
  width: 100%;
  max-width: 140px;
  height: 100%;
  max-height: 140px;
  border: 0 solid var(--primary-color1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  border-radius: 50%;
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
}
.circle-border img {
  max-width: 80px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.circle-border svg {
  fill: var(--primary-color1);
}

.circle-border svg path {
  stroke: var(--primary-color1);
}

.circle-border .moving-circle {
  width: 10px;
  height: 10px;
  background: var(--primary-color1);
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  margin: auto;
  animation: circle 2s linear infinite;
}

.circle-border .moving-circle:nth-child(2) {
  width: 10px;
  height: 10px;
  background: var(--primary-color1);
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  margin: auto;
  animation: circle 2.25s linear infinite;
}

.circle-border .moving-circle:nth-child(3) {
  width: 10px;
  height: 10px;
  background: var(--primary-color1);
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  margin: auto;
  animation: circle 2.5s linear infinite;
}

@keyframes circle {
  0% {
    transform: rotate(0deg) translate(-70px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translate(-70px) rotate(-360deg);
  }
}
#outline {
  stroke-dasharray: 2.42777px, 242.77666px;
  stroke-dashoffset: 0;
  animation: anim 1.6s linear infinite;
}

@keyframes anim {
  12.5% {
    stroke-dasharray: 33.98873px, 242.77666px;
    stroke-dashoffset: -26.70543px;
  }
  43.75% {
    stroke-dasharray: 84.97183px, 242.77666px;
    stroke-dashoffset: -84.97183px;
  }
  100% {
    stroke-dasharray: 2.42777px, 242.77666px;
    stroke-dashoffset: -240.34889px;
  }
}
/*=======================================
  3. search area start
=======================================*/
.mobile-search {
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.09);
  width: 100%;
  height: 100%;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  align-items: center;
  position: fixed;
  cursor: pointer;
  transform: scale(0);
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.65s ease;
  padding: 35px 100px;
}
@media (max-width: 767px) {
  .mobile-search {
    padding: 20px 20px;
  }
}
.mobile-search label {
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
  font-family: var(--font-primary);
}
.mobile-search.slide {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.mobile-search input {
  border: none;
  border-radius: unset;
  border-bottom: 1px solid #eeeeee;
  padding-left: 0px;
  padding-bottom: 5px;
  width: 100%;
  background: transparent;
  transition: 0.3s ease-in-out;
  color: #fff;
  margin-bottom: 20px;
}
.mobile-search input:focus {
  border-bottom: 1px solid #fff;
}
.mobile-search input::-moz-placeholder {
  font-family: var(--font-primary);
  color: #696969;
}
.mobile-search input::placeholder {
  font-family: var(--font-primary);
  color: #696969;
}
.mobile-search .search-cross-btn {
  color: #fff;
  cursor: pointer;
  background: rgba(var(--primary-color1), 0.6);
  border-radius: 50%;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  line-height: 41px;
  transition: 0.5s ease;
}
.mobile-search .search-cross-btn:hover {
  background: var(--primary-color1);
  color: #fff;
}
.mobile-search .search-cross-btn.style-2 {
  background-color: transparent;
  border: 1px solid var(--primary-color2);
  line-height: 38px;
}
.mobile-search .search-cross-btn.style-2:hover {
  background: var(--primary-color2);
  color: #fff;
}
.mobile-search .search-cross-btn.style-3 {
  background-color: transparent;
  border: 1px solid var(--primary-color3);
  line-height: 38px;
}
.mobile-search .search-cross-btn.style-3:hover {
  background: var(--primary-color3);
  color: #fff;
}
.mobile-search .search-cross-btn i {
  font-size: 25px;
  cursor: pointer;
}

.mobile-search .woocommerce-product-search button {
  background: var(--primary-color1);
  color: #fff;
  border: none;
  padding: 15px 30px;
  min-width: 150px;
  font-family: var(--font-primary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 4px;
  display: none;
}
.mobile-search.style-2 .woocommerce-product-search button {
  background: var(--primary-color2);
}
.mobile-search.style-3 .woocommerce-product-search button {
  background: var(--primary-color3);
}

#woocommerce-product-search-field-0::-moz-placeholder {
  color: #fff;
}

#woocommerce-product-search-field-0::placeholder {
  color: #fff;
}

/*=======================================
  3. search area end
=======================================*/
/*=======================================
   4. Topbar Css
=======================================*/
.topbar {
  background: #f5f5f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .topbar {
    padding: 10px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .topbar {
    padding: 10px 30px;
  }
}
@media (max-width: 991px) {
  .topbar {
    display: none;
    visibility: hidden;
  }
}

.topbar-left h6 {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  color: #696969;
  margin-right: 15px;
  line-height: 10px;
}
.topbar-left .topbar-social-list {
  display: flex;
  justify-content: start;
  align-content: center;
  padding: 0;
  margin: 0;
}
.topbar-left .topbar-social-list li a {
  color: var(--primary-color1);
}
.topbar-left .topbar-social-list li i {
  font-size: 14px;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  line-height: 24px;
  text-align: center;
  background: transparent;
  transition: all 0.42s ease-in-out;
}
.topbar-left .topbar-social-list li i:hover {
  background: var(--primary-color1);
  color: #fff;
}

.email-area h6 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  color: #696969;
}

.topbar-right {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
}
.topbar-right address {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #696969;
  font-family: var(--font-primary);
}
.topbar-right address i {
  margin-right: 10px;
}
.topbar-right a {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
  color: #696969;
}
.topbar-right .nice-select {
  background-color: transparent;
  border-radius: 0px;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 18px;
  line-height: 16px;
  outline: none;
  padding-left: 10px;
  padding-right: 25px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  width: 100%;
  border: unset;
}
.topbar-right .nice-select .option {
  min-height: 28px;
  font-size: 14px;
}
.topbar-right .nice-select .option:hover {
  background: var(--primary-color1);
  color: #fff;
}
.topbar-right .nice-select .option.selected {
  background: var(--primary-color1);
}
.topbar-right .nice-select .current {
  font-size: 14px;
  font-weight: 500;
  color: #696969;
}
.topbar-right .nice-select .list {
  border: unset;
  box-shadow: 2px 2px 10px rgba(31, 34, 48, 0.2);
  margin-top: 15px;
  z-index: 100;
  border-radius: 0px 0px 3px 3px;
  width: 100%;
  min-width: 80px;
}

.mobile-menu-form {
  margin-top: 50px;
}
.mobile-menu-form button[type=submit] {
  background: #32c36c;
  width: 100%;
  border-radius: 5px;
  color: #fff;
  font-weight: 700;
  font-family: "Saira";
}
.mobile-menu-form input {
  width: 100%;
  border: 1px solid #eeeeee;
  padding: 10px 15px;
  background-color: #fff;
  margin-bottom: 15px;
  outline: none;
  border-radius: 5px;
}
.mobile-menu-form input::-moz-placeholder {
  font-size: 12px;
}
.mobile-menu-form input::placeholder {
  font-size: 12px;
}
.mobile-menu-form .wp-element-button {
  display: none;
}
.mobile-menu-form button {
  outline: none;
  border: none;
  padding: 10px;
}
.mobile-menu-form.style-2 input {
  border-radius: 30px;
}

.hotline-info {
  text-align: center;
  font-family: var(--font-primary);
}
.hotline-info h6 {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-primary);
}

header.style-1 {
  background-color: #fff;
  width: 100%;
  position: relative;
  z-index: 99;
  padding: 0px 60px 0px 0px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  header.style-1 {
    padding: 0px 30px 0px 0px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-1 {
    padding: 0px 30px 0px 0px;
  }
}
@media (max-width: 991px) {
  header.style-1 {
    padding: 0px 30px 0px 0px;
    top: 0;
  }
}
header.style-1.sticky {
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 99;
  background: #fff;
  box-shadow: 5px 3px 40px rgba(0, 72, 88, 0.1);
  animation: smooth-header 0.65s linear;
}
@keyframes smooth-header {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}
header.style-1 .nav-right .hotline {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 40px;
}
header.style-1 .nav-right .hotline .hotline-icon {
  margin-right: 8px;
}
header.style-1 .nav-right .hotline .hotline-icon img {
  max-width: unset;
}
header.style-1 .nav-right .hotline .hotline-info span {
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: #696969;
}
header.style-1 .nav-right .hotline .hotline-info h6 {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-primary);
  color: #1f2230;
  white-space: nowrap;
}
header.style-1 .nav-right .search-btn,
header.style-1 .nav-right .wishlist-btn,
header.style-1 .nav-right .account-btn {
  line-height: 45px;
  text-align: center;
  color: #1f2230;
  cursor: pointer;
  margin-right: 25px;
}
@media (max-width: 1199px) {
  header.style-1 .nav-right .search-btn,
  header.style-1 .nav-right .wishlist-btn,
  header.style-1 .nav-right .account-btn {
    margin-right: 18px;
  }
}
header.style-1 .nav-right .search-btn i,
header.style-1 .nav-right .wishlist-btn i,
header.style-1 .nav-right .account-btn i {
  font-size: 20px;
  color: #1f2230;
}
header.style-1 .nav-right .search-btn .bi.bi-person,
header.style-1 .nav-right .wishlist-btn .bi.bi-person,
header.style-1 .nav-right .account-btn .bi.bi-person {
  font-size: 24px !important;
}
@media (max-width: 991px) {
  header.style-1 .nav-right .search-btn,
  header.style-1 .nav-right .wishlist-btn,
  header.style-1 .nav-right .account-btn {
    display: none;
    visibility: hidden;
  }
}
header.style-1 .nav-right .account-btn {
  margin-right: 0;
}
header.style-1 .header-logo {
  background: var(--primary-color1);
  min-height: 100%;
  padding: 20px 40px;
  display: flex;
  align-items: center;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  header.style-1 .header-logo {
    padding: 20px 40px;
  }
}
@media (max-width: 1199px) {
  header.style-1 .header-logo {
    padding: 20px 40px;
  }
}
@media (max-width: 991px) {
  header.style-1 .header-logo {
    padding: 15px 30px;
  }
}
header.style-1 .header-logo img {
  min-width: 130px;
  max-width: 100%;
}
header.style-1 .header-btn {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  display: inline-block;
  transition: 0.35s ease-in;
  background: var(--primary-color1);
  cursor: pointer;
  white-space: nowrap;
}
header.style-1 .header-btn:hover {
  background: #191a1c;
}
header.style-1 .header-btn:hover a {
  color: #fff;
}
@media (max-width: 1199px) {
  header.style-1 .header-btn {
    display: none;
    visibility: hidden;
  }
}
header.style-1 .main-menu .menu-list {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  padding: 0;
}
@media (max-width: 991px) {
  header.style-1 .main-menu .menu-list {
    flex-direction: column;
    justify-content: start;
  }
}
header.style-1 .main-menu .menu-list > li {
  margin: 0px 17px;
  display: inline-block;
}
header.style-1 .main-menu .menu-list > li i {
  display: none;
}
@media (max-width: 991px) {
  header.style-1 .main-menu .menu-list > li i {
    position: absolute;
    cursor: pointer;
    right: 0;
    top: 12px;
  }
}
header.style-1 .main-menu .menu-list > li.menu-item-has-children {
  position: relative;
}
@media (max-width: 991px) {
  header.style-1 .main-menu .menu-list > li.menu-item-has-children i {
    display: block;
  }
}
header.style-1 .main-menu .menu-list > li.current_page_item a {
  color: var(--primary-color1);
}
header.style-1 .main-menu .menu-list > li.current-menu-parent {
  color: var(--primary-color1);
}
header.style-1 .main-menu .menu-list > li.current-menu-parent a {
  color: var(--primary-color1);
}
@media (max-width: 1199px) {
  header.style-1 .main-menu .menu-list > li {
    margin: 0px 10px;
  }
}
@media (max-width: 991px) {
  header.style-1 .main-menu .menu-list > li {
    margin: 0;
    width: 100%;
  }
}
header.style-1 .main-menu .menu-list > li .dropdown-icon {
  color: #1f2230;
  font-size: 25px;
  transition: 0.4s ease-in;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 991px) {
  header.style-1 .main-menu .menu-list > li .dropdown-icon {
    opacity: 1;
    visibility: visible;
  }
}
header.style-1 .main-menu .menu-list > li a {
  font-size: 16px;
  font-weight: 500;
  color: #1f2230;
  padding: 30px 0px;
  display: inline-block;
  white-space: nowrap;
  transition: 0.4s;
  display: flex;
  align-items: center;
  font-family: var(--font-primary);
}
header.style-1 .main-menu .menu-list > li a.active {
  color: var(--primary-color1);
}
header.style-1 .main-menu .menu-list > li a:hover {
  color: var(--primary-color1);
}
@media (max-width: 991px) {
  header.style-1 .main-menu .menu-list > li a {
    padding: 12px 0px;
    display: block;
    position: relative;
    border-bottom: 1px solid rgba(31, 34, 48, 0.098);
  }
  header.style-1 .main-menu .menu-list > li a:hover {
    color: unset;
  }
}
header.style-1 .main-menu .menu-list > li ul.sub-menu {
  position: absolute;
  padding: 0;
  top: 84px;
  left: 0px;
  max-width: 230px;
  min-width: 200px;
  background-color: #fff;
  text-align: left;
  transform: translateY(25px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.55s ease-in-out;
  box-shadow: 5px 3px 40px rgba(0, 72, 88, 0.1);
}
@media (max-width: 991px) {
  header.style-1 .main-menu .menu-list > li ul.sub-menu {
    position: relative;
    opacity: 1;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    border: unset;
    display: none;
    transition: unset;
    box-shadow: unset;
    transform: translateY(0px);
    visibility: unset;
  }
}
header.style-1 .main-menu .menu-list > li ul.sub-menu > li.menu-item-has-children {
  position: relative;
}
@media (max-width: 991px) {
  header.style-1 .main-menu .menu-list > li ul.sub-menu > li.menu-item-has-children i {
    display: block;
  }
}
header.style-1 .main-menu .menu-list > li ul.sub-menu > li i {
  display: none;
}
header.style-1 .main-menu .menu-list > li ul.sub-menu > li.current_page_item a {
  color: var(--primary-color1);
}
header.style-1 .main-menu .menu-list > li ul.sub-menu > li a {
  position: relative;
  display: block;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(31, 34, 48, 0.1);
  z-index: 1;
  font-size: 14px !important;
  color: #1f2230;
}
@media (max-width: 991px) {
  header.style-1 .main-menu .menu-list > li ul.sub-menu > li a {
    border-bottom: unset;
    padding: 12px 15px;
  }
}
header.style-1 .main-menu .menu-list > li ul.sub-menu > li a::before {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  background: var(--primary-color1);
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s ease-in;
  z-index: -1;
}
header.style-1 .main-menu .menu-list > li ul.sub-menu > li a:hover {
  color: var(--primary-color1);
}
header.style-1 .main-menu .menu-list > li ul.sub-menu > li a:hover::before {
  transform: scale(1);
}
header.style-1 .main-menu .menu-list > li ul.sub-menu > li a:last-child {
  border-bottom: unset;
}
header.style-1 .main-menu .menu-list > li ul.sub-menu > li i {
  position: absolute;
  cursor: pointer;
  right: 0px;
  top: 10px;
  z-index: 9;
}
@media (min-width: 992px) {
  header.style-1 .main-menu .menu-list > li ul.sub-menu > li.menu-item-has-children i {
    display: block;
    right: 10px;
  }
}
header.style-1 .main-menu .menu-list > li ul.sub-menu > li ul.sub-menu {
  position: absolute;
  padding: 0;
  top: -25px;
  left: 100%;
  max-width: 230px;
  min-width: 200px;
  background-color: #fff;
  text-align: left;
  transform: translateY(25px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.55s ease-in-out;
  box-shadow: 5px 3px 40px rgba(0, 72, 88, 0.1);
}
@media (max-width: 991px) {
  header.style-1 .main-menu .menu-list > li ul.sub-menu > li ul.sub-menu {
    position: relative;
    opacity: 1;
    left: 10px;
    top: 0;
    width: 100%;
    max-width: 100%;
    border: unset;
    display: none;
    transition: unset;
    box-shadow: unset;
    transform: translateY(0px);
    visibility: unset;
  }
}
header.style-1 .main-menu .menu-list > li ul.sub-menu > li ul.sub-menu li i {
  display: none;
}
header.style-1 .main-menu .menu-list > li ul.sub-menu > li:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
}
header.style-1 .main-menu .menu-list > li.menu-item-has-children {
  position: relative;
  z-index: 1;
  padding-right: 20px;
}
@media (max-width: 991px) {
  header.style-1 .main-menu .menu-list > li.menu-item-has-children {
    padding-right: unset;
  }
}
header.style-1 .main-menu .menu-list > li.menu-item-has-children::after {
  position: absolute;
  content: "\f282";
  font-family: "bootstrap-icons";
  font-weight: 600;
  top: 33px;
  right: 0px;
  font-size: 13px;
  transition: all 0.42s ease-in-out;
}
@media (max-width: 991px) {
  header.style-1 .main-menu .menu-list > li.menu-item-has-children::after {
    display: none;
    visibility: hidden;
  }
}
header.style-1 .main-menu .menu-list > li.menu-item-has-children .dropdown-icon {
  position: absolute;
  top: 12px;
  right: 0;
  font-size: 20px;
}
header.style-1 .main-menu .menu-list > li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
header.style-1 .main-menu .menu-list > li.menu-item-has-children:hover::after {
  color: var(--primary-color1);
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  header.style-1 .main-menu {
    position: fixed;
    top: 0%;
    left: -100%;
    width: 280px;
    height: 100%;
    overflow-y: auto;
    background-color: #fff;
    border-right: 1px solid rgba(238, 238, 238, 0.1);
    padding: 40px 20px;
    padding-top: 20px;
    z-index: 999;
    transition: 0.7s ease-in-out;
    border-right: 1px solid #eeeeee;
  }
  header.style-1 .main-menu.show-menu {
    left: 0;
  }
}
header.style-1 .main-menu .mobile-logo-area {
  margin-bottom: 25px;
}
header.style-1 .main-menu .mobile-logo-area .menu-close-btn {
  cursor: pointer;
}
header.style-1 .main-menu .mobile-logo-area .menu-close-btn .bi {
  color: #1f2230;
  font-size: 18px;
}
header.style-1 .main-menu .mobile-logo-area .menu-close-btn .bi:hover {
  color: var(--primary-color1);
}
header.style-1 .main-menu .mobile-logo-wrap {
  background: var(--primary-color1);
  padding: 10px;
}

.mobile-menu-btn {
  margin-left: 25px;
  cursor: pointer;
}
.mobile-menu-btn .bx {
  color: #1f2230;
  font-size: 28px;
  cursor: pointer;
}

header.style-2 {
  background-color: transparent;
  width: 100%;
  position: absolute;
  top: 0px;
  z-index: 99;
  padding: 0px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  header.style-2 {
    padding: 20px 30px 20px 30px;
  }
}
header.style-2.sticky {
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 99;
  background: #fff;
  box-shadow: 5px 3px 40px rgba(0, 72, 88, 0.1);
  animation: smooth-header 0.65s linear;
}
@keyframes smooth-header {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}
header.style-2 .nav-right .hotline {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 50px;
}
header.style-2 .nav-right .hotline .hotline-icon {
  margin-right: 8px;
}
header.style-2 .nav-right .hotline .hotline-info span {
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-secondary);
  color: #696969;
}
header.style-2 .nav-right .hotline .hotline-info h6 {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-primary);
  color: #1f2230;
  white-space: nowrap;
}
header.style-2 .nav-right .search-btn {
  width: 42px;
  height: 42px;
  line-height: 45px;
  text-align: center;
  border-radius: 5px;
  margin-right: 15px;
  cursor: pointer;
}
@media (max-width: 991px) {
  header.style-2 .nav-right .search-btn {
    display: none;
    visibility: hidden;
  }
}
header.style-2 .nav-right .search-btn i {
  font-size: 20px;
  color: var(--primary-color2);
}
header.style-2 .header-logo img {
  width: 100%;
  min-width: 120px;
}
header.style-2 .header-btn {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 100px;
  display: inline-block;
  transition: 0.35s ease-in;
  background: var(--primary-color2);
  cursor: pointer;
  white-space: nowrap;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-2 .header-btn {
    display: none;
    visibility: hidden;
  }
}
header.style-2 .header-btn:hover {
  background: #191a1c;
}
header.style-2 .header-btn:hover a {
  color: #fff;
}
@media (max-width: 991px) {
  header.style-2 .header-btn {
    display: none;
    visibility: hidden;
  }
}
header.style-2 .main-menu .menu-list {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  padding: 0;
}
@media (max-width: 991px) {
  header.style-2 .main-menu .menu-list {
    flex-direction: column;
    justify-content: start;
  }
}
header.style-2 .main-menu .menu-list li i {
  display: none;
}
header.style-2 .main-menu .menu-list > li {
  margin: 0px 17px;
  display: inline-block;
}
header.style-2 .main-menu .menu-list > li i {
  display: none;
}
@media (max-width: 991px) {
  header.style-2 .main-menu .menu-list > li i {
    position: absolute;
    cursor: pointer;
    right: 0;
    top: 12px;
    z-index: 1;
  }
}
header.style-2 .main-menu .menu-list > li.menu-item-has-children {
  position: relative;
}
@media (max-width: 991px) {
  header.style-2 .main-menu .menu-list > li.menu-item-has-children i {
    display: block;
  }
}
header.style-2 .main-menu .menu-list > li.current_page_item a {
  color: var(--primary-color2);
}
header.style-2 .main-menu .menu-list > li.current-menu-parent {
  color: var(--primary-color2);
}
header.style-2 .main-menu .menu-list > li.current-menu-parent a {
  color: var(--primary-color2);
}
@media (max-width: 1199px) {
  header.style-2 .main-menu .menu-list > li {
    margin: 0px 15px;
  }
}
@media (max-width: 991px) {
  header.style-2 .main-menu .menu-list > li {
    margin: 0;
    width: 100%;
  }
}
header.style-2 .main-menu .menu-list > li .dropdown-icon {
  color: #1f2230;
  font-size: 25px;
  transition: 0.4s ease-in;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 991px) {
  header.style-2 .main-menu .menu-list > li .dropdown-icon {
    opacity: 1;
    visibility: visible;
  }
}
header.style-2 .main-menu .menu-list > li a {
  font-size: 16px;
  font-weight: 500;
  color: #1f2230;
  padding: 30px 0px;
  display: inline-block;
  white-space: nowrap;
  transition: 0.4s;
  display: flex;
  align-items: center;
  font-family: var(--font-primary);
}
header.style-2 .main-menu .menu-list > li a.active {
  color: var(--primary-color2);
}
header.style-2 .main-menu .menu-list > li a:hover {
  color: var(--primary-color2);
}
@media (max-width: 991px) {
  header.style-2 .main-menu .menu-list > li a {
    padding: 12px 0px;
    display: block;
    position: relative;
    border-bottom: 1px solid rgba(31, 34, 48, 0.098);
  }
  header.style-2 .main-menu .menu-list > li a:hover {
    color: unset;
  }
}
header.style-2 .main-menu .menu-list > li .sub-menu {
  padding: 0;
  position: absolute;
  top: 84px;
  left: 0px;
  max-width: 230px;
  min-width: 200px;
  background-color: #fff;
  text-align: left;
  transform: translateY(25px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.55s ease-in-out;
  box-shadow: 2px 3px 20px rgba(31, 34, 48, 0.1);
}
@media (max-width: 991px) and (max-width: 991px) {
  header.style-2 .main-menu .menu-list > li .sub-menu {
    opacity: 1;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    border: unset;
    display: none;
    transition: unset;
    box-shadow: unset;
    transform: translateY(0px);
    visibility: unset;
  }
}
header.style-2 .main-menu .menu-list > li .sub-menu > li.menu-item-has-children {
  position: relative;
}
@media (max-width: 991px) {
  header.style-2 .main-menu .menu-list > li .sub-menu > li.menu-item-has-children i {
    display: block;
  }
}
header.style-2 .main-menu .menu-list > li .sub-menu > li i {
  display: none;
}
header.style-2 .main-menu .menu-list > li .sub-menu > li.current_page_item a {
  color: var(--primary-color2);
}
header.style-2 .main-menu .menu-list > li .sub-menu > li a {
  display: block;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(31, 34, 48, 0.1);
  z-index: 1;
  font-size: 14px;
  color: #1f2230;
}
@media (max-width: 991px) {
  header.style-2 .main-menu .menu-list > li .sub-menu > li a {
    border-bottom: unset;
    padding: 12px 15px;
  }
}
header.style-2 .main-menu .menu-list > li .sub-menu > li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(var(--primary-color2), 1);
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s ease-in;
  z-index: -1;
}
header.style-2 .main-menu .menu-list > li .sub-menu > li a:hover {
  color: var(--primary-color2);
}
header.style-2 .main-menu .menu-list > li .sub-menu > li a:hover::before {
  transform: scale(1);
}
header.style-2 .main-menu .menu-list > li .sub-menu > li a:last-child {
  border-bottom: unset;
}
header.style-2 .main-menu .menu-list > li .sub-menu > li ul.sub-menu {
  position: absolute;
  padding: 0;
  top: 18px;
  left: 100%;
  max-width: 230px;
  min-width: 200px;
  background-color: #fff;
  text-align: left;
  transform: translateY(25px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.55s ease-in-out;
  box-shadow: 5px 3px 40px rgba(0, 72, 88, 0.1);
}
@media (max-width: 991px) {
  header.style-2 .main-menu .menu-list > li .sub-menu > li ul.sub-menu {
    position: relative;
    opacity: 1;
    left: 10px;
    top: 0;
    width: 100%;
    max-width: 100%;
    border: unset;
    display: none;
    transition: unset;
    box-shadow: unset;
    transform: translateY(0px);
    visibility: unset;
  }
}
header.style-2 .main-menu .menu-list > li .sub-menu > li ul.sub-menu li i {
  display: none;
}
header.style-2 .main-menu .menu-list > li .sub-menu > li:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
}
header.style-2 .main-menu .menu-list > li.menu-item-has-children {
  position: relative;
  z-index: 1;
  padding-right: 20px;
}
@media (max-width: 991px) {
  header.style-2 .main-menu .menu-list > li.menu-item-has-children {
    padding-right: unset;
  }
}
header.style-2 .main-menu .menu-list > li.menu-item-has-children::after {
  content: "\f282";
  font-family: "bootstrap-icons";
  font-weight: 600;
  position: absolute;
  top: 33px;
  right: 0px;
  font-size: 13px;
  transition: all 0.42s ease-in-out;
}
@media (max-width: 991px) {
  header.style-2 .main-menu .menu-list > li.menu-item-has-children::after {
    display: none;
    visibility: hidden;
  }
}
header.style-2 .main-menu .menu-list > li.menu-item-has-children .dropdown-icon {
  position: absolute;
  top: 12px;
  right: 0;
  font-size: 20px;
}
header.style-2 .main-menu .menu-list > li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
header.style-2 .main-menu .menu-list > li.menu-item-has-children:hover::after {
  color: var(--primary-color2);
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  header.style-2 .main-menu {
    position: fixed;
    top: 0%;
    left: -100%;
    width: 280px;
    height: 100%;
    overflow-y: auto;
    background-color: #fff;
    border-right: 1px solid rgba(238, 238, 238, 0.1);
    padding: 40px 20px;
    z-index: 999;
    transition: 0.7s ease-in-out;
    border-right: 1px solid #eeeeee;
  }
  header.style-2 .main-menu.show-menu {
    left: 0;
  }
}
header.style-2 .main-menu .mobile-logo-area {
  margin-bottom: 25px;
}
header.style-2 .main-menu .mobile-logo-area .menu-close-btn {
  cursor: pointer;
}
header.style-2 .main-menu .mobile-logo-area .menu-close-btn .bi {
  color: #1f2230;
  font-size: 20px;
}
header.style-2 .main-menu .mobile-logo-area .menu-close-btn .bi:hover {
  color: var(--primary-color2);
}
header.style-2 .join-btn {
  color: var(--primary-color2);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  margin-right: 30px;
  transition: 0.42s ease;
  white-space: nowrap;
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid var(--primary-color2);
}
@media (max-width: 1399px) {
  header.style-2 .join-btn {
    display: none;
    visibility: hidden;
  }
}
header.style-2 .join-btn:hover {
  color: #fff;
  background-color: var(--primary-color2);
}

header.style-3 {
  background-color: transparent;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0px;
  z-index: 99;
  padding: 0px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  header.style-3 {
    padding: 10px 30px;
  }
}
header.style-3.sticky {
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 99;
  background: #fff;
  transition: 0.2s ease;
  box-shadow: 5px 3px 40px rgba(0, 72, 88, 0.1);
  animation: smooth-header 0.65s linear;
}
@keyframes smooth-header {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}
header.style-3 .nav-right .hotline {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 40px;
}
header.style-3 .nav-right .hotline .hotline-icon {
  margin-right: 8px;
}
header.style-3 .nav-right .hotline .hotline-info span {
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-secondary);
  color: #696969;
}
header.style-3 .nav-right .hotline .hotline-info h6 {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-primary);
  color: #1f2230;
  white-space: nowrap;
}
header.style-3 .nav-right .search-btn {
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  background-color: #fff;
  border: 1px solid var(--primary-color3);
  border-radius: 50%;
  margin-right: 15px;
  cursor: pointer;
}
header.style-3 .nav-right .search-btn i {
  font-size: 18px;
  color: var(--primary-color3);
}
@media (max-width: 991px) {
  header.style-3 .nav-right .search-btn {
    display: none;
    visibility: hidden;
  }
}
header.style-3 .header-logo {
  padding: 20px 0px;
}
header.style-3 .header-logo img {
  min-width: 120px;
  max-width: 100%;
}
header.style-3 .header-btn {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
header.style-3 .header-btn:hover {
  background: #191a1c;
}
header.style-3 .header-btn:hover a {
  color: #fff;
}
@media (max-width: 1199px) {
  header.style-3 .header-btn {
    display: none;
    visibility: hidden;
  }
}
header.style-3 .main-menu .menu-list {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  padding: 0;
}
@media (max-width: 991px) {
  header.style-3 .main-menu .menu-list {
    flex-direction: column;
    justify-content: start;
  }
}
header.style-3 .main-menu .menu-list li i {
  display: none;
}
@media (max-width: 991px) {
  header.style-3 .main-menu .menu-list li i {
    position: absolute;
    cursor: pointer;
    right: 0;
    top: 12px;
    z-index: 1;
  }
}
header.style-3 .main-menu .menu-list li.menu-item-has-children {
  position: relative;
}
@media (max-width: 991px) {
  header.style-3 .main-menu .menu-list li.menu-item-has-children i {
    display: block;
  }
}
header.style-3 .main-menu .menu-list li.current_page_item a {
  color: var(--primary-color3);
}
header.style-3 .main-menu .menu-list li.current-menu-parent {
  color: var(--primary-color3);
}
header.style-3 .main-menu .menu-list li.current-menu-parent a {
  color: var(--primary-color3);
}
header.style-3 .main-menu .menu-list > li {
  position: relative;
  margin: 0px 17px;
  display: inline-block;
}
@media (max-width: 1199px) {
  header.style-3 .main-menu .menu-list > li {
    margin: 0px 15px;
  }
}
@media (max-width: 991px) {
  header.style-3 .main-menu .menu-list > li {
    margin: 0;
    width: 100%;
  }
}
header.style-3 .main-menu .menu-list > li .dropdown-icon {
  color: #1f2230;
  font-size: 25px;
  transition: 0.4s ease-in;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 991px) {
  header.style-3 .main-menu .menu-list > li .dropdown-icon {
    opacity: 1;
    visibility: visible;
  }
}
header.style-3 .main-menu .menu-list > li a {
  font-size: 16px;
  font-weight: 500;
  color: #1f2230;
  padding: 30px 0px;
  display: inline-block;
  white-space: nowrap;
  transition: 0.4s;
  display: flex;
  align-items: center;
  font-family: var(--font-primary);
}
header.style-3 .main-menu .menu-list > li a.active {
  color: var(--primary-color3);
}
header.style-3 .main-menu .menu-list > li a:hover {
  color: var(--primary-color3);
}
@media (max-width: 991px) {
  header.style-3 .main-menu .menu-list > li a {
    padding: 12px 0px;
    display: block;
    position: relative;
    border-bottom: 1px solid rgba(31, 34, 48, 0.098);
  }
  header.style-3 .main-menu .menu-list > li a:hover {
    color: unset;
  }
}
header.style-3 .main-menu .menu-list > li .sub-menu {
  padding: 0;
  position: absolute;
  top: 84px;
  left: 0px;
  max-width: 230px;
  min-width: 200px;
  background-color: #fff;
  text-align: left;
  transform: translateY(25px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.55s ease-in-out;
  box-shadow: 5px 3px 40px rgba(0, 72, 88, 0.1);
}
@media (max-width: 991px) {
  header.style-3 .main-menu .menu-list > li .sub-menu {
    opacity: 1;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    border: unset;
    display: none;
    transition: unset;
    box-shadow: unset;
    transform: translateY(0px);
    visibility: unset;
  }
}
header.style-3 .main-menu .menu-list > li .sub-menu > li.menu-item-has-children {
  position: relative;
}
@media (max-width: 991px) {
  header.style-3 .main-menu .menu-list > li .sub-menu > li.menu-item-has-children i {
    display: block;
  }
}
header.style-3 .main-menu .menu-list > li .sub-menu > li i {
  display: none;
}
header.style-3 .main-menu .menu-list > li .sub-menu > li.current_page_item a {
  color: var(--primary-color3);
}
header.style-3 .main-menu .menu-list > li .sub-menu > li a {
  display: block;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(31, 34, 48, 0.1);
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: #1f2230;
}
@media (max-width: 991px) {
  header.style-3 .main-menu .menu-list > li .sub-menu > li a {
    border-bottom: unset;
    padding: 12px 15px;
  }
}
header.style-3 .main-menu .menu-list > li .sub-menu > li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(var(--primary-color3), 1);
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s ease-in;
  z-index: -1;
}
header.style-3 .main-menu .menu-list > li .sub-menu > li a:hover {
  color: var(--primary-color3);
}
header.style-3 .main-menu .menu-list > li .sub-menu > li a:hover::before {
  transform: scale(1);
}
header.style-3 .main-menu .menu-list > li .sub-menu > li a:last-child {
  border-bottom: unset;
}
header.style-3 .main-menu .menu-list > li .sub-menu > li ul.sub-menu {
  position: absolute;
  padding: 0;
  top: 18px;
  left: 100%;
  max-width: 230px;
  min-width: 200px;
  background-color: #fff;
  text-align: left;
  transform: translateY(25px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.55s ease-in-out;
  box-shadow: 5px 3px 40px rgba(0, 72, 88, 0.1);
}
@media (max-width: 991px) {
  header.style-3 .main-menu .menu-list > li .sub-menu > li ul.sub-menu {
    position: relative;
    opacity: 1;
    left: 10px;
    top: 0;
    width: 100%;
    max-width: 100%;
    border: unset;
    display: none;
    transition: unset;
    box-shadow: unset;
    transform: translateY(0px);
    visibility: unset;
  }
}
header.style-3 .main-menu .menu-list > li .sub-menu > li ul.sub-menu li i {
  display: none;
}
header.style-3 .main-menu .menu-list > li .sub-menu > li:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
}
header.style-3 .main-menu .menu-list > li.menu-item-has-children {
  position: relative;
  z-index: 1;
  padding-right: 20px;
}
@media (max-width: 991px) {
  header.style-3 .main-menu .menu-list > li.menu-item-has-children {
    padding-right: unset;
  }
}
header.style-3 .main-menu .menu-list > li.menu-item-has-children::after {
  content: "\f282";
  font-family: "bootstrap-icons";
  font-weight: 600;
  position: absolute;
  top: 33px;
  right: 0px;
  font-size: 13px;
  transition: all 0.42s ease-in-out;
}
@media (max-width: 991px) {
  header.style-3 .main-menu .menu-list > li.menu-item-has-children::after {
    display: none;
    visibility: hidden;
  }
}
header.style-3 .main-menu .menu-list > li.menu-item-has-children .dropdown-icon {
  position: absolute;
  top: 12px;
  right: 0;
  font-size: 20px;
}
header.style-3 .main-menu .menu-list > li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
header.style-3 .main-menu .menu-list > li.menu-item-has-children:hover::after {
  color: var(--primary-color3);
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  header.style-3 .main-menu {
    position: fixed;
    top: 0%;
    left: -100%;
    width: 280px;
    height: 100%;
    overflow-y: auto;
    background-color: #fff;
    border-right: 1px solid rgba(238, 238, 238, 0.1);
    padding: 40px 20px;
    z-index: 999;
    transition: 0.7s ease-in-out;
    border-right: 1px solid #eeeeee;
  }
  header.style-3 .main-menu.show-menu {
    left: 0;
  }
}
header.style-3 .main-menu .mobile-logo-area {
  margin-bottom: 25px;
}
header.style-3 .main-menu .mobile-logo-area .menu-close-btn {
  cursor: pointer;
}
header.style-3 .main-menu .mobile-logo-area .menu-close-btn .bi {
  color: #1f2230;
  font-size: 20px;
}
header.style-3 .main-menu .mobile-logo-area .menu-close-btn .bi:hover {
  color: var(--primary-color3);
}
header.style-3 .main-menu .mobile-logo-wrap {
  padding: 10px 0px;
}
header.style-3 .mobile-menu-form input[type=text] {
  border-radius: 30px;
  color: var(--primary-color3);
}

/*=======================================
   banner-area
=======================================*/
.hero-style-one {
  position: relative;
  overflow: hidden;
}
.hero-style-one .swiper-slide-active span {
  animation: fadeInDown 1.7s;
}
.hero-style-one .swiper-slide-active h1 {
  animation: fadeInDown 1.7s;
}
.hero-style-one .swiper-slide-active h2 {
  animation: fadeInDown 1.7s;
}
.hero-style-one .swiper-slide-active p {
  animation: fadeInUp 1.7s;
}
.hero-style-one .swiper-slide-active .eg-btn {
  animation: fadeInUp 1.7s;
}
.hero-style-one .banner-bg1 {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  animation: large 26s linear infinite alternate;
}
.hero-style-one .hero-one-pagination {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 80px !important;
}
@media (max-width: 767px) {
  .hero-style-one .hero-one-pagination {
    display: none;
    visibility: hidden;
  }
}
.hero-style-one .hero-one-pagination .swiper-pagination-bullet {
  background: #fff;
  width: 15px;
  height: 15px;
}
.hero-style-one .hero-one-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color1);
}
.hero-style-one .slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 60px;
  z-index: 2;
  padding: 5px;
}
.hero-style-one .slider-bg-1 {
  padding: 160px 0px;
  width: 100%;
  overflow: hidden;
  height: 100%;
  z-index: 2;
  position: relative;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-style-one .slider-bg-1 {
    padding: 160px 0px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-style-one .slider-bg-1 {
    padding: 160px 0px;
  }
}
@media (max-width: 991px) {
  .hero-style-one .slider-bg-1 {
    padding: 120px 0px;
  }
}
.hero-style-one .slider-bg-1::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
}
@keyframes large {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.6);
  }
}
.hero-style-one .slider-bg-2 {
  padding: 160px 0px;
  width: 100%;
  overflow: hidden;
  height: 100%;
  z-index: 1;
  position: relative;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-style-one .slider-bg-2 {
    padding: 160px 0px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-style-one .slider-bg-2 {
    padding: 160px 0px;
  }
}
@media (max-width: 991px) {
  .hero-style-one .slider-bg-2 {
    padding: 120px 0px;
  }
}
.hero-style-one .slider-bg-2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
}
@keyframes large {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1.8);
  }
}
.hero-style-one .banner1-content {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  z-index: 9;
}
.hero-style-one .banner1-content span {
  font-size: 1.25rem;
  font-weight: 600;
  color: #eee;
  font-family: var(--font-secondary);
  margin-bottom: 10px;
  display: block;
}
.hero-style-one .banner1-content h1,
.hero-style-one .banner1-content h2 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
  text-transform: capitalize;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-style-one .banner1-content h1,
  .hero-style-one .banner1-content h2 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .hero-style-one .banner1-content h1,
  .hero-style-one .banner1-content h2 {
    font-size: 50px;
  }
}
.hero-style-one .banner1-content p {
  font-size: 16px;
  font-weight: 500;
  color: #eee;
  margin-bottom: 55px;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-style-one .banner1-content p {
    width: 95%;
  }
}
@media (max-width: 767px) {
  .hero-style-one .banner1-content p {
    width: 98%;
  }
}

.hero-style-two {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-style-two::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 100%;
  height: 100%;
  background-image: url("../images/bg/banner2-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.hero-style-two::after {
  position: absolute;
  content: "";
  right: -55%;
  bottom: 0;
  width: 100%;
  height: 85%;
  background-image: url("../images/bg/banner2-girl.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 991px) {
  .hero-style-two::after {
    display: none;
    visibility: hidden;
  }
}
.hero-style-two .banner2-icon1 {
  position: absolute;
  top: 240px;
  right: 38%;
  animation: rotate 12s linear infinite;
}
@media (max-width: 1199px) {
  .hero-style-two .banner2-icon1 {
    display: none;
    visibility: hidden;
  }
}
.hero-style-two .banner2-icon2 {
  position: absolute;
  top: 130px;
  right: 8%;
  animation: rotate 12s linear infinite;
}
@media (max-width: 1399px) {
  .hero-style-two .banner2-icon2 {
    display: none;
    visibility: hidden;
  }
}
.hero-style-two .banner2-icon3 {
  position: absolute;
  bottom: 130px;
  right: 40%;
  animation: rotate 12s linear infinite;
}
@media (max-width: 1399px) {
  .hero-style-two .banner2-icon3 {
    display: none;
    visibility: hidden;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hero-style-two .banner-girl {
  max-width: 120%;
}
.hero-style-two .radial-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.hero-style-two .scroll-text {
  position: absolute;
  transform: rotate(270deg);
  left: 30px;
  bottom: 160px;
  cursor: pointer;
}
@media (min-width: 1400px) and (max-width: 1499px) {
  .hero-style-two .scroll-text {
    left: 0;
  }
}
@media (max-width: 1399px) {
  .hero-style-two .scroll-text {
    display: none;
    visibility: hidden;
  }
}
.hero-style-two .scroll-text h6 {
  font-size: 18px;
  font-weight: 600;
  color: #696969;
  position: relative;
}
.hero-style-two .scroll-text h6::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%) rotate(270deg);
  width: 3px;
  height: 65px;
  background-image: linear-gradient(0deg, rgba(var(--primary-color2), 1) 30%, dimgray 70%);
}
.hero-style-two .banner2-content {
  padding: 260px 0 140px 0;
}
@media (max-width: 991px) {
  .hero-style-two .banner2-content {
    text-align: center;
    padding: 180px 0;
  }
}
@media (max-width: 767px) {
  .hero-style-two .banner2-content {
    text-align: center;
    padding-top: 180px;
    padding-bottom: 130px;
  }
}
.hero-style-two .banner2-content span {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color2);
  font-family: var(--font-secondary);
  margin-bottom: 10px;
  display: block;
}
.hero-style-two .banner2-content h1 {
  font-size: 75px;
  font-weight: 700;
  color: #1f2230;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-style-two .banner2-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .hero-style-two .banner2-content h1 {
    font-size: 50px;
  }
}
.hero-style-two .banner2-content p {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
  margin-bottom: 45px;
  font-family: var(--font-secondary);
}

.hero-style-three {
  overflow-x: hidden;
  padding: 0px 0px;
  position: relative;
  z-index: 1;
  background-image: url("../images/bg/home3-bannerbg.png");
}
@media (max-width: 991px) {
  .hero-style-three {
    background-image: unset;
    padding-top: 85px;
  }
}
.hero-style-three .banner-ellips {
  position: absolute;
  top: 30px;
  left: 0px;
  z-index: -1;
}
@media (max-width: 991px) {
  .hero-style-three .banner-ellips {
    display: none;
    visibility: hidden;
  }
}
.hero-style-three .join-merchant {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color3);
  border-radius: 0px 22px 22px 0px;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px 10px 10px;
  cursor: pointer;
}
@media (max-width: 1500px) {
  .hero-style-three .join-merchant {
    display: none;
    visibility: hidden;
  }
}
.hero-style-three::before {
  content: "";
  position: absolute;
  right: 0;
  top: 85px;
  bottom: 85px;
  width: 100%;
  max-width: 560px;
  height: auto;
  background: var(--primary-color3);
  border-radius: 279px 0px 0px 279px;
  z-index: -1;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-style-three::before {
    max-width: 450px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-style-three::before {
    max-width: 380px;
  }
}
@media (max-width: 991px) {
  .hero-style-three::before {
    display: none;
    visibility: hidden;
  }
}
.hero-style-three .home3-banner {
  position: absolute;
  width: 100%;
  max-width: 580px;
  height: auto;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-style-three .home3-banner {
    max-width: 480px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-style-three .home3-banner {
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .hero-style-three .home3-banner {
    display: none;
    visibility: hidden;
  }
}
.hero-style-three .banner3-content {
  width: 100%;
  padding: 240px 60px 240px 45px;
}
@media (max-width: 991px) {
  .hero-style-three .banner3-content {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.55)), url("../images/bg/home3-banner.png");
    text-align: center;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-style-three .banner3-content {
    padding: 200px 60px 200px 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-style-three .banner3-content {
    padding: 80px 60px;
  }
}
@media (max-width: 767px) {
  .hero-style-three .banner3-content {
    padding: 80px 20px;
  }
}
.hero-style-three .banner3-content span {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color3);
  font-family: var(--font-secondary);
  margin-bottom: 10px;
  display: block;
}
.hero-style-three .banner3-content h1 {
  font-size: 73px;
  font-weight: 700;
  color: #1f2230;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .hero-style-three .banner3-content h1 {
    color: #fff;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-style-three .banner3-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .hero-style-three .banner3-content h1 {
    font-size: 50px;
  }
}
.hero-style-three .banner3-content p {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
  margin-bottom: 45px;
  font-family: var(--font-secondary);
}
@media (max-width: 991px) {
  .hero-style-three .banner3-content p {
    color: #fff;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-style-three .banner3-content p {
    width: 80%;
  }
}

/*=======================================
   Category-Slider
=======================================*/
.category-section .swiper {
  margin: -12px;
  padding: 12px;
}

.category-card1 {
  max-width: 170px;
  min-width: 170px;
  border-radius: 40px 0px;
  text-align: center;
  padding: 20px 5px;
  margin-left: auto;
  margin-right: auto;
  transition: 0.4s ease;
  background: #fff;
  position: relative;
  z-index: 1;
  transition: all 0.35s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: unset;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
}
.category-card1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color1);
  transform: scaleX(0);
  border-radius: 5px;
  z-index: -1;
  transform-origin: right;
  transition: transform 0.35s ease-in;
}
.category-card1:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.category-card1:hover .cat-icon img svg {
  fill: #fff;
}
.category-card1:hover h5 {
  color: #fff;
}
.category-card1 .cat-icon {
  margin-bottom: 15px;
}
.category-card1 .cat-icon img {
  margin-bottom: 0;
  transition: all 0.35s ease-in;
}
.category-card1 h5 {
  margin-bottom: 0px;
  font-size: 20px;
  font-weight: 600;
  color: #1f2230;
  transition: all 0.35s ease-in;
  cursor: pointer;
}
.category-card1.style2::before {
  background: var(--primary-color3);
}

.category-prev1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -35px;
  z-index: 1;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .category-prev1 {
    left: -10px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .category-prev1 {
    left: -10px;
  }
}
.category-prev1 i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #484848;
  font-size: 16px;
  text-align: center;
  border: 1px solid #484848;
  transition: 0.5s ease;
}
.category-prev1:hover i {
  background: var(--primary-color1);
  border: 1px solid var(--primary-color1);
  color: #fff;
}
.category-prev1.style2:hover i {
  background: var(--primary-color3);
  border: 1px solid var(--primary-color3);
  color: #fff;
}

.category-next1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -46px;
  z-index: 1;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .category-next1 {
    right: -10px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .category-next1 {
    right: -10px;
  }
}
.category-next1 i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #484848;
  font-size: 16px;
  text-align: center;
  border: 1px solid #484848;
  transition: 0.5s ease;
}
.category-next1:hover i {
  background: var(--primary-color1);
  color: #fff;
  border: 1px solid var(--primary-color1);
}
.category-next1.style2:hover i {
  background: var(--primary-color3);
  border: 1px solid var(--primary-color3);
  color: #fff;
}

.category-prev2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -40px;
}
@media (max-width: 1199px) {
  .category-prev2 {
    display: none;
    visibility: hidden;
  }
}
.category-prev2 i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  border-radius: 50%;
  background: #fff;
  color: rgba(var(--primary-color2), 0.6);
  font-size: 16px;
  text-align: center;
  border: 1px solid rgba(var(--primary-color2), 0.6);
  transition: 0.5s ease;
}
.category-prev2:hover i {
  background: var(--primary-color2);
  border: 1px solid var(--primary-color2);
  color: #fff;
}

.category-next2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -40px;
}
@media (max-width: 1199px) {
  .category-next2 {
    display: none;
    visibility: hidden;
  }
}
.category-next2 i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  border-radius: 50%;
  background: #fff;
  color: rgba(var(--primary-color2), 0.6);
  font-size: 16px;
  text-align: center;
  border: 1px solid rgba(var(--primary-color2), 0.6);
  transition: 0.5s ease;
}
.category-next2:hover i {
  background: var(--primary-color2);
  border: 1px solid var(--primary-color2);
  color: #fff;
}

.category-card2 {
  width: 100%;
  max-width: 155px;
  height: 150px;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  transition: 0.4s ease;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-card2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(31, 34, 48, 0.45);
  z-index: -1;
  width: 100%;
  height: 100%;
}
.category-card2:hover .category-img {
  transform: scale(1.4);
}
.category-card2 .category-img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.5s ease-in-out;
  border-radius: 5px;
  transform: scale(1.2);
}
.category-card2 .content {
  text-align: center;
}
.category-card2 .content img {
  margin-bottom: 15px;
  height: 60px;
}
.category-card2 .content h5 {
  text-align: center;
  transition: all 0.5s ease-in-out;
  margin-bottom: 0;
}
.category-card2 .content h5 a {
  transition: all 0.5s ease-in-out;
  color: #fff;
}

/*================================================
7. Live Auction
=================================================*/
.live-auction {
  position: relative;
  overflow: hidden;
}
.live-auction .section-bg {
  position: absolute;
  top: 7%;
  left: 0%;
}
@media (max-width: 767px) {
  .live-auction .section-bg {
    display: none;
    visibility: hidden;
  }
}
.live-auction .section-bg2 {
  position: absolute;
  top: 7%;
  right: 0%;
}
@media (max-width: 767px) {
  .live-auction .section-bg2 {
    display: none;
    visibility: hidden;
  }
}
.live-auction .dotted1 {
  position: absolute;
  top: 58px;
  right: -80px;
  animation: move 2.6s linear infinite;
}
@media (max-width: 991px) {
  .live-auction .dotted1 {
    display: none;
    visibility: hidden;
  }
}
.live-auction .dotted2 {
  position: absolute;
  bottom: 40px;
  left: -80px;
  animation: move 2.6s linear infinite;
}
@media (max-width: 991px) {
  .live-auction .dotted2 {
    display: none;
    visibility: hidden;
  }
}
.live-auction .dotted3 {
  position: absolute;
  bottom: -40px;
  left: -80px;
  animation: move 2.6s linear infinite;
}
@media (max-width: 991px) {
  .live-auction .dotted3 {
    display: none;
    visibility: hidden;
  }
}
@keyframes move {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}

.auction-card1 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.auction-card1:hover .auction-img img {
  transform: scale(1.2);
}
.auction-card1 .auction-img {
  position: relative;
  overflow: hidden;
}
.auction-card1 .auction-img img {
  width: 100%;
  border-radius: 5px 5px 0px 0px;
  transition: all 0.65s ease;
}
.auction-card1 .auction-img .auction-timer {
  border-radius: 2px;
  padding: 5px 20px;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  background: #fff;
  min-width: 260px;
  width: 85%;
  font-family: var(--font-primary);
}
.auction-card1 .auction-img .auction-timer .countdown_amount {
  font-size: 18px;
  font-weight: 600;
  color: #444;
}
.auction-card1 .auction-content {
  padding: 30px 25px;
}
.auction-card1 .auction-content a h2.woocommerce-loop-product__title {
  font-size: 20px;
  font-weight: 600;
  color: #1f2230;
  line-height: 1.4;
  margin-top: -5px;
}
.auction-card1 .auction-content p {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
}
.auction-card1 .auction-content p span {
  font-size: 20px;
  font-weight: 600;
  color: #1f2230;
}
.auction-card1 .auction-content p span.current.auction, .auction-card1 .auction-content p span.starting.auction {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: #696969;
}
.auction-card1 .auction-content p span ins {
  text-decoration: none;
}
.auction-card1 .auction-content p span del bdi {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: #696969;
  opacity: 0.5;
}
.auction-card1 .auction-content .price {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color1);
}
.auction-card1 .auction-card-bttm {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 25px;
}
.auction-card1 .author-area {
  position: absolute;
  top: 30px;
  left: 30px;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
}
.auction-card1 .author-area .author-emo {
  border-radius: 50%;
  background: #fff;
  padding: 7px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid transparent;
  z-index: 1;
}
.auction-card1 .author-area .author-emo img {
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 50%;
}
.auction-card1 .author-area .author-name {
  background: var(--primary-color1);
  border-radius: 33px;
  margin-left: -27px;
  transform: scaleX(0.1);
  transform-origin: left;
  transition: 0.6s ease;
}
.auction-card1 .author-area .author-name a {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.auction-card1 .author-area:hover .author-emo {
  border: 1px solid var(--primary-color1);
}
.auction-card1 .author-area:hover .author-name {
  padding: 6px 20px 8px 44px;
  transform: scaleX(1);
}
.auction-card1 .share-area {
  position: absolute;
  right: 0;
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  align-items: center;
}
.auction-card1 .share-area .share-btn i {
  height: 34px;
  width: 34px;
  line-height: 34px;
  border-radius: 50%;
  background-color: #eeeeee;
  text-align: center;
  transition: 0.5s ease;
  z-index: 9;
}
.auction-card1 .share-area .share-btn i:hover {
  background: #1f2230;
  color: #fff;
}
.auction-card1 .share-area .social-icons {
  padding: 5px;
  margin-right: 0px;
  transform: scaleX(0);
  transform-origin: right;
  transition: 0.5s ease;
  z-index: 1;
  margin-bottom: 0px;
}
.auction-card1 .share-area:hover .social-icons {
  transform: scaleX(1);
}
.auction-card1 .share-area:hover .social-icons li {
  margin-right: 8px;
}
.auction-card1 .share-area:hover .social-icons li i {
  font-size: 1rem;
  transition: all 0.42s ease;
}
.auction-card1 .share-area:hover .social-icons li i:hover {
  color: var(--primary-color1);
}

.auction-card2 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 15px 15px 0px 15px;
}
.auction-card2:hover .auction-img img {
  transform: scale(1.2);
  border-radius: 10px;
}
.auction-card2:hover .auction-img .auction-timer .countdown h5 {
  color: #444444;
}
.auction-card2 .auction-img {
  position: relative;
  overflow: hidden;
}
.auction-card2 .auction-img img {
  width: 100%;
  border-radius: 10px;
  transition: all 0.65s ease;
}
.auction-card2 .auction-img .auction-timer {
  border-radius: 5px;
  padding: 5px 10px;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15px;
  background: #fff;
  min-width: 230px;
  width: 85%;
  font-family: var(--font-primary);
}
.auction-card2 .auction-img .auction-timer .countdown h5 {
  font-size: 20px;
  font-weight: 700;
  color: #444444;
  margin-bottom: 0;
  white-space: nowrap;
  transition: all 0.42s ease;
}
.auction-card2 .auction-content {
  padding: 30px 20px;
}
.auction-card2 .auction-content h4 {
  font-size: 23px;
  font-weight: 600;
  color: #1f2230;
  line-height: 1.5;
  margin-top: -7px;
}
.auction-card2 .auction-content p {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
}
.auction-card2 .auction-content p del span bdi {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
  opacity: 0.5;
}
.auction-card2 .auction-content p del span bdi span {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
  opacity: 0.5;
}
.auction-card2 .auction-content p ins {
  text-decoration: none;
}
.auction-card2 .auction-content p span {
  font-size: 22px;
  font-weight: 600;
  color: #1F2230;
}
.auction-card2 .auction-content p span.current.auction {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
}
.auction-card2 .auction-content .price {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color1);
}
.auction-card2 .auction-card-bttm {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}
.auction-card2 .auction-card-bttm .share-area i {
  color: #696969;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.auction-card2 .auction-card-bttm .share-area i:hover {
  color: var(--primary-color2);
}
.auction-card2 .author-price-area {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 15px;
}
.auction-card2 .author-price-area .author img {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  margin-right: 10px;
}
.auction-card2 .author-price-area .author a {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: #696969;
}
.auction-card2 .author-price-area p {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color2);
  font-family: var(--font-primary);
}
.auction-card2 .author-area {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
}
.auction-card2 .author-area .author-emo {
  border-radius: 50%;
  background: #fff;
  padding: 7px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid transparent;
  z-index: 1;
}
.auction-card2 .author-area .author-emo img {
  width: 22px;
  height: 22px;
  line-height: 22px;
}
.auction-card2 .author-area .author-name {
  background: var(--primary-color1);
  padding: 6px 20px 8px 44px;
  border-radius: 33px;
  margin-left: -27px;
  transform: scaleX(0.1);
  transform-origin: left;
  transition: 0.6s ease;
}
.auction-card2 .author-area .author-name span {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.auction-card2 .author-area:hover .author-emo {
  border: 1px solid var(--primary-color1);
}
.auction-card2 .author-area:hover .author-name {
  transform: scaleX(1);
}
.auction-card2 .share-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.auction-card2 .share-list .social-icons {
  padding: 5px;
  margin-right: 0px;
  transform: scaleX(0);
  transform-origin: right;
  transition: 0.5s ease;
  z-index: 1;
  margin-bottom: 0px;
}
.auction-card2 .share-list:hover .social-icons {
  transform: scaleX(1);
}
.auction-card2 .share-list:hover .social-icons li {
  margin-right: 8px;
}
.auction-card2 .share-list:hover .social-icons li i {
  font-size: 1rem;
}

.auction-card3 {
  padding: 20px 20px 25px 20px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.06);
  border-radius: 0px 30px;
  border: unset;
}
.auction-card3:hover .auction-img {
  border-radius: 0px 30px;
}
.auction-card3:hover .auction-img img {
  transform: scale(1.2);
}
.auction-card3 .auction-timer {
  border-radius: 30px;
  padding-bottom: 20px;
  text-align: center;
  background: #fff;
  font-family: var(--font-primary);
}
.auction-card3 .auction-timer span.timer-title {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-secondary);
  color: #696969;
  margin-bottom: 5px;
  display: block;
}
.auction-card3 .auction-timer .main-auction.auction-time-countdown.hasCountdown .countdown_show4 .countdown_section {
  font-size: 14px !important;
  color: #444;
  margin-bottom: 0;
}
.auction-card3 .auction-img {
  position: relative;
  overflow: hidden;
  border-radius: 0px 30px;
  margin-bottom: 25px;
}
.auction-card3 .auction-img img {
  width: 100%;
  transition: all 0.65s ease;
}
.auction-card3 .auction-content h4 {
  font-size: 23px;
  font-weight: 600;
  color: #1f2230;
  line-height: 1.5;
  margin-top: -7px;
}
.auction-card3 .auction-content p {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
}
.auction-card3 .auction-content p del span bdi {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: #1f2230;
  opacity: 0.8;
}
.auction-card3 .auction-content p del span bdi span {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: #1f2230;
  opacity: 0.8;
}
.auction-card3 .auction-content p ins {
  text-decoration: none;
}
.auction-card3 .auction-content p span {
  font-size: 20px;
  font-weight: 600;
  color: #1f2230;
}
.auction-card3 .auction-content p span.current.auction {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: #1f2230;
}
.auction-card3 .auction-content .price {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color1);
}
.auction-card3 .auction-card-bttm {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}
.auction-card3 .author-area {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
}
.auction-card3 .author-area .author-emo {
  border-radius: 50%;
  background: #fff;
  padding: 7px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid transparent;
  z-index: 1;
}
.auction-card3 .author-area .author-emo img {
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 50%;
}
.auction-card3 .author-area .author-name {
  background: var(--primary-color3);
  padding: 4px 20px 6px 44px;
  border-radius: 33px;
  margin-left: -27px;
  transform: scaleX(0.1);
  transform-origin: left;
  transition: 0.6s ease;
}
.auction-card3 .author-area .author-name a {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.auction-card3 .author-area:hover .author-emo {
  border: 1px solid var(--primary-color1);
}
.auction-card3 .author-area:hover .author-name {
  padding: 6px 20px 8px 44px;
  transform: scaleX(1);
}
.auction-card3 .share-area {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  align-items: center;
}
.auction-card3 .share-area .share-btn i {
  height: 34px;
  width: 34px;
  line-height: 34px;
  border-radius: 50%;
  background-color: #eeeeee;
  text-align: center;
  transition: 0.5s ease;
  z-index: 9;
}
.auction-card3 .share-area .share-btn i:hover {
  background: #1f2230;
  color: #fff;
}
.auction-card3 .share-area .social-icons {
  padding: 5px;
  margin-right: 0px;
  transform: scaleX(0);
  transform-origin: right;
  transition: 0.5s ease;
  z-index: 1;
  margin-bottom: 0px;
}
.auction-card3 .share-area:hover .social-icons {
  transform: scaleX(1);
}
.auction-card3 .share-area:hover .social-icons li {
  margin-right: 8px;
}
.auction-card3 .share-area:hover .social-icons li i {
  font-size: 1rem;
  transition: all 0.42s ease;
}
.auction-card3 .share-area:hover .social-icons li i:hover {
  color: var(--primary-color1);
}
.auction-card3.style-2 {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
}
.auction-card3.style-2 .auction-timer .countdown h4 {
  color: #444444;
}

/*================================================
7. Upcoming Auction
=================================================*/
.swiper.upcoming-slider,
.swiper.upcoming-slider3 {
  padding-bottom: 60px;
}

.swiper.upcoming-slider2 {
  padding-bottom: 30px;
}

.slider-bottom .coming-next1 i {
  padding: 8px 10px;
  line-height: 45px;
  border-radius: 50%;
  background: #fff;
  color: #dddddd;
  font-size: 16px;
  text-align: center;
  border: 1px solid #dddddd;
  transition: 0.5s ease;
}
.slider-bottom .coming-next1:hover i {
  background: var(--primary-color1);
  color: #fff;
  border: 1px solid var(--primary-color1);
}
.slider-bottom .coming-prev1 i {
  padding: 8px 10px;
  line-height: 45px;
  border-radius: 50%;
  background: #fff;
  color: #dddddd;
  font-size: 16px;
  text-align: center;
  border: 1px solid #dddddd;
  transition: 0.5s ease;
}
.slider-bottom .coming-prev1:hover i {
  background: var(--primary-color1);
  color: #fff;
  border: 1px solid var(--primary-color1);
}
.slider-bottom .coming-next2 i {
  padding: 8px 10px;
  line-height: 45px;
  border-radius: 50%;
  background: #fff;
  color: #dddddd;
  font-size: 16px;
  text-align: center;
  border: 1px solid #dddddd;
  transition: 0.5s ease;
}
.slider-bottom .coming-next2:hover i {
  background: var(--primary-color2);
  color: #fff;
  border: 1px solid var(--primary-color2);
}
.slider-bottom .coming-prev2 i {
  padding: 8px 10px;
  line-height: 45px;
  border-radius: 50%;
  background: #fff;
  color: #dddddd;
  font-size: 16px;
  text-align: center;
  border: 1px solid #dddddd;
  transition: 0.5s ease;
}
.slider-bottom .coming-prev2:hover i {
  background: var(--primary-color2);
  color: #fff;
  border: 1px solid var(--primary-color2);
}
.slider-bottom .coming-next3 i {
  padding: 8px 10px;
  line-height: 45px;
  border-radius: 50%;
  background: #fff;
  color: #dddddd;
  font-size: 16px;
  text-align: center;
  border: 1px solid #dddddd;
  transition: 0.5s ease;
}
.slider-bottom .coming-next3:hover i {
  background: var(--primary-color3);
  color: #fff;
  border: 1px solid var(--primary-color3);
}
.slider-bottom .coming-prev3 i {
  padding: 8px 10px;
  line-height: 45px;
  border-radius: 50%;
  background: #fff;
  color: #dddddd;
  font-size: 16px;
  text-align: center;
  border: 1px solid #dddddd;
  transition: 0.5s ease;
}
.slider-bottom .coming-prev3:hover i {
  background: var(--primary-color3);
  color: #fff;
  border: 1px solid var(--primary-color3);
}
.slider-bottom .coming-arrow {
  min-width: 105px;
}
.slider-bottom .coming-arrow svg {
  fill: #eeeeee;
}
.slider-bottom .swiper-pagination {
  position: unset;
  width: 60%;
}
.slider-bottom .swiper-pagination::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  height: 2px;
  max-width: 330px;
  width: 100%;
  background: #eeeeee;
}
@media (max-width: 1399px) {
  .slider-bottom .swiper-pagination::before {
    display: none;
    visibility: hidden;
  }
}
.slider-bottom .swiper-pagination::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  height: 2px;
  max-width: 330px;
  width: 100%;
  background: #eeeeee;
}
@media (max-width: 1399px) {
  .slider-bottom .swiper-pagination::after {
    display: none;
    visibility: hidden;
  }
}
.slider-bottom .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 8px;
  border-radius: 50px;
  background: #696969;
  transition: all 0.42s ease;
}
.slider-bottom .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--primary-color1);
  width: 15px;
}
.slider-bottom .swiper-pagination.style-3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary-color3);
}

.upcoming-seciton {
  position: relative;
}
.upcoming-seciton.section-bg1 {
  position: relative;
}
.upcoming-seciton.section-bg1::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 500px;
  width: 645px;
  background-image: url(../images/bg/section-bg.png);
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .upcoming-seciton.section-bg1::before {
    display: none;
    visibility: hidden;
  }
}
.upcoming-seciton.section-bg2 {
  position: relative;
}
.upcoming-seciton.section-bg2::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 500px;
  width: 645px;
  background-image: url(../images/bg/section-bg2.png);
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .upcoming-seciton.section-bg2::before {
    display: none;
    visibility: hidden;
  }
}

.c-feature-card1 {
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.c-feature-card1:hover .main-auction.auction-time-countdown.hasCountdown .countdown_show4 .countdown_section {
  border: 1.5px solid var(--primary-color1);
}
.c-feature-card1:hover .auction-img > img {
  transform: scale(1.12);
}
.c-feature-card1 .auction-img {
  position: relative;
  overflow: hidden;
  height: 350px;
}
.c-feature-card1 .auction-img img {
  width: 100%;
  transition: all 0.55s ease-in-out;
}
.c-feature-card1 .c-feature-content {
  padding: 30px 25px;
}
.c-feature-card1 .c-feature-content h4 {
  font-size: 23px;
  font-weight: 600;
  color: #1f2230;
  line-height: 1.4;
}
.c-feature-card1 .c-feature-content p {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
}
.c-feature-card1 .c-feature-content p del span bdi {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: #696969;
  opacity: 0.5;
}
.c-feature-card1 .c-feature-content p del span bdi span {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: #696969;
  opacity: 0.5;
}
.c-feature-card1 .c-feature-content p ins {
  text-decoration: none;
}
.c-feature-card1 .c-feature-content p span {
  font-weight: var(--font-primary);
  font-size: 22px;
  font-weight: 600;
  color: #1f2230;
}
.c-feature-card1 .c-feature-content p span.current.auction {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: #696969;
}
.c-feature-card1 .c-feature-content .price {
  font-size: 16px;
  font-weight: 700;
  color: #696969;
}
.c-feature-card1 .c-feature-content .auction-card-bttm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}
.c-feature-card1 .c-feature-content .auction-card-bttm .share-area {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  align-items: center;
}
.c-feature-card1 .c-feature-content .auction-card-bttm .share-area .share-btn i {
  height: 34px;
  width: 34px;
  line-height: 34px;
  border-radius: 50%;
  background-color: #eeeeee;
  text-align: center;
  transition: 0.5s ease;
  z-index: 9;
}
.c-feature-card1 .c-feature-content .auction-card-bttm .share-area .share-btn i:hover {
  background: #1f2230;
  color: #fff;
}
.c-feature-card1 .c-feature-content .auction-card-bttm .share-area .social-icons {
  padding: 5px;
  margin-right: 0px;
  transform: scaleX(0);
  transform-origin: right;
  transition: 0.5s ease;
  z-index: 1;
  margin: 0;
  padding: 0;
}
.c-feature-card1 .c-feature-content .auction-card-bttm .share-area:hover .social-icons {
  transform: scaleX(1);
}
.c-feature-card1 .c-feature-content .auction-card-bttm .share-area:hover .social-icons li {
  margin-right: 8px;
}
.c-feature-card1 .c-feature-content .auction-card-bttm .share-area:hover .social-icons li i {
  font-size: 1rem;
  transition: all 0.42s ease;
}
.c-feature-card1 .c-feature-content .auction-card-bttm .share-area:hover .social-icons li i:hover {
  color: var(--primary-color1);
}
.c-feature-card1 .c-feature-content .c-feature-category {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
  font-family: var(--font-secondary);
  margin-bottom: 15px;
  margin-top: -5px;
}
.c-feature-card1 .main-auction.auction-time-countdown.hasCountdown {
  padding: 15px;
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  font-family: var(--font-primary);
  background: #1f2230;
  min-width: 220px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.c-feature-card1 .main-auction.auction-time-countdown.hasCountdown .countdown_show4 .countdown_section {
  border: 1.5px solid #696969;
  border-radius: 10px 0;
  padding: 10px 5px;
  margin: 0px 5px;
  transition: all 0.5s ease;
  width: calc(25% - 10px);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .c-feature-card1 .main-auction.auction-time-countdown.hasCountdown .countdown_show4 .countdown_section {
    padding: 8px 3px;
  }
}
@media (max-width: 767px) {
  .c-feature-card1 .main-auction.auction-time-countdown.hasCountdown .countdown_show4 .countdown_section {
    padding: 6px 0px;
  }
}
.c-feature-card1 .main-auction.auction-time-countdown.hasCountdown .countdown_show3 .countdown_section {
  border: 1.5px solid #696969;
  border-radius: 10px 0;
  padding: 10px 5px;
  margin: 0px 5px;
  transition: all 0.5s ease;
  width: calc(32.5% - 10px);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .c-feature-card1 .main-auction.auction-time-countdown.hasCountdown .countdown_show3 .countdown_section {
    padding: 8px 3px;
  }
}
@media (max-width: 767px) {
  .c-feature-card1 .main-auction.auction-time-countdown.hasCountdown .countdown_show3 .countdown_section {
    padding: 6px 0px;
  }
}
.c-feature-card1 .main-auction.auction-time-countdown.hasCountdown .countdown_show2 .countdown_section {
  border: 1.5px solid #696969;
  border-radius: 10px 0;
  padding: 10px 5px;
  margin: 0px 5px;
  transition: all 0.5s ease;
  width: calc(48% - 10px);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .c-feature-card1 .main-auction.auction-time-countdown.hasCountdown .countdown_show2 .countdown_section {
    padding: 8px 3px;
  }
}
@media (max-width: 767px) {
  .c-feature-card1 .main-auction.auction-time-countdown.hasCountdown .countdown_show2 .countdown_section {
    padding: 6px 0px;
  }
}
.c-feature-card1 .main-auction.auction-time-countdown.hasCountdown .countdown_show1 .countdown_section {
  border: 1.5px solid #696969;
  border-radius: 10px 0;
  padding: 10px 5px;
  margin: 0px 5px;
  transition: all 0.5s ease;
  width: 98%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .c-feature-card1 .main-auction.auction-time-countdown.hasCountdown .countdown_show1 .countdown_section {
    padding: 8px 3px;
  }
}
@media (max-width: 767px) {
  .c-feature-card1 .main-auction.auction-time-countdown.hasCountdown .countdown_show1 .countdown_section {
    padding: 6px 0px;
  }
}
.c-feature-card1 .author-area2 {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
}
.c-feature-card1 .author-area2 .author-emo {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid transparent;
  z-index: 1;
}
.c-feature-card1 .author-area2 .author-emo img {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
}
.c-feature-card1 .author-area2 .author-name {
  background: #fff;
  padding: 6px 44px 8px 20px;
  border-radius: 33px;
  margin-right: -28px;
  transform: scaleX(0.1);
  transform-origin: right;
  transition: 0.6s ease;
}
.c-feature-card1 .author-area2 .author-name span {
  font-size: 14px;
  font-weight: 600;
  color: #1f2230;
}
.c-feature-card1 .author-area2:hover .author-emo {
  border: 1px solid transparent;
}
.c-feature-card1 .author-area2:hover .author-name {
  transform: scaleX(1);
}

.c-feature-card2 {
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.c-feature-card2:hover .main-auction.auction-time-countdown.hasCountdown .countdown_show4 .countdown_section {
  border: 1.5px solid var(--primary-color2);
}
.c-feature-card2:hover .auction-img > img {
  transform: scale(1.12);
}
.c-feature-card2 .auction-img {
  position: relative;
  overflow: hidden;
  height: 350px;
}
.c-feature-card2 .auction-img img {
  width: 100%;
  transition: all 0.55s ease-in-out;
}
.c-feature-card2 .c-feature-content {
  padding: 30px 25px;
}
.c-feature-card2 .c-feature-content h4 {
  font-size: 23px;
  font-weight: 600;
  color: #1f2230;
}
.c-feature-card2 .c-feature-content p {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
}
.c-feature-card2 .c-feature-content p span {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color2);
}
.c-feature-card2 .c-feature-content p span.current.auction {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color2);
}
.c-feature-card2 .c-feature-content .price {
  font-size: 16px;
  font-weight: 700;
  color: #696969;
}
.c-feature-card2 .c-feature-content .auction-card-bttm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}
.c-feature-card2 .c-feature-content .auction-card-bttm .share-area {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  align-items: center;
}
.c-feature-card2 .c-feature-content .auction-card-bttm .share-area .share-btn i {
  height: 34px;
  width: 34px;
  line-height: 34px;
  border-radius: 50%;
  background-color: #eeeeee;
  text-align: center;
  transition: 0.5s ease;
  z-index: 9;
}
.c-feature-card2 .c-feature-content .auction-card-bttm .share-area .share-btn i:hover {
  background: #1f2230;
  color: #fff;
}
.c-feature-card2 .c-feature-content .auction-card-bttm .share-area .social-icons {
  padding: 5px;
  margin-right: 0px;
  transform: scaleX(0);
  transform-origin: right;
  transition: 0.5s ease;
  z-index: 1;
  margin: 0;
  padding: 0;
}
.c-feature-card2 .c-feature-content .auction-card-bttm .share-area .social-icons li a .bx {
  transition: all 0.5s ease-out 0s;
}
.c-feature-card2 .c-feature-content .auction-card-bttm .share-area .social-icons li a:hover .bx {
  color: var(--primary-color2);
}
.c-feature-card2 .c-feature-content .auction-card-bttm .share-area:hover .social-icons {
  transform: scaleX(1);
}
.c-feature-card2 .c-feature-content .auction-card-bttm .share-area:hover .social-icons li {
  margin-right: 8px;
}
.c-feature-card2 .c-feature-content .auction-card-bttm .share-area:hover .social-icons li i {
  font-size: 1rem;
}
.c-feature-card2 .c-feature-content .c-feature-category {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
  font-family: var(--font-secondary);
  margin-bottom: 15px;
  margin-top: -5px;
}
.c-feature-card2 .main-auction.auction-time-countdown.hasCountdown {
  padding: 15px;
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  background: #1f2230;
  font-family: var(--font-primary);
  min-width: 220px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.c-feature-card2 .main-auction.auction-time-countdown.hasCountdown .countdown_show4 .countdown_section {
  border: 1.5px solid #696969;
  border-radius: 10px 0;
  padding: 10px 5px;
  margin: 0px 5px;
  transition: all 0.5s ease;
  width: calc(25% - 10px);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .c-feature-card2 .main-auction.auction-time-countdown.hasCountdown .countdown_show4 .countdown_section {
    padding: 8px 3px;
  }
}
@media (max-width: 767px) {
  .c-feature-card2 .main-auction.auction-time-countdown.hasCountdown .countdown_show4 .countdown_section {
    padding: 6px 0px;
  }
}
.c-feature-card2 .author-area2 {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
}
.c-feature-card2 .author-area2 .author-emo {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid transparent;
  z-index: 1;
}
.c-feature-card2 .author-area2 .author-emo img {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
}
.c-feature-card2 .author-area2 .author-name {
  background: #fff;
  padding: 6px 44px 8px 20px;
  border-radius: 33px;
  margin-right: -28px;
  transform: scaleX(0.1);
  transform-origin: right;
  transition: 0.6s ease;
}
.c-feature-card2 .author-area2 .author-name span {
  font-size: 14px;
  font-weight: 600;
  color: #1f2230;
}
.c-feature-card2 .author-area2:hover .author-emo {
  border: 1px solid transparent;
}
.c-feature-card2 .author-area2:hover .author-name {
  transform: scaleX(1);
}
.c-feature-card2 .author-area3 {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
}
.c-feature-card2 .author-area3 .author-emo {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid transparent;
  z-index: 1;
}
.c-feature-card2 .author-area3 .author-emo img {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
}
.c-feature-card2 .author-area3 .author-name {
  background: #fff;
  padding: 6px 20px 8px 44px;
  border-radius: 33px;
  margin-left: -28px;
  transform: scaleX(0.1);
  transform-origin: left;
  transition: 0.6s ease;
}
.c-feature-card2 .author-area3 .author-name span {
  font-size: 14px;
  font-weight: 600;
  color: #1f2230;
}
.c-feature-card2 .author-area3:hover .author-emo {
  border: 1px solid transparent;
}
.c-feature-card2 .author-area3:hover .author-name {
  transform: scaleX(1);
}

/*================================================
7. Testimonial
=================================================*/
.testi-next2,
.testi-next1 {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
@media (min-width: 1400px) and (max-width: 1499px) {
  .testi-next2,
  .testi-next1 {
    right: -28px;
  }
}
@media (max-width: 767px) {
  .testi-next2,
  .testi-next1 {
    display: none;
    right: -30px;
    visibility: hidden;
  }
}
@media (max-width: 1199px) {
  .testi-next2,
  .testi-next1 {
    right: -40px;
  }
}
.testi-next2 .bi,
.testi-next1 .bi {
  padding: 8px 10px;
  line-height: 45px;
  border-radius: 50%;
  background: #fff;
  color: #666666;
  font-size: 16px;
  text-align: center;
  border: 1px solid #666666;
  transition: 0.5s ease;
}
.testi-next2:hover i,
.testi-next1:hover i {
  background: var(--primary-color1);
  color: #fff;
  border: 1px solid var(--primary-color1);
}
.testi-next2.style-2 i,
.testi-next1.style-2 i {
  border: 1px solid #eeeeee;
}
.testi-next2.style-2:hover i,
.testi-next1.style-2:hover i {
  background: var(--primary-color2);
  color: #fff;
  border: 1px solid var(--primary-color2);
}
.testi-next2.style-3 i,
.testi-next1.style-3 i {
  border: 1px solid #eeeeee;
}
.testi-next2.style-3:hover i,
.testi-next1.style-3:hover i {
  background: var(--primary-color3);
  color: #fff;
  border: 1px solid var(--primary-color3);
}

.testi-prev2,
.testi-prev1 {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
@media (min-width: 1400px) and (max-width: 1499px) {
  .testi-prev2,
  .testi-prev1 {
    left: -28px;
  }
}
@media (max-width: 767px) {
  .testi-prev2,
  .testi-prev1 {
    display: none;
    left: -30px;
    visibility: hidden;
  }
}
@media (max-width: 1199px) {
  .testi-prev2,
  .testi-prev1 {
    left: -40px;
  }
}
.testi-prev2 i,
.testi-prev1 i {
  padding: 8px 10px;
  line-height: 45px;
  border-radius: 50%;
  background: #fff;
  color: #666666;
  font-size: 16px;
  text-align: center;
  border: 1px solid #666666;
  transition: 0.5s ease;
}
.testi-prev2:hover i,
.testi-prev1:hover i {
  background: var(--primary-color1);
  color: #fff;
  border: 1px solid var(--primary-color1);
}
.testi-prev2.style-2 i,
.testi-prev1.style-2 i {
  border: 1px solid #eeeeee;
}
.testi-prev2.style-2:hover i,
.testi-prev1.style-2:hover i {
  background: var(--primary-color2);
  color: #fff;
  border: 1px solid var(--primary-color2);
}
.testi-prev2.style-3 i,
.testi-prev1.style-3 i {
  border: 1px solid #eeeeee;
}
.testi-prev2.style-3:hover i,
.testi-prev1.style-3:hover i {
  background: var(--primary-color3);
  color: #fff;
  border: 1px solid var(--primary-color3);
}

.testimonial-section {
  background-image: url("../images/bg/client-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .testimonial-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.testimonial-section .swiper {
  margin: -25px -15px;
  padding: 25px 15px;
}
.testimonial-section .client-right-vector {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 767px) {
  .testimonial-section .client-right-vector {
    display: none;
    visibility: hidden;
  }
}
.testimonial-section .client-left-vector {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .testimonial-section .client-left-vector {
    display: none;
    visibility: hidden;
  }
}
.testimonial-section .client-circle1 {
  position: absolute;
  right: 14%;
  bottom: 30px;
  animation: fluid 5s linear infinite alternate;
}
.testimonial-section .client-circle2 {
  position: absolute;
  left: 8%;
  bottom: 30px;
  animation: fluid 5s linear infinite alternate;
  animation-delay: 2s;
}
.testimonial-section .client-circle3 {
  position: absolute;
  left: 30%;
  bottom: 30px;
  animation: fluid 5s linear infinite alternate;
  animation-delay: 2s;
}
.testimonial-section .client-circle4 {
  position: absolute;
  left: 8%;
  bottom: 30px;
  animation: fluid 5s linear infinite alternate;
  animation-delay: 2s;
}
.testimonial-section .client-circle5 {
  position: absolute;
  right: 14%;
  bottom: 30px;
  animation: fluid 5s linear infinite alternate;
}
.testimonial-section .swiper {
  margin: -15px;
  padding: 15px;
}

@keyframes fluid {
  0% {
    transform: translateY(0%);
  }
  25% {
    transform: translateY(-25%);
  }
  50% {
    transform: translateY(-50%);
  }
  75% {
    transform: translateY(-75%);
  }
  100% {
    transform: translateY(-100%);
  }
}
.testimonial-single {
  background: #fff;
  box-shadow: 5px 2px 15px rgba(0, 0, 0, 0.04);
  border-radius: 5px;
  padding: 25px;
  transition: 0.42s ease;
  transition-delay: 0.3s;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.testimonial-single p {
  color: #1f2230;
  font-size: 18px;
  font-family: var(--font-primary);
  font-weight: 300;
}
.testimonial-single .quote-icon {
  position: absolute;
  bottom: 30px;
  right: 20px;
}
.testimonial-single .testi-img {
  width: 60px;
  height: 60px;
  margin-top: -50px;
  margin-bottom: 20px;
}
.testimonial-single .testi-img img {
  max-width: 100%;
  border-radius: 50%;
}
.testimonial-single .testi-content .testi-designation {
  margin-top: 21px;
}
.testimonial-single .testi-content .testi-designation h5 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2230;
  line-height: 1;
  margin-bottom: 5px;
}
.testimonial-single .testi-content .testi-designation p {
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 400;
  color: #696969;
  font-style: normal;
}
.testimonial-single.style2 {
  position: relative;
}
.testimonial-single.style2 .testi-designation {
  margin-bottom: 20px;
}
.testimonial-single.style2 .testi-content .para {
  margin-bottom: 0;
}
.testimonial-single.style2 .quote-icon {
  position: absolute;
  top: 30px;
  right: 20px;
}
.testimonial-single.style2 .testi-img {
  width: 60px;
  height: 60px;
  margin-top: unset;
  margin-bottom: 15px;
}
.testimonial-single.style2 .testi-img img {
  max-width: 100%;
  border-radius: 50%;
}

.testimonial-slider {
  padding-top: 40px !important;
}

/*================================================
7. Blog 
=================================================*/
.recent-news-section {
  position: relative;
}
.recent-news-section .section-bg {
  position: absolute;
  right: -100px;
  bottom: 10%;
  z-index: -1;
}
@media (max-width: 767px) {
  .recent-news-section .section-bg {
    display: none;
    visibility: hidden;
  }
}
.recent-news-section .section-bg2 {
  position: absolute;
  right: 0px;
  top: 0px;
}
@media (max-width: 767px) {
  .recent-news-section .section-bg2 {
    display: none;
    visibility: hidden;
  }
}
.recent-news-section .dot-circle {
  position: absolute;
  top: -10px;
  right: 250px;
  animation: round 8s linear infinite;
}
@media (max-width: 767px) {
  .recent-news-section .dot-circle {
    display: none;
    visibility: hidden;
  }
}
@keyframes round {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.single-blog-style1 {
  box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
}
.single-blog-style1:hover .blog-img img {
  transform: scale(1.12);
}
.single-blog-style1 .blog-img {
  position: relative;
  overflow: hidden;
}
.single-blog-style1 .blog-img img {
  max-width: 100%;
  height: auto;
  transition: all 0.7s ease;
  border-radius: 5px 5px 0px 0px;
}
.single-blog-style1 .blog-img .blog-date {
  position: absolute;
  left: 0;
  top: 30px;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: #fff;
  background: var(--primary-color1);
  border-radius: 0px 17px 17px 0px;
  z-index: 1;
}
.single-blog-style1 .blog-img .blog-date .bi {
  margin-right: 10px;
  font-size: 16px;
}
.single-blog-style1 .blog-content {
  padding: 30px 25px;
  background: #fff;
}
.single-blog-style1 .blog-content h5 a {
  font-size: 25px;
  font-weight: 600;
  font-family: var(--font-primary);
  color: #1f2230;
  line-height: 1.4;
  transition: all 0.42s ease-in-out;
}
.single-blog-style1 .blog-content h5:hover a {
  color: var(--primary-color1);
}
.single-blog-style1 .blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}
.single-blog-style1 .blog-meta .author {
  margin-right: 35px;
}
.single-blog-style1 .blog-meta .author img {
  width: 100%;
  height: auto;
  max-width: 26px;
  border-radius: 50%;
  margin-right: 8px;
}
.single-blog-style1 .blog-meta .author .author-name {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-secondary);
  color: #8b8b8b;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .single-blog-style1 .blog-meta .author .author-name {
    font-size: 12px;
  }
}
.single-blog-style1 .blog-meta .comment i {
  margin-right: 8px;
  color: #000;
}
.single-blog-style1 .blog-meta .comment .comment {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-secondary);
  color: #8b8b8b;
  white-space: nowrap;
}
.single-blog-style1 .blog-meta .comment .comment span {
  margin-right: 4px;
}

.single-blog-style2 {
  position: relative;
}
.single-blog-style2:hover .blog-content {
  transform: translateY(-20px);
}
.single-blog-style2 .blog-img img {
  max-width: 100%;
  transition: all 0.7s ease;
  border-radius: 5px 5px 0px 0px;
}
.single-blog-style2 .blog-img .blog-date {
  position: absolute;
  left: 0;
  top: 30px;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: #fff;
  background: var(--primary-color2);
  border-radius: 0px 17px 17px 0px;
  z-index: 1;
}
.single-blog-style2 .blog-img .blog-date .bi {
  margin-right: 10px;
  font-size: 16px;
}
.single-blog-style2 .blog-content {
  position: relative;
  width: 94%;
  padding: 25px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  z-index: 9;
  box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  background: #fff;
  transition: all 0.55s ease-in-out;
}
@media (max-width: 767px) {
  .single-blog-style2 .blog-content {
    padding: 20px;
  }
}
.single-blog-style2 .blog-content h5 a {
  font-size: 22px;
  font-weight: 600;
  font-family: var(--font-primary);
  color: #1f2230;
  line-height: 1.4;
  transition: all 0.42s ease-in-out;
}
.single-blog-style2 .blog-content h5:hover a {
  color: var(--primary-color2);
}
.single-blog-style2 .blog-content p {
  margin-bottom: 0px;
}
.single-blog-style2 .blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .single-blog-style2 .blog-meta {
    justify-content: space-between;
  }
}
.single-blog-style2 .blog-meta .author {
  margin-right: 45px;
}
.single-blog-style2 .blog-meta .author img {
  width: 100%;
  max-width: 26px;
  border-radius: 50%;
  margin-right: 8px;
}
.single-blog-style2 .blog-meta .author .author-name {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-secondary);
  color: #696969;
  white-space: nowrap;
}
.single-blog-style2 .blog-meta .comment img {
  margin-right: 8px;
  height: 15px;
}
.single-blog-style2 .blog-meta .comment .comment {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-secondary);
  color: #696969;
  white-space: nowrap;
}

.single-blog-style3 {
  position: relative;
}
.single-blog-style3:hover .blog-content {
  transform: translateY(-20px);
}
.single-blog-style3 .blog-img img {
  max-width: 100%;
  transition: all 0.7s ease;
  border-radius: 5px 5px 0px 0px;
}
.single-blog-style3 .blog-img .blog-date {
  position: absolute;
  left: 0;
  top: 30px;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: #fff;
  background: var(--primary-color3);
  border-radius: 0px 17px 17px 0px;
  z-index: 1;
}
.single-blog-style3 .blog-img .blog-date .bi {
  margin-right: 10px;
  font-size: 16px;
}
.single-blog-style3 .blog-content {
  position: relative;
  width: 94%;
  padding: 25px 20px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  z-index: 9;
  box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  background: #fff;
  transition: all 0.55s ease-in-out;
  margin-top: -50px;
}
@media (max-width: 767px) {
  .single-blog-style3 .blog-content {
    padding: 20px;
  }
}
.single-blog-style3 .blog-content h5 a {
  font-size: 22px;
  font-weight: 600;
  font-family: var(--font-primary);
  color: #1f2230;
  line-height: 1.4;
  transition: all 0.42s ease-in-out;
}
.single-blog-style3 .blog-content h5:hover a {
  color: var(--primary-color3);
}
.single-blog-style3 .blog-content p {
  margin-bottom: 0px;
}
.single-blog-style3 .blog-meta {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .single-blog-style3 .blog-meta {
    justify-content: space-between;
  }
}
.single-blog-style3 .blog-meta .author {
  margin-right: 35px;
}
.single-blog-style3 .blog-meta .author img {
  width: 100%;
  max-width: 26px;
  border-radius: 50%;
  margin-right: 5px;
}
.single-blog-style3 .blog-meta .author .author-name {
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: #696969;
  white-space: nowrap;
}
.single-blog-style3 .blog-meta .comment img {
  margin-right: 8px;
}
.single-blog-style3 .blog-meta .comment .comment {
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: #696969;
  white-space: nowrap;
}

.blog-standard-single {
  position: relative;
  background-color: #ffffff;
  box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  margin-bottom: 60px;
}
.blog-standard-single:last-child {
  margin-bottom: 0;
}
.blog-standard-single .image {
  position: relative;
  z-index: 1;
}
.blog-standard-single .image img {
  border-radius: 5px;
}
.blog-standard-single .image .blog-badge a {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  padding: 8px 20px;
  cursor: pointer;
  background-color: var(--primary-color1);
  transition: all 0.35s ease-out 0s;
}
.blog-standard-single .text {
  padding: 30px;
}
.blog-standard-single .text .post-meta-list {
  margin-top: 15px;
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
}
.blog-standard-single .text .post-meta-list li {
  font-size: 16px;
  margin: 0;
}
.blog-standard-single .text .post-meta-list li a {
  color: #4e4a4a;
}
.blog-standard-single .text .post-meta-list li i {
  margin-right: 8px;
  color: #333;
}
.blog-standard-single .text .post-meta-list li .author-thumb img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin-right: 5px;
}
.blog-standard-single .read-more-btn {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color1);
  transition: all 0.5s ease-out 0s;
  margin-top: 10px;
  display: inline-block;
}
.blog-standard-single .read-more-btn i {
  font-size: 1.25rem;
  vertical-align: middle;
  margin-left: 10px;
}
.blog-standard-single .read-more-btn:hover {
  color: #1f2230;
  letter-spacing: 1px;
}

.blog-single1.style-2 {
  position: relative;
  overflow: hidden;
  box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
}
.blog-single1.style-2 img {
  height: auto;
}
.blog-single1.style-2 .blog-badge {
  position: absolute;
  left: 0;
  top: 30px;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: #fff;
  background: var(--primary-color1);
  border-radius: 0px 17px 17px 0px;
  z-index: 1;
}
.blog-single1.style-2 .text {
  padding: 20px;
}
.blog-single1.style-2 .text .post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.blog-single1.style-2 .text .post-meta a {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-secondary);
  color: #8b8b8b;
  white-space: nowrap;
}
.blog-single1.style-2 .text .post-meta a img,
.blog-single1.style-2 .text .post-meta a i {
  margin-right: 8px;
  height: 16px;
  font-size: 16px;
}

/*================================================
7. about-us counter 
=================================================*/
.counter-single {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 30px 25px;
}
@media (max-width: 576px) {
  .counter-single {
    padding: 20px 15px;
  }
}
.counter-single .counter-icon {
  margin-right: 15px;
}
.counter-single .coundown h3 {
  font-size: 30px;
  font-weight: 600;
  color: #1f2230;
  position: relative;
  padding-right: 15px;
  margin: 0 auto !important;
}
.counter-single .coundown h3::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
}
.counter-single .coundown p {
  margin-bottom: 0px;
  font-weight: 500;
  color: #696969;
  font-size: 16px;
}

/*================================================
    Sponsor-section
=================================================*/
.sponsor-section {
  overflow: hidden;
  padding: 15px 0px 0px 0px;
}
@media (max-width: 767px) {
  .sponsor-section.style-1 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.sponsor-section.style-3 {
  background: rgba(var(--primary-color3), 0.1);
}
.sponsor-section.style-2 {
  background: rgba(var(--primary-color2), 0.1);
}
.sponsor-section.style-2 .slick-dots .slick-active {
  background-color: var(--primary-color2);
}
.sponsor-section .slick-list {
  margin: -15px;
}
.sponsor-section .slick-slide > div {
  padding: 10px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sponsor-section .slide-item img {
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  transition: all 0.5s ease-out 0s;
  box-shadow: 0px 0px 5px rgba(139, 139, 139, 0.15);
}
.sponsor-section .slide-item:hover img {
  transform: translateY(-5px);
}
.sponsor-section .slick-dots {
  position: absolute;
  bottom: -60px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.sponsor-section .slick-dots li {
  background: #696969;
  width: 10px;
  height: 8px;
  border-radius: 50px;
}
.sponsor-section .slick-dots li button:before {
  opacity: 0;
}
.sponsor-section .slick-dots .slick-active {
  background-color: var(--primary-color3);
}
.sponsor-section .slick-dotted.slick-slider {
  margin-bottom: 45px;
}

/*================================================
7. Footer
=================================================*/
footer {
  background-image: url("../images/bg/footer-map.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #0a0a0f;
  position: relative;
}
footer .footer-top {
  padding: 90px 0px;
}
@media (max-width: 991px) {
  footer .footer-top {
    padding: 80px 0px;
  }
}
@media (max-width: 767px) {
  footer .footer-top {
    padding: 60px 0px;
  }
}
footer .footer-item {
  min-width: 200px;
}
footer .footer-item a img {
  margin-bottom: 25px;
}
footer .footer-item p {
  font-size: 16px;
  font-weight: 500;
  color: #d2d2d2;
  margin-bottom: 25px;
  font-family: var(--font-secondary);
}
footer .footer-item .input-with-btn {
  max-width: 350px;
  width: 100%;
  border: 1px solid #696969;
  padding: 5px;
  border-radius: 5px;
}
footer .footer-item .input-with-btn input {
  width: 100%;
  border-radius: 5px;
  background: transparent;
  border: none;
  outline: none;
  padding: 7px 20px;
  transition: all 0.4s ease;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
footer .footer-item .input-with-btn input::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #696969;
}
footer .footer-item .input-with-btn input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #696969;
}
footer .footer-item .input-with-btn button {
  outline: none;
  border: none;
  background: var(--primary-color1);
  border-radius: 5px;
  min-width: 46px;
  min-height: 44px;
  color: #fff;
}
footer .footer-item .input-with-btn button img {
  transition: 0.65s ease;
}
footer .footer-item .input-with-btn button:hover img {
  transform: rotate(360deg);
}
footer .footer-item h5 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
}
footer .footer-item .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-item .footer-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 0px;
  transition: all 0.4s ease-in;
}
footer .footer-item .footer-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  border-radius: 50%;
  height: 6px;
  width: 6px;
  background: var(--primary-color1);
  opacity: 0;
  transition: all 0.4s ease;
}
footer .footer-item .footer-list li:last-child {
  margin-bottom: 0;
}
footer .footer-item .footer-list li:hover {
  padding-left: 12px;
}
footer .footer-item .footer-list li:hover a {
  color: var(--primary-color1);
}
footer .footer-item .footer-list li:hover::before {
  opacity: 1;
}
footer .footer-item .footer-list li a {
  color: #d2d2d2;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-secondary);
  transition: all 0.4s ease;
}
footer .footer-bottom {
  background: #000000;
  padding: 15px 0px;
  border-top: 1px solid #2f2f2f;
}
footer .footer-bottom p {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: #fff;
  margin-bottom: 0;
  margin-right: 30px;
}
@media (max-width: 576px) {
  footer .footer-bottom p {
    margin-right: 0px;
  }
}
footer .footer-bottom p .egns-lab {
  font-weight: 600;
  color: var(--primary-color1);
}
footer .footer-bottom .footer-logo-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
}
footer .footer-bottom .footer-logo-list li {
  margin-right: 20px;
}
footer .footer-bottom .footer-logo-list li img {
  transition: all 0.6s ease;
}
footer .footer-bottom .footer-logo-list li:last-child {
  margin-right: 0px;
}
footer .footer-bottom .footer-logo-list li:hover img {
  transform: rotate(360deg);
}

ul.recent-feed-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.recent-feed-list .single-feed {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 25px;
}
ul.recent-feed-list .single-feed:last-child {
  margin-bottom: 0px;
}
ul.recent-feed-list .single-feed .feed-img {
  margin-right: 15px;
}
ul.recent-feed-list .single-feed .feed-img img {
  min-width: 64px;
  height: 64px;
  border-radius: 5px;
  margin-bottom: 0;
}
ul.recent-feed-list .single-feed .feed-content span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-secondary);
  display: block;
  margin-bottom: 5px;
}
ul.recent-feed-list .single-feed .feed-content h6 {
  margin-bottom: 0;
}
ul.recent-feed-list .single-feed .feed-content h6 a {
  font-size: 16px;
  font-weight: 600;
  color: #d2d2d2;
  transition: all 0.42s ease-in;
}
ul.recent-feed-list .single-feed .feed-content h6:hover a {
  color: var(--primary-color1);
}

ul.recent-post {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.recent-post .single-post {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 25px;
}
ul.recent-post .single-post:last-child {
  margin-bottom: 0px;
}
ul.recent-post .single-post .post-img {
  margin-right: 15px;
}
ul.recent-post .single-post .post-img img {
  min-width: 64px;
  height: 64px;
  border-radius: 5px;
  margin-bottom: 0;
}
ul.recent-post .single-post .post-content span {
  font-size: 14px;
  font-weight: 400;
  color: #696969;
  font-family: var(--font-secondary);
  display: block;
  margin-bottom: 5px;
}
ul.recent-post .single-post .post-content h6 {
  margin-bottom: 0;
}
ul.recent-post .single-post .post-content h6 a {
  font-size: 16px;
  font-weight: 600;
  color: #1f2230;
  transition: all 0.42s ease-in;
}
ul.recent-post .single-post .post-content h6:hover a {
  color: var(--primary-color1);
}

ul.category-list {
  margin: 0;
  padding: 0;
}
ul.category-list li {
  margin-bottom: 15px;
}
ul.category-list li:last-child {
  margin-bottom: 0px;
}
ul.category-list li a {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: #696969;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
ul.category-list li a span:first-child {
  padding-left: 20px;
  position: relative;
}
ul.category-list li a span:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color1);
  transition: all 0.5s ease-out 0s;
}
ul.category-list li a span:last-child {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--primary-color1);
  border: 1px solid var(--primary-color1);
  border-radius: 50%;
  transition: all 0.5s ease-out 0s;
}
ul.category-list li a:hover span:first-child::before {
  background: #696969;
}
ul.category-list li a:hover span:last-child {
  color: var(--primary-color1);
  background: #fff;
  border: 1px solid var(--primary-color1);
}

.sidebar-social-list {
  display: flex;
  justify-content: start;
  align-items: center;
  margin: 0;
  padding: 0;
}
.sidebar-social-list li .bx {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border: 1px solid #eeeeee;
  color: #696969;
  border-radius: 5px;
  transition: all 0.5s ease-out 0s;
}
.sidebar-social-list li .bx:hover {
  border: 1px solid var(--primary-color1);
  color: var(--primary-color1);
}

footer.style-2 {
  background-image: url("../images/bg/footer2-bg.png");
  position: relative;
}
footer.style-2 .footer-top {
  padding: 90px 0px;
}
footer.style-2 .footer-item {
  min-width: 200px;
}
footer.style-2 .footer-item a img {
  margin-bottom: 25px;
}
footer.style-2 .footer-item p {
  font-size: 16px;
  font-weight: 400;
  color: #d2d2d2;
  margin-bottom: 25px;
  font-family: var(--font-secondary);
}
footer.style-2 .footer-item .input-with-btn {
  max-width: 350px;
  width: 100%;
  border: 1px solid #696969;
  padding: 5px;
  border-radius: 30px;
}
footer.style-2 .footer-item .input-with-btn input {
  width: 100%;
  border-radius: 30px;
  background: transparent;
  border: none;
  outline: none;
  padding: 7px 20px;
  transition: all 0.4s ease;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
footer.style-2 .footer-item .input-with-btn input::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #696969;
}
footer.style-2 .footer-item .input-with-btn input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #696969;
}
footer.style-2 .footer-item .input-with-btn button {
  outline: none;
  border: none;
  background: var(--primary-color2);
  border-radius: 30px;
  min-width: 120px;
  min-height: 46px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-primary);
  color: #fff;
  transition: all 0.42s ease;
}
footer.style-2 .footer-item .input-with-btn button:hover {
  background: rgba(var(--primary-color2), 0.9);
}
footer.style-2 .footer-item .input-with-btn button img {
  transition: 0.65s ease;
}
footer.style-2 .footer-item .input-with-btn button:hover img {
  transform: rotate(360deg);
}
footer.style-2 .footer-item h5 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
}
footer.style-2 .footer-item .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer.style-2 .footer-item .footer-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 0px;
  transition: all 0.4s ease-in;
}
footer.style-2 .footer-item .footer-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  border-radius: 50%;
  height: 6px;
  width: 6px;
  background: var(--primary-color2);
  opacity: 0;
  transition: all 0.4s ease;
}
footer.style-2 .footer-item .footer-list li:last-child {
  margin-bottom: 0;
}
footer.style-2 .footer-item .footer-list li:hover {
  padding-left: 12px;
}
footer.style-2 .footer-item .footer-list li:hover a {
  color: var(--primary-color2);
}
footer.style-2 .footer-item .footer-list li:hover::before {
  opacity: 1;
}
footer.style-2 .footer-item .footer-list li a {
  color: #d2d2d2;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-secondary);
  transition: all 0.4s ease;
}
footer.style-2 .footer-item .address-list {
  margin: 0;
  padding: 0;
}
footer.style-2 .footer-item .address-list li {
  margin-bottom: 15px;
}
footer.style-2 .footer-item .address-list li:last-child {
  margin-bottom: 0px;
}
footer.style-2 .footer-item .address-list li a {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: #d2d2d2;
  transition: all 0.42s ease;
}
footer.style-2 .footer-item .address-list li:hover a {
  color: var(--primary-color2);
}
footer.style-2 .footer-item .footer-social {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: start;
}
footer.style-2 .footer-item .footer-social i {
  color: #fff;
  width: 34px;
  height: 34px;
  line-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-align: center;
  transition: all 0.42s ease;
}
footer.style-2 .footer-item .footer-social i:hover {
  background: var(--primary-color2);
  border: 1px solid var(--primary-color2);
}
footer.style-2 .footer-bottom {
  background: #000000;
  padding: 15px 0px;
}
footer.style-2 .footer-bottom p {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: #fff;
  margin-bottom: 0;
  margin-right: 30px;
}
footer.style-2 .footer-bottom p .egns-lab {
  font-weight: 600;
  color: var(--primary-color2);
}
footer.style-2 .footer-bottom .footer-logo-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
}
footer.style-2 .footer-bottom .footer-logo-list li {
  margin-right: 20px;
}
footer.style-2 .footer-bottom .footer-logo-list li img {
  transition: all 0.6s ease;
}
footer.style-2 .footer-bottom .footer-logo-list li:last-child {
  margin-right: 0px;
}
footer.style-2 .footer-bottom .footer-logo-list li:hover img {
  transform: rotate(360deg);
}

footer.style-3 {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url("../images/bg/footer3-bg.png");
  position: relative;
}
footer.style-3 .footer-top {
  padding: 90px 0px;
}
footer.style-3 .footer-item {
  min-width: 200px;
}
footer.style-3 .footer-item a img {
  margin-bottom: 25px;
}
footer.style-3 .footer-item p {
  font-size: 16px;
  font-weight: 400;
  color: #d2d2d2;
  margin-bottom: 25px;
  font-family: var(--font-secondary);
}
footer.style-3 .footer-item .input-with-btn {
  max-width: 350px;
  width: 100%;
  border: 1px solid #696969;
  padding: 5px;
  border-radius: 30px;
}
footer.style-3 .footer-item .input-with-btn input {
  width: 100%;
  border-radius: 30px;
  background: transparent;
  border: none;
  outline: none;
  padding: 7px 20px;
  transition: all 0.4s ease;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
footer.style-3 .footer-item .input-with-btn input::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #696969;
}
footer.style-3 .footer-item .input-with-btn input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #696969;
}
footer.style-3 .footer-item .input-with-btn button {
  outline: none;
  border: none;
  background: var(--primary-color3);
  border-radius: 30px;
  min-width: 120px;
  min-height: 46px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-primary);
  color: #fff;
  transition: all 0.42s ease;
}
footer.style-3 .footer-item .input-with-btn button:hover {
  background: rgba(var(--primary-color3), 0.9);
}
footer.style-3 .footer-item .input-with-btn button img {
  transition: 0.65s ease;
}
footer.style-3 .footer-item .input-with-btn button:hover img {
  transform: rotate(360deg);
}
footer.style-3 .footer-item h5 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
}
footer.style-3 .footer-item .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer.style-3 .footer-item .footer-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 0px;
  transition: all 0.4s ease-in;
}
footer.style-3 .footer-item .footer-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  border-radius: 50%;
  height: 6px;
  width: 6px;
  background: var(--primary-color3);
  opacity: 0;
  transition: all 0.4s ease;
}
footer.style-3 .footer-item .footer-list li:last-child {
  margin-bottom: 0;
}
footer.style-3 .footer-item .footer-list li:hover {
  padding-left: 12px;
}
footer.style-3 .footer-item .footer-list li:hover a {
  color: var(--primary-color3);
}
footer.style-3 .footer-item .footer-list li:hover::before {
  opacity: 1;
}
footer.style-3 .footer-item .footer-list li a {
  color: #d2d2d2;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-secondary);
  transition: all 0.4s ease;
}
footer.style-3 .footer-item .address-list {
  margin: 0;
  padding: 0;
}
footer.style-3 .footer-item .address-list li {
  margin-bottom: 15px;
}
footer.style-3 .footer-item .address-list li a {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: #d2d2d2;
  transition: all 0.42s ease;
}
footer.style-3 .footer-item .address-list li:hover a {
  color: var(--primary-color3);
}
footer.style-3 .footer-item .footer-social {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: start;
}
footer.style-3 .footer-item .footer-social i {
  color: #fff;
  width: 34px;
  height: 34px;
  line-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-align: center;
  transition: all 0.42s ease;
}
footer.style-3 .footer-item .footer-social i:hover {
  background: var(--primary-color3);
  border: 1px solid var(--primary-color3);
}
footer.style-3 .footer-bottom {
  background: #000000;
  padding: 15px 0px;
}
footer.style-3 .footer-bottom p {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: #fff;
  margin-bottom: 0;
  margin-right: 30px;
}
footer.style-3 .footer-bottom p .egns-lab {
  font-weight: 600;
  color: var(--primary-color3);
}
footer.style-3 .footer-bottom .footer-logo-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
}
footer.style-3 .footer-bottom .footer-logo-list li {
  margin-right: 20px;
}
footer.style-3 .footer-bottom .footer-logo-list li img {
  transition: all 0.6s ease;
}
footer.style-3 .footer-bottom .footer-logo-list li:last-child {
  margin-right: 0px;
}
footer.style-3 .footer-bottom .footer-logo-list li:hover img {
  transform: rotate(360deg);
}

.mc4wp-error {
  margin-top: 10px;
}
.mc4wp-error p {
  color: #c6e39a !important;
  font-weight: bold !important;
}

/*================================================
7. Blog page
=================================================*/
.blog-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.blog-section .section-bg-top {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .blog-section .section-bg-top {
    display: none;
    visibility: hidden;
  }
}
.blog-section .section-bg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .blog-section .section-bg-bottom {
    display: none;
    visibility: hidden;
  }
}

.pagination-wrap .page-item.active .page-link {
  z-index: 3;
  color: var(--primary-color1) !important;
  background-color: #fff !important;
  border-color: var(--primary-color1);
}
.pagination-wrap .pagination {
  margin: 0;
}
.pagination-wrap .pagination.style-two .page-link {
  position: relative;
  display: block;
  color: #1f2230;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #eeeeee;
  border-radius: 2px;
  transition: 0.42s ease;
  padding: 10px;
}
.pagination-wrap .pagination.style-two .page-link:focus {
  color: var(--primary-color1);
  border-color: var(--primary-color1);
  background-color: #fff;
}
.pagination-wrap .pagination.style-two .page-link:hover {
  color: var(--primary-color1);
  border-color: var(--primary-color1);
}
.pagination-wrap .page-item:first-child .page-link {
  border-radius: 2px;
}
.pagination-wrap .page-item:last-child .page-link {
  border-radius: 2px;
}
.pagination-wrap .page-link {
  position: relative;
  display: block;
  color: #1f2230;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #eeeeee;
  border-radius: 8px 8px 2px 8px;
  transition: 0.42s ease;
}
.pagination-wrap .page-link:focus {
  box-shadow: unset;
  color: #fff;
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
}
.pagination-wrap .page-link:hover {
  color: #fff;
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
}
.pagination-wrap .page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
}

.inner-banner {
  min-height: 400px;
  background: rgba(12, 3, 33, 0.9);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  justify-content: start;
  align-items: center;
}
.inner-banner::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8%;
  z-index: -1;
}
@media (max-width: 767px) {
  .inner-banner::after {
    display: none;
  }
}
.inner-banner::before {
  position: absolute;
  content: url(../images/bg/inner-vector-left.png);
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.breadcrumb .breadcrumb-item,
.breadcrumb li {
  color: var(--primary-color1);
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-primary);
}
.breadcrumb .breadcrumb-item.active,
.breadcrumb li.active {
  color: #dddddd;
}
.breadcrumb li.active {
  color: #ddd;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-primary);
  padding-left: 0.5em;
}
.breadcrumb li.active:before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: var(--bs-breadcrumb-divider, "/");
}
.breadcrumb .woocommerce-breadcrumb {
  color: #ddd;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-primary);
  padding-left: 0.5em;
}
.breadcrumb .woocommerce-breadcrumb a {
  color: var(--primary-color1);
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-primary);
}

.inner-banner-title {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
@media (max-width: 767px) {
  .inner-banner-title {
    font-size: 36px !important;
  }
}

/*================================================
7. Login Page
=================================================*/
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: rgba(var(--primary-color1), 0.3);
}

.nice-select .option:hover {
  background-color: rgba(var(--primary-color1), 0.3);
}

.nice-select.open,
.nice-select:focus {
  border-color: var(--primary-color1);
}

.nice-select {
  width: 100%;
  height: 50px;
  line-height: 50px;
  float: unset;
  font-weight: 600;
}
.nice-select .list {
  width: 100%;
}

.login-section {
  position: relative;
}
.login-section .section-bg-top {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .login-section .section-bg-top {
    display: none;
    visibility: hidden;
  }
}
.login-section .section-bg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .login-section .section-bg-bottom {
    display: none;
    visibility: hidden;
  }
}

.form-wrapper {
  border-radius: 5px;
  box-shadow: 5px 7px 35px rgba(139, 139, 139, 0.1);
  padding: 40px;
  background: #fff;
}
@media (max-width: 576px) {
  .form-wrapper {
    padding: 25px;
  }
}
.form-wrapper .form-title {
  text-align: center;
  margin-bottom: 60px;
}
.form-wrapper .form-title h3 {
  font-size: 30px;
  font-weight: 700;
  color: #1f2230;
  text-align: center;
  margin-bottom: 20px;
}
.form-wrapper .form-title p {
  font-size: 20px;
  font-weight: 400;
  color: #1f2230;
}
.form-wrapper .form-title p a {
  font-weight: 600;
  font-size: 20px;
  text-transform: capitalize;
  color: #1f2230;
}
.form-wrapper .form-title2 {
  margin-bottom: 30px;
}
.form-wrapper .form-title2 h3 {
  font-size: 35px;
  font-weight: 600;
  color: #1f2230;
  margin-bottom: 15px;
}
.form-wrapper label {
  color: #1f2230;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: var(--font-primary);
}
.form-wrapper input,
.form-wrapper textarea {
  border: 1px solid #eeeeee;
  height: 50px;
  width: 100%;
  padding: 10px 20px;
  transition: 0.4s ease;
}
.form-wrapper input::-moz-placeholder, .form-wrapper textarea::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
}
.form-wrapper input::placeholder,
.form-wrapper textarea::placeholder {
  font-size: 14px;
  font-weight: 400;
}
.form-wrapper input:focus,
.form-wrapper textarea:focus {
  border: 1px solid var(--primary-color1);
  border-radius: 5px;
}
.form-wrapper textarea {
  min-height: 150px;
}
.form-wrapper .check-box-text {
  font-size: 16px;
}
.form-wrapper .form-inner {
  margin-bottom: 18px;
  position: relative;
}
.form-wrapper .form-inner i {
  position: absolute;
  right: 20px;
  bottom: 14px;
}
.form-wrapper .form-agreement {
  margin-bottom: 16px;
  margin-top: 6px;
}
.form-wrapper .form-agreement label {
  font-size: 16px;
  font-weight: 400;
}
.form-wrapper .form-agreement label a {
  font-weight: 600;
  font-size: 16;
}
.form-wrapper .forgotpass {
  text-align: center;
  margin-top: 25px;
}
.form-wrapper .forgot-pass {
  color: #1f2230;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  transition: 0.3s ease;
}
.form-wrapper .forgot-pass::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 15px;
  background: #1f2230;
  height: 1px;
  width: 100%;
}
@media (max-width: 576px) {
  .form-wrapper .forgot-pass::after {
    display: none;
    visibility: hidden;
  }
}
.form-wrapper .forgot-pass:hover {
  color: #999;
}
.form-wrapper .forgot-pass:hover::after {
  background: #999;
}
.form-wrapper .account-btn {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--primary-color1);
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  width: 100%;
  padding: 15px;
  outline: none;
  border: 1px solid var(--primary-color1);
  border-radius: 5px;
  transition: 0.4s ease;
}
.form-wrapper .account-btn:hover {
  background: #fff;
  color: var(--primary-color1);
}
.form-wrapper .alternate-signup-box {
  border: 1px solid #eeeeee;
  border-radius: 3px;
  padding: 20px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 35px;
}
.form-wrapper .alternate-signup-box h6 {
  font-size: 16px;
  font-weight: 700;
  color: #1f2230;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.form-wrapper .alternate-signup-box .btn-group {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.form-wrapper .alternate-signup-box .btn-group a {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 15px;
  color: #fff;
  border-radius: 5px;
  transition: 0.5s ease;
}
.form-wrapper .alternate-signup-box .btn-group a:hover {
  background: #1f2230;
}
.form-wrapper .alternate-signup-box .btn-group i {
  font-size: 16px;
}
.form-wrapper .alternate-signup-box .google-btn {
  background: #ea4335;
}
.form-wrapper .alternate-signup-box .facebook-btn {
  background: #4267b2;
}
.form-wrapper .form-poicy-area {
  text-align: center;
}
.form-wrapper .form-poicy-area a {
  font-weight: 600;
  color: var(--primary-color1);
  text-decoration: underline;
}
.form-wrapper .form-group input[type=checkbox] {
  display: none;
  cursor: pointer;
}
.form-wrapper input[type=checkbox] + label:before {
  content: "";
  background-color: #1f2230;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}
.form-wrapper input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 6px;
  width: 4px;
  height: 10px;
  border: 1px solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-wrapper button.form--btn {
  outline: none;
  border: none;
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 25px;
}

.login-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.login-section .section-bg-top {
  position: absolute;
  top: 0;
  right: -80px;
  z-index: -1;
}
@media (max-width: 767px) {
  .login-section .section-bg-top {
    display: none;
    visibility: hidden;
  }
}
.login-section .section-bg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .login-section .section-bg-bottom {
    display: none;
    visibility: hidden;
  }
}

.signup-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.signup-section .section-bg-top {
  position: absolute;
  top: 0;
  right: -80px;
  z-index: -1;
}
@media (max-width: 767px) {
  .signup-section .section-bg-top {
    display: none;
    visibility: hidden;
  }
}
.signup-section .section-bg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .signup-section .section-bg-bottom {
    display: none;
    visibility: hidden;
  }
}

/*================================================
7. How Work Page
=================================================*/
.how-work-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.how-work-section .section-bg-top {
  position: absolute;
  top: 0;
  right: -80px;
  z-index: -1;
}
@media (max-width: 767px) {
  .how-work-section .section-bg-top {
    display: none;
    visibility: hidden;
  }
}
.how-work-section .how-work-content span {
  font-size: 50px;
  font-weight: 700;
  color: var(--primary-color1);
  font-family: var(--font-primary);
  display: block;
  margin-bottom: 15px;
}
.how-work-section .how-work-content h3 {
  font-size: 30px;
  font-weight: 700;
  color: #1f2230;
}
.how-work-section .how-work-content a {
  margin-top: 25px;
}
.how-work-section .how-work-img {
  background: #fff;
  box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  width: 100%;
  max-width: 505px;
  height: 505px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .how-work-section .how-work-img {
    box-shadow: unset;
  }
}
@media (max-width: 767px) {
  .how-work-section .how-work-img {
    box-shadow: unset;
    max-width: 100%;
    height: auto;
  }
}
.how-work-section .how-work-img .work-img {
  max-width: 100%;
  animation: jumping 4s linear infinite alternate;
}
@keyframes jumping {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

.single-feature {
  border: 1px solid #eeeeee;
  background: #fff;
  padding: 30px;
  text-align: center;
  position: relative;
  transition: all 0.42s ease;
}
.single-feature:hover {
  box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid transparent;
}
.single-feature:hover .sn {
  -webkit-text-stroke-color: #1f2230;
}
.single-feature:hover .icon svg {
  fill: var(--primary-color1);
}
.single-feature .sn {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 50px;
  font-weight: 700;
  color: rgba(31, 34, 48, 0.1);
  -webkit-text-fill-color: white;
  /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(31, 34, 48, 0.1);
  line-height: 1;
  transition: all 0.42s ease;
}
.single-feature .icon {
  margin-bottom: 20px;
}
.single-feature .icon svg {
  fill: #696969;
  transition: all 0.42s ease;
}
.single-feature .content h5 {
  font-size: 26px;
  font-weight: 600;
  color: #1f2230;
  transition: all 0.42s ease-in;
  cursor: unset;
}
.single-feature .content h5:hover {
  color: var(--primary-color1);
}

.choose-us-section {
  position: relative;
  overflow: hidden;
}
.choose-us-section .section-bg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .choose-us-section .section-bg-bottom {
    display: none;
    visibility: hidden;
  }
}

/*================================================
FAQ Page
=================================================*/
.faq-wrap .accordion-item {
  margin-bottom: 24px;
  border: none;
}
.faq-wrap .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-wrap .accordion-button {
  font-weight: 500;
  font-size: 20px;
  background: #fff;
  border-radius: 5px;
  color: #1f2230;
  padding: 35px 60px 35px 35px;
  padding-right: 60px;
  position: relative;
  transition: 0.4s ease-in;
  box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
}
@media (max-width: 767px) {
  .faq-wrap .accordion-button {
    padding: 35px 60px 35px 35px;
  }
}
@media (max-width: 576px) {
  .faq-wrap .accordion-button {
    padding: 45px 60px 45px 45px;
  }
}
.faq-wrap .accordion-button:hover::after {
  background: var(--primary-color1);
  color: #fff;
}
.faq-wrap .accordion-button:focus {
  z-index: unset;
  border-color: unset;
  outline: 0;
  background: #fff;
  box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
}
.faq-wrap .accordion-button::after {
  flex-shrink: 0;
  width: unset;
  height: unset;
  margin-left: auto;
  background-image: none;
  background-repeat: unset;
  background-size: unset;
  font-family: bootstrap-icons !important;
  font-size: 15px;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  content: "\f282";
  transition: unset;
  font-size: 20px;
  color: var(--primary-color1);
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-color1);
  transition: all 0.4s ease;
}
.faq-wrap .accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: unset;
  font-family: bootstrap-icons !important;
  content: "\f286";
  background: var(--primary-color1);
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}
.faq-wrap .accordion-body {
  font-weight: 400;
  font-size: 16px;
  font-family: var(--font-secondary);
  background: rgba(var(--primary-color1), 0.05);
  border-top: none;
  text-align: left;
}
.faq-wrap .accordion-button:not(.collapsed) {
  box-shadow: unset;
  color: #1f2230;
  border-radius: 5px 5px 0px 0px;
  box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
  background: #fff;
}

.faq-form-area {
  padding: 25px;
  box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
}
@media (max-width: 991px) {
  .faq-form-area {
    margin-top: unset;
  }
}
.faq-form-area h5 {
  font-size: 25px;
  font-weight: 600;
  color: #1f2230;
  margin-bottom: 10px;
}
.faq-form-area p {
  margin-bottom: 20px;
}
.faq-form-area .faq-form label {
  margin-bottom: 15px;
  font-size: 1rem;
  font-weight: 500;
  color: #1f2230;
  font-family: var(--font-primary);
  line-height: 1;
}
.faq-form-area .faq-form .form-inner {
  margin-bottom: 20px;
}
.faq-form-area .faq-form input,
.faq-form-area .faq-form textarea {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #eeeeee;
  transition: 0.35s ease-in;
}
@media (max-width: 767px) {
  .faq-form-area .faq-form input,
  .faq-form-area .faq-form textarea {
    padding: 10px 15px;
  }
}
.faq-form-area .faq-form input::-moz-placeholder, .faq-form-area .faq-form textarea::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #696969;
  font-family: var(--font-secondary);
}
.faq-form-area .faq-form input::placeholder,
.faq-form-area .faq-form textarea::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #696969;
  font-family: var(--font-secondary);
}
.faq-form-area .faq-form input:focus,
.faq-form-area .faq-form textarea:focus {
  border: 1px solid var(--primary-color1);
}

.section-title3 {
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: 600;
  color: #1f2230;
  text-align: left;
}

/*================================================
live-auction Page
=================================================*/
.live-auction-section {
  position: relative;
  z-index: 1;
}
.live-auction-section .section-bg-top {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .live-auction-section .section-bg-top {
    display: none;
    visibility: hidden;
  }
}
.live-auction-section .section-bg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .live-auction-section .section-bg-bottom {
    display: none;
    visibility: hidden;
  }
}

/*================================================
 Auction-details Page
=================================================*/
.auction-details-section {
  position: relative;
}
.auction-details-section .section-bg-top {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .auction-details-section .section-bg-top {
    display: none;
    visibility: hidden;
  }
}
.auction-details-section .section-bg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .auction-details-section .section-bg-bottom {
    display: none;
    visibility: hidden;
  }
}
.auction-details-section .details-tab-btn {
  background: #fff;
}

.product-details-right h3 {
  font-size: 30px;
  font-weight: 700;
  font-family: var(--font-primary);
  color: #1f2230;
  margin-bottom: 10px;
}
.product-details-right p {
  margin-bottom: 20px;
}
.product-details-right h4 {
  font-size: 25px;
  font-weight: 400;
  color: #1f2230;
}
.product-details-right h4 span {
  font-weight: 700;
}
.product-details-right .bid-form {
  margin-top: 40px;
  box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  background: #fff;
  padding: 25px;
}
.product-details-right .bid-form .form-title {
  padding-bottom: 3px;
  margin-bottom: 20px;
}
.product-details-right .bid-form .form-title h5 {
  font-size: 22px;
  font-weight: 600;
  color: #1f2230;
}
.product-details-right .bid-form .form-title p {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
  font-family: var(--font-secondary);
  position: relative;
}
.product-details-right .bid-form .form-title p::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 52px;
  height: 3px;
  border-radius: 5px;
  background-color: var(--primary-color1);
}
.product-details-right .bid-form .form-title p::after {
  content: "";
  position: absolute;
  left: 56px;
  bottom: -12px;
  width: 4px;
  height: 3px;
  border-radius: 5px;
  background-color: var(--primary-color1);
}
.product-details-right .bid-form .form-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-details-right .bid-form .form-inner input[type=text] {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #eeeeee;
  padding: 11px 15px;
  transition: all 0.42s ease;
}
.product-details-right .bid-form .form-inner input[type=text]::-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
}
.product-details-right .bid-form .form-inner input[type=text]::placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
}
.product-details-right .bid-form .form-inner input[type=text]:focus {
  border: 1px solid var(--primary-color1);
}
.product-details-right .bid-form .form-inner button {
  outline: none;
  border: none;
  padding: 10px 35px;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-primary);
}

.small-image-list .nav-item img {
  max-width: 105px;
  width: 100%;
  border-radius: 5px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  transition: all 0.62s ease;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .small-image-list .nav-item img {
    height: 115px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .small-image-list .nav-item img {
    height: 112px;
  }
}
@media (max-width: 767px) {
  .small-image-list .nav-item img {
    height: 100px;
  }
}
.small-image-list .nav-item:hover img {
  transform: scale(1.1);
}

.tab-content img {
  width: 100%;
  border-radius: 0px 0px 5px 5px;
}
.tab-content .auction-gallery-timer {
  background-color: #1f2230;
  border-radius: 5px 4px 0px 0px;
  text-align: center;
  padding: 10px 20px;
}
.tab-content .auction-gallery-timer h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .tab-content .auction-gallery-timer h3 {
    font-size: 24px;
  }
}

.details-tab-btn {
  background: #ffffff;
  box-shadow: 3px 5px 20px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  color: #1f2230;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-primary);
  width: 100%;
  padding: 15px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s ease-out 0s;
}
.details-tab-btn:hover {
  background: var(--primary-color1);
  color: #fff;
}
.details-tab-btn.active {
  background: var(--primary-color1) !important;
  color: #fff;
}

.bid-list {
  padding-left: 0;
}
.bid-list li {
  border-bottom: 1px solid #eeeeee;
  padding: 20px 0px;
}
.bid-list li:last-child {
  border-bottom: unset;
  padding-bottom: 0px;
}
.bid-list .bidder-area {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
}
.bid-list .bidder-area .bidder-img {
  margin-right: 25px;
}
@media (max-width: 767px) {
  .bid-list .bidder-area .bidder-img {
    margin-right: 15px;
  }
}
.bid-list .bidder-area .bidder-content h6 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2230;
  margin-bottom: 3px;
  font-family: var(--font-primary);
}
.bid-list .bidder-area .bidder-content p {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
  font-family: var(--font-secondary);
  margin-bottom: 0;
}
.bid-list .bid-time p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: #696969;
}

.bid-list-area {
  max-height: 350px;
  overflow-y: auto;
  background: #ffffff;
  box-shadow: 3px 5px 20px rgba(0, 0, 0, 0.06);
  border-radius: 0px 0px 5px 5px;
  padding: 0px 20px;
}
.bid-list-area::-webkit-scrollbar {
  width: 5px;
}
.bid-list-area::-webkit-scrollbar-track {
  background: #eeeeee;
}
.bid-list-area::-webkit-scrollbar-thumb {
  background: #888;
  -webkit-transition: 0.35s ease-in;
  transition: 0.35s ease-in;
  border-radius: 5px;
  height: 100px;
}
.bid-list-area::-webkit-scrollbar-thumb:hover {
  background: #1f2230;
}

.describe-content h4 {
  font-size: 24px;
  font-weight: 600;
  font-family: var(--font-primary);
  color: #1f2230;
}
.describe-content p {
  margin-bottom: 20px;
}
.describe-content .describe-list {
  margin: 0;
  padding: 0;
}
.describe-content .describe-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}
.describe-content .describe-list li::before {
  content: "\f269";
  font-family: "bootstrap-icons";
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 20px;
}
.describe-content .describe-list li a {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: #696969;
  line-height: 1.5;
}
.describe-content .describe-list li .bx {
  font-size: 24px;
  margin-right: 12px;
}

.offer-banner {
  padding: 25px;
  border-radius: 5px;
  box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
}
.offer-banner h4 {
  font-size: 24px;
  font-weight: 600;
  color: #1f2230;
  margin-bottom: 15px;
}
.offer-banner img {
  width: 100%;
}

/*================================================
7.  about
=================================================*/
.about-section {
  position: relative;
}
.about-section .section-bg-top {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .about-section .section-bg-top {
    display: none;
    visibility: hidden;
  }
}
.about-section .about-content span {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.about-section .about-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: #1f2230;
  margin-bottom: 15px;
}
.about-section .about-content .about-list {
  margin-top: 25px;
}

.about-list {
  margin: 0;
  padding: 0;
  margin-bottom: 40px;
}
.about-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: #696969;
  line-height: 1.5;
}
.about-list li::before {
  content: "\f269";
  font-family: "bootstrap-icons";
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 20px;
}
.about-list li .bx {
  font-size: 24px;
  margin-right: 12px;
}

.about-img-area {
  position: relative;
}
.about-img-area .total-tag {
  position: absolute;
  right: 30px;
  top: 0;
  background: #ffffff;
  box-shadow: 3px 2px 35px rgba(0, 27, 85, 0.08);
  border-radius: 100px 100px 100px 5px;
  padding: 25px;
  text-align: center;
}
@media (max-width: 1199px) {
  .about-img-area .total-tag {
    right: 0px;
  }
}
@media (max-width: 767px) {
  .about-img-area .total-tag {
    display: none;
    visibility: hidden;
  }
}
.about-img-area .total-tag svg {
  margin-bottom: 12px;
  max-width: 100%;
}
.about-img-area .total-tag h6 {
  font-size: 16px;
  font-weight: 500;
  color: #1f2230;
}
.about-img-area .total-tag h5 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2230;
}
.about-img-area .about-vector {
  position: absolute;
  left: -50px;
  top: 0;
  z-index: -1;
  animation: rotation 14s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.about-img-area .about-linear {
  position: absolute;
  bottom: -70px;
  left: 0;
}
@media (max-width: 991px) {
  .about-img-area .about-linear {
    display: none;
    visibility: hidden;
  }
}

.choose-us-section .angle-vector {
  position: absolute;
  left: -20px;
  top: 130px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .choose-us-section .angle-vector {
    top: 150px;
    left: -10px;
  }
}
@media (max-width: 991px) {
  .choose-us-section .angle-vector {
    display: none;
    visibility: hidden;
  }
}

/*================================================
 Contact page
=================================================*/
.map-area iframe {
  width: 100%;
  height: 585px;
}

.contact-section {
  position: relative;
  z-index: 1;
}
.contact-section .section-bg-top {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .contact-section .section-bg-top {
    display: none;
    visibility: hidden;
  }
}
.contact-section .section-bg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .contact-section .section-bg-bottom {
    display: none;
    visibility: hidden;
  }
}

.contact-signle {
  box-shadow: 3px 5px 20px rgba(0, 0, 0, 0.06);
  border: unset;
  text-align: center;
  padding: 25px;
  transition: all 0.4s ease-in;
}
.contact-signle:hover .icon {
  background: var(--primary-color1);
}
.contact-signle:hover .icon i {
  color: #fff;
}
.contact-signle:hover .icon svg path {
  fill: #fff;
}
.contact-signle .icon {
  background: rgba(50, 195, 108, 0.2);
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  text-align: center;
  line-height: 70px;
  transition: all 0.4s ease-in;
  margin-right: 15px;
}
.contact-signle .icon i {
  color: var(--primary-color1);
  transition: all 0.35s ease-in;
  font-size: 36px;
}
.contact-signle .icon svg path {
  fill: var(--primary-color1);
  transition: all 0.35s ease-in;
}
.contact-signle .text {
  text-align: start;
}
.contact-signle .text h4 {
  font-size: 25px;
  font-weight: 600;
  color: #1f2230;
  margin-bottom: 10px;
}
.contact-signle .text p {
  font-size: 1rem;
  font-weight: 500;
  color: #696969;
  font-family: var(--font-secondary);
  margin-bottom: 0px;
  line-height: 28px;
}
.contact-signle .text a {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: #696969;
  line-height: 28px;
}

/*================================================
 Dashboard-page
=================================================*/
.text-red {
  color: var(--primary-color2) !important;
}

.text-green {
  color: var(--primary-color1) !important;
}

.dashboard-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.dashboard-section .section-bg-top {
  position: absolute;
  top: 0;
  right: -100px;
  z-index: -2;
}
@media (max-width: 767px) {
  .dashboard-section .section-bg-top {
    display: none;
    visibility: hidden;
  }
}
.dashboard-section .section-bg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
}
@media (max-width: 767px) {
  .dashboard-section .section-bg-bottom {
    display: none;
    visibility: hidden;
  }
}
.dashboard-section .nav-pills .nav-link {
  background-color: #fff;
}
.dashboard-section .nav-pills .nav-link:hover {
  background-color: var(--primary-color1);
}

.table-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.table-title-area h3 {
  font-size: 30px;
  font-weight: 600;
  color: #1f2230;
  line-height: 1.7;
}
.table-title-area .nice-select {
  max-width: 270px;
}

.eg-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}
.eg-table thead {
  background: #f1f1f1;
}
.eg-table thead tr {
  border-width: 1px;
}
.eg-table thead tr th {
  font-size: 1rem;
  font-weight: 500;
  color: #1f2230;
  opacity: 1;
  padding: 15px;
  vertical-align: top;
  text-align: center;
  border-width: 1px;
  border-color: rgba(210, 210, 210, 0.4);
  font-family: var(--font-primary);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .eg-table thead tr th {
    display: none;
  }
}
.eg-table tbody tr td {
  font-weight: 400;
  color: #696969;
  text-align: center;
  border: 2px solid rgba(238, 238, 238, 0.75);
  vertical-align: middle;
  font-family: var(--font-secondary);
}
@media (max-width: 767px) {
  .eg-table tbody tr td {
    display: block;
    width: 100%;
    text-align: right;
    padding-left: 50%;
    position: relative;
  }
}
.eg-table tbody tr td img {
  max-width: 40px;
  width: 100%;
}
@media (max-width: 767px) {
  .eg-table tbody tr {
    display: block;
    width: 100%;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .eg-table tbody {
    display: block;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .eg-table {
    display: block;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .eg-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    text-align: left;
    padding-left: 15px;
    font-weight: 600;
    color: #1f2230;
  }
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 30px;
  box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
  background-color: #fff;
}
@media (max-width: 767px) {
  .table-wrapper {
    box-shadow: unset;
  }
}
.table-wrapper .order-table tr td {
  padding: 10px 15px;
}

.table-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.table-pagination P {
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 500;
  color: #1f2230;
  margin-right: 10px;
}
@media (max-width: 576px) {
  .table-pagination P {
    margin-bottom: 1rem;
  }
}

.nav-btn-style {
  background: #fff;
  box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
  width: 100%;
  min-width: 0px;
  color: #696969;
  font-size: 20px;
  font-weight: 500;
  color: #696969;
  font-family: var(--font-primary);
  padding: 10px 20px;
  text-align: left;
  transition: all 0.42s ease;
}
.nav-btn-style svg {
  margin-right: 10px;
  fill: #696969;
  transition: all 0.42s ease;
}
.nav-btn-style:hover {
  background-color: var(--primary-color1);
  color: #fff;
}
.nav-btn-style:hover svg {
  fill: #fff;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: var(--primary-color1);
}
.nav-pills .nav-link.active svg,
.nav-pills .show > .nav-link svg {
  fill: #fff;
}

.dashboard-profile {
  box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  background-color: #fff;
}
.dashboard-profile .form-wrapper {
  box-shadow: unset;
}
.dashboard-profile .owner {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  padding: 40px 40px 0px 40px;
}
.dashboard-profile .owner .image {
  margin-right: 25px;
}
.dashboard-profile .owner .image img {
  max-width: 100px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.dashboard-profile .owner .content h3 {
  font-size: 30px;
  font-weight: 600;
  color: #1f2230;
  margin-bottom: 5px;
}
.dashboard-profile .owner .content p {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
  font-family: var(--font-secondary);
  margin-bottom: 0px;
}

.dashboard-card {
  box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
}
.dashboard-card:hover .body .icon svg {
  fill: var(--primary-color1);
}
.dashboard-card .header {
  background: #1f2230;
  border-radius: 4px 4px 0px 0px;
  padding: 10px 20px;
}
.dashboard-card .header h5 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
}
.dashboard-card .body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 25px;
}
.dashboard-card .body .counter-item h2 {
  font-size: 40px;
  font-weight: 600;
  color: #1f2230;
}
.dashboard-card .body .icon svg {
  fill: #696969;
  transition: all 0.42s ease;
}

.button-group {
  margin-top: 50px;
}
.button-group .profile-btn {
  border-radius: 30px;
  border: none;
  outline: none;
  padding: 13px 20px;
  background-color: var(--primary-color1);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-primary);
  transition: all 0.42s ease-in-out;
  border: 1px solid var(--primary-color1);
  margin-right: 20px;
  text-align: center;
}
.button-group .profile-btn:hover {
  background-color: #fff;
  color: var(--primary-color1);
}
.button-group .cancel-btn {
  border-radius: 30px;
  border: none;
  outline: none;
  padding: 13px 30px;
  color: #1f2230;
  background-color: #fff;
  border: 1px solid #eeeeee;
  transition: all 0.42s ease-in-out;
  text-align: center;
}
.button-group .cancel-btn:hover {
  background-color: var(--primary-color1);
  color: #fff;
  border: 1px solid var(--primary-color1);
}

/*================================================
  Blog details page
=================================================*/
.blog-details-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.blog-details-section .section-bg-top {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
}
@media (max-width: 767px) {
  .blog-details-section .section-bg-top {
    display: none;
    visibility: hidden;
  }
}
.blog-details-section .section-bg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
}
@media (max-width: 767px) {
  .blog-details-section .section-bg-bottom {
    display: none;
    visibility: hidden;
  }
}

.post-formate-quote blockquote {
  background-color: #f1f1f1;
  padding: 30px 25px;
  border-radius: 5px;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 400;
  color: #696969;
}
.post-formate-quote blockquote .quote-icon {
  margin-bottom: 15px;
  display: block;
}

.post-content blockquote {
  position: relative;
}
.post-content blockquote p {
  margin-top: 25px;
}

.post-content blockquote::before {
  position: absolute;
  content: url("../images/icons/quote-fill-green.svg");
  top: 20px;
  left: 30px;
  text-align: center;
}

.blog-details-single .image {
  margin-bottom: 35px;
}
.blog-details-single .image img {
  max-width: 100%;
  height: auto;
}
.blog-details-single .post-content p {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
  font-family: var(--font-secondary);
  line-height: 26px;
}
.blog-details-single .post-meta-list {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .blog-details-single .post-meta-list {
    justify-content: space-between;
  }
}
.blog-details-single .post-meta-list li {
  margin-right: 20px;
}
.blog-details-single .post-meta-list .author-thumb img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin-right: 5px;
}
.blog-details-single .post-meta-list a {
  font-size: 16px;
  font-weight: 400;
  color: #4e4a4a;
  font-family: var(--font-secondary);
  font-weight: 500;
}
.blog-details-single .post-meta-list a i {
  margin-right: 8px;
  color: #000;
}
.blog-details-single .blog-title {
  font-family: var(--font-primary);
  font-size: 35px;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
}
.blog-details-single blockquote {
  background-color: #f1f1f1;
  padding: 30px 25px !important;
  border-radius: 5px;
  margin-top: 25px;
  margin-bottom: 30px;
  border: none;
}
.blog-details-single blockquote .quote-icon {
  margin-bottom: 15px;
}
.blog-details-single blockquote p {
  font-size: 16px;
  font-weight: 400;
  color: #696969;
}
.blog-details-single blockquote cite {
  font-size: 22px;
  font-weight: 600;
  color: #1f2230;
}
.blog-details-single h4 {
  font-size: 24px;
  font-weight: 600;
  color: #1f2230;
  margin-bottom: 10px;
}
.blog-details-single .blog-video-area {
  margin-top: 25px;
  margin-bottom: 25px;
}
.blog-details-single .blog-video-area img {
  border-radius: 5px;
}
.blog-details-single .blog-categories .categories {
  display: flex;
  align-items: center;
}
.blog-details-single .blog-categories .categories h6 {
  font-size: 16px;
  font-weight: 400;
  color: #696969;
  margin-bottom: 0;
  margin-right: 15px;
  white-space: nowrap;
  margin-bottom: 0;
}
.blog-details-single .blog-categories .categories a {
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: #696969;
  transition: all 0.42s ease;
  white-space: nowrap;
  margin-right: 8px;
}
.blog-details-single .blog-categories .categories a:hover {
  color: var(--primary-color1);
}
.blog-details-single .blog-sharea-area {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 20px;
  margin-top: 20px;
  margin-bottom: 50px;
}
.blog-details-single .blog-sharea-area h6 {
  font-size: 16px;
  font-weight: 400;
  color: #696969;
  margin-bottom: 0px;
  margin-right: 10px;
  white-space: nowrap;
}
.blog-details-single .blog-sharea-area .tag-list {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 600;
}
.blog-details-single .blog-sharea-area .tag-list a {
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: #fff;
  transition: all 0.42s ease;
  white-space: nowrap;
  margin: 5px;
  padding: 4px 8px;
  background-color: #1c1616;
}
.blog-details-single .blog-sharea-area .tag-list a:hover {
  background-color: var(--primary-color1);
}
.blog-details-single .blog-sharea-area .share-social {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-details-single .blog-sharea-area .share-social .bx {
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  text-align: center;
  transition: all 0.42s ease-out 0s;
}
.blog-details-single .blog-sharea-area .share-social .bx:hover {
  background-color: var(--primary-color1);
  color: #fff;
}
.blog-details-single .blog-sharea-area .blog-share {
  overflow: hidden;
  height: 30px;
  cursor: pointer;
  text-align: right;
}
.blog-details-single .blog-sharea-area .blog-share .front {
  text-align: right;
  transition: all 0.62s ease-in-out;
}
.blog-details-single .blog-sharea-area .blog-share .back {
  text-align: end;
  transition: all 0.62s ease-in-out;
}
.blog-details-single .blog-sharea-area .blog-share .back .share-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-details-single .blog-sharea-area .blog-share .back .share-list li a i.bx {
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  text-align: center;
  transition: all 0.42s ease-out 0s;
}
.blog-details-single .blog-sharea-area .blog-share .back .share-list li a i.bx:hover {
  background-color: var(--primary-color1);
  color: #fff;
}
.blog-details-single .blog-sharea-area .blog-share:hover .front {
  transform: translateY(-24px);
}
.blog-details-single .blog-sharea-area .blog-share:hover .back {
  transform: translateY(-24px);
}
.blog-details-single .blog-author {
  background: #f1f1f1;
  border-radius: 5px;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-bottom: 50px;
}
.blog-details-single .blog-author .author-image img {
  min-width: 140px;
}
.blog-details-single .blog-author .author-detials h5 {
  font-size: 22px;
  font-weight: 600;
  color: #1f2230;
  margin-bottom: 10px;
}

.video-play {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-play .video-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  line-height: 52px;
  display: inline-block;
  text-align: center;
  position: relative;
  border: 1px solid #fff;
  font-size: 36px;
  color: var(--primary-color1);
  background: #fff;
}
.video-play .video-icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  animation: ripple-1 2s infinite ease-in-out;
  z-index: -1;
}
.video-play .video-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  z-index: -1;
  animation: ripple-2 2s infinite ease-in-out;
  animation-delay: 0.5s;
}

@keyframes ripple-1 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
@keyframes ripple-2 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}
.blog-widget-title {
  margin-bottom: 30px;
}
.blog-widget-title h4 {
  font-size: 25px;
  font-weight: 600;
  font-family: var(--font-primary);
}
.blog-widget-title span {
  width: 50px;
  height: 3px;
  background: var(--primary-color1);
  border-radius: 5px;
  display: block;
  position: relative;
  margin-top: 12px;
}
.blog-widget-title span::before {
  content: "";
  width: 5px;
  height: 3px;
  background: var(--primary-color1);
  border-radius: 5px;
  position: absolute;
  left: 55px;
  top: 0;
}
.blog-widget-title span::after {
  content: "";
  width: 5px;
  height: 3px;
  background: var(--primary-color1);
  border-radius: 5px;
  position: absolute;
  left: 65px;
  top: 0;
}
.blog-widget-title.style2 h4 {
  margin-bottom: 0;
}

.sidebar-widget-title {
  margin-bottom: 25px;
}
.sidebar-widget-title h4 {
  font-size: 25px;
  font-weight: 600;
  font-family: var(--font-primary);
}
.sidebar-widget-title span {
  width: 50px;
  height: 3px;
  background: var(--primary-color1);
  border-radius: 5px;
  display: block;
  position: relative;
  margin-top: 5px;
}
.sidebar-widget-title span::before {
  content: "";
  width: 5px;
  height: 3px;
  background: var(--primary-color1);
  border-radius: 5px;
  position: absolute;
  left: 55px;
  top: 0;
}
.sidebar-widget-title span::after {
  content: "";
  width: 5px;
  height: 3px;
  background: var(--primary-color1);
  border-radius: 5px;
  position: absolute;
  left: 65px;
  top: 0;
}

.comment-list {
  padding: 0;
  margin: 50px 0;
}
.comment-list > li {
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 30px;
}
.comment-list > li:last-child {
  border-bottom: none;
  margin-bottom: 0px;
}

.blog-sidebar .sidebar-banner {
  background-image: linear-gradient(90deg, rgba(31, 34, 48, 0.75), rgba(31, 34, 48, 0.75)), url("../images/blog/banner-card-img.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  text-align: center;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 25px;
  min-height: 415px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
.blog-sidebar .sidebar-banner span {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  display: block;
  margin-bottom: 5px;
}
.blog-sidebar .sidebar-banner h3 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-primary);
  line-height: 1.4;
  margin-bottom: 30px;
}
.blog-sidebar .sidebar-banner .card--btn {
  padding: 9px 35px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.single-comment {
  margin-top: 40px;
}
.single-comment .author {
  display: flex;
  justify-content: start;
  align-items: center;
}
.single-comment .author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}
.single-comment .author h5 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2230;
  margin-bottom: 0px;
  display: inline-block;
  vertical-align: middle;
}
.single-comment .author span.commnt-date {
  font-size: 14px;
  font-weight: 400;
  margin-left: 10px;
  color: #696969;
  font-family: var(--font-primary);
}
.single-comment .comment-content p {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
  font-family: var(--font-secondary);
}
.single-comment .comment-header {
  margin-bottom: 15px;
}
.single-comment .comment-header .reply-btn {
  min-width: 25px;
  border: 1px solid #eee;
  border-radius: 50%;
  text-align: center;
  transition: all 0.42s ease;
  height: 30px;
  width: 30px;
  line-height: 26px;
}
.single-comment .comment-header .reply-btn .bi {
  color: #696969;
  transition: all 0.42s ease;
}
.single-comment .comment-header .reply-btn:hover {
  border: 1px solid var(--primary-color1);
}
.single-comment .comment-header .reply-btn:hover .bi {
  color: var(--primary-color1);
  transition: all 0.42s ease;
}
.single-comment .comment-body {
  margin-bottom: 20px;
}

.blog-comment-form {
  margin-top: 40px;
}
.blog-comment-form .comment-reply-title {
  position: relative;
  font-size: 25px;
  font-weight: 600;
  font-family: var(--font-primary);
  margin-bottom: 40px;
}
.blog-comment-form .comment-reply-title:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: var(--primary-color1);
  border-radius: 5px;
}
.blog-comment-form .comment-reply-title:after {
  position: absolute;
  content: "";
  left: 55px;
  bottom: -10px;
  width: 5px;
  height: 3px;
  background: var(--primary-color1);
  border-radius: 5px;
}

form.comment-form input,
form.comment-form textarea {
  width: 100%;
  background: #f1f1f1;
  border: none;
  outline: none;
  padding: 12px 15px;
  border-radius: 5px;
  resize: none;
  transition: all 0.42s ease;
  margin-bottom: 30px;
}
form.comment-form input::-moz-placeholder, form.comment-form textarea::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-secondary);
}
form.comment-form input::placeholder,
form.comment-form textarea::placeholder {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-secondary);
}
form.comment-form input:focus,
form.comment-form textarea:focus {
  background: rgba(50, 195, 108, 0.2);
}
form.comment-form .form-submit {
  margin: 0;
}
form.comment-form input[type=submit] {
  width: auto;
  padding: 14px 45px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-family: var(--font-primary);
  background-color: var(--primary-color1);
}
form.comment-form input[type=submit]:hover {
  color: #fff;
  background-color: #000;
}
form.comment-form .comment-form-cookies-consent {
  display: flex;
  justify-content: start;
  align-items: baseline;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  form.comment-form .comment-form-cookies-consent {
    margin-bottom: 30px;
  }
}
form.comment-form .comment-form-cookies-consent input[type=checkbox] {
  width: auto !important;
  margin-right: 10px;
}

.logged-in-as a:nth-child(2) {
  color: var(--primary-color1);
}

.comment-area .blog-comments .comment-list .comments-title {
  font-size: 25px;
  font-weight: 600;
  font-family: var(--font-primary);
  margin-bottom: 40px;
  position: relative;
}
.comment-area .blog-comments .comment-list .comments-title:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: var(--primary-color1);
  border-radius: 5px;
}
.comment-area .blog-comments .comment-list .comments-title:after {
  position: absolute;
  content: "";
  left: 55px;
  bottom: -10px;
  width: 5px;
  height: 3px;
  background: var(--primary-color1);
  border-radius: 5px;
}

h3#reply-title {
  font-size: 1.875rem;
  position: relative;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color1);
  margin-bottom: 25px;
}
h3#reply-title small {
  position: absolute;
  right: 0;
  top: 50%;
  color: var(--primary-color1);
  font-size: 1rem;
  font-weight: 400;
  transform: translateY(-50%);
}

.blog-widget-item {
  background: #ffffff;
  box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 30px 25px;
  margin-bottom: 40px;
}

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

.blog-sidebar .search-area .form-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.blog-sidebar .search-area .form-inner input {
  border: 1px solid #eeeeee;
  outline: none;
  padding: 12px 15px;
  color: #1f2230;
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--font-secondary);
  width: 100%;
}
.blog-sidebar .search-area .form-inner input:focus {
  border-left: 1px solid var(--primary-color1);
}
.blog-sidebar .search-area .form-inner input::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #696969;
}
.blog-sidebar .search-area .form-inner input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #696969;
}
.blog-sidebar .search-area .form-inner .search--btn {
  outline: none;
  border: 1px solid var(--primary-color1);
  background: var(--primary-color1);
  padding: 11px;
}
.blog-sidebar .search-area .form-inner .search--btn .bx {
  color: #fff;
  font-size: 24px;
}

/*================================================
  Error page
=================================================*/
.error-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.error-section .section-bg-top {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .error-section .section-bg-top {
    display: none;
    visibility: hidden;
  }
}
.error-section .section-bg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .error-section .section-bg-bottom {
    display: none;
    visibility: hidden;
  }
}
.error-section .evector1 {
  position: absolute;
  top: 30%;
  right: 30%;
  z-index: -1;
}
.error-section .evector2 {
  position: absolute;
  top: 60%;
  right: 30%;
  z-index: -1;
}
@media (max-width: 767px) {
  .error-section .evector2 {
    display: none;
    visibility: hidden;
  }
}
.error-section .evector3 {
  position: absolute;
  top: 30%;
  left: 30%;
  animation: bounce 2s linear infinite alternate;
  z-index: -1;
}
@media (max-width: 767px) {
  .error-section .evector3 {
    left: 2%;
  }
}
@keyframes bounce {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px);
  }
}
.error-section .evector4 {
  position: absolute;
  top: 60%;
  left: 23%;
  z-index: -1;
}
@media (max-width: 767px) {
  .error-section .evector4 {
    display: none;
    visibility: hidden;
  }
}
.error-section .error-wrapper {
  padding: 0px 30px;
  overflow: hidden;
}
.error-section .error-wrapper .error-bg {
  animation: rotating 2.5s linear infinite;
  margin-bottom: 35px;
}
@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.error-section .error-wrapper .error-content {
  margin-top: 35px;
}
.error-section .error-wrapper .error-content h2 {
  font-size: 40px;
  font-weight: 600;
  color: #1f2230;
  margin-bottom: 10px;
}
.error-section .error-wrapper .error-content p {
  margin-bottom: 45px;
}

#progress {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 40px;
  width: 40px;
  display: none;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
}

#progress-value {
  display: block;
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  background-color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--primary-color1);
}

.clearfix::after {
  clear: both;
  content: "";
  display: block;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-widget ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 0;
  transition: all 0.4s ease-in;
}
.footer-widget ul li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  border-radius: 50%;
  height: 6px;
  width: 6px;
  background: var(--primary-color1);
  opacity: 0;
  transition: all 0.4s ease;
}
.footer-widget ul li:hover::before {
  opacity: 1;
}
.footer-widget ul li:hover a {
  color: var(--primary-color1);
}
.footer-widget ul li:hover a:hover {
  padding-left: 12px;
}
.footer-widget ul li a {
  color: #d2d2d2;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-primary);
  transition: all 0.4s ease;
}

.footer-widget-blog ul {
  margin: 0;
  padding: 0;
}
.footer-widget-blog ul li {
  display: block;
}
.footer-widget-blog ul li a {
  font-size: 14px;
  font-weight: 600;
  color: #d2d2d2;
  font-family: var(--font-primary);
}
.footer-widget-blog ul li a:hover {
  color: var(--primary-color1);
}

.product-banner {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.product-banner .best-selling-banner {
  background: rgba(253, 104, 195, 0.4);
}
.product-banner .best-selling-banner:after {
  position: absolute;
  content: url(../images/vector2.png);
  right: 0;
  bottom: 0;
  z-index: -1;
}
.product-banner .upcoming-banner {
  background-color: rgba(251, 203, 10, 0.4);
}
.product-banner .upcoming-banner:after {
  position: absolute;
  content: url(../images/vector1.png);
  right: 0;
  bottom: 0;
  z-index: -1;
}

.product-banner-item {
  position: relative;
  width: 100%;
  max-width: 670px;
  border-radius: 10px;
  padding: 10px 20px 10px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  min-height: 385px;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767px) {
  .product-banner-item {
    flex-wrap: wrap-reverse;
  }
}
@media (max-width: 1199px) {
  .product-banner-item {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .product-banner-item .product-banner-image {
    margin-bottom: 40px;
  }
}
.product-banner-item .product-banner-vector {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.product-banner-item .product-banner-content {
  width: 100%;
  max-width: 340px;
}
.product-banner-item .product-banner-content h3 {
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 44px;
  display: flex;
  align-items: center;
  color: #1F2230;
  margin-bottom: 15px;
}
.product-banner-item .product-banner-content > span {
  display: inline-block;
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: #696969;
  position: relative;
  margin-bottom: 12px;
}
.product-banner-item .product-banner-content > span::after {
  content: "";
  position: absolute;
  width: 74px;
  height: 1px;
  background: var(--primary-color1);
  opacity: 0.8;
  right: -80px;
  top: 15px;
}
.product-banner-item .product-banner-content .bid-btn {
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  background: #1F2230;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  padding: 8px 30px;
  cursor: pointer;
}
.product-banner-item .product-banner-content .bid-btn:hover {
  color: #fff;
  background-color: var(--primary-color1);
}
.product-banner-item .product-banner-content .price {
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #1F2230;
  margin-bottom: 35px;
}
.product-banner-item .product-banner-content .price > span {
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  color: #1F2230;
}
.product-banner-item .product-banner-content .countdown-timer ul {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 40px;
}
.product-banner-item .product-banner-content .countdown-timer ul li {
  padding: 3px 12px;
  border-radius: 4px;
  background-color: #fff;
  text-align: center;
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  color: #1F2230;
}
.product-banner-item .product-banner-content .countdown-timer ul li span {
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  display: block;
  line-height: 19px;
  color: #696969;
  width: 100%;
}

.header-sticky {
  display: none;
}

.header-area.style-1.sticky .header-sticky {
  background: var(--primary-color1);
  min-height: 100%;
  padding: 20px 40px;
  display: flex;
  align-items: center;
}
.header-area.style-1.sticky .header-sticky img {
  max-width: unset;
}

.header-area.style-1.sticky .header-logo {
  display: none;
}

header.style-2.sticky .header-sticky {
  display: block;
}

header.style-2.sticky .header-logo {
  display: none;
}

header.style-3.sticky .header-sticky {
  display: block;
}

header.style-3.sticky .header-logo {
  display: none;
}

.dokan-dash-sidebar li.dokan-common-links.dokan-clearfix {
  display: flex;
  justify-content: space-between;
  text-align: center;
  position: absolute !important;
  bottom: 0px;
  left: 0;
  right: 0;
}

.dokan-dash-sidebar li.dokan-common-links.dokan-clearfix a {
  padding: 15px !important;
  margin: 0;
  float: none !important;
}

.dokan-dash-sidebar li.dokan-common-links.dokan-clearfix a i {
  margin: 0 !important;
  padding: 0 !important;
}

.dokan-dash-sidebar {
  position: relative;
}

button.dokan-btn,
a.dokan-btn {
  background: var(--primary-color1) !important;
  color: #fff !important;
  font-weight: 700 !important;
  transition: all 0.3;
  border: none !important;
}

button.dokan-btn:hover,
a.dokan-btn:hover {
  background: #1f2231 !important;
}/*# sourceMappingURL=style.css.map */