* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 3px grey; 
  border-radius: 2px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background:  var(--dark); 
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background:  var(--dark) 
}


a,
a:hover {
  text-decoration: none;
  color: inherit;
}

body {
  color: var(--dark);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  letter-spacing: var(--body-font-lspacing);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
}

html {
  scroll-behavior: smooth;
}

strong {
  font-weight: 700;
}

html,
body {
  scroll-behavior: smooth;
}

.body-fix {
  overflow-y: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
}

h1,
.heading-h1 {
  font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);
  letter-spacing: var(--h1-lspacing);
  text-transform: uppercase;
  font-weight: 400;
}

h2,
.heading-h2 {
  font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
  letter-spacing: var(--h2-lspacing);
  text-transform: uppercase;
}

h3,
.heading-h3 {
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
  letter-spacing: var(--h3-lspacing);
}

h4,
.heading-h4 {
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  letter-spacing: var(--h4-lspacing);
}

h5,
.heading-h5 {
  font-size: var(--h5-font-size);
  line-height: var(--h5-line-height);
  letter-spacing: var(--h5-lspacing);
}

h6,
blockquote,
.heading-h6 {
  font-size: var(--h6-font-size);
  line-height: var(--h6-line-height);
  letter-spacing: var(--h6-lspacing);
}

.text-sm {
  font-size: var(--sm-font-size);
  line-height: var(--sm-line-height);
  letter-spacing: var(--sm-lspacing);
}

.text-xsm {
  font-size: var(--xsm-font-size);
  line-height: var(--xsm-line-height);
  letter-spacing: var(--xsm-lspacing);
}

.text-xxsm {
  font-size: var(--btn-font-size);
  line-height: var(--btn-line-height);
  letter-spacing: var(--btn-lspacing);
}

.cust-container-xl {
  padding-left: 80px;
  padding-right: 80px;
}

.cust-container-lg {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-left: 49px;
  padding-right: 49px;
}

.cust-container-md {
  max-width: 1160px;
  margin: 0 auto;
}

.cust-container-sm {
  max-width: 965px;
  margin: 0 auto;
}

.img-box {
  position: relative;
  overflow: hidden;
}

.img-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  object-fit: cover;
}

.cust-form .cust-form-group {
  margin-bottom: 15px;
  padding-left: 8px;
  padding-right: 8px;
}

.cust-form .form-control::-webkit-input-placeholder {
  color: var(--dark);
}

.cust-form .form-control::-moz-placeholder {
  color: var(--dark);
}

.cust-form .form-control:-ms-input-placeholder {
  color: var(--dark);
}

.cust-form .form-control:-moz-placeholder {
  color: var(--dark);
}

.cust-form .form-control:focus {
  outline: none;
}

.cust-form textarea.form-control {
  resize: none;
  overflow-y: auto;
  min-height: 124px;
}

.cust-form textarea.form-control::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.cust-form textarea.form-control::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  cursor: pointer;
}

.cust-form textarea.form-control::-webkit-scrollbar-thumb {
  background-color: transparent;
  outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #000000;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
  background: #fff;
  outline: 0 !important;
  color: #000000 !important;
}

.form-control,
.form-control:focus {
  outline: 0;
  box-shadow: none;
}

input:focus,
.form-control:focus {
  background-color: inherit;
  color: var(--dark);
  outline: 0 !important;
}

.cust-form .form-control {
    border: 2px solid var(--dark);
    background-color: transparent;
    padding: 0px;
    color: var(--dark);
    width: 100%;
    padding: 19px 15px;
    height: auto;
    font-family: 'Outfit', sans-serif;
    border-radius: 0;
    font-weight: 500;
    min-height: auto;
    outline: 0 !important;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: var(--btn-font-lspacing);
    text-transform: math-auto;
}

/* custom select */
.custom-select-wrapper {
  position: relative;
  display: block;
  user-select: none;
}

.custom-select-wrapper select {
  display: none;
}

.custom-select {
  position: relative;
  display: inline-block;
}

.custom-select-trigger {
  position: relative;
  display: block;
  cursor: pointer;
  transition: all 0.1s ease-in;
  padding-right: 30px;
  text-transform: uppercase;
}

.custom-select-trigger:hover {
  transition: all 0.1s ease-in;
}

.custom-select-trigger:after {
  position: absolute;
  display: block;
  content: '';
  width: 10px;
  height: 7px;
  top: 50%;
  right: 0;
  margin-top: 0;
  background: url(../images/arrow-down-sm.png) no-repeat center;
  transform: rotate(0) translateY(-50%);
  transition: all 0.2s ease-in-out;
  transform-origin: 50% 0;
  background-size: 100%;
}

.custom-select.opened .custom-select-trigger:after {
  margin-top: 3px;
  transform: rotate(180deg) translateY(-50%);
}

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left:-2px;
  right:-2px;
  margin: 0;
  border: 2px solid var(--dark);
  border-radius: 0;
  box-sizing: border-box;
  box-shadow: 0 2px 1px rgb(0 0 0 / 7%);
  background: #ebedee;
  transition: all 0.1s ease-in-out;
  /* margin-left: 0; */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
  z-index: 99;
  text-transform: uppercase;
  font-weight: 500;
}

.custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.custom-option {
  position: relative;
  display: block;
  padding: 10px 22px;
  border-bottom: none;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  font-size: var(--btn-font-size);
  line-height: var(--btn-line-height);
  letter-spacing: var(--btn-font-lspacing);
  text-transform: uppercase;
  font-weight: 500;
}

.custom-option:hover,
.custom-option.selection {
  color: var(--dark);
}

.custom-option:last-of-type {
  border-bottom: 0;
}

.custom-outline-btn,
.custom-fill-brown-btn,
.custom-fill-purp-btn,
.custom-fill-white-btn {
  display: inline-block;
  padding: 2px;
  -webkit-clip-path: polygon(0 1%, 100% 0%, 86% 100%, 0% 100%);
  clip-path: polygon(0 1%, 100% 0%, 86% 100%, 0% 100%);
  transition: all 200ms ease-in;
  text-transform: uppercase;
  font-weight: 600;
}

.custom-outline-btn-inner,
.custom-fill-brown-inner,
.custom-fill-purp-inner,
.custom-fill-white-inner {
  padding: 13px 52px 13px 25px;
  -webkit-clip-path: polygon(0 1%, 100% 0%, 86% 100%, 0% 100%);
  clip-path: polygon(0 1%, 100% 0%, 86% 100%, 0% 100%);
  transition: all 200ms ease-in;
  display: inline-block;
  font-size: var(--btn-font-size);
  line-height: var(--btn-line-height);
  letter-spacing: var(--btn-font-lspacing);
  text-align: center;
  font-weight: 600;
}

/* .custom-outline-btn */
.custom-outline-btn {
  background-color: var(--dark);
}
.custom-outline-btn-inner {
  background-color: var(--dark);
  color: var(--white);
}

.custom-outline-btn:hover,
.custom-outline-btn:hover .custom-outline-btn-inner {
  background-color: var(--yellow);
  color: var(--light);
}

/* .custom-fill-brown-btn */
.custom-fill-brown-btn {
  background-color: var(--yellow);
}

.custom-fill-brown-inner {
  background-color: var(--yellow);
  color: var(--dark);
}

.custom-fill-brown-btn:hover, .custom-fill-brown-btn:hover .custom-fill-brown-inner {
  background-color: var(--white);
  color: var(--yello);
}

/* .custom-fill-white-btn */
.custom-fill-white-btn {
  background-color: var(--white);
}

.custom-fill-white-inner {
  background-color: var(--white);
  color: var(--bs-dark);
}
.custom-fill-white-btn:hover,
.custom-fill-white-btn:hover .custom-fill-white-inner {
  background-color: #70572e;
  color: var(--white);
}


/* .custom-fill-purp-btn */
.custom-fill-purp-btn {
  background-color: var(--WineBerry);
}

.custom-fill-purp-inner {
  background-color: var(--WineBerry);
  color: var(--white);
}

.custom-fill-purp-btn:hover .custom-fill-purp-inner {
  color: var(--WineBerry);
}

.custom-fill-purp-btn:hover,
.custom-fill-purp-btn:hover .custom-fill-purp-inner {
  background-color: var(--yellow);
  color: var(--white);
}