@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
input, textarea {
  height: calc(var(--inputsize) - var(--borderwidth));
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  padding: 0 var(--paddingleftright);
}
input:focus, textarea:focus {
  outline: none;
}
input.valid, textarea.valid {
  outline: none;
}
input.valid ~ label, textarea.valid ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}
input:not(.no-focus):focus, textarea:not(.no-focus):focus {
  outline: none;
}
input:not(.no-focus):focus ~ label, textarea:not(.no-focus):focus ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}
input[readonly], textarea[readonly] {
  caret-color: transparent;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

:root {
  --white-transparent: #FFFFFFB2;
  --white: #ffffff;
  --light-beige: #DEBFB0;
  --warm-brown: #B18876;
  --dark-brown: #352C26;
  --dark-brown-transparent: #352C26B2;
  --very-dark-brown: #291F19;
  --warm-brown: #B18876;
  --my-brown-color: #804A36;
  --black: #000000;
  --my-light-beige: #F4F2ED;
  --my-dark-brown: #181312;
  --my-warm-brown: #6B5334;
  --medium-gray: #878787;
  --soft-beige: #F4F2ED;
  --neutral-gray: #666666;
  --semi-transparent-black: #00000080;
  --gray-color: #AEAEAE;
  --gradient-1: linear-gradient(270.01deg, rgba(0, 0, 0, 0) 27.22%, rgba(24, 18, 19, 0.95) 82.13%);
  --gradient-2: linear-gradient(360deg, rgba(0, 0, 0, 0) 41.5%, rgba(0, 0, 0, 0.95) 100%);
  --gradient-1-black: linear-gradient(270.01deg, rgba(0, 0, 0, 0) 27.22%, rgba(24, 18, 19, 0.99) 82.13%);
  --gradient-2-black: linear-gradient(360deg, rgba(0, 0, 0, 0) 41.5%, rgba(0, 0, 0, 0.99) 100%);
  --gradient-3: linear-gradient(270deg, #F4F2ED 0%, #F7E6DF 100%);
  --gradient-4: linear-gradient(180deg, rgba(0, 0, 0, 0) 49%, rgba(0, 0, 0, 0.85) 100%);
  --home-brand-gradient: linear-gradient(270deg, #352C26 0%, #644F3C 50.5%, #523D2E 100%);
  --brand-name-gardient: linear-gradient(360deg, rgba(0, 0, 0, 0) 53%, rgba(0, 0, 0, 0.85) 100%);
  --blando-gradient: background: linear-gradient(180.03deg, rgba(0, 0, 0, 0) 12.64%, rgba(24, 18, 19, 0.95) 101.1%),linear-gradient(360deg, rgba(0, 0, 0, 0) 41.5%, rgba(0, 0, 0, 0.95) 100%),linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 100%);
  --banner-gradient: linear-gradient(270.01deg, rgba(0, 0, 0, 0) 27.22%, rgba(24, 18, 19, 0.95) 82.13%),linear-gradient(360deg, rgba(0, 0, 0, 0) 41.5%, rgba(0, 0, 0, 0.95) 100%);
  --container: 1300px;
}
@media (max-width: 675px) {
  :root {
    --headerheight: 71px;
  }
}

body::-webkit-scrollbar {
  width: 10px;
  background: var(--black);
  font-family: CircularPro, sans-serif;
}
body::-webkit-scrollbar-track {
  box-shadow: none;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--light-brown);
}
body.overflow-hidden {
  overflow: hidden;
  margin-right: 10px;
}
@media (max-width: 991px) {
  body.overflow-hidden {
    margin-right: 0;
  }
}
body.overflow-hidden header {
  width: calc(100% - 10px);
}
@media (max-width: 991px) {
  body.overflow-hidden header {
    width: 100%;
  }
}

body, html {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

body.hidden {
  overflow: hidden;
  margin-right: 10px;
}

a[href] {
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s ease;
}

a, .img-content {
  line-height: 0px;
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .container {
    padding: 0 25px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}

.container-fluid {
  padding: 0 53px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 1152px) {
  .container-fluid {
    padding: 0 1rem;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding: 0 15px;
  }
}

h1 {
  font-family: Kugile, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  letter-spacing: 0.6px;
}

p, h6 {
  font-family: CircularPro, sans-serif;
  font-weight: 450;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 540px) {
  p, h6 {
    font-size: 14px;
    line-height: 20px;
  }
}

h4 {
  font-weight: 600;
}

h5, h6 {
  font-weight: 500;
}

h1 {
  font-size: 53px;
  font-weight: 400;
  line-height: 1.25;
}
@media (max-width: 1152px) {
  h1 {
    font-size: 62px;
  }
}
@media (max-width: 675px) {
  h1 {
    font-size: 29px !important;
    font-weight: 600;
  }
}

h2 {
  font-family: CircularPro, sans-serif;
  font-weight: 450;
  font-size: 48px;
  line-height: 48px;
}

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

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

.heading h3, .heading h2 {
  font-family: Kugile, sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: 0%;
}
@media (max-width: 675px) {
  .heading h3, .heading h2 {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
  }
}
.heading p {
  font-family: CircularPro, sans-serif;
  font-weight: 450;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: var(--neutral-gray);
}
.heading.heading2 h3 {
  font-family: CircularPro, sans-serif;
  font-weight: 500;
  font-size: 28px;
}
@media (max-width: 1366px) {
  .heading.heading2 h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: 24px;
  line-height: 1.1;
}
@media (max-width: 767px) {
  h4 {
    font-size: 18px;
  }
}

h5 {
  font-size: 20px;
  line-height: 1;
}
@media (max-width: 1300px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 18px;
  line-height: 24px;
}
@media (max-width: 1024px) {
  h6 {
    font-size: 16px;
    line-height: 22px;
  }
}

.luxary-things figcaption h1, .luxary-things figcaption h2 {
  font-family: Kugile, sans-serif;
  font-weight: 400;
  font-size: 100px;
  line-height: 100px;
  letter-spacing: 0%;
  text-align: center;
}
@media (max-width: 540px) {
  .luxary-things figcaption h1, .luxary-things figcaption h2 {
    line-height: 0px;
  }
}
.luxary-things figcaption p {
  font-weight: 450;
  font-size: 36px;
  line-height: 36px;
  letter-spacing: 0%;
  text-align: center;
}

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

.grid {
  display: grid;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.inline-flex {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.relative {
  position: relative;
}

img {
  max-width: 100%;
}

.invert-img {
  transform: scaleX(-1);
}

input, button, select {
  font-family: CircularPro, sans-serif;
  font-size: 14px;
}

[hidden] {
  display: none;
}

input {
  border-radius: 0;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

video {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

button, .button {
  border: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  font-weight: 450;
  font-size: 14px;
  line-height: 20px;
  font-family: CircularPro, sans-serif;
}

.item-md {
  position: relative;
}
.item-md figure {
  overflow: hidden;
  line-height: 0;
}
.item-md figure img, .item-md figure video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.item-md::before, .item-md::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 1;
}
.item-md::after {
  content: none;
}
.item-md figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .item-md figcaption {
    top: 4%;
  }
}
.item-md .link-md {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.bradN {
  margin-bottom: 20px;
}
.bradN img {
  max-width: 110px;
  display: block;
  margin: 0 auto;
}

.model {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 7;
  width: 100%;
}
.model .close {
  position: absolute;
  width: 38px;
  height: 38px;
  top: 12px;
  right: 20px;
}
@media (max-width: 767px) {
  .model .close {
    width: 38px;
    height: 38px;
    top: 12px;
    right: 20px;
  }
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 6;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(100%);
  transition: opacity 1s ease;
  cursor: pointer;
}
@media (max-width: 991px) {
  .overlay {
    z-index: 2;
  }
}
@media (max-width: 675px) {
  .overlay {
    display: none;
  }
}
.overlay.is-open {
  opacity: 1;
  transform: translateY(0%);
}

.kmr-select-wrap {
  position: relative;
  display: inline-block;
  --labelheight: 45px;
  --liheight: 34px;
  --boxsize: calc(var(--liheight) - 14px);
  --arrowsize: 24px;
  --space: 11px;
}
.kmr-select-wrap .label {
  height: var(--labelheight);
  line-height: var(--labelheight);
  background-image: url(../../icon/category-icon/arrow-down.svg);
  background-repeat: no-repeat;
  background-position-y: 50%;
  background-position-x: 100%;
  background-size: var(--arrowsize) auto;
  padding-right: calc(var(--arrowsize) + var(--space));
  cursor: pointer;
  caret-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: CircularPro, sans-serif;
  font-weight: 450px;
  font-size: 16px;
  line-height: 20.24px;
  color: var(--neutral-gray);
}
.kmr-select-wrap.active {
  --btn: 10px;
}
.kmr-select-wrap.active .kmr-select-menu .upper-sec .reset-btn {
  display: block;
}
.kmr-select-wrap.active::before {
  content: "";
  position: absolute;
  right: calc(var(--btn) * -1 / 2);
  top: calc(var(--btn) * -1 / 2);
  height: var(--btn);
  width: var(--btn);
  border-radius: 50%;
}
.kmr-select-wrap.slt-rgt .kmr-select-menu {
  right: 0;
  left: auto;
}
.kmr-select-wrap.color-select .kmr-select-menu li .in-bx {
  border-color: #ccc;
  border-radius: 50%;
}
.kmr-select-wrap.price_select .kmr-select-menu {
  padding: 20px;
  width: 325px;
}
.kmr-select-wrap.price_select .kmr-select-menu .upper-sec {
  display: flex;
}
.kmr-select-wrap.price_select .kmr-select-menu .upper-sec .reset-btn {
  font-size: 14px;
  font-weight: 500;
  display: none;
}
.kmr-select-wrap.price_select .kmr-select-menu .upper-sec .reset-btn svg {
  width: 15px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
}
.kmr-select-wrap.price_select .kmr-select-menu h6 {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
}
.kmr-select-wrap.price_select .product-range-slider-wrap {
  margin: 30px 0 40px;
}
.kmr-select-wrap.price_select .price-range-input-wrap {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--text);
}
.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input {
  flex: 1;
  border: 1px solid #E0E0E0;
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 0 10px;
  height: 30px;
  color: var(--text);
  gap: 10px;
}
.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input input {
  border: none;
  width: 100%;
  color: var(--text);
}
.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input input:focus {
  outline: none;
}
.kmr-select-wrap .kmr-select-menu {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 100%;
  background: var(--white);
  width: 200px;
  padding: 20px 0;
  display: none;
  max-height: 244px;
  overflow-y: auto;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.kmr-select-wrap .kmr-select-menu:has(input[type=radio]) li .in-bx {
  border-radius: 50%;
}
.kmr-select-wrap .kmr-select-menu:has(input[type=radio]) li .in-bx::before {
  display: none;
}
.kmr-select-wrap .kmr-select-menu:has(input[type=radio]):has(input:checked) li .in-bx {
  outline: 5px solid var(--white);
  outline-offset: -10px;
}
.kmr-select-wrap .kmr-select-menu li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  height: var(--liheight);
  padding: 0 14px;
}
.kmr-select-wrap .kmr-select-menu li:has(input:checked) .in-bx {
  background: var(--neutral-gray);
  transition: 0.4s ease;
}
.kmr-select-wrap .kmr-select-menu li:has(input:checked) .in-bx::before {
  opacity: 1;
}
.kmr-select-wrap .kmr-select-menu li .in-bx {
  height: var(--boxsize);
  width: var(--boxsize);
  border: 1px solid var(--neutral-gray);
  border-radius: 3px;
  transition: 0s ease;
  position: relative;
}
.kmr-select-wrap .kmr-select-menu li .in-bx::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: url(../../icon/tick-white.svg);
}
.kmr-select-wrap .kmr-select-menu li .in-bx::before {
  background-repeat: no-repeat;
  background-size: 48%;
  background-position: center center;
  opacity: 0;
}
.kmr-select-wrap .kmr-select-menu li span {
  display: block;
  flex: 1;
  font-size: 14px;
  line-height: 1.2;
  font-family: CircularPro, sans-serif;
  color: var(--neutral-gray);
  font-weight: 500;
}
.kmr-select-wrap .kmr-select-menu li input {
  position: absolute;
  color: var(--neutral-gray) !important;
  border: 1px solid var(--neutral-gray) !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
}
.kmr-select-wrap .kmr-select-menu li input:hover {
  cursor: pointer;
}

.shine-shadow {
  transition: 5s ease;
}
.shine-shadow::before {
  transition: 0.5s ease;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.shine-shadow:hover figure img {
  transform: scale(1.05);
}
.shine-shadow figure {
  position: relative;
  transition: 0.5s ease;
  overflow: hidden;
}
.shine-shadow figure::before {
  transition: 0.9s ease;
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: white;
  box-shadow: 0 0 55px 12px white;
  transform: skewX(-20deg);
  z-index: 1;
}
.shine-shadow figure:hover::before {
  animation: shine 0.4s linear;
  animation-fill-mode: none;
}

.form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 35px 0;
  --background: var(--white);
  --theme: #666666;
  --label: rgb(256 256 256 / .6);
  --color: #666666;
  --font: 300;
  --border: var(--blue);
}
@media (max-width: 675px) {
  .form {
    gap: 25px 0;
  }
}
.form .form-group {
  --inputsize: 42px;
  --lrgap: 15px;
  --tbgap: 20px;
  position: relative;
  flex: 0 1 100%;
  --selectheight: var(--inputsize);
}
.form .form-group.flex50 {
  flex: 0 1 48%;
}
@media (max-width: 675px) {
  .form .form-group.flex50 {
    flex: 0 1 100%;
  }
}
.form .form-group label {
  font-weight: var(--font);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  color: var(--theme);
  line-height: 1;
  transition: 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.form .form-group input, .form .form-group textarea {
  height: var(--inputsize);
  border: none;
  border-bottom: 1px solid #666;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--neutral-gray);
  font-size: inherit;
  font-family: CircularPro, sans-serif;
}
.form .form-group input.valid, .form .form-group textarea.valid {
  border-color: var(--neutral-gray);
  font-family: CircularPro, sans-serif;
}
.form .form-group input:focus, .form .form-group input.valid, .form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
}
.form .form-group input:focus ~ label, .form .form-group input.valid ~ label, .form .form-group textarea:focus ~ label, .form .form-group textarea.valid ~ label {
  top: 0;
  font-size: 14px;
  color: var(--neutral-gray);
  font-family: CircularPro, sans-serif;
}
.form .form-group textarea {
  min-height: var(--inputsize);
  padding-top: 10px;
  line-height: 1.2;
}
.form .form-group textarea ~ label {
  background: var(--sectionbackground);
}
.form .form-group.message-bx textarea {
  min-height: 86px;
  height: 100%;
  padding-top: 15px;
}
.form .form-group.message-bx label {
  top: 12px;
  translate: 0 0;
}
.form .form-group.message-bx textarea {
  padding-right: 15px;
}
.form .form-group.message-bx textarea::-webkit-scrollbar {
  width: 2px;
  background: none;
}
.form .form-group.message-bx textarea::-webkit-scrollbar-track {
  box-shadow: none;
}
.form .form-group.message-bx textarea::-webkit-scrollbar-thumb {
  background-color: var(--white);
  border-radius: 15px;
}
.form .form-group.message-bx textarea:focus ~ label, .form .form-group.message-bx textarea.valid ~ label {
  top: 0;
  font-size: 14px;
  translate: 0 -50%;
}
.form .form-group.captcha-box {
  --size: 120px;
}
.form .form-group.captcha-box input {
  width: calc(100% - var(--size));
}
.form .form-group.captcha-box input:focus ~ .captcha-question, .form .form-group.captcha-box input.valid ~ .captcha-question {
  border-color: var(--brown);
}
.form .form-group.captcha-box .captcha-question {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: var(--inputsize);
  width: var(--size);
  font-weight: 600;
  border-bottom: 1px solid #666;
  text-align: center;
  color: var(--theme);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.swiper-nav .swiper-prev svg, .swiper-nav .swiper-prev img {
  transform: scaleX(-1);
}
.swiper-nav.in-title {
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 0 16px;
}
.swiper-nav.in-title .swiper-prev, .swiper-nav.in-title .swiper-next {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0 6px;
  color: var(--black);
  line-height: 56px;
  overflow: hidden;
  border-radius: 25px;
  background: var(--white);
  border: 1px solid var(--black);
  padding: 0 0;
  position: relative;
  z-index: 0;
  text-transform: capitalize;
  transition: 0.7s;
  font-weight: 500;
  background: none;
}
.swiper-nav.in-title .swiper-prev svg, .swiper-nav.in-title .swiper-prev path, .swiper-nav.in-title .swiper-next svg, .swiper-nav.in-title .swiper-next path {
  transition: 0.5s ease;
}
.swiper-nav.in-title .swiper-prev:hover, .swiper-nav.in-title .swiper-next:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.swiper-nav.in-title .swiper-prev::before, .swiper-nav.in-title .swiper-prev::after, .swiper-nav.in-title .swiper-next::before, .swiper-nav.in-title .swiper-next::after {
  opacity: 0;
}
.swiper-nav.in-title .swiper-prev:hover::after, .swiper-nav.in-title .swiper-next:hover::after {
  opacity: 1;
}
.swiper-nav.in-title .swiper-prev.disabled, .swiper-nav.in-title .swiper-next.disabled {
  opacity: 0.4;
  cursor: no-drop;
}
.swiper-nav.center-full {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.swiper-nav.center-full .swiper-prev, .swiper-nav.center-full .swiper-next {
  pointer-events: all;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

.boxes {
  --color1: var(--green);
  --color2: var(--yellow);
  position: absolute;
  white-space: nowrap;
}
.boxes .box {
  aspect-ratio: 1;
  display: inline-block;
}
.boxes .box:first-child {
  width: 47px;
  transform: translateY(48px);
  background: var(--color1);
}
@media (max-width: 991px) {
  .boxes .box:first-child {
    width: 27px;
    transform: translateY(23px);
  }
}
.boxes .box:last-child {
  width: 57px;
  margin-left: 17px;
  background: var(--color2);
}
@media (max-width: 991px) {
  .boxes .box:last-child {
    width: 37px;
  }
}
@media (max-width: 991px) {
  .boxes .box:last-child {
    margin-left: 12px;
  }
}

.content-common-wrap {
  max-width: 548px;
  margin: 0 auto;
  color: var(--white);
}
@media (max-width: 991px) {
  .content-common-wrap {
    max-width: 100%;
  }
}
.content-common-wrap p {
  margin: 22px 0 60px;
  color: #666;
}
@media (max-width: 991px) {
  .content-common-wrap p {
    margin: 20px 0 40px;
  }
}
@media (max-width: 675px) {
  .content-common-wrap p {
    text-align: center;
  }
}
.content-common-wrap .btm-wrp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  gap: 18px;
}
@media only screen and (max-width: 365px) {
  .content-common-wrap .btm-wrp {
    gap: 15px;
  }
}
.content-common-wrap .btm-wrp .btn {
  width: auto;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0 6px;
  color: var(--black);
  line-height: 40px;
  overflow: hidden;
  border-radius: 25px;
  background: var(--light-pink);
  border: 1px solid none;
  padding: 0 40px;
  position: relative;
  z-index: 0;
  text-transform: capitalize;
  transition: 0.7s;
  font-weight: 500;
  background: var(--white);
  border: 1px solid #333;
}
.content-common-wrap .btm-wrp .btn svg, .content-common-wrap .btm-wrp .btn path {
  transition: 0.5s ease;
}
.content-common-wrap .btm-wrp .btn:hover {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.content-common-wrap .btm-wrp .btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
@media only screen and (max-width: 365px) {
  .content-common-wrap .btm-wrp .btn {
    flex: 0 1 100%;
  }
}
.content-common-wrap .btm-wrp .wtsp {
  width: auto;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0 6px;
  color: var(--white);
  line-height: 40px;
  overflow: hidden;
  border-radius: 25px;
  background: none;
  border: 1px solid var(--white);
  padding: 0 40px;
  position: relative;
  z-index: 0;
  text-transform: capitalize;
  transition: 0.7s;
  font-weight: 500;
}
.content-common-wrap .btm-wrp .wtsp svg, .content-common-wrap .btm-wrp .wtsp path {
  transition: 0.5s ease;
}
.content-common-wrap .btm-wrp .wtsp:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
@media only screen and (max-width: 365px) {
  .content-common-wrap .btm-wrp .wtsp {
    flex: 0 1 100%;
  }
}

.btn-gradient {
  position: relative;
  overflow: hidden;
  font-weight: 500;
}
.btn-gradient span {
  position: relative;
  z-index: 1;
}
.btn-gradient::before, .btn-gradient::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.5s ease;
}
.btn-gradient::before {
  background: var(--gradient);
}
.btn-gradient::after {
  background: var(--gradient2);
  opacity: 0;
}
.btn-gradient:hover::before {
  opacity: 0;
}
.btn-gradient:hover::after {
  opacity: 1;
}

body * .btn-bg {
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 16px;
  text-transform: uppercase;
  transition: 0.5s ease;
  font-weight: 500;
}
body * .btn-bg:hover {
  color: var(--black);
  background: var(--white);
}

.swiper .swiper-slide img {
  width: 100%;
}

.boxes {
  display: none;
}

.sticky {
  position: sticky;
  top: 20px;
}

@media (max-width: 1024px) {
  .swiper-pagination-bullet {
    display: none !important;
  }
}

.w-full {
  width: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  z-index: -1;
  transition: 0.7s ease;
  background: linear-gradient(90deg, #181312 0%, #523D2E 100%);
}
header.header-fill::before, header.header-fixed::before {
  height: 100%;
}
header::after {
  height: 0;
  transition: 0.5s ease;
  z-index: -2;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  z-index: -1;
  transition: 0.7s ease;
}
header .header-wrapper {
  padding: 8px 0 0px 0;
  align-items: center;
  transition: 0.7s ease;
  display: flex;
}
header .header-wrapper .colA {
  flex: 2 1 200px;
  transition: 0.5s ease;
}
@media (max-width: 991px) {
  header .header-wrapper .colA {
    flex: 0 0 auto !important;
    width: 50%;
  }
}
header .header-wrapper .colA img {
  width: 125px;
}
header .header-wrapper .col-B {
  flex: 0 0 353px;
  padding-left: 4rem;
}
@media (max-width: 991px) {
  header .header-wrapper .col-B {
    flex: 0 0 auto !important;
    width: 50%;
  }
}
header .header-wrapper .col-B .list-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 520px) {
  header .header-wrapper .col-B .list-menu {
    padding-right: 4px !important;
    gap: 0;
  }
}
@media (max-width: 991px) {
  header .header-wrapper .col-B .list-menu {
    justify-content: flex-end;
  }
}
header .header-wrapper .col-B .list-menu ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 520px) {
  header .header-wrapper .col-B .list-menu ul {
    padding-right: 4px !important;
    gap: 0;
  }
}
@media (max-width: 991px) {
  header .header-wrapper .col-B .list-menu ul {
    padding-right: 18px;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  header .header-wrapper .col-B .list-menu ul:nth-child(2) {
    display: none !important;
  }
}
header .header-wrapper .col-B .list-menu li .menu-item {
  display: flex;
  flex-direction: column;
}
header .header-wrapper .col-B .list-menu li .menu-item img {
  margin-bottom: 7px;
}
header .header-wrapper .col-B .search-menu {
  width: 135px;
}
header .header-wrapper .col-B .search-menu .close {
  display: none;
  color: var(--white);
}
@media (max-width: 540px) {
  header .header-wrapper .col-B .search-menu .close {
    color: var(--white);
    position: absolute;
    z-index: 999;
    filter: invert(1);
    top: 2px;
    right: 19px;
    width: 41px;
    background-color: #000;
    height: 45px;
    border-radius: 0 10px 10px 0;
  }
}
header .header-wrapper .col-B .search-menu .search-icon, header .header-wrapper .col-B .search-menu .close {
  cursor: pointer;
}
header .header-wrapper .col-B .search-menu .second-rectangle {
  transition: 0.5s ease;
  margin-left: -5px;
}
header .header-wrapper .col-B:hover .second-rectangle {
  margin-left: 0px;
}
header .header-wrapper .social-icon-list {
  min-width: 112px;
}
@media (max-width: 991px) {
  header .header-wrapper .social-icon-list {
    display: none !important;
  }
}
header .header-wrapper .social-icon-list img {
  transition: 0.5s ease;
}
header .header-wrapper .social-icon-list img:hover {
  margin-top: -5px;
  cursor: pointer;
}

.ham-pop {
  right: 0;
  max-width: 439px;
  transform: translateX(100%);
  transition: 0.5s ease;
  background: #F4F0EB;
  background-size: 60% auto, 100% 100%;
  background-position: 80% 100%, 0 0;
}
.ham-pop.is-open {
  transform: translateX(0%);
  display: block;
}
.ham-pop.is-open .close {
  display: block !important;
}
.ham-pop .close {
  position: absolute;
  top: 10px;
  right: 25px;
  cursor: pointer;
}
.ham-pop .model-body {
  padding: 22px 40px 30px;
  height: 100%;
  overflow-y: auto;
}
.ham-pop .model-body .ico {
  max-width: 75px;
  width: 100%;
  margin-bottom: 22px;
  line-height: 0;
}
.ham-pop .model-body .ico img, .ham-pop .model-body .ico svg {
  width: 100%;
  height: auto;
}
.ham-pop .model-body .nav-list {
  border-bottom: 1px solid #B18876;
  padding-bottom: 40px;
}
.ham-pop .model-body .nav-list > li:not(:last-child) {
  margin-bottom: 15px;
  margin-bottom: 12px;
}
.ham-pop .model-body .nav-list > li > a {
  font-family: TTDrugs;
  font-size: 36px;
  display: inline-block;
  line-height: 48px;
  color: #B18876;
  text-transform: uppercase;
  transition: 0.5s ease;
  width: 100%;
}
@media (max-width: 540px) {
  .ham-pop .model-body .nav-list > li > a {
    font-size: 26px;
  }
}
.ham-pop .model-body .nav-list > li > a:hover {
  color: #666666;
  margin-left: 10px;
}
.ham-pop .model-body .company-info-list {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  padding-bottom: 73px;
}
.ham-pop .model-body .company-info-list li {
  font-family: CircularPro, sans-serif;
  font-size: 24px;
  line-height: 20px;
  color: #666666;
  margin-bottom: 25px;
  transition: 0.5s ease;
}
.ham-pop .model-body .company-info-list li a {
  color: #666666;
  display: inline-block;
  line-height: 20px;
  width: 100%;
}
.ham-pop .model-body .company-info-list li a:hover {
  color: #B18876;
  cursor: pointer;
  margin-left: 10px;
}
.ham-pop .model-body .social-icon-list {
  display: flex;
  gap: 10px;
}
.ham-pop .model-body .social-icon-list li {
  padding-right: 19px;
  transition: 0.5s ease;
}
.ham-pop .model-body .social-icon-list li a {
  transition: 0.5s ease;
}
.ham-pop .model-body .social-icon-list li:hover {
  color: #B18876;
  transform: translateY(-4px);
}

.search-box-modal {
  position: fixed;
  color: var(--white);
  width: 372px;
  top: 18px;
  right: 520px;
  max-width: 500px;
  transform: translateX(45%);
  transition: 0.5s ease;
  z-index: 20;
}
@media (max-width: 540px) {
  .search-box-modal {
    top: 0%;
    right: 50%;
    left: auto;
    width: 88%;
    z-index: 5;
  }
}
.search-box-modal .search-box .search-input {
  color: #fff;
}
@media (max-width: 767px) {
  .search-box-modal .search-box .search-input {
    color: #000;
  }
}
.search-box-modal .hide-search-box {
  display: none !important;
}
.search-box-modal .show-search-box {
  display: block;
}
@media (max-width: 767px) {
  .search-box-modal .show-search-box {
    width: 100%;
    background: #fff;
    padding: 18px;
    border-radius: 10px 0 0 10px;
    margin-top: 2px;
  }
}
@media (max-width: 767px) and (max-width: 540px) {
  .search-box-modal .show-search-box {
    padding: 9px 15px;
  }
}
.search-box-modal.is-open {
  transform: translateX(0%);
}
.search-box-modal input {
  background: inherit;
  border-style: none;
  border-bottom: 1px solid var(--white);
  padding: 4px;
  color: var(--black);
  font-family: CircularPro, sans-serif;
}
.search-box-modal input:focus {
  border: none;
  outline: none;
  border-bottom: 1px solid var(--white);
}
.search-box-modal .search-box-content {
  background: var(--white);
  width: 100%;
  height: 0;
  padding: 0 10px;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  transition: height 0.5s ease-out, padding 0.5s ease-out, visibility 0s 0.5s, opacity 0.5s ease-out;
}
.search-box-modal .search-box-content.is-open-search {
  height: 300px;
  padding: 10px;
  visibility: visible;
  opacity: 1;
  transition: height 0.5s ease-out, padding 0.5s ease-out, visibility 0s 0s, opacity 0.5s ease-out;
}
.search-box-modal .search-box-content.is-close-search {
  height: 0;
  padding: 0 10px;
  visibility: hidden;
  opacity: 0;
  transition: height 0.5s ease-out, padding 0.5s ease-out, visibility 0s 0.5s, opacity 0.5s ease-out;
}
.search-box-modal .search-box-content .thzjk .thzjk-col {
  color: var(--black);
  display: flex;
  padding: 12px;
  align-items: center;
}
.search-box-modal .search-box-content .thzjk .thzjk-col:hover {
  background: var(--light-beige);
  opacity: 0.3;
}
.search-box-modal .search-box-content .thzjk .thzjk-col img {
  margin-right: 20px;
  width: 45px;
}
.search-box-modal .search-box-content .thzjk .thzjk-col .name-prdt {
  font-family: CircularPro, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 17px;
}
.search-box-modal .search-box-content .thzjk .thzjk-col .sub-title {
  font-family: CircularPro, sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 17px;
  color: #666666;
}

.enquire-pop {
  max-width: 550px;
  transform: translateX(100%);
  right: 0;
  background: var(--dark-brown);
  transform: translateX(100%);
  transition: 0.7s ease;
  position: fixed;
  background: #F4F0EB;
}
.enquire-pop::before {
  z-index: 2;
}
.enquire-pop.is-open {
  transform: translateX(0%);
}
.enquire-pop.is-open .close {
  display: block !important;
}
.enquire-pop .close {
  position: absolute;
  top: 6px;
  right: 15px;
}
@media (max-width: 675px) {
  .enquire-pop .close {
    position: absolute;
    z-index: 999;
    filter: invert(1);
    top: 19px;
    right: 3%;
  }
}
.enquire-pop .close path {
  stroke: var(--black);
}
.enquire-pop .model-body {
  padding: 10px 42px 20px;
  height: 100%;
}
@media (max-width: 675px) {
  .enquire-pop .model-body {
    padding: 40px 25px 50px;
  }
}
.enquire-pop .model-body .title-content {
  display: flex;
  justify-content: center;
}
.enquire-pop .model-body .title-content .title {
  margin-bottom: 35px;
  max-width: 364px;
}
@media (max-width: 675px) {
  .enquire-pop .model-body .title-content .title {
    margin-bottom: 25px;
  }
}
.enquire-pop .model-body .title-content .title h2 {
  text-align: center;
  font-family: TTDrugs;
  font-weight: 400;
  font-size: 35px;
  line-height: 50px;
  color: var(--warm-brown);
  padding: 20px 0 10px 0;
}
.enquire-pop .model-body .title-content .title p {
  text-align: center;
  color: var(--text);
  font-size: 16px;
  line-height: 20.24px;
  margin-top: 10px;
  font-weight: 450;
  color: var(--neutral-gray);
}
.enquire-pop .model-body .form {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
  padding-top: 30px;
}
.enquire-pop .model-body .form .form-group {
  width: 100%;
}
.enquire-pop .model-body .form .form-group label {
  text-align: center;
  font-family: TTDrugs;
  font-weight: 450;
  font-size: 16px;
  line-height: 24px;
  color: var(--gray-color);
}
.enquire-pop .model-body .form .form-group input, .enquire-pop .model-body .form .form-group textarea {
  border-bottom: 1px solid var(--gray-color);
  font-family: TTDrugs;
  font-weight: 450;
  font-size: 16px;
  line-height: 24px;
  color: var(--gray-color);
}
.enquire-pop .model-body .form .form-group input:focus, .enquire-pop .model-body .form .form-group textarea:focus {
  color: var(--gray-color);
  background: inherit;
}
.enquire-pop .model-body .submit-btn-content {
  text-align: center;
}
.enquire-pop .model-body .submit-btn-content .sbmit-btn {
  display: inline-block;
  color: var(--white);
  border: 1px solid var(--light-beige);
  background: var(--warm-brown);
  border-radius: 50px;
  width: 148px;
  height: 44px;
  margin-top: 30px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.5s ease;
}
.enquire-pop .model-body .submit-btn-content .sbmit-btn:hover {
  color: var(--white);
  background-color: var(--light-beige);
}

.footer1 {
  background: linear-gradient(270deg, #F4F2ED 0%, #F7E6DF 100%);
  padding-top: 131px;
  padding-bottom: 131px;
}
@media (max-width: 1024px) {
  .footer1 {
    padding: 50px 0;
  }
}
@media (max-width: 540px) {
  .footer1 {
    padding: 50px 0;
  }
}
@media (max-width: 1230px) {
  .footer1 {
    padding: 40px 0;
  }
}
.footer1 .container {
  display: grid;
  -moz-column-gap: 25px;
       column-gap: 25px;
  row-gap: 10px;
  grid-template-columns: auto auto;
  background-color: inherit;
}
@media (max-width: 767px) {
  .footer1 .container {
    grid-template-columns: 1fr;
  }
}
.footer1 .container .subscribe-content h5 {
  font-family: TTDrugs;
  font-weight: 400;
  font-size: 36px;
  line-height: 60px;
}
@media (max-width: 540px) {
  .footer1 .container .subscribe-content h5 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 12px;
  }
}
.footer1 .container .subscribe-content p {
  color: var(--semi-transparent-black);
}
.footer1 .container .subscribe-content .subscribe-txt-content {
  max-width: 640px;
}
.footer1 .container .subscribe-content form {
  display: flex;
  align-items: baseline;
  padding-top: 25px;
}
@media (max-width: 767px) {
  .footer1 .container .subscribe-content form {
    gap: 0px;
  }
}
.footer1 .container .subscribe-content form .form-group {
  flex: 3 3 auto;
  margin-right: 40px;
}
.footer1 .container .subscribe-content form button {
  flex: 1 1 auto;
}
.footer1 .container .subscribe-content form input {
  background: inherit;
  flex: 2 2 auto;
  margin-right: 55px;
  border: none;
  border-bottom: 1px solid var(--neutral-gray);
  font-family: CircularPro, sans-serif;
}
.footer1 .container .subscribe-content form input:focus {
  background: inherit;
  outline: none;
  background-color: transparent;
}
.footer1 .container .subscribe-content form label {
  color: #666666;
  font-family: CircularPro, sans-serif;
}
.footer1 .container .subscribe-content form button {
  flex: 0 0 auto;
  color: var(--white);
  border: 1px solid var(--light-beige);
  border-radius: 50px;
  padding: 12px 22px;
  width: 148px;
  height: 44px;
  margin-top: 30px;
  background: var(--warm-brown);
  text-align: center;
  padding-top: 12px;
  transition: background-color 0.5s ease;
  font-weight: 450px;
  font-size: 16px;
  line-height: 20.24px;
  letter-spacing: 1.6px;
  margin: 0 auto;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .footer1 .container .subscribe-content form button {
    margin: 2px auto;
    margin-top: 20px;
  }
}
.footer1 .container .subscribe-content form button:hover {
  color: var(--white);
  background-color: var(--light-beige);
}
.footer1 .container .social-media-content {
  display: flex;
  flex-direction: column;
  font-weight: 450;
}
.footer1 .container .social-media-content h5 {
  font-size: 20px;
  line-height: 20px;
  font-family: CircularPro, sans-serif;
  margin-bottom: 10px;
}
@media (max-width: 1230px) {
  .footer1 .container .social-media-content h5 {
    padding-top: 24px;
  }
}
@media (max-width: 540px) {
  .footer1 .container .social-media-content h5 {
    padding-top: 12px;
  }
}
.footer1 .container .social-media-content p {
  font-family: CircularPro, sans-serif;
  font-size: 16px;
  padding-top: 5px;
  line-height: 24px;
  color: var(--semi-transparent-black);
  margin-bottom: 20px;
  padding: 0;
}
@media (max-width: 767px) {
  .footer1 .container .social-media-content p {
    margin-bottom: 14px;
  }
}
.footer1 .container .social-media-icon {
  max-width: 198px;
  display: flex;
  justify-content: space-between;
}

.footer-2-sec {
  background: linear-gradient(270deg, #352C26 0%, #664A36 100%);
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1019607843);
}
.footer-2-sec .footer2 {
  display: grid;
  grid-template-columns: 50% 50%;
  background-color: inherit;
}
@media (max-width: 767px) {
  .footer-2-sec .footer2 {
    grid-template-columns: 1fr;
  }
}
.footer-2-sec .contact-info {
  padding-top: 62px;
  padding-bottom: 62px;
  border-right: 1px solid rgba(255, 255, 255, 0.1019607843);
}
@media (max-width: 1230px) {
  .footer-2-sec .contact-info {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .footer-2-sec .contact-info {
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1019607843);
    border-right: none;
  }
}
@media (max-width: 1024px) {
  .footer-2-sec .contact-info {
    padding: 30px 0;
  }
}
.footer-2-sec .contact-info h2 {
  font-family: CircularPro, sans-serif;
  max-width: 303px;
  color: rgba(255, 255, 255, 0.5019607843);
  margin-top: 40px;
  padding-bottom: 10px;
  font-size: 24px;
  line-height: 32px;
}
@media (max-width: 540px) {
  .footer-2-sec .contact-info h2 {
    font-size: 16px;
    text-align: center;
    line-height: 26px;
    padding: 0 62px;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .footer-2-sec .contact-info h2 {
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  .footer-2-sec .contact-info ul {
    padding-left: 36px;
  }
}
.footer-2-sec .contact-info li {
  color: rgba(255, 255, 255, 0.5019607843);
  font-family: CircularPro, sans-serif;
  font-size: 16px;
  line-height: 24px;
  padding-top: 15px;
  display: flex;
  align-items: center;
}
@media (max-width: 1230px) {
  .footer-2-sec .contact-info li {
    font-size: 22px;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .footer-2-sec .contact-info li {
    font-size: 16px;
  }
}
.footer-2-sec .contact-info li a {
  color: rgba(255, 255, 255, 0.5019607843);
}
.footer-2-sec .contact-info li a img {
  padding-right: 17px;
}
.footer-2-sec .about-company-info {
  padding: 110px;
  display: flex;
}
@media (max-width: 1230px) {
  .footer-2-sec .about-company-info {
    padding: 16px;
  }
}
@media (max-width: 767px) {
  .footer-2-sec .about-company-info {
    padding: 0px;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .footer-2-sec .about-company-info {
    padding: 40px;
  }
}
.footer-2-sec .about-company-info .col-A, .footer-2-sec .about-company-info .col-B {
  flex: 1;
}
.footer-2-sec .about-company-info .col-A li, .footer-2-sec .about-company-info .col-B li {
  font-family: CircularPro, sans-serif;
  font-weight: 450;
  font-size: 24px;
  line-height: 30.36px;
  padding-bottom: 30px;
  color: var(--white);
}
@media (max-width: 1230px) {
  .footer-2-sec .about-company-info .col-A li, .footer-2-sec .about-company-info .col-B li {
    font-size: 22px;
  }
}
@media (max-width: 540px) {
  .footer-2-sec .about-company-info .col-A li, .footer-2-sec .about-company-info .col-B li {
    padding-bottom: 12px;
  }
}
@media (max-width: 1024px) {
  .footer-2-sec .about-company-info .col-A li, .footer-2-sec .about-company-info .col-B li {
    font-size: 22px;
  }
}
.footer-2-sec .about-company-info .col-A a, .footer-2-sec .about-company-info .col-B a {
  color: var(--white);
}
@media (max-width: 540px) {
  .footer-2-sec .about-company-info .col-A a, .footer-2-sec .about-company-info .col-B a {
    font-size: 14px;
  }
}

.footer-bottom {
  background: linear-gradient(270deg, #352C26 0%, #664A36 100%);
}
.footer-bottom .footer-bottom-content {
  padding-top: 15px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer-bottom .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    padding: 8px 0;
  }
}
.footer-bottom .footer-bottom-content p {
  font-family: CircularPro, sans-serif;
  font-weight: 450;
  font-size: 16px;
  line-height: 24px;
  color: #9C9A9A;
}
.footer-bottom .footer-bottom-content .made-by-text {
  display: flex;
  align-items: center;
  color: #9C9A9A !important;
  font-family: "CircularPro";
}
@media (max-width: 767px) {
  .footer-bottom .footer-bottom-content .made-by-text {
    justify-content: center;
  }
}
.footer-bottom .footer-bottom-content .made-by-text span {
  color: #9C9A9A !important;
  padding-right: 10px;
}

.black-header {
  background-color: var(--black);
}

.footer-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  font-family: CircularPro, sans-serif;
  background: #b18876;
  display: none;
}
@media (max-width: 675px) {
  .footer-strip {
    display: block;
  }
}
.footer-strip ul {
  display: flex;
  flex-wrap: wrap;
}
.footer-strip ul li {
  flex: 1;
}
.footer-strip ul li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-strip ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  gap: 15px;
  color: var(--white);
  font-size: 14px;
  height: 66px;
}
.footer-strip ul li a svg {
  width: 20px;
  height: 20px;
}
.footer-strip ul li a svg[stroke] {
  stroke: var(--white);
}
.footer-strip ul li a svg[fill] {
  fill: var(--white);
}
.footer-strip ul li a svg path[stroke] {
  stroke: var(--white);
}
.footer-strip ul li a svg path[fill] {
  fill: var(--white);
}

@media (max-width: 520px) {
  footer {
    padding-bottom: 64px !important;
  }
}/*# sourceMappingURL=header.css.map */