:root {
  --dark-brown: #1c1714;
  --choco-brown: #2a231f;
  --primary-color: #b87c60;
  --light-choco-pink: #f2e6e0;
  --extra-light-choco-pink: #f8f2ef;

  --dark-grey: #4d4d4d;
  --light-grey: #e3e3e3;

  --white-op5: rgba(255, 255, 255, 0.5);
  --primary-color-op2: rgba(184, 124, 96, 0.2);

  --white: #fff;
  --black: #000;

  /* GRADIENT COLOR */
  --primary-gradient: linear-gradient(180deg, #e0a78a 0%, #b87c60 100%);
}

/* 01 : Website Global CSS BOF
========================================================== */

body,
html {
  height: 100%;
  scrollbar-gutter: stable;
}

body {
  background: var(--extra-light-choco-pink);
  font-family: "Montserrat";
  color: var(--white);
}

body.no-scroll {
  overflow: hidden;
  scrollbar-width: 0;
}

*,
html {
  margin: 0;
  padding: 0;
}

a {
  color: var(--white);
  display: inline-block;
}

hr {
  border-color: var(--light-grey);
  opacity: 1;
}

/* Common color hyperlink */
a:hover,
a:focus,
a:active {
  color: var(--primary-color);
  text-decoration: none;
}

a.blue_text:hover {
  color: var(--primary-color);
}

/* Common hover color hyperlink */
a,
*:hover,
*:focus,
*:active :focus {
  text-decoration: none;
  outline: none !important;
  outline-offset: 0 !important;
}

a img,
img {
  border: none;
  outline: none !important;
  outline-offset: 0 !important;
}

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

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  line-height: normal;
}

/* Transition Effect CSS BOF */
a,
i,
input {
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
}

/* 02 : Global Classes CSS BOF
  ==================================================== */

::-webkit-scrollbar {
  width: 5px;
  background-color: var(--color-D9D9D9);
}

::-webkit-scrollbar-thumb {
  width: 5px;
  background-color: var(--primary-color);
  border-radius: 0px;
}

.commonscrollbar::-webkit-scrollbar {
  width: 5px;
  background-color: var(--color-E6E6E6);
}

.commonscrollbar::-webkit-scrollbar-thumb {
  width: 5px;
  background-color: var(--primary-color);
  border-radius: 0px;
}

.no-scrollbar::-webkit-scrollbar {
  width: 0;
  background-color: transparent;
}

/* Background &amp; Color Style CSS BOF
  =================================================== */

/* Font Color Style CSS BOF */
.white_text {
  color: var(--white);
}

.pink_text {
  color: var(--primary-color);
}

.light_gray_text {
  color: var(--light-grey);
}

.black_text {
  color: var(--black);
}

.gray_text {
  color: var(--dark-grey);
}

.dark_brown_text {
  color: var(--dark-brown);
}

/* Background Color Style CSS BOF */
.bg_chocobrown {
  background-color: var(--choco-brown);
}

.bg_white {
  background-color: var(--white);
}

/* Object fit common classes */
.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

/* Opacity common classes */
.op-1 {
  opacity: 0.1;
}

.op-2 {
  opacity: 0.2;
}

.op-3 {
  opacity: 0.3;
}

.op-4 {
  opacity: 0.4;
}

.op-5 {
  opacity: 0.5;
}

.op-6 {
  opacity: 0.6;
}

.op-7 {
  opacity: 0.7;
}

.op-8 {
  opacity: 0.8;
}

.op-9 {
  opacity: 0.9;
}

/* cursor variation csss */
.cursor-pointer {
  cursor: pointer;
}

/* list styling */
.list-style-disc {
  list-style: disc;
}

/* 03 : Heading Style CSS BOF
  =================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat";
  line-height: normal;
  font-style: normal;
  color: #000;
  margin-bottom: 0;
}

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

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

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

.h3 {
  font-size: 32px;
  line-height: normal;
}

.h4 {
  font-size: 24px;
  line-height: 35px;
}

.h5 {
  font-size: 20px;
  line-height: 35px;
}

.h6 {
  font-size: 18px;
  line-height: normal;
}

.font-16 {
  font-size: 16px;
  line-height: normal;
}

/* Font Weight Variation CSS BOF */
.font_rg {
  font-weight: normal;
}

.font_light {
  font-weight: 300;
}

.font_bl {
  font-weight: 800;
}

.font_blk {
  font-weight: 900;
}

.font_smb {
  font-weight: 600;
}

.font_md {
  font-weight: 500;
}

/* set line clamp for content */
.line-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp1 {
  -webkit-line-clamp: 1;
}

.line-clamp2 {
  -webkit-line-clamp: 2;
}

.line-clamp3 {
  -webkit-line-clamp: 3;
}

.line-clamp4 {
  -webkit-line-clamp: 4;
}

.normal-line-height {
  line-height: normal !important;
}

/* Z-INDEX variation */
.z-9 {
  z-index: 9;
}

.z-99 {
  z-index: 99;
}

.word-break {
  word-break: break-all;
}

/* 04 : Paragraph Style CSS BOF
  =================================================== */
p,
.p {
  line-height: auto;
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  margin-bottom: 0;
  font-weight: normal;
}

/* 05 : Image Style CSS BOF
  =================================================== */
img {
  margin-bottom: 0;
}

/*** Buttton Varilation CSS BOF ***/
.bttn {
  background: var(--primary-color);
  padding: 17px 22px;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  border-style: none;
  transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  border-radius: 0;
  text-transform: uppercase;
  box-shadow: none;
  line-height: normal;
  color: var(--white);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.bttn:hover,
.bttn:focus,
.bttn:active,
.bttn:focus-visible {
  box-shadow: none;
  outline: none;
  background: var(--dark-brown);
  color: var(--white);
}

.bttn-outline {
  background: transparent;
  color: var(--white);
  padding: 17px 48px;
  border: 1px solid var(--white);
}

.bttn-outline:hover,
.bttn-outline:focus,
.bttn-outline:active,
.bttn-outline:focus-visible {
  background: var(--white);
  color: var(--black);
}

.bttn-dark-outline {
  background: transparent;
  color: var(--dark-brown);
  padding: 17px 48px;
  border: 1px solid var(--dark-brown);
}

.bttn-dark-outline:hover,
.bttn-dark-outline:focus,
.bttn-dark-outline:active,
.bttn-dark-outline:focus-visible {
  background: var(--dark-brown);
  color: var(--white);
}

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

/* 11 : Form &amp; Input Style BOF
  ==================================================== */

.form-control,
.form-select {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  border-radius: 0;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  font-size: 15px;
  color: var(--choco-brown);
  font-family: "Montserrat";
  font-weight: normal;
  padding: 17.5px 15px;
  line-height: normal;
}

.primary-form-control {
  background-color: var(--light-choco-pink);
  border-color: var(--light-choco-pink);
  font-size: 20px;
  line-height: 24px;
  padding: 25px 32px;
}

.form-select {
  background-image: url("./../images/caret-down-solid.svg");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: right 22px center;
  cursor: pointer;
  color: var(--choco-brown);
  padding: 11px 15px;
}

.form-select option {
  color: var(--choco-brown) !important;
}

.form-label {
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: 500;
  color: var(--choco-brown);
  margin-bottom: 12px;
}

textarea.form-control {
  resize: none;
  overflow: auto;
  padding: 25px 32px;
  height: 150px;
}

.form-group .required-field {
  color: rgba(255, 63, 63, 1);
}

/** Placeholder CSS BOF **/
.form-control::placeholder {
  color: var(--dark-grey);
  font-weight: 400;
  font-size: 16px;
}

.form-control::-moz-placeholder {
  color: var(--dark-grey);
  font-weight: 400;
  font-size: 16px;
}

.form-control:-ms-input-placeholder {
  color: var(--dark-grey);
  font-weight: 400;
  font-size: 16px;
}

.form-control::-webkit-input-placeholder {
  color: var(--dark-grey);
  font-weight: 400;
  font-size: 16px;
}

.form-control::-o-input-placeholder {
  color: var(--dark-grey);
  font-weight: 400;
  font-size: 16px;
}

.primary-form-control::placeholder {
  font-size: 20px;
  line-height: 24px;
  text-transform: capitalize;
}

.primary-form-control::-moz-placeholder {
  font-size: 20px;
  line-height: 24px;
  text-transform: capitalize;
}

.primary-form-control:-ms-input-placeholder {
  font-size: 20px;
  line-height: 24px;
  text-transform: capitalize;
}

.primary-form-control::-webkit-input-placeholder {
  font-size: 20px;
  line-height: 24px;
  text-transform: capitalize;
}

.primary-form-control::-o-input-placeholder {
  font-size: 20px;
  line-height: 24px;
  text-transform: capitalize;
}

/* Focus State CSS BOF   */
.form-control:focus,
.form-select:focus {
  border: 1px dashed var(--primary-color);
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  background-color: transparent;
  color: var(--choco-brown);
  outline: 0;
}

.primary-form-control:focus {
  background-color: var(--light-choco-pink);
  border-color: var(--primary-color);
}

/* SOME GLOBAL CSS */
.page-wrapper {
  margin: 0px auto;
  overflow-x: hidden;
}

.common-padding-t {
  padding-top: 120px;
}

.common-padding-b {
  padding-bottom: 120px;
}

.common-border-radius {
  border-radius: 20px;
}

.flex-0 {
  flex: 0 0 auto;
}

.without-container {
  padding: 0 90px;
}

/* COMMON ACCORDION */
.accordion-button:focus {
  box-shadow: unset;
  border-color: transparent;
}

.accordion-button {
  background-color: transparent;
  color: var(--choco-brown);
  font-size: 32px;
  font-weight: 400;
  border-radius: 0 !important;
}

.accordion-button:not(.collapsed) {
  box-shadow: unset;
  border-bottom: 0;
  background-color: transparent;
  color: var(--choco-brown);
}

.accordion-item {
  background-color: transparent;
  border: none;
  margin-bottom: 40px;
  border-radius: 0;
  padding-bottom: 30px;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-radius: 0;
}

.accordion-item {
  border-bottom: 1px solid var(--light-grey);
}
.accordion-item:not(:first-of-type) {
  border-bottom: 1px solid var(--light-grey);
  border-top: 0;
  padding-bottom: 30px;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../images/adore-minus-sign.png");
}

.accordion-button::after {
  background-image: url("../images/adore-plus-sign.png");
}

.accordion-button {
  padding: 0;
}

.accordion-item:last-child {
  margin-bottom: 0;
  border: none;
  padding-bottom: 0;
}

.accordion-body {
  padding: 16px 0 0 0;
  text-align: start;
  border-bottom: 0;
}

/* COMMON TITLE CSS */
.title-main {
  padding-bottom: 40px;
}

/* ======================================================
                  COMMON BACKGROUND SOC
====================================================== */
.common-light-pink-bg {
  background-color: var(--light-choco-pink);
}
.common-extralight-pink-bg {
  background-color: var(--extra-light-choco-pink);
}
.common-gradient-bg {
  background-image: var(--primary-gradient);
}

/* COMMON INNER BANNER WRAPPER */
.inner-banner-wrapper {
  min-height: 100vh;
  padding: 120px 0 155px;
  margin: 0 auto;
}

/* ===========================================================
==============================================================
                    HEADER SECTION SOC
==============================================================
=========================================================== */
.header-main {
  position: absolute;
  width: 100%;
  right: 0;
  top: 0;
  left: 0px;
  padding: 24px 0;
  transition: all 400ms ease;
  z-index: 111;
}

.header-main.active {
  position: fixed;
  background-color: rgb(0, 0, 0, 0.5);
}
.header-main .navbar {
  padding: 0;
}

/* TOGGLER */
.header-main .navbar-toggler,
.header-main .navbar-toggler.active {
  border: none;
  outline: none;
  box-shadow: none;
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
}

.header-main .navbar-toggler .icon-bar {
  margin: 0;
  background-color: var(--white);
  display: block;
  height: 2px;
  position: relative;
  width: 24px;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  transition: all 200ms ease;
}

.header-main .navbar-toggler.collapsed .icon-bar:nth-child(1) {
  top: 0;
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
}

/* ================================================ 
===================================================
             PAGE NOT FOUND HEADER
===================================================
================================================= */
.page-not-found .header-main .navbar-toggler,
.page-not-found .header-main .navbar-toggler.active {
  color: var(--dark-brown);
}
.page-not-found .header-main .navbar-toggler .icon-bar {
  background-color: var(--dark-brown);
}

/* MENU BAR STYLE */
.header-main .header-inner-main .header-inner .header-menu .header-menu-inner {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  background: var(--extra-light-choco-pink);
  z-index: 777;
  height: 100vh;
  overflow: auto;
  transition: all 500ms ease;
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
}

@media (min-height: 1024px) {
  .header-main
    .header-inner-main
    .header-inner
    .header-menu.show
    .header-menu-inner {
    overflow: hidden;
  }
}

.header-main
  .header-inner-main
  .header-inner
  .header-menu.show
  .header-menu-inner {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.header-main .navbar-nav {
  height: 100%;
  justify-content: center;
}
.header-main .navbar-nav .nav-item .nav-link {
  color: var(--black);
  font-size: 60px;
  padding: 48px 0 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--light-grey);
}
.header-main .navbar-nav .nav-item.active .nav-link,
.header-main .navbar-nav .nav-item:hover .nav-link {
  color: var(--primary-color);
}
.menu-toggle-close {
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}
.menu-content {
  padding: 80px 104px;
}
.header-menu ul li:hover .dropdown_main .collapse:not(.show) {
  display: block;
}

/* ===========================================================
==============================================================
                    BANNER SECTION SOC
==============================================================
=========================================================== */
.banner-sec .banner-wrapper {
  min-height: 100vh;
  padding: 120px 0;
  max-width: 855px;
  margin: auto;
}
.banner-sec .banner-bg {
  z-index: -1;
}

/* ===========================================================
==============================================================
                    ABOUTUS SECTION SOC
==============================================================
=========================================================== */

.aboutus-sec .aboutus-top {
  max-width: 677px;
  position: absolute;
  left: 0;
  top: 0;
}
.aboutus-sec .aboutus-bottom {
  max-width: 579px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.aboutus-sec .aboutus-center {
  min-width: 595.99px;
  margin: auto;
  /* flex: 0 0 auto; */
}
.aboutus-sec .aboutus-center .aboutus-main-title {
  font-size: 450px;
  letter-spacing: 1%;
  color: var(--dark-brown);
  opacity: 10%;
  position: absolute;
  left: 0;
  right: 0;
  top: 199px;
  margin: auto;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================================================
==============================================================
                   CLIENT SECTION SOC
==============================================================
=========================================================== */
.client-wrapper {
  /* padding-left: calc((100vw - (1712px - (1.5rem * 0.5))) / 2); */
  padding-left: 90px;
}
.client-wrapper .client-content {
  padding-right: 62px;
  /* width: calc(100% - 800px); */
  width: calc(100% - 45.3%);
}
.client-wrapper .client-image {
  /* width:800px ; */
  width: 45.3%;
}
.client-quote {
  border-left: 3px solid var(--white);
}

/* ===========================================================
==============================================================
                  COLLECTION SECTION SOC
==============================================================
=========================================================== */
.collection-sec .main-title {
  margin-bottom: -120px;
}
.collection-col:nth-child(3n-1) {
  margin-top: 168px;
}
.collection-col {
  margin-bottom: -120px;
}

/* ===========================================================
==============================================================
                  WHY CHOOSE US SECTION SOC
==============================================================
=========================================================== */
.choose-us-sec .choose-us-wrapper .choose-us-image {
  /* width: 573px; */
  width: 30%;
}
.choose-us-sec .choose-us-wrapper .choose-us-content {
  /* width: calc(100% - 573px - 573px); */
  width: 40%;
  padding: 120px 48px;
}

/* ===========================================================
==============================================================
                 CTA SECTION SOC
==============================================================
=========================================================== */
.subscribe-form .subscribe-placeholder-icon {
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.subscribe-form .form-control {
  padding-left: 56px;
}

/* ===========================================================
==============================================================
                   CTA SECTION SOC
==============================================================
=========================================================== */
.cta-wrapper {
  /* padding-left: calc((100vw - (1712px - (1.5rem * 0.5))) / 2); */
  padding-left: 90px;
}
.cta-wrapper .cta-content {
  width: calc(100% - 46%);
}
.cta-wrapper .cta-image {
  /* width:800px ; */
  width: 46%;
}
.cta-wrapper .cta-image img {
  object-position: left;
}
.cta-quote {
  border-left: 3px solid var(--white);
}

/* ===========================================================
==============================================================
                    FOOTER SECTION SOC
==============================================================
=========================================================== */

.footer-sec .footer-inner-wrapper .footer-padding {
  padding: 120px 0 80px;
}

.footer-sec .footer-inner-wrapper {
  display: grid;
  grid-template-columns: 1fr 772px 1fr;
}

/* FOOTER LEFT & RIGHT WRAPPER  */
.footer-sec .footer-inner-wrapper .footer-left-wrraper {
  padding-right: 60px;
}

.footer-left-wrraper p.h4 {
  line-height: 40px;
}

.footer-sec .footer-inner-wrapper .footer-right-wrraper {
  padding-left: 60px;
  gap: 60px;
}

.footer-right-wrraper .social-media-ul li .social-media-link {
  width: 64px;
  height: 64px;
  border-radius: 100%;
  background: var(--primary-gradient);
  padding: 10px;
}

.social-media-link .socialmedia-icon {
  transition: all 0.4s ease-in-out;
}

.social-media-link:hover .socialmedia-icon {
  transform: scale(1.1);
}

/* FOOTER CENTER WRAPPER */

.footer-inner-wrapper .footer-center-wrapper {
  border-left: 1px solid var(--white-op5);
  border-right: 1px solid var(--white-op5);
}

.footer-inner-wrapper .footer-center-wrapper .footer-img-wrapper {
  padding: 35px 87px 24px;
}

.footer-center-wrapper .footer-img-wrapper .footer-img {
  min-width: 500px;
  max-width: 500px;
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity 0.6s ease,
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-img-wrapper .footer-img:nth-child(1),
.footer-img-wrapper .footer-img:nth-child(2),
.footer-img-wrapper .footer-img:nth-child(3) {
  transform: translateX(-20px) rotate(0deg);
}

.footer-img-wrapper .footer-img:nth-child(2),
.footer-img-wrapper .footer-img:nth-child(3) {
  position: absolute;
}

.footer-img-wrapper .footer-img:nth-child(1) {
  z-index: 2;
  transition-delay: 1.2s;
  position: relative;
  bottom: 5px;
  max-width: 468px;
  min-width: 468px;
}

.footer-img-wrapper .footer-img:nth-child(2) {
  transition-delay: 0.6s;
  z-index: 1;
}

.footer-img-wrapper .footer-img:nth-child(3) {
  transition-delay: 0s;
  z-index: 0;
}

.footer-img-wrapper.is-visible .footer-img:nth-child(1) {
  opacity: 1;
  transform: translateX(29px) translateY(0) scale(1) rotate(12deg);
}

.footer-img-wrapper.is-visible .footer-img:nth-child(2) {
  opacity: 1;
  transform: translateX(1px) translateY(0) scale(1) rotate(5deg);
}

.footer-img-wrapper.is-visible .footer-img:nth-child(3) {
  opacity: 1;
  transform: translateX(-40px) translateY(0) scale(1) rotate(1deg);
}

.footer-bottom {
  border-top: 1px solid var(--white);
  padding: 30px 0 44px;
}

.footer-bottom-wrapper .lh-24 {
  line-height: 24px;
}

.footer-bottom-wrapper .privacy-cookie-linkwrapper a:not(:last-child) {
  border-right: 1px solid var(--white);
  padding-right: 16px;
}

/* ===========================================================
==============================================================
                  PAGE NOT FOUND SECTION SOC
==============================================================
=========================================================== */

.pnf-sec {
  padding-top: 126px;
}

.pnf-sec .pnf-wrapper {
  padding: 140px 0 120px;
  max-width: 800px;
  margin: 0 auto;
}

/* ====================================================================================================
=======================================================================================================
                                        HOW IT WORKS PAGE SOC
=======================================================================================================
==================================================================================================== */

/*========================================= 
      HOW IT WORKS BANNER SECTION SOC 
=========================================*/
.howitwork-banner-wrapper {
  max-width: 1003px;
}

/*========================================= 
      HOW IT WORKS STEPS SECTION SOC 
=========================================*/

.howitworks-sec .howitworks-wrapper .row:nth-child(even) {
  flex-direction: row-reverse;
}

.howitwork-col-left {
  padding-block: 250px;
  display: flex;
  align-items: center;
}

.howitworks-sec .howitworks-wrapper .row:nth-child(odd) .howitwork-col-left {
  padding-left: 90px;
  padding-right: 48px;
}

.howitworks-sec .howitworks-wrapper .row:nth-child(even) .howitwork-col-left {
  padding-left: 48px;
  padding-right: 90px;
}

/*========================================= 
    CONSIGNMENTS GLANCE SLIDER SECTION SOC 
=========================================*/

.consignment-slider-nav .swiper-nav {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  inset: 0;
  margin: 0;
  padding: 10px;
  transition: all 0.2s ease-in-out;
}

.consignment-slider-nav .swiper-nav svg path {
  transition: all 0.2s ease-in-out;
  fill: var(--white);
}

.consignment-slider-nav .swiper-nav.swiper-button-disabled,
.consignment-slider-nav .swiper-nav.swiper-button-disabled svg path {
  background-color: transparent;
  fill: var(--primary-color);
}

.consignment-slider-nav .swiper-nav svg {
  width: 36px;
  height: 36px;
}

.consignment-slider-nav .swiper-nav.swiper-button-prev svg {
  transform: rotate(-180deg);
}

.consignment-slider-nav .swiper-nav::after {
  display: none;
}

.consignment-glance-sec .consignments-slider-wrapper .consignments-slider {
  padding: 0 90px;
}

.consignments-slider-wrapper .consignments-slider .swiper-slide {
  height: auto;
}

.consignments-slider .consignment-glance-card {
  padding: 23px;
  gap: 100px;
  height: 100%;
}

.consignment-glance-card .consignmentglance-img {
  max-width: 234px;
  max-height: 200px;
  min-height: 200px;
  object-fit: contain;
}

/* ====================================================================================================
=======================================================================================================
                                        CONTACT US PAGE SOC
=======================================================================================================
==================================================================================================== */

/*========================================= 
        CONTACT BANNER SECTION SOC 
=========================================*/

.contact-banner-wrapper {
  max-width: 1229px;
}

/*========================================= 
        CONTACT INFO SECTION SOC 
=========================================*/

.contactinfo-main .contactinfo-girl-img {
  position: absolute;
  bottom: -120px;
  left: 0;
}

.contactinfo-wrapper .contact-text {
  font-size: 257px;
  line-height: 313px;
  color: var(--light-choco-pink);
  padding-bottom: 56px;
  padding-left: 360px;
  text-align: end;
}

.contactinfo-wrapper .contact-info {
  padding-left: 620px;
}

.contact-info .contact-card:not(:last-child) {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--light-grey);
}

.contact-info .contact-card .cotact-icon-wrapper {
  width: 121px;
  height: 121px;
  background-color: var(--primary-color-op2);
  padding: 30px;
  flex: 0 0 auto;
}

/*========================================= 
        CONTACT FORM SECTION SOC 
=========================================*/

.contactform-sec {
  background-image: url("../images/adore-contactform-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contactform-sec .contact-from-wrapper {
  max-width: 780px;
  margin-right: auto;
}

.contact-from-wrapper .contactform-btn {
  padding: 18px 32px;
}

.contact-from-wrapper .contactform-btn:hover {
  background-color: var(--light-choco-pink);
  color: var(--primary-color);
}

/* ====================================================================================================
=======================================================================================================
                                        PRE-LOVED-SALE PAGE SOC
=======================================================================================================
==================================================================================================== */

/*========================================= 
      PRELOVED SALE BANNER SECTION SOC 
=========================================*/
.preloved-sale-banner-wrapper {
  max-width: 1083px;
}

/*========================================= 
    PRELOVED SALE LISTING SECTION SOC 
=========================================*/
.prelovedbags-listing-main .prelovedbags-nav-tabs {
  max-width: 956px;
  margin: 0 auto;
  border: 0;
  gap: 32px;
}

.prelovedbags-nav-tabs .nav-item .nav-link {
  background-color: transparent;
  border: 0;
  padding: 25px 24px;
  font-size: 32px;
  line-height: 39px;
  font-weight: 500;
  color: var(--dark-grey);
  position: relative;
  text-transform: uppercase;
}

.prelovedbags-nav-tabs .nav-item .nav-link:hover,
.prelovedbags-nav-tabs .nav-item .nav-link.active {
  color: var(--choco-brown);
}

.prelovedbags-nav-tabs .nav-item:not(:last-child) .nav-link::before {
  content: "";
  width: 1px;
  height: calc(100% - 40px);
  background-color: var(--dark-grey);
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -16px;
  margin: auto;
}

/*========================================= 
    PRELOVED HANDBAGS CTA SECTION SOC 
=========================================*/

.prelovedbags-cta-sec {
  background-image: url("../images/pre-loved-sale/adore-preloved-handbag-cta-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 153px;
}

.prelovedbags-cta-wrapper {
  gap: 86px;
}

.prelovedbags-cta-wrapper .plb-cta-content-wrapper {
  width: 880px;
}

.prelovedbags-cta-wrapper .plb-cta-image-wraper {
  width: calc((100% - 880px) - 86px);
}

.prelovedbags-cta-wrapper .plb-cta-image-wraper .plb-cta-img {
  position: absolute;
  bottom: -120px;
  right: 0;
  max-width: 705px;
  /* border: 1px solid #000; */
}

/* ====================================================================================================
=======================================================================================================
                                        PRIVACY POLICY PAGE SOC
=======================================================================================================
==================================================================================================== */
.policy-content-ul li {
  padding-left: 32px;
}
.policy-content-ul li img {
  position: absolute;
  left: 0;
  top: 6px;
}

.subscribe-message {
  color: red;
}