@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://use.fontawesome.com/releases/v5.8.2/css/all.css");
.wrapper {
  max-width: 1140px;
  margin: auto;
}
@media screen and (max-width: 1200px) {
  .wrapper {
    max-width: 960px;
  }
}
@media screen and (max-width: 980px) {
  .wrapper {
    max-width: 720px;
  }
}
@media screen and (max-width: 768px) {
  .wrapper {
    max-width: 95%;
  }
}

* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
}

main {
  margin-top: 95px;
}

@media screen and (max-width: 768px) {
	main {
	  margin-top: 75px;
	}
}

* {
  font-family: "Cormorant Garamond", serif;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  background: #000000;
  padding: 12px 0;
}
@media screen and (max-width: 980px) {
  header {
    padding: 5px 0;
  }
}
header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  width: 150px;
}
header .logo a {
  display: block;
}
header .right {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 980px) {
  header .right {
    position: fixed;
    top: 60px;
    background: #000000;
    width: 100%;
    left: 0;
    flex-direction: column;
    width: 100%;
    gap: 0;
    display: none;
  }
}
@media screen and (max-width: 980px) {
  header .right .menu {
    width: 100%;
  }
}
header .right .menu ul {
  display: flex;
  list-style: none;
}
@media screen and (max-width: 980px) {
  header .right .menu ul {
    flex-direction: column;
    width: 100%;
  }
}
@media screen and (max-width: 980px) {
  header .right .menu ul li {
    width: 100%;
    border-bottom: 1px solid #242424;
  }
}
header .right .menu ul li a {
  font-size: 16px;
  padding: 5px 15px;
  color: #eeeeee;
  font-weight: 700;
}
@media screen and (max-width: 980px) {
  header .right .menu ul li a {
    display: block;
    text-align: center;
    padding: 25px;
  }
}
.activemd{
  font-size: 18px;
  font-weight: 700;	
  color: #ffffff !important;
  background: #f5003d;
}

header .right .menu ul li a:hover {
  background: #cfcfcd;
  color: #000;
}
@media screen and (max-width: 980px) {
  header .right .language {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #242424;
  }
}
header .right .language select {
  border: none;
  font-size: 18px;
  outline: none;
  background: none;
  cursor: pointer;
}
@media screen and (max-width: 980px) {
  header .right .language select {
    padding: 25px;
    font-size: 18px;
    color: #000;
    font-weight: 700;
  }
}
header .right .search {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 980px) {
  header .right .search {
    display: none;
  }
}
header .right .search input {
  height: 24px;
  border: 1px solid #000;
  font-size: 14px;
  width: 0px;
  transition: all 0.5s;
  border-width: 0;
  outline: none;
  padding: 0;
}
header .right .search .search-icon {
  width: 24px;
  display: block;
  cursor: pointer;
  color:#fff;
}
header .right .search:hover input {
  width: 140px;
  border-width: 1px;
  padding: 0 5px;
}
header .mobile-menu-btn {
  display: none;
}
@media screen and (max-width: 980px) {
  header .mobile-menu-btn {
    display: block;
  }
  header .mobile-menu-btn .button {
    background: #202020;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border-radius: 5px;
  }
  header .mobile-menu-btn .button span {
    width: 18px;
    height: 2px;
    display: block;
    background: #fff;
  }
}

footer {
  border-top: 1px solid #000;
  padding: 20px;
  margin-top: 50px;
}
footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 980px) {
  footer .footer-container {
    gap: 50px;
  }
}
@media screen and (max-width: 640px) {
  footer .footer-container {
    flex-direction: column;
  }
}
footer .footer-container .left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 640px) {
  footer .footer-container .left {
    align-items: center;
  }
}
footer .footer-container .right .social-media ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}
footer .footer-container .right .social-media ul li a {
  color: #939391;
  transition: all 0.3s;
  font-size: 18px;
}
footer .footer-container .right .social-media ul li a:hover {
  color: #f5003d;
}
footer .footer-container .right .social-media{
	text-align:right;
	float:right;
}
@media screen and (max-width: 640px) {
  footer .footer-container .right .social-media  {
    text-align:center;
	float:none;
	margin:auto;
  }
}
footer .footer-container .left .copyright {
  font-size: 10px;
  font-weight: 700;
  font-family: "Noto Sans", sans-serif;
}
footer .footer-container .right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media screen and (max-width: 980px) {
  footer .footer-container .right .footer-menu {
    margin-right: 0;
  }
}
footer .footer-container .right .footer-menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  gap: 15px;
  flex-wrap: wrap;
}
footer .footer-container .right .footer-menu ul li a {
  font-family: "Noto Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.3s;
  color: #000;
  opacity: 0.8;
}
footer .footer-container .right .footer-menu ul li a:hover {
  color: #f5003d;
  opacity: 1;
}
footer .footer-container .right .footer-other {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  footer .footer-container .right .footer-other {
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
  }
}
@media screen and (max-width: 640px) {
  footer .footer-container .right .footer-other {
    align-items: center;
  }
}


/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("../images/owlplay.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
#homeSlider {
  position: relative;
}
#homeSlider .item {
  width: 100%;
}
#homeSlider .item img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}
#homeSlider .owl-nav {
  margin: 0;
  padding: 0;
  position: absolute;
  top: calc(50% - 40px);
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#homeSlider .owl-nav button {
  background: #000;
  margin: 0;
  padding: 15px !important;
  color: #fff;
  width: 50px;
  height: 75px;
  border-radius: 0px;
  font-size: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#homeCollections {
  padding-top: 48px;
}
#homeCollections .collections {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #homeCollections .collections {
    flex-direction: column;
    padding: 0 10%;
  }
}
#homeCollections .collections .item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#homeCollections .collections .item .item-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  #homeCollections .collections .item .item-header {
    flex-direction: column;
    gap: 20px;
  }
}
#homeCollections .collections .item .item-header a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  font-size: 0;
}
#homeCollections .collections .item .item-header .title h2 {
  font-size: 40px;
}
@media screen and (max-width: 980px) {
  #homeCollections .collections .item .item-header .title h2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  #homeCollections .collections .item .item-header .title h2 {
    font-size: 40px;
  }
}
#homeCollections .collections .item .item-header .title h3 {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 980px) {
  #homeCollections .collections .item .item-header .title h3 {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  #homeCollections .collections .item .item-header .title h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 980px) {
  #homeCollections .collections .item .item-header .description {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  #homeCollections .collections .item .item-header .description {
    font-size: 15px;
    text-align: center;
  }
}
#homeCollections .collections .item .item-body {
  position: relative;
}
#homeCollections .collections .item .item-body::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(61, 61, 61, 0.6);
  opacity: 0;
  left: 0;
  top: 0;
  transition: opacity 0.5s ease-out;
}
#homeCollections .collections .item .item-body:hover::after {
  opacity: 1;
}
#homeCollections .collections .item .item-body a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  font-size: 0;
}
#homeCollections .collections .item .item-body img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
@media screen and (max-width: 980px) {
  #homeCollections .collections .item .item-body img {
    height: 185px;
  }
}
@media screen and (max-width: 768px) {
  #homeCollections .collections .item .item-body img {
    height: 285px;
  }
}
#homeCollections .collections .item .item-body .caption {
  position: absolute;
  z-index: 2;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 40px);
  padding: 20px;
}
@media screen and (max-width: 980px) {
  #homeCollections .collections .item .item-body .caption {
    padding: 10px;
    width: calc(100% - 20px);
  }
}
#homeCollections .collections .item .item-body .caption h2 {
  font-size: 40px;
  color: #fff;
}
#homeCollections .collections .item .item-body .caption a {
  position: relative;
  font-size: 12px;
  width: auto;
  height: auto;
  left: auto;
  top: auto;
  background: #000;
  color: #fff;
  font-family: "Noto Sans", sans-serif;
  border-bottom: 1px solid #fff;
  font-weight: 700;
  padding: 0 5px;
}

#homeCatalog {
  margin: 30px 0;
}
#homeCatalog .catalog-container {
  background: #d3d3d3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 980px) {
  #homeCatalog .catalog-container {
    flex-direction: column;
  }
}
#homeCatalog .catalog-container .image {
  width: 50%;
}
#homeCatalog .catalog-container .image img {
  transform: rotate(-5deg);
}
#homeCatalog .catalog-container .content {
  width: 50%;
  padding-right: 80px;
}
@media screen and (max-width: 980px) {
  #homeCatalog .catalog-container .content {
    padding: 0;
    text-align: center;
    width: 100%;
  }
}
#homeCatalog .catalog-container .content h2 {
  font-size: 40px;
  color: #000;
}
#homeCatalog .catalog-container .content p {
  font-size: 14px;
  color: #000;
  font-family: "Noto Sans", sans-serif;
}
#homeCatalog .catalog-container .content .actions {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 980px) {
  #homeCatalog .catalog-container .content .actions {
    padding: 20px 0;
  }
}
#homeCatalog .catalog-container .content .actions a {
  border: 1px solid #000;
  color: #000;
  width: 100%;
  padding: 20px;
  display: flex;
}
#homeCatalog .catalog-container .content .actions a span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
}
#homeCatalog .catalog-container .content .actions a img {
  width: 26px;
}

#news .news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 980px) {
  #news .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 640px) {
  #news .news-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
#news .news-list .item {
  position: relative;
}
#news .news-list .item a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  font-size: 0;
}
#news .news-list .item .image {
  position: relative;
}
#news .news-list .item .image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
#news .news-list .item .image .date {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-family: "Noto Sans", sans-serif;
  padding: 5px;
}
#news .news-list .item .content {
  padding: 20px 0;
}
#news .news-list .item .content h2 {
  font-size: 32px;
  color: #929291;
}

#weCallYou {
  background: #000;
  position: fixed;
  right: -80px;
  top: 245px;
  transform: rotate(90deg);
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 99;
}
#weCallYou span {
  transform: rotate(-180deg);
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 700;
  padding: 0 25px;
}
#weCallYou img {
  width: 40px;
  transform: rotate(-90deg);
}

#weCallYouForm {
  width: 375px;
  position: fixed;
  z-index: 100;
  right: 0;
  top: 50px;
  display: none;
}
#weCallYouForm .close {
  width: 36px;
  height: 36px;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
}
#weCallYouForm .content {
  overflow-y: scroll;
  height: 610px;
  background: #000000;
}
#weCallYouForm .content .header {
  display: flex;
  align-items: center;
  padding: 8px 15px 8px 8px;
  gap: 50px;
}
#weCallYouForm .content .header h3 {
  font-size: 27px;
  font-weight: 500;
}
#weCallYouForm .content .header .image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: block;
}
#weCallYouForm .content .body {
  padding: 15px;
}
#weCallYouForm .content .body h3 {
  font-size: 24px;
  font-weight: 700;
  color: #212529;
}
#weCallYouForm .content .body p {
  font-size: 14px;
}
#weCallYouForm .content .body .form {
  margin: 15px 0;
}
#weCallYouForm .content .body .form .textbox {
  width: 100%;
  margin-bottom: 5px;
  border: 1px solid #000;
  outline: none;
  padding: 6px;
  font-size: 16px;
}
#weCallYouForm .content .body .form .textbox::placeholder {
  text-align: center;
  color: #000;
  font-size: 16px;
  opacity: 1;
  font-weight: 700;
}
#weCallYouForm .content .body .form .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
#weCallYouForm .content .body .form .checkbox label {
  font-size: 13px;
}
#weCallYouForm .content .body .form .checkbox label a {
  color: #000;
  text-decoration: underline;
  font-weight: 700;
}
#weCallYouForm .content .body .form .information {
  font-size: 13px;
  padding: 0 17px;
  display: block;
}
#weCallYouForm .content .body .form .information a {
  color: #000;
  text-decoration: underline;
  font-weight: 700;
}
#weCallYouForm .content .body .form button {
  border: none;
  background: #000;
  text-align: center;
  display: block;
  width: 100%;
  color: #fff;
  height: 50px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 15px;
}

.product-list-header {
  border-bottom: 1px solid #dee2e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px 0;
}
.product-list-header h1 {
  font-size: 28px;
  font-weight: 500;
}
.product-list-header .actions ul {
  display: flex;
  list-style: none;
}
.product-list-header .actions ul li a {
  color: #626262;
  padding: 8px 16px;
}
.product-list-header .actions ul li.selected a {
  background: #fff;
  border-top: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  border-left: 1px solid #dee2e6;
}
.product-list-header .actions ul li:hover a {
  background: #000;
  color: #fff;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .product-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.product-list .item {
  position: relative;
}
.product-list .item a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  font-size: 0;
}
.product-list .item .image {
  position: relative;
}
.product-list .item .image::after {
  content: "";
  background: rgba(61, 61, 61, 0.6);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s;
}
.product-list .item .image img {
  height: 240px;
  width: 100%;
  display: block;
  object-fit: cover;
}
.product-list .item h3 {
  font-size: 28px;
  padding-top: 15px;
}
.product-list .item:hover .image::after {
  opacity: 1;
}

@media screen and (max-width: 980px) {
  #productSlider .wrapper {
    max-width: 100%;
  }
}
#productSlider .product-slider {
  position: relative;
}
#productSlider .product-slider .item {
  width: 100%;
}
#productSlider .product-slider .item img {
  height: 570px;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  #productSlider .product-slider .item img {
    height: 370px;
  }
}
#productSlider .product-slider .owl-nav {
  margin: 0;
  padding: 0;
  position: absolute;
  top: calc(50% - 40px);
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#productSlider .product-slider .owl-nav button {
  background: #000;
  margin: 0;
  padding: 15px !important;
  color: #fff;
  width: 50px;
  height: 75px;
  border-radius: 0px;
  font-size: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#breadCrumb {
  padding: 15px;
}
#breadCrumb ul {
  list-style: none;
  display: flex;
}
#breadCrumb ul li a {
  font-family: "Noto sans", sans-serif;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  line-height: 1;
}
#breadCrumb ul li a::after {
  content: "\f105";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  padding: 0 7px;
}
#breadCrumb ul li:nth-last-child(1) a::after {
  display: none;
}

.product-detail {
  padding: 15px;
}
.product-detail h1 {
  font-size: 36px;
  color: #7b7c7e;
  font-weight: 700;
  margin-bottom: 30px;
}
.product-detail .content {
  display: grid;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .product-detail .content {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.product-detail .content .content-item p {
  font-size: 13px;
  font-family: "Noto Sans", sans-serif;
  color: #212529;
}

#otherCollections {
  background-color: #fbfbfb;
  padding: 15px;
}
#otherCollections h4 {
  text-align: center;
  font-size: 14px;
  font-family: "Noto sans", sans-serif;
  color: #000;
  font-weight: 400;
}
#otherCollections .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  #otherCollections .items {
    grid-template-columns: repeat(1, 1fr);
  }
}
#otherCollections .items .item {
  position: relative;
}
#otherCollections .items .item a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  font-size: 0;
}
#otherCollections .items .item .image {
  position: relative;
}
#otherCollections .items .item .image::after {
  content: "";
  background: rgba(61, 61, 61, 0.6);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s;
}
#otherCollections .items .item .image img {
  height: 190px;
  width: 100%;
  display: block;
  object-fit: cover;
}
#otherCollections .items .item h3 {
  font-size: 28px;
  padding-top: 15px;
}
#otherCollections .items .item:hover .image::after {
  opacity: 1;
}

#contentDetail .wrapper {
  display: flex;
}
@media screen and (max-width: 768px) {
  #contentDetail .wrapper {
    flex-direction: column;
    max-width: 600px;
  }
}
#contentDetail .sidebar {
  display: flex;
  gap: 15px;
  flex: 0;
  padding-top: 103px;
  min-width:220px;
  border-left: 1px solid rgba(0, 0, 0, 0.125);
}
@media screen and (max-width: 768px) {
  #contentDetail .sidebar {
    flex-direction: column;
    padding-top: 0;
    border: none;
  }
}
#contentDetail .sidebar .sidebar-notification p {
  color: #f5003d;
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #contentDetail .sidebar .sidebar-notification p {
    text-align: center;
  }
}
#contentDetail .sidebar aside ul {
  list-style: none;
}
#contentDetail .sidebar aside ul li {
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
#contentDetail .sidebar aside ul li a {
  font-size: 14px;
  color: #000;
  font-family: "Noto Sans", sans-serif;
  display: block;
  padding: 5px 30px 5px 5px;
}
#contentDetail .sidebar aside ul li a.selected {
  color: #b9b9b9;
  background: #fff;
  position: relative;
  right: -1px;
}
#contentDetail .content {
  flex: 2;
}
#contentDetail .content .page-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  padding: 0px;
  margin-top:110px;
}
#contentDetail .content .page-title h1 {
  font-size: 26px;
  font-weight: 700;
  color: #7b7c7e;
  letter-spacing: 6px;
}
@media screen and (max-width: 768px) {
  #contentDetail .content .page-title h1 {
    text-align: left;
  }
}
#contentDetail .content .content-container .content-detail {
  padding: 20px 15px;
}
#contentDetail .content .content-container .content-detail p {
  font-size: 14px;
  font-family: "Noto Sans", sans-serif;
  padding-bottom: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #contentDetail .content .content-container .content-detail p {
    text-align: center;
  }
}
#contentDetail .content .content-container .content-detail img {
  display: block;
  width: unset !important;
  text-align: center;
  margin: auto;
  margin-top: 30px;
}

#shopsPage h1 {
  font-size: 32px;
  color: #000;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
#shopsPage p {
  font-size: 14px;
  font-family: "Noto Sans", sans-serif;
  color: #000;
  font-weight: 300;
}
#shopsPage .search-inputs {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}
@media screen and (max-width: 480px) {
  #shopsPage .search-inputs {
    flex-direction: column;
  }
}
#shopsPage .search-inputs .item {
  position: relative;
  width: 320px;
}
@media screen and (max-width: 480px) {
  #shopsPage .search-inputs .item {
    width: 100%;
  }
}
#shopsPage .search-inputs .item label {
  position: absolute;
  top: 10px;
  left: 20px;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  font-family: "Noto Sans", sans-serif;
}
#shopsPage .search-inputs .item select {
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  padding: 27px 10px 8px 15px;
  font-size: 16px;
  color: #A1A1A1;
  height: 70px;
  width: 100%;
  font-family: "Noto Sans", sans-serif;
  -webkit-appearance: none;
  background-image: url(../images/ddl.png);
  background-repeat: no-repeat;
  background-position: center right 20px;
  outline: none;
}
#shopsPage .search-inputs .item select option {
  font-size: 16px;
  font-family: "Noto Sans", sans-serif;
}
#shopsPage .shop-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 980px) {
  #shopsPage .shop-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  #shopsPage .shop-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
#shopsPage .shop-list .item {
  background-color: #F6F6F6;
  border-bottom: 1px solid #eee;
  padding: 15px;
}
#shopsPage .shop-list .item .body {
  padding: 15px;
}
#shopsPage .shop-list .item .body .country {
  color: #8A8A8A;
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans", sans-serif;
  margin-bottom: 10px;
}
#shopsPage .shop-list .item .body .title {
  font-size: 18px;
  color: #000;
  font-weight: 700;
  font-family: "Noto Sans", sans-serif;
}
#shopsPage .shop-list .item .body .address {
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  gap: 5px;
  margin: 20px 0;
}
#shopsPage .shop-list .item .body .address img {
  width: 16px;
}
#shopsPage .shop-list .item .body .phone {
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  gap: 5px;
}
#shopsPage .shop-list .item .body .phone img {
  width: 16px;
}
#shopsPage .shop-list .item .footer {
  border-top: 1px solid #D4D4D4;
}
#shopsPage .shop-list .item .footer a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 16px;
  color: #1e1e1e;
  font-weight: 700;
  font-family: "Noto Sans", sans-serif;
}
#shopsPage .shop-list .item .footer a img {
  width: 16px;
}

.shop-map {
  margin-top: 50px;
}
.shop-map iframe {
  width: 100%;
  border: none;
  height: 600px;
}

.contact-map iframe {
  width: 100%;
  border: none;
  height: 400px;
}

#contact .content {
  width: 30%;
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  #contact .content {
    width: 100%;
  }
}
#contact .content h2 {
  color: #f5003d;
  font-weight: 700;
  font-size: 16px;
}
#contact .content ul {
  list-style: none;
}
#contact .content ul li {
  padding: 10px 0;
}
#contact .content ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
#contact .content ul li a svg {
  color: #f5003d;
  font-size: 25px;
  width: 25px;
  height: 25px;
}
#contact .content ul li a span {
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  color: #000;
  font-weight: 500;
  width: calc(100% - 25px);
}
#contact .ethics-line {
  border: 1px solid #ededed;
  display: block;
  text-align: center;
  padding: 15px;
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #000;
}
#contact .ethics-line strong {
  font-family: "Noto Sans", sans-serif;
}


.list-marked-bordered {
  color: #000;
}

.list-marked-bordered li a {
  display: block;
  padding: 10px 7px;
  border-bottom: 1px solid #f9f9f9;
}

.list-marked-bordered li a:before {
  position: relative;
  display: inline-block;
  padding-right: 10px;
  font: 400 18px "FontAwesome";
  line-height: inherit;
  color: #f5003d;
  content: '\f105';
}

.list-marked-bordered li a span {
  color: inherit;
  transition: color .33s;
}

.list-marked-bordered li a span:first-child {
  color: #000;
}

.list-marked-bordered li a:hover, .list-marked-bordered li a:hover span:nth-child(n) {
  color: #f5003d;
}

.list-marked-bordered li span:not(:last-child) {
  margin-right: .25em;
}

.list-marked-variant-2 > li > a {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.list-marked-variant-2 > li > a:before {
  content: '\f105';
  position: absolute;
  left: 0;
  top: 1px;
  font: 400 18px/24px 'FontAwesome';
  color: #f5003d;
  transition: .33s all ease;
}

.list-marked-variant-2 > li > a:hover:before {
  left: 4px;
  color: #f5003d;
}

.list-marked-variant-2 > li + li {
  margin-top: 14px;
}

.pagination-custom {
  position: relative;
  display: inline-block;
  position: relative;
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  margin-bottom: -8px;
}

.pagination-custom > * {
  margin-top: 8px;
}

.pagination-custom > *:not(:last-child) {
  margin-right: 8px;
}

.pagination-custom li {
  display: inline-block;
  line-height: 1;
}

.pagination-custom li a {
  display: block;
  width: auto;
  min-width: 22px;
  height: 22px;
  padding: 5px 10px;
  border: 1px solid;
  border-radius: 3px;
  font: 700 14px/14px "Ubuntu", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  vertical-align: middle;
  text-align:center;
}

.pagination-custom li a:after {
  content: '';
  height: 108%;
  width: 0;
  display: inline-block;
  vertical-align: middle;
}

.pagination-custom li a, .pagination-custom li a:active, .pagination-custom li a:focus {
  color: #000;
  background: transparent;
  border-color: #cdcdcd;
}

.pagination-custom li a:hover {
  color: #fff;
  background: #f5003d;
  border-color: #f5003d;
}

.pagination-custom li.disabled,
.pagination-custom li.active {
  pointer-events: none;
}

.pagination-custom li.active a {
  color: #fff;
  background: #f5003d;
  border-color: #f5003d;
}

.pagination-custom li.disabled a {
  color: #f9f9f9;
  background: #cdcdcd;
  border-color: #cdcdcd;
}


.mdfont ul,.mdfont ol, .mdfont li, .mdfont ol li, .mdfont ul li{list-style:disc !important; margin-left:10px; margin-top:10px;} 

.mdfont h2 {font-size:20px;}