@font-face {
  font-family: Avenir;
  src: url("https://nxmcdn.com/fonts/xog/Avenir-Roman.otf");
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: Montserrat, sans-serif;
}

body.lock {
  overflow-y: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  letter-spacing: 0.06em;
}

p {
  letter-spacing: 0.06em;
}

a {
  color: #000;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.06em;
}

a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

i {
  font-size: 24px;
  line-height: 0;
}

video {
  max-width: 100%;
  height: auto;
}

img {
  max-width: 100%;
  height: auto;
}

.bg-black {
  background: #000;
}

.text-black {
  color: #000;
}

.text-gray {
  color: #f9f6f3;
}

.text-grey {
  color: #B0B1B2;
}

.text-uppercase {
  text-transform: uppercase;
}

.cursor-pointer {
  cursor: pointer;
}

.pr-btn {
  height: 50px;
  width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(249, 246, 243);
  font-size: 12px;
  border-radius: 30px;
  letter-spacing: 0.2em;
}

.pr-btn:hover {
  background: rgb(249, 246, 243);
}

.container {
  max-width: 100%;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
  display: none;
  z-index: 999;
}

.announcement-bar {
  min-height: 40px;
  z-index: 99;
}

@media screen and (max-width: 767px) {
  .announcement-bar {
    padding-top: 45px;
  }
}

header {
  background: transparent;
  box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.75);
  min-height: 75px;
  z-index: 9;
}

header.active {
  z-index: 99999999;
}

header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  transform: translateY(-100%);
  transition: transform 0.4s;
  z-index: -1;
  display: none;
}

header:hover::after {
  transform: translateY(0);
  transition: transform 0.4s;
}

header:hover img.logo-white {
  display: none !important;
}

header:hover img.logo-red {
  display: block !important;
}

header:hover .nav-item {
  color: #000 !important;
}

header:hover i {
  color: #000 !important;
}

header.active::after {
  transform: translateY(0);
  transition: transform 0.4s;
}

header.active img.logo-white {
  display: none !important;
}

header.active img.logo-red {
  display: block !important;
}

header.active .nav-item {
  color: #000 !important;
}

header.active i {
  color: #000 !important;
}

header:hover .menu-toggle span {
  background-color: #000;
}

header:hover .menu-toggle span::before {
  background-color: #000;
}

header:hover .menu-toggle span::after {
  background-color: #000;
}

header.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  transform: translateY(0);
  transition: transform 0.4s;
  z-index: -1;
}

header.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -4rem 4rem rgb(33, 35, 38);
  transform: translateY(-100%);
  transition: transform 0.4s;
  z-index: 99999999;
}

header.sticky.scroll {
  transform: translateY(0);
  transition: transform 0.4s;
}

header.sticky img.logo-white {
  display: none !important;
}

header.sticky img.logo-red {
  display: block !important;
}

header.sticky .nav-item {
  color: #000 !important;
}

header.sticky i {
  color: #000 !important;
}

header.sticky .menu-toggle span {
  background-color: #000;
}

header.sticky .menu-toggle span::before {
  background-color: #000;
}

header.sticky .menu-toggle span::after {
  background-color: #000;
}

.search-form {
  background: #f2f2f2;
  border-radius: 10px;
}

.search-field {
  height: 100%;
  background: transparent;
  border: 0;
  outline: 0;
}

.mini-cart {
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 450px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translate(100%);
  transition: transform 0.4s;
}

.mini-cart.show {
  transform: translate(0);
  transition: transform 0.4s;
  z-index: 9999999;
}

.mini-cart-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mini-cart .close-icon {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eeeeee;
  position: absolute;
  top: 15px;
  right: 15px;
}

.mobile-menu {
  background: #fff;
  position: fixed;
  top: 25px;
  left: 0;
  height: 90%;
  width: 450px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translate(-100%);
  transition: transform 0.4s;
  overflow-y: auto;
  z-index: 999999999;
}

.mobile-menu.active {
  transform: translate(0);
  transition: transform 0.4s;
}

.mobile-menu-body {
  flex: 2;
  display: flex;
  flex-direction: column;
}

.mobile-menu-body a {
  font-size: 18px;
}

.mobile-menu-footer {
  flex: 1;
}

.mobile-menu .close-icon {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eeeeee;
  position: absolute;
  top: 15px;
  left: 15px;
}

footer a {
  font-size: 16px;
  font-weight: 400;
  background-color: transparent;
  background-image: linear-gradient(to top, rgb(210, 213, 217) 0px 0px), linear-gradient(to top, transparent 0px, transparent 0px);
  background-repeat: no-repeat;
  background-position: right bottom, right bottom;
  background-size: 0% .1rem, 100% .1rem;
  transition-property: background-size;
  transition-timing-function: ease;
  transition-duration: 0.25s;
}

footer li a:hover {
  background-position: left bottom, left bottom;
  background-size: 100% .1rem, 100% .1rem;
}

footer .email-field input {
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 1px solid #fff;
  width: 100%;
  padding: 10px;
  color: #fff;
  font-size: 14px;
  outline: 0;
}

footer .email-field input:hover {
  border: 1px solid #fff;
}

footer .email-field input:focus-visible {
  border: 1px solid #fff;
  outline: 0;
}

footer .email-field button {
  position: absolute;
  top: 50%;
  right: 10px;
  background: none;
  border: 0;
  color: #fff;
  transform: translateY(-50%);
}

footer .email-field button i {
  font-size: 14px;
}

footer form p {
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

footer .ig-icon {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s;
}

footer .ig-icon i {
  font-size: 14px;
}

footer .ig-icon:hover {
  background: #fff;
  transition: all 0.4s;
}

footer .ig-icon:hover i {
  color: #000 !important;
}

.footer-logo {
  width: 75%;
}

footer .copyright-text {
  font-size: 12px;
  letter-spacing: 0;
}

footer .copyright-text a {
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 600;
}

footer .accordion {
  background: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  border: 0;
  outline: 0;
  text-align: left;
}

footer .active,
footer .accordion:hover {
  background-color: transparent;
}

footer .accordion i {
  display: none;
}

footer .panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.menu-toggle {
  display: block;
  margin: 0;
  width: 40px;
  height: 40px;
  z-index: 9999999;
}

.menu-toggle.active {
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  margin: 0 auto;
  position: relative;
  top: 50%;
  transition-duration: 0s;
  transition-delay: 0.2s;
  transition: background-color 0.3s;
  transform: translateY(-50%);
}

.menu-toggle span:before,
.menu-toggle span:after {
  position: absolute;
  content: "";
}

.menu-toggle span,
.menu-toggle span:before,
.menu-toggle span:after {
  width: 20px;
  height: 2px;
  background-color: #fff;
  display: block;
  opacity: 1;
  margin: auto;
}

.menu-toggle span:before {
  margin-top: -8px;
  transition-property: margin, transform;
  transition-duration: 0.2s;
  transition-delay: 0.2s, 0;
}

.menu-toggle span:after {
  margin-top: 8px;
  transition-property: margin, transform;
  transition-duration: 0.2s;
  transition-delay: 0.2s, 0;
}

.menu-toggle.active span {
  background-color: rgba(0, 0, 0, 0);
  transition: 0.3s background-color;
}

.menu-toggle.active span:before {
  background-color: rgb(0, 0, 0);
  margin-top: 0;
  transform: rotate(45deg);
  transition-delay: 0, 0.2s;
}

.menu-toggle.active span:after {
  background-color: rgb(0, 0, 0);
  margin-top: 0;
  transform: rotate(-45deg);
  transition-delay: 0, 0.2s;
}

header:hover .menu-toggle.active span {
  background-color: rgba(0, 0, 0, 0);
  transition: 0.3s background-color;
}

header:hover .menu-toggle.active span:before {
  margin-top: 0;
  transform: rotate(45deg);
  transition-delay: 0, 0.2s;
}

header:hover .menu-toggle.active span:after {
  margin-top: 0;
  transform: rotate(-45deg);
  transition-delay: 0, 0.2s;
}

@media screen and (max-width: 991px) {
  .menu-toggle {
    display: block !important;
  }
  .nav-item {
    display: none !important;
  }
  .search-toggle {
    display: none !important;
  }
  .header-right .search-toggle {
    display: block !important;
  }
  footer .accordion {
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .pr-btn {
    width: 100%;
  }
  .mobile-menu {
    width: calc(100% - 4rem);
  }
  .mini-cart {
    width: calc(100% - 4rem);
  }
  footer .copyright-text {
    text-align: center;
  }
  footer .accordion {
    width: 100%;
    border-bottom: 1px solid #fff;
    text-align: left;
    display: flex;
    align-items: center;
    height: 40px;
  }
  footer .ig-icon {
    margin: auto;
  }
  footer .accordion i {
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 14px;
    transition: transform 0.4s;
  }
  footer .accordion.active i {
    transform: translateY(-50%) rotate(180deg);
    transition: transform 0.4s;
  }
}

header {
  background: #fff;
  z-index: 999999;
}
header span {
  color: #c00000;
  font-family: Avenir;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 120% */
  letter-spacing: 3.2px;
}
@media screen and (max-width: 991px) {
  header span {
    display: none;
  }
  header .logo {
    height: 100px;
    object-fit: contain;
  }
}
header .logo {
  width: 150px;
}
header .img-icon {
  width: 40px;
}
@media screen and (max-width: 767px) {
  header .img-icon {
    width: 25px;
  }
  header .logo {
    height: 70px;
  }
}
header .nav-item {
  color: #000 !important;
}
@media screen and (max-width: 991px) {
  header .search-toggle {
    display: block !important;
  }
}

.new-menu {
  position: relative;
  z-index: 9999999;
}
.new-menu .container {
  background: #c00000;
  padding: 20px 40px;
}
@media screen and (max-width: 991px) {
  .new-menu .container {
    padding: 20px 30px;
  }
}
.new-menu a {
  color: #fff;
  font-family: Avenir;
  font-size: 14px;
  font-weight: 800;
  line-height: 28px;
  letter-spacing: 3.2px;
}
@media screen and (max-width: 991px) {
  .new-menu ul {
    display: none !important;
  }
}

.toggle-wrap {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .toggle-wrap {
    display: flex !important;
  }
}