@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

html, body {
  line-height: 1.5;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  height: 100%;
  margin: 0px;
  padding: 0px;
}
body.hidden-scrolling {
  overflow-y: hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  max-width: 1440px;
  margin: auto;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: #a71516;
}
/*header*/
.header {
  position: relative;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  padding: 15px;
}
.header-main {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-radius: 4px;
}
.header .logo {
  padding: 0 15px;
}
.header .logo a {
  font-size: 18px;
  text-transform: capitalize;
  color: #a71516;
  font-weight: 600;
}
.header .nav-menu {
  padding: 0 15px;
}
.header .menu > .menu-item {
  display: inline-block;
  margin-left: 30px;
  position: relative;
}
.header .menu > .menu-item > a {
  display: block;
  padding: 12px 0;
  font-size: 18px;
  color: #000000;
  text-transform: capitalize;
  font-weight: 600;
  transition: all 0.3s ease;
}
.header .menu > .menu-item > a .plus {
  display: inline-block;
  height: 12px;
  width: 12px;
  position: relative;
  margin-left: 5px;
  pointer-events: none;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background-color: #000000;
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after {
  background-color: #a71516;
}
.header .menu > .menu-item > a .plus:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a {
  color: #a71516;
}
.header .menu > .menu-item > .sub-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 220px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #ffffff;
  padding: 10px 0;
  border-top: 3px solid #a71516;
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 992px) {
  .header .menu > .menu-item-has-children:hover > .sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .header .menu > .menu-item-has-children:hover > a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
.header .menu > .menu-item > .sub-menu > .menu-item {
  display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a {
  display: block;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  transition: all 0.3s ease;
  text-transform: capitalize;
}
.header .open-nav-menu {
  height: 34px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header .open-nav-menu span {
  display: block;
  height: 3px;
  width: 24px;
  background-color: #000000;
  position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  box-sizing: border-box;
}
.header .open-nav-menu span:before {
  top: -7px;
}
.header .open-nav-menu span:after {
  top: 7px;
}
.header .close-nav-menu {
  height: 40px;
  width: 40px;
  background-color: #ffffff;
  margin: 0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}
.header .close-nav-menu img {
  width: 18px;
}
.header .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

/*home section*/
.home-hero {
  width: 100%;
}

.mySlides {
  display: none;
}
.mySlides img {
  vertical-align: middle;
  height: 500px;
  object-fit: cover;
}
/* Slideshow container */
.slideshow-container {
  width: 100%;
  position: relative;
  margin: auto;
}
/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 18px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active,
.dot:hover {
  background-color: #717171;
}
/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

ul.a {
  list-style-type: disc;
  list-style-position: outside;
  font-size: 18px;
  padding-left: 20px;
  margin-left: 45px;
}

li.b {
  list-style-type: circle;
  list-style-position: outside;
  font-size: 18px;
  padding-left: 10px;
  margin-left: 25px;
}

.red {
  color: #a71516;
}

.home-section {
  position: relative;
  margin: 0px auto;
  max-width: 1000px;
  columns: 2;
  column-gap: 15px;
}

.home-section3 {
  position: relative;
  margin: 0px auto;
  max-width: 1000px;
  columns: 3;
  column-gap: 15px;
}

.box {
  width: 100%;
  padding: 20px;
  margin-bottom: 10px;
  break-inside: avoid;
}
.box2 {
  width: 100%;
  padding: 20px;
  margin-bottom: 10px;
  break-inside: avoid;
}

.box3 {
  width: 100%;
  padding: 20px;
  margin-bottom: 10px;
  break-inside: avoid;
}

.box img {
  width: 100%;
  object-fit: contain;
}

.box2 img {
  width: 100%;
  object-fit: contain;
}

.box3 img {
  width: 75%;
  object-fit: contain;
}

.box h2 {
  font-size: 30px;
}

.box p {
  font-size: 18px;
}

.box2 h2 {
  font-size: 30px;
}

.box2 p {
  font-size: 18px;
}

.box3 p {
  font-size: 18px;
  text-align: right;
}

.box2 p {
  color: black;
  background-color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  margin: 50px;
  padding: 15px;
  position: absolute;
  top: 50px;
  width: 30%;
  text-align: left;
}

.mobile_only{
  display:none;
}
.desktop_only{
  display:block;
}

.home-section-wide {
  position: relative;
  max-width: 1440;
  width: 100%;
  margin: auto;
  padding: 0px 30px;
}

.home-section-wide img {
  position: relative;
  max-width: 1440;
  width: 100%;
}

.home-section-wide p {
  color: black;
  font-size: 18px;
  text-align: left;
}

.home-section2 {
  position: relative;
  max-width: 1440;
  margin: auto;
  padding: 30px;
  columns: 2;
  column-gap: 10px;
}

.red-left-box {
  border-left: 20px solid #a71516;
  padding: 15px;
  margin-bottom: 50px;
}

h1 {
  font-size: 30px;
  font-weight: 900;
}

.image-wide {
  width: 100%;
  height: 500px;
  position: relative;
  margin: 30px auto;
}

.image-wide img {
  vertical-align: middle;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.image-wide p {
  color: black;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 15px;
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  height: auto;
  width: 250px;
  text-align: left;
  font-size: 18px;
}

.image-wide2 {
  width: 65%;
  height: 500px;
  position: relative;
  margin: 30px auto;
  float: right;
}

.image-wide2 img {
  vertical-align: middle;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.image-wide2 p {
  color: black;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 15px;
  position: absolute;
  top: 70%;
  right: 80%;
  height: auto;
  width: 55%;
  text-align: left;
  font-size: 18px;
}

.image-wide3 {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 30px auto;
}

.image-wide3 img {
  vertical-align: middle;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.fragrance-desc {
  color: black;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 15px;
  position: absolute;
  margin: 0 30px;
  top: 30px;
  bottom: 30px;
  text-align: left;
  font-size: 18px;
}

.contact {
  width: 50%;
  height: 500px;
  position: relative;
  margin: 30px auto;
  float: right;
}

.contact p {
  color: black;
  background-color: rgba(255, 255, 255, 0.75);
  position: absolute;
  height: auto;
  text-align: left;
  font-size: 18px;
}

.home-section-one {
  position: relative;
  margin: 0px auto;
  max-width: 1000px;
}

h2 {
  font-size: 50px;
}

p {
  font-size: 18px;
}

.home-section-three {
  position: relative;
  margin: 0px auto;
  columns: 3;
  column-gap: 0px;
}

.box-less {
  padding-top: 50px;
  width: 100%;
  height: 500px;
  break-inside: auto;
}

.box-less img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.copyright {
  font-size: 12px;
  font-weight: 900;
  color: white;
  position: relative;
  margin: 0px auto;
  max-width: 1000px;
}

.small{
  width: 500px;
  padding: 15px;
}

/* responsive */

@media (max-width: 991px) {
  .header .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  .header .nav-menu {
    position: fixed;
    right: -500px;
    visibility: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    overflow-y: auto;
    background-color: #222222;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
  }
  .header .nav-menu.open {
    visibility: visible;
    right: 0px;
  }
  .header .menu > .menu-item {
    display: block;
    margin: 0;
  }
  .header .menu > .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .menu > .menu-item > a {
    color: #ffffff;
    padding: 12px 15px;
    border-bottom: 1px solid #333333;
    background-color: #222222;
  }
  .header .menu > .menu-item:first-child > a {
    border-top: 1px solid #333333;
  }
  .header .menu > .menu-item > a .plus:before,
  .header .menu > .menu-item > a .plus:after {
    background-color: #ffffff;
  }
  .header .menu > .menu-item-has-children.active > a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .header .menu > .menu-item > .sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top: auto;
    max-height: 0;
    overflow: hidden;
  }
  .header .menu > .menu-item > .sub-menu > .menu-item > a {
    padding: 12px 45px;
    color: #ffffff;
    border-bottom: 1px solid #333333;
    background-color: #222222;
  }
  .header .close-nav-menu,
  .header .open-nav-menu {
    display: flex;
  }

  .home-section {
    position: relative;
    margin: 0px auto;
    width: 100%;
    columns: 1;
    column-gap: 10px;
    padding: 0px;
  }

  .home-section3 {
    position: relative;
    margin: 0px auto;
    width: 100%;
    columns: 1;
    column-gap: 10px;
    padding: 0px;
  }

  .home-section2 {
    position: relative;
    margin: 0px auto;
    width: 100%;
    columns: 1;
    column-gap: 10px;
    padding: 0px;
  }

  .home-section-wide {
    position: relative;
    margin: 0px auto;
    width: 100%;
    padding: 15px;
  }

  .home-section-one {
    position: relative;
    margin: 0px auto;
    width: 100%;
    padding: 15px;
  }

  .box {
    width: 100%;
    padding: 15px;
    margin: 0px;
    break-inside: avoid;
  }

  .box img {
    width: 100%;
    object-fit: contain;
  }

  .box h2 {
    font-size: 24px;
  }

  .box p {
    font-size: 18px;
  }

  .box2 {
    width: 100%;
    padding: 15px;
    margin: 0px;
    break-inside: avoid;
  }

  .box3 {
    width: 100%;
    padding: 15px;
    margin: 0px;
    break-inside: avoid;
  }

  .box2 img {
    width: 100%;
    object-fit: contain;
  }

  .box3 img {
    width: 100%;
    object-fit: contain;
  }

  .box2 h2 {
    font-size: 50px;
  }

  .box2 p {
    font-size: 18px;
    margin: 0px;
    width: 75%;
  }

  .box3 p {
    font-size: 18px;
    text-align: left;
  }

  .image-wide2 {
    width: 100%;
    height: 500px;
    position: relative;
    margin: 15px auto;
    float: right;
  }

  .image-wide2 p {
    color: black;
    background-color: rgba(255, 255, 255, 0.75);
    padding: 15px;
    position: absolute;
    bottom: 0%;
    right: 0%;
    height: auto;
    width: 100%;
    text-align: left;
    font-size: 18px;
  }

  .copywright{
    margin-left: 15px;
  }

  .contact {
    width: 100%;
    position: relative;
    margin: auto;
    float: left;
  }

  .image-wide3 {
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px;
  }

  .image-wide3 img {
    vertical-align: middle;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .fragrance-desc {
    color: black;
    position: relative;
    padding: 0px;
    margin: 0px;
  }

  .fragrance-desc p{
font-size: 18px;
padding: 0px;
  }

  .image-wide p {
    color: black;
    background-color: rgba(255, 255, 255, 0.75);
    padding: 15px;
    position: absolute;
    left: 0px;
    top: 200px;
    width: 75%;
    height: auto;
    text-align: left;
    font-size: 18px;
  }
  
  h1{
    font-size: 18px;
  }

  h2{
    font-size: 24px;
  }

  p{
    font-size: 18px;
  }

  ul.a {
    list-style-type: disc;
    list-style-position: outside;
    font-size: 18px;
    padding-left: 20px;
    margin-left: 20px;
  }
  
  li.b {
    list-style-type: circle;
    list-style-position: outside;
    font-size: 18px;
    padding-left: 10px;
    margin-left: 18px;
  }

  .small
  {
    width: 80%;
    padding: 15px;
  }

  .contact p {
    font-size: 18px;
  }

  .red-left-box {
    border-left: 5px solid #a71516;
    padding: 0px 15px;
    margin-bottom: 25px;
  }

  .mobile_only{
    display:block;
  }

  .desktop_only{
    display:none;
  }
}