@import url("https://fonts.googleapis.com/css2?family=Domine:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");
body {
  font-size: 16px;
  line-height: 24px;
  color: #363636;
  font-family: "Domine", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}
.btn-primary.focus,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}
a {
  color: #00a5d0;
}
a:hover {
  color: #00a5d0;
}
a:focus {
  outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  /*font-family: 'Raleway', sans-serif;*/
  padding: 0;
  margin: 0 0 20px 0;
}
h1 {
  font-size: 43px;
  line-height: 47px;
}
h2 {
  font-size: 32px;
  line-height: 36px;
}
h3 {
  font-size: 26px;
  line-height: 30px;
}
h4 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 10px;
}
h5 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}
h6 {
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 10px;
}
p {
  margin: 0 0 20px 0;
}
p:last-child {
  margin-bottom: 0;
}
ol {
  padding-left: 20px;
}
ol li {
  margin-bottom: 5px;
}

ul {
  padding: 0;
}
ul li {
  padding: 0;
  padding-left: 20px;
  position: relative;
  list-style: none;
  margin-bottom: 5px;
}

ul li:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #49d4ad;
  position: absolute;
  top: 9px;
  left: 0;
}
a {
  transition: 0.3s all ease-in-out 0s;
  -webkit-transition: 0.3s all ease-in-out 0s;
  -moz-transition: 0.3s all ease-in-out 0s;
}
.dropdown-toggle:focus {
  outline: none;
}
mark {
  color: #4dbdf4;
  font-weight: 700;
  background: transparent;
  padding: 0;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
.form-control {
  padding: 5px 10px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: 2px solid #656664;
  border-radius: 0;
}

select {
  background: url(images/down-arrow.svg) right 10px center no-repeat;
  background-size: 20px;
}
select[multiple] {
  background: transparent;
  min-height: 85px;
}
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: pink;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: pink;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: pink;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: pink;
}
button,
input[type="button"],
input[type="submit"] {
  text-align: center;
  padding: 8px 20px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #fff;
  background: #82bc10;
  border: 2px solid #82bc10;
  transition: 0.3s all ease-in-out 0s;
  -webkit-transition: 0.3s all ease-in-out 0s;
  -moz-transition: 0.3s all ease-in-out 0s;
  cursor: pointer;
  display: inline-block;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
  background: #fff;
  color: #82bc10;
  outline: none;
  text-decoration: none;
}
/* .sticky {
  position: fixed;
  top: 0;
  width: 100%;
} */

/*checkbox open*/

.check-pro {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.check-pro input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.check-pro:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check-pro input:checked ~ .checkmark {
  background-color: #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.check-pro input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.check-pro .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Create a custom radio button */
/*checkbox end*/

/*radio open*/
.radio-pro {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radio-pro input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.radio-pro .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radio-pro:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-pro input:checked ~ .checkmark {
  background-color: #2196f3;
}

/* Show the indicator (dot/circle) when checked */
.radio-pro input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-pro .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
/*radio end*/
.navbar-nav li:before {
  display: none;
}

/*file upload open*/
.customfile_input {
  height: 31px;
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
}
.customfile_label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  padding-left: 215px;
  line-height: 25px;
}
.customfile_label::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 197px;
  background: none;
  border: 2px solid #e9c04a;
  display: block;
  content: "Choose File";
  height: 100%;
  text-align: center;
  line-height: 27px;
  cursor: pointer;
  font-family: "CenturyGothic";
  font-size: 16px;
  color: #e9c04a;
  text-transform: uppercase;
}
.customfile_inputin:hover + .customfile_label::after {
  background: #e9c04a;
  color: #2a597f;
}
.customfile_inputin {
  position: relative;
  z-index: 2;
  width: auto;
  margin: 0;
  opacity: 0;
  height: 100%;
  cursor: pointer;
}
.imageupload_inp {
  padding-top: 10px;
  width: 100%;
}
/*file upload end*/

/*images-check box open*/
.support_forminptradio {
  position: relative;
}

.support_forminptradio label {
  margin: 0;
  position: relative;
  display: inline-block;
}
.support_forminptradio_label {
  padding-left: 34px;
}
.support_forminptradio input[type="checkbox"] {
  visibility: hidden;
  display: none;
}
.support_forminptradio
  input[type="checkbox"]
  + .support_forminptradio_label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  background: url(images/chk2.png) no-repeat center center;
  cursor: pointer;
}
.support_forminptradio
  input[type="checkbox"]:checked
  + .support_forminptradio_label::before {
  background-image: url(images/chk1.png);
}
/*images-check box end*/

/*images-radio box open*/

.support_forminptradio input[type="radio"] {
  visibility: hidden;
  display: none;
}
.support_forminptradio
  input[type="radio"]
  + .support_forminptradio_label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  background: url(images/red1.png) no-repeat center center;
  cursor: pointer;
}
.support_forminptradio
  input[type="radio"]:checked
  + .support_forminptradio_label::before {
  background-image: url(images/red2.png);
}
/*images-radio box end*/

/*back to top open*/
#return-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;

  background: url(images/up-arrow.png) center no-repeat #588752;
  background-size: 25px;
  width: 52px;
  height: 52px;
  display: block;
  text-decoration: none;
  z-index: 999;
  border-radius: 0;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#return-to-top:hover {
  background: url(images/up-arrow.png) center no-repeat #000;
  background-size: 25px;
}
#return-to-top:hover i {
  color: #fff;
  top: 5px;
}

/*back to top end*/

/*wordpress menu open*/

.navbar-brand {
  padding: 0;
  margin: 0;
  width: 170px;
  display: inline-block;
}

.navbar {
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}

.navbar-nav li {
  position: relative;
  list-style: none;
}

.navbar-nav > li {
  margin: 0 15px;
  padding: 20px 0;
  position: relative;
}

.navbar-nav > li:last-child {
  margin-right: 0;
}

.navbar-nav > li:first-child {
  margin-left: 0;
}

.navbar-nav > li > a {
  color: #000;
  font-size: 16px;
  line-height: 1.2;
  position: relative;
  font-weight: normal;
}

.navbar-nav > li > a:after {
  /* content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #3B61DC;
  opacity: 0;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; */
}

.navbar-nav > li.current-menu-item > a,
.navbar-nav > li > a:hover,
.navbar-nav > li.menu-item-has-children:hover > a {
  color: #3b61dc;
}

.navbar-nav > li.current-menu-item > a:after,
.navbar-nav > li > a:hover:after,
.navbar-nav > li.menu-item-has-children:hover > a:after {
  width: 100%;
}

/* navbar submenu*/

.sub-menu {
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  width: 140px;
  padding: 0;
}

.sub-menu > li > a {
  color: #000;
  display: block;
  width: 100%;
  padding: 6px 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.sub-menu > li {
  width: 100%;
  display: block;
}

.sub-menu > li > a:hover,
.sub-menu > li.menu-item-has-children:hover > a,
.sub-menu > li.current-menu-item > a {
  background: #eab71e;
  color: #fff;
}

.navbar-nav > li:last-child > .sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}

/* 2nd level submenu */
.navbar-nav > li > .sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

/* for push-menu */
.navbar-collapse .navbar-toggler {
  display: none;
}
#navoverlay {
  display: none;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  margin: 0;
  padding: 0 !important;
  z-index: 99;
  -webkit-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
}
/* for push-menu end*/

.navbar {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*navber*/
.main-head .navbar-brand {
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.main-head {
  position: relative;
  left: 0;
  right: 0;
  z-index: 10;
}
.indexpage .main-head {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
}
.indexpage .main-head::before {
  content: none;
}
.main-head .navbar {
  padding: 50px 0 76px 0;
}
.main-head .navbar-nav {
  align-items: center;
  margin: auto;
}
.main-head .navbar-nav li {
  margin: 0 30px;
}
.main-head .navbar-nav li:nth-child(3) {
  margin-right: 190px;
}
.main-head .navbar-nav li:nth-child(4) {
  margin-left: 190px;
}
.main-head .navbar-nav li a {
  font-size: 16px;
  font-family: "Domine", serif;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
}
.main-head .navbar-nav li.current-menu-item a {
  color: #deba8b;
}
.main-head .navbar-nav li a:hover {
  color: #deba8b;
}
.buybutndiv {
  margin-right: 30px;
}
.buybutn {
  text-decoration: none;
  background-color: #deba8b;
  border: 1px solid #deba8b;
  text-transform: uppercase;
  padding: 12px 41px;
  font-size: 18px;
  color: #000000;
}
.buybutn:hover {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid #ffffff;
  color: #ffffff;
}
.topicon ul {
  display: flex;
  margin-bottom: 0;
}
.topicon ul li::before {
  content: none;
}
.topicon ul li {
  padding-left: 15px;
}
.topicon ul li:first-child {
  padding-left: 0;
}
.topicon ul li a img {
  filter: brightness(0) invert(1);
  transition: 0.5s;
}
.topicon ul li a:hover img {
  filter: initial;
}
.main-head {
  width: 100%;
  background-size: cover;
}
.main-head {
  position: relative;
}
.main-head::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.91) 0%,
    rgba(0, 0, 0, 0.2) 431.94%
  );
}
.mblogo {
  display: none;
}

/*search*/
.searchtoggle {
  position: absolute;
  width: 250px;
  right: 0;
  top: 45px;
  z-index: 2;
  display: none;
}
.searchformdiv input[type="text"].searchinput {
  border: 1px solid #eeeded;
  padding: 12px 50px 12px 10px;
  color: #000000;
  width: 100%;
  background-color: #eeeded;
}
.searchformdiv input[type="text"].searchinput:focus-visible {
  outline: 0;
}
.searchformdiv input[type="submit"] {
  position: absolute;
  right: 5px;
  border-radius: 100%;
  display: inline-block;
  width: 40px;
  border: none;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  height: 40px;
  background: url(images/searchsvg.svg) center no-repeat;
}
.searchicon {
  cursor: pointer;
}
.searchinput::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(0, 0, 0, 0.6);
}

.searchinput:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(0, 0, 0, 0.6);
}

.searchinput::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgba(0, 0, 0, 0.6);
}
/*navber*/

/*header-all-commn*/
.main-head-other-page {
  position: relative;
}

.main-head-other-page.cap-header {
  background: url("images/caphdr.jpg") no-repeat;
  width: 100%;
  background-size: cover;
}
.main-head-other-page::before {
  position: absolute;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.91) 0%,
    rgba(0, 0, 0, 0.2) 431.94%
  );
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.main-head-other-page .navbar {
  padding: 50px 0;
}

.entermainpage {
  background-attachment: fixed !important;
  background-size: cover !important;
  position: fixed;
  width: 100%;
  height: 100vh;
}
.entermainpage img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.entirepage {
  padding: 5px 0 25px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  justify-content: center;
  min-height: 100vh;
}

.entirebox {
  text-align: center;
}
.entirebox figure.entirebottle-imgbox {
  margin-bottom: 25px;
}
.entirebox figure {
  margin-bottom: 0;
}
.entiretext h5 {
  font-size: 27px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.5;
  font-family: "PT Serif", serif;
  color: #ffffff;
}
.entire-butnbox .entire-butn {
  display: inline-block;
  font-weight: 400;
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid #ffe6e6;
  font-size: 16px;
  text-decoration: none;
  color: #ffffff;
  line-height: 30px;
  width: 90px;
  height: 30px;
}
.entire-butn:hover {
  background: #deba8b;
  color: #ffffff;
  border: 1px solid #deba8b;
}
/*banner*/
.bannerpagesection {
  width: 100%;
  height: 754px;
  position: relative;
}
.bannerpagesection::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.91) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
}
.video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*banner*/

.fullwidth {
  padding: 0;
}
.cmngap {
  padding: 100px 0;
}
.cmnbutn.d-cmnbutn {
  background: #fef6df;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.cmnbutn:hover {
  background-color: #deba8b;
  border: 1px solid #deba8b;
  color: #ffffff;
}
.cmnbutn.d-cmnbutn:hover {
  background-color: #deba8b;
  border: 1px solid #deba8b;
  color: #ffffff;
}
/*elementalsec*/
.elementalsec {
  position: relative;
}
.elementalimg-mainbox {
  position: relative;
  height: 100%;
}
.elementalimgbox {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}
.elementalimgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pageheading {
  margin-bottom: 30px;
}
.pageheading h2 {
  font-weight: 400;
  font-size: 38px;
  font-family: "Domine", serif;
  color: #000000;
  line-height: 1.2;
  text-transform: uppercase;
}
.floatboxcont {
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 38px;
}

.fullwidthmaincont {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 110px 50px 168px;
}
.elementalbottlebox {
  position: absolute;
  right: -116px;
  top: 52%;
  margin-bottom: 0;
  transform: translateY(-50%);
}
.floatboxcont p {
  font-size: 16px;
  color: #0c0c0c;
}
/*elementalsec*/
/*spritzsec*/
.spritz-box {
  text-align: center;
}
.cmnbutn {
  display: inline-block;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 9px 24px;
  text-decoration: none;
  transition: 0.5s;
}
.spritzsec {
  background-color: #fef6df;
}
.spritzcont {
  margin-top: 30px;
}
.spritzcont p {
  font-size: 24px;
  color: #000000;
  /* text-transform: capitalize; */
}
/*spritzsec*/
/*mystixmixessec*/
.mystixmixes-card {
  text-align: center;
  margin-top: 30px;
}
.mystixmix-imgbox {
  width: 100%;
  height: 340px;
  margin-bottom: 40px;
}
.mystixmix-imgbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.mystixmixessec {
  background-color: #f4f3ef;
}
.mystixmixessec .pageheading {
  text-align: center;
}
.mystixmixes-card h4 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 25px;
  letter-spacing: 0.12em;
  color: #000000;
  margin-bottom: 20px;
}
.mystixmixes-card .cmnbutn.d-cmnbutn {
  background-color: #f4f3ef;
}
.mystixmixes-card .cmnbutn.d-cmnbutn:hover {
  background-color: #deba8b;
  border: 1px solid #deba8b;
  color: #ffffff;
}
/*mystixmixessec*/
/*ozean-creatsec*/
.ozean-creatsec .pageheading {
  text-align: center;
  max-width: 620px;
  margin: auto;
  margin-bottom: 40px;
}
.ozean-creatsec .pageheading h2 {
  color: #ffffff;
}
.ozean-creatsec.cmngap {
  padding: 120px 0;
}
.ozean-creatsec {
  background-color: #191f29;
  position: relative;
}
.ozean-creatsec .container {
  position: relative;
  z-index: 1;
}
.ozean-creat-card {
  text-align: center;
  margin-top: 30px;
}
.ozean-creatimgbox {
  margin-bottom: 70px;
}
.ozean-creathd {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 40px;
  position: relative;
  transition: 0.5s;
  text-transform: uppercase;
}
.ozean-creathd::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #ffffff;
}
.ozean-creathd:after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  left: 0;
  bottom: 0;
  transition: 0.5s;
  background-color: #deba8b;
}
.ozean-creathd:hover {
  color: #deba8b;
}
.ozean-creathd:hover::after {
  width: 100%;
}
.biglogoone {
  position: absolute;
  bottom: 0;
  left: 0;
}
.biglogotwo {
  position: absolute;
  top: 0;
  right: 0;
}
/*ozean-creatsec*/
/*prosenjit-css-start*/
.ensuring-goods-home-sec {
  position: relative;
  padding-top: 100px;
}

.page-section-title {
  position: relative;
  margin-bottom: 80px;
}
.page-section-title h2 {
  font-size: 38px;
  font-weight: 400;
  color: #000000;
  /* font-family: 'Crimson Text', serif; */
  text-align: center;
  text-transform: uppercase;
}

.clmn-ensrgn-lft {
  padding: 0;
  position: relative;
}
.clmn-ensrgn-lft figure {
  height: 100%;
  width: 100%;
  overflow: hidden;
  margin: 0;
}
.clmn-ensrgn-lft figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.clmn-ensrgn-right {
  display: flex;
  /* align-items: center; */
  justify-content: center;
  flex-direction: column;
  padding: 0 100px 0 110px;
}
.ensurng-top-sec {
  position: relative;
}
.ensurgn-frst-txt {
  padding: 70px 35px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  text-align: center;
  /* margin: 0 auto; */
  font-size: 16px;
  color: #000000;
}
.ensurgn-frst-txt h3 {
  text-align: center;
  text-transform: uppercase;
  font-size: 28px;
  color: #000000;
  line-height: 1.3;
}
.clmn-ensrgn-right-tw {
  display: flex;
  /* align-items: center; */
  justify-content: center;
  flex-direction: column;
  padding-top: 60px;
  padding-bottom: 60px;
}

.clmn-ensrgn-lft-tw {
  padding: 0;
  position: relative;
}
.clmn-ensrgn-lft-tw figure {
  height: 100%;
  width: 100%;
  overflow: hidden;
  margin: 0;
}
.clmn-ensrgn-lft-tw figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clmn-ensrgn-right-tw {
  padding: 0 110px 0 100px;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  flex-direction: column;
  padding-top: 60px;
  padding-bottom: 60px;
}
.ensrgn-extra-img {
  position: absolute;
  bottom: 0;
  left: 60px;
}
.ensrgn-extra-img figure {
  margin: 0;
}
.ensurgn-frst-txt i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
}
.ensurgn-frst-txt.two {
  padding: 18px 30px 40px 30px;
}

/*bottle-benift-sec*/

.bottle-benift-sec {
  position: relative;
  padding: 120px 0;
}
.bottle-benift-sec::before {
  position: absolute;
  content: "";
  background: rgba(1, 23, 30, 0.7);
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.bottles-benefits-innr {
  padding: 48px 10px 48px 48px;
  border: 1px solid #ffffff;
  position: relative;
  z-index: 1;
}
.bottles-benefits-innr h3 {
  color: #ffffff;
  font-size: 38px;
  text-transform: uppercase;
  line-height: 1.1;
}
.bottles-benefits-innr ul {
  padding: 0;
  margin: 0;
}
.bottles-benefits-innr ul li {
  position: relative;
  padding-left: 65px;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 16px;
}

.bottles-benefits-innr ul li::before {
  background: #ffffff;
  height: 1px;
  width: 43px;
}
.wrap-bottles-benefits-innr {
  position: relative;
  width: 50%;
  margin: 0 auto 0 0;
  padding-right: 110px;
  padding-left: 100px;
}
.bottle-benift-sec .row {
  align-items: center;
}
.bottles-bnfitimgbox {
  text-align: center;
}

/*ozean-last-main-hm-section*/

.ozean-last-main-hm-sec {
  position: relative;
  padding: 90px 0;
}
.ozean-last-main-hm-sec::before {
  position: absolute;
  content: "";
  background: #191f29;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.ozn-lft-txt-hm-lst {
  margin-right: auto;
}
.ozn-rght-img-hm-lst {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  height: 100%;
}
.ozn-rght-img-hm-lst figure {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.ozn-rght-img-hm-lst figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.innr-wrap-ozn-lst-dtlts {
  padding-right: 120px;
  text-align: center;
  position: relative;
  z-index: 1;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #ffffff;
}
.innr-wrap-ozn-lst-dtlts p {
  max-width: 441px;
  margin: 0 auto 20px auto;
}
.innr-wrap-ozn-lst-dtlts i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 20px;
}
.innr-wrap-ozn-lst-dtlts h4 {
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: "Crimson Text", serif;
}
.innr-wrap-ozn-lst-dtlts a {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 12px 40px;
  text-decoration: none;
  transition: 0.5s;
}
.innr-wrap-ozn-lst-dtlts a:hover {
  background: #deba8b;
  color: #ffffff;
  border: 1px solid #deba8b;
}
.ozn-btl-img-extra {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  z-index: 2;
}
.ozn-btl-img-extra figure {
  margin: 0;
}
.home-intragram-sec {
  position: relative;
  padding-top: 90px;
}
.page-section-title-tw {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 75px;
}
.page-section-title-tw i {
  display: flex;
  align-items: center;
  padding-right: 14px;
}
.page-section-title-tw h3 {
  font-size: 38px;
  color: #000000;
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
}
.intagram-img-rw {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px -70px -5px;
  z-index: 9;
}
.sngl-inta-img-clm {
  width: 20%;
  padding: 0 5px;
}
.inner-img-wrap-intra {
  position: relative;
}
.inner-img-wrap-intra a {
  display: inline-block;
  width: 100%;
  transition: 0.5s;
}
.inner-img-wrap-intra a figure {
  width: 100%;
  margin: 0;
  overflow: hidden;
  height: 100%;
}
.inner-img-wrap-intra a figure img {
  width: 100%;
  transition: 0.5s;
  height: 100%;
}
.inner-img-wrap-intra a:hover img {
  transform: scale(1.1);
}

/*quality-page*/

/*footer*/
.footer {
  position: relative;
  padding: 110px 0 75px 0;
  background: #191f29;
}
.footer-rw {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px 50px -10px;
}
.footer-clm-one {
  width: 25%;
  padding: 0 10px;
}
.footer-clm-two {
  width: 22%;
  padding: 0 10px;
}
.footer-clm-three {
  width: 33%;
  padding: 0 10px;
}
.footer-clm-four {
  width: 20%;
  padding: 0 10px;
}

.footer-logo {
  max-width: 180px;
  margin-right: auto;
}
.footer-logo a {
  width: 100%;
  display: inline-block;
}
.footer-links-sec {
  padding-top: 40px;
}
.footer-links-sec h4 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.footer-links-sec ul {
  padding: 0;
  margin: 0;
}
.footer-links-sec ul li {
  list-style: none;
  padding: 0;
  margin-bottom: 8px;
}
.footer-links-sec ul li:last-child {
  margin: 0;
}
.footer-links-sec ul li a {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  transition: 0.5s;
}
.footer-links-sec ul li::before {
  display: none;
}
.footer-links-sec ul li a:hover {
  color: #deba8b;
}
.footer-links-sec ul li.footerlink a {
  color: #deba8b;
}
.footer-links-sec .fttr-cnt-dtls li {
  display: block;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}
.footer-links-sec .fttr-cnt-dtls li span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
}
.footer-links-sec .fttr-cnt-dtls li .addrs {
  margin-bottom: 9px;
}
.copyright-section {
  position: relative;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}
.copyright-section a {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  color: #ffffff;
  transform: 0.5s;
}
.copyright-section a:hover {
  color: #deba8b;
}
/*footer*/

/*31-05-22-innr-page*/

/*cap-page-css*/

.cap-page-top-sec {
  position: relative;
  padding: 110px 0;
}
.cap-page-top-sec::before {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, #bc8660 0%, #e0be8e 50%, #d29870 100%);
  width: 45%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.cap-page-top-rw {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  position: relative;
  align-items: center;
}
.cap-main-top-clm-one {
  width: 55%;
  padding: 0 10px;
}
.innr-cap-main-img {
  position: relative;
}
.innr-cap-main-img figure {
  width: 100%;
  margin: 0;
}
.innr-cap-main-img figure img {
  width: 100%;
}
.cap-main-top-clm-two {
  width: 45%;
  padding: 0 10px;
}
.cap-top-innr-dtls {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 56px 36px;
}
.cap-top-innr-dtls h3 {
  font-size: 38px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 26px;
  font-family: "Crimson Text", serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cap-top-innr-dtls p {
  font-family: "Crimson Text", serif;
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.cap-top-innr-dtls a {
  font-family: "Crimson Text", serif;
  font-size: 23px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000000;
  font-weight: 400;
  display: inline-block;
  padding: 24px 60px;
  background: #deba8b;
  text-decoration: none;
  transition: 0.5s;
}
.cap-top-innr-dtls a:hover {
  background: #191f29;
  color: #deba8b;
}

.ord-rght-page-fixd-btn {
  position: fixed;
  top: 42%;
  right: -155px;
  z-index: 999;
  transform: rotate(-90deg) translateY(-50%);
}
.ord-rght-page-fixd-btn a {
  display: inline-block;
  text-decoration: none;
  color: #000000;
  font-size: 25px;
  font-weight: 700;
  font-family: "Crimson Text", serif;
  padding: 18px 70px;
  background: #deba8b;
  text-transform: uppercase;
}

/*quality-page*/
.custom-new-container {
  max-width: 100%;
  padding: 0 90px;
}
.quality-frst-txt {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  padding: 38px 50px;
}
.quality-all-inr-info {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
.quality-all-inr-info i {
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 60px;
}
.quality-all-inr-info h3 {
  color: #000000;
  font-size: 38px;
  font-weight: 400;
  font-family: "Crimson Text", serif;
  margin: 0;
  position: relative;
  display: block;
  padding: 0 18px;
  text-transform: uppercase;
}
.quality-all-inr-info h3::before {
  position: absolute;
  content: "";
  background: #000000;
  width: 100%;
  height: 1px;
  bottom: -25px;
  left: 0;
}
.quality-frst-txt p {
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  font-family: "Crimson Text", serif;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
.clmn-quality-right {
  padding: 30px 100px 30px 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clmn-quality-right-tw {
  padding: 30px 70px 30px 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quality-main-sec {
  position: relative;
}
.quality-all-inr-info h3 {
  letter-spacing: 0.1em;
}
.quality-rw:nth-child(even) {
  flex-direction: row-reverse;
}

/*crew page*/
.crewimg-mainbox {
  height: 100%;
}
.crewimgbox {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}
.crewimgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.crewfullwidth {
  padding: 88px 100px 88px 110px;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.crew-cont {
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 38px;
}
.crew-cont p {
  font-size: 20px;
  font-weight: 400;
  font-family: "Crimson Text", serif;
  letter-spacing: 0.1em;
  color: #000000;
  line-height: 1.8;
}
/*crew page*/

/*product-page*/
.product-main-sec {
  position: relative;
  padding: 100px 0 0 0;
}
.innr-wrap-product-dtls {
  position: relative;
  padding-top: 36px;
}
.top-inr-pdt-img-dtls {
  position: relative;
}
.top-inr-pdt-img-dtls .prodt-img-lnk {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 36px auto;
  height: 257px;
  transition: 0.5s;
}
.top-inr-pdt-img-dtls .tw-lnk {
  height: inherit;
  margin-bottom: 0;
}
.top-inr-pdt-img-dtls .pdt-img-lnk-wrap {
  align-items: center;
  justify-content: center;
  display: flex;
  height: 257px;
  margin-bottom: 36px;
}
.top-inr-pdt-img-dtls .pdt-img-lnk-wrap .prodt-img-lnk figure {
  height: initial;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-inr-pdt-img-dtls .pdt-img-lnk-wrap .prodt-img-lnk figure img {
  height: inherit;
}
.top-inr-pdt-img-dtls .prodt-img-lnk figure {
  margin: 0;
  height: 100%;
}
.top-inr-pdt-img-dtls .prodt-img-lnk figure img {
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
.top-inr-pdt-img-dtls .prodt-img-lnk:hover img {
  opacity: 0.8;
}
.top-inr-pdt-img-dtls h4 {
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  font-family: "Crimson Text", serif;
  margin: 0;
}
.top-inr-pdt-img-dtls h4 a {
  display: inline-block;
  color: #000000;
  text-decoration: none;
  transition: 0.5s;
}
.top-inr-pdt-img-dtls h4 a:hover {
  color: #deba8b;
}
.top-inr-pdt-img-dtls span {
  display: block;
  text-align: center;
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  font-family: "Crimson Text", serif;
  margin-bottom: 15px;
}
.innr-wrap-product-dtls .buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 184px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #000000;
  color: #000000;
  font-size: 15px;
  font-weight: 400;
  font-family: "Crimson Text", serif;
  padding: 10px 0;
  margin: 0 auto 18px auto;
  transition: 0.5s;
}
.innr-wrap-product-dtls .buy-btn:hover {
  background: #deba8b;
  border: 1px solid #deba8b;
  color: #ffffff;
}
.prdt-last-icn {
  position: relative;
}
.prdt-last-icn ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0 auto;
  max-width: 146px;
}
.prdt-last-icn ul li {
  position: relative;
  padding: 0 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33.33%;
  flex-wrap: wrap;
}
.prdt-last-icn ul li::before {
  position: absolute;
  content: none;
  background: url("images/doctpd.svg") no-repeat;
  width: 4px;
  height: 10px;
  background-size: 4px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: inherit;
}
.prdt-last-icn ul li:last-child::before {
  display: none;
}
.prdt-last-icn ul li i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.prdt-last-icn .extra-icn-pdt {
  margin-bottom: 5px;
}
.pdt-thrt-itm-lst {
  position: relative;
}
.pdt-thrt-itm-lst span {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 17px;
  font-weight: 400;
  color: #000000;
  max-width: 184px;
  margin: 0 auto;
}
.pdt-thrt-itm-lst span::before {
  position: absolute;
  content: "";
  background: #000000;
  width: 45%;
  height: 0.5px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.pdt-thrt-itm-lst span::after {
  position: absolute;
  content: "";
  background: #000000;
  width: 45%;
  height: 0.5px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.top-price-offer {
  position: absolute;
  top: 0;
  right: 0;
}
.top-price-offer span {
  display: block;
  background: #deba8b;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  font-family: "Crimson Text", serif;
  padding: 2px 11px;
}
.prdt-last-icn p {
  max-width: 190px;
  margin: 0 auto;
  text-align: center;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.12em;
  /* text-transform: capitalize; */
  font-family: "Crimson Text", serif;
}
.ord-rght-page-fixd-btn a:hover {
  background: #191f29;
  color: #deba8b;
}
.product-page-title {
  position: relative;
  text-align: center;
  margin-bottom: 45px;
}
.product-page-title h3 {
  font-weight: 400;
  font-size: 38px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  font-family: "Crimson Text", serif;
  margin: 0;
}
/*product page*/
/*contact page*/
.contactpage .main-head {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
}
.contactpage .main-head::before {
  background: transparent;
}
.contactbnnsec {
  position: relative;
  height: 755px;
}
.contactbnnsec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contactbnnsec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.2) 100%);
}
.contactbannercover {
  position: absolute;
  width: 100%;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contactbnn-info {
  text-align: center;
  color: #ffffff;
  font-family: "Crimson Text", serif;
}
.contactbnn-info h2 {
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 44px;
  text-transform: uppercase;
  margin-bottom: 35px;
}
.contactbnn-info p {
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 15px;
}
.contactbnn-info h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 15px;
}

.contactmail {
  font-size: 22px;
  text-transform: lowercase;
  color: #ffffff;
  text-decoration: none;
}
.contactmail:hover {
  color: #deba8b;
}
.contactbutndiv {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contactbnn-butn {
  border: 1px solid #ffffff;
  background-color: rgba(0, 0, 0, 0.3);
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 48px;
  margin-top: 30px;
}
.contactbnn-butn:hover {
  background-color: #deba8b;
  border: 1px solid #deba8b;
  color: #ffffff;
}
.contactform .form-control {
  background-color: #eeeded;
  border: 1px solid #eeeded;
  font-size: 20px;
  color: #000000;
  height: 59px;
  padding: 18px 14px;
}
.contactform {
  margin-top: 40px;
}
.contactform .form-control:focus {
  box-shadow: none;
  border: 1px solid #deba8b;
}
.contactform textarea.form-control {
  height: auto;
  min-height: 139px;
}
.contactform .form-group {
  margin-top: 22px;
}

.contactformsec .pageheading {
  text-align: center;
}
.contactformsec .pageheading h2 {
  font-family: "Crimson Text", serif;
}
input[type="submit"].submitbutn {
  width: 100%;
  padding: 16.5px 25px;
  text-transform: uppercase;
  color: #000000;
  font-size: 19px;
  background-color: #deba8b;
  border: 1px solid#DEBA8B;
  transition: 0.5s;
}
input[type="submit"].submitbutn:hover {
  background-color: #000000;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.contactform .form-control::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000000;
  font-size: 19px;
}

.contactform .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #000000;
  font-size: 19px;
}

.contactform .form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #000000;
  font-size: 19px;
}
/*contact page*/
/*cocktail*/
.cocktailmainimg {
  /* position: relative; */
  padding: 0;
}
.cocktail-row {
  /* align-items: center; */
  padding-top: 100px;
}
.cocktail-row:nth-child(even) {
  flex-direction: row-reverse;
}
.cocktailimgbox:before {
  content: "";
  background-image: url(images/cocktailbg.png);
  left: 0;
  width: 100%;
  top: auto;
  z-index: -1;
  bottom: 5%;
  height: 463px;
  position: absolute;
  background-size: cover;
}
.cocktailimgbox {
  text-align: center;
  position: relative;
}
.cocktailimgbox img {
  max-width: 100%;
  max-height: 100%;
}
.cocktailmaincont {
  padding: 0 100px 0 100px;
}
.cocktail-cont {
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 38px 58px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-family: "Crimson Text", serif;
}
.cocktail-cont .pageheading {
  margin-bottom: 30px;
}
.ingadientshd {
  margin-bottom: 18px;
}
.ingadientshd h4 {
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 0.12em;
}
.ingadientshd h4::before {
  content: "";
  background-color: #deba8b;
  width: 221px;
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cocktail-cont .pageheading h2 {
  margin-bottom: 5px;
  letter-spacing: 0.1em;
}
.ingradientslist li {
  font-size: 20px;
  text-transform: capitalize;
  color: #0c0c0c;
  padding-left: 0;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.ingradientslist li::before {
  content: none;
  padding-left: 0;
}
.processlist {
  list-style-type: decimal-leading-zero;
  padding-left: 30px;
}
.processlist li {
  counter-increment: step-counter;
  font-size: 20px;
  color: #0c0c0c;
  padding-left: 10px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.processlist li:last-child {
  margin-bottom: 0;
}
.processlist li::marker {
  color: #d29870;
  font-weight: 700;
  font-style: italic;
}
.cocktailimgbox {
  margin-bottom: 0;
}
/* CSS Modification 13.10.22 */
.banner_sec {
  min-height: 190px;
  position: relative;
}
.banner_sec::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.91) 0%,
    rgba(0, 0, 0, 0.2) 431.94%
  );
}
.main-head .searchtoggle .probox {
  height: 50px !important;
  font-family: "Domine", serif !important;
  color: #000000 !important;
  background: #eeeded !important;
}
.main-head .searchtoggle .probox .promagnifier {
  height: 50px !important;
  width: 50px !important;
  background: transparent !important;
}
.main-head .searchtoggle .probox .promagnifier .innericon svg {
  fill: #deba8b;
  width: 24px !important;
}
.main-head
  .searchtoggle
  #ajaxsearchlite1
  .probox
  .proinput
  input[type="search"] {
  border: 1px solid #eeeded !important;
  padding: 0 0 0 10px !important;
  color: #000000 !important;
  font-size: 16px !important;
  background-color: #eeeded !important;
  height: 48px !important;
  font-family: "Domine", serif !important;
}
.main-head .searchtoggle #ajaxsearchlite1 .probox .proinput input {
  font-family: "Domine", serif !important;
}
.main-head .searchtoggle #ajaxsearchlite1 .probox .proinput input::placeholder {
  color: rgba(0, 0, 0, 0.6) !important;
  font-family: "Domine", serif !important;
}

.main-head
  .searchtoggle
  #ajaxsearchlite1
  .probox
  .proinput
  input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6) !important;
  font-family: "Domine", serif !important;
}

.main-head
  .searchtoggle
  #ajaxsearchlite1
  .probox
  .proinput
  input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6) !important;
  font-family: "Domine", serif !important;
}
.main-head .searchtoggle .probox .proinput {
  margin-left: 0;
  padding-left: 0;
}
.home-intragram-sec #sb_instagram {
  margin: 0 0 -70px 0;
  z-index: 9;
  position: relative;
}
div.asl_r.vertical {
  background-color: #deba8b !important;
  font-size: 13px;
}
.contactformsec .contactform .gform_wrapper.gravity-theme .gform_fields {
  display: block;
}
.contactformsec
  .contactform
  .gform_wrapper.gravity-theme
  .gform_fields
  input[type="text"],
.contactformsec
  .contactform
  .gform_wrapper.gravity-theme
  .gform_fields
  input[type="email"],
.contactformsec
  .contactform
  .gform_wrapper.gravity-theme
  .gform_fields
  input[type="url"],
.contactformsec
  .contactform
  .gform_wrapper.gravity-theme
  .gform_fields
  input[type="password"],
.contactformsec
  .contactform
  .gform_wrapper.gravity-theme
  .gform_fields
  input[type="search"],
.contactformsec
  .contactform
  .gform_wrapper.gravity-theme
  .gform_fields
  input[type="number"],
.contactformsec
  .contactform
  .gform_wrapper.gravity-theme
  .gform_fields
  textarea {
  background-color: #eeeded;
  border: 1px solid #eeeded;
  font-size: 20px;
  color: #000000;
  height: 59px;
  padding: 18px 14px;
  outline: none !important;
}
.contactformsec
  .contactform
  .gform_wrapper.gravity-theme
  .gform_fields
  textarea {
  height: 139px;
}
.contactformsec
  .contactform
  .gform_wrapper.gravity-theme
  .gform_fields
  .gfield {
  margin-bottom: 22px;
  line-height: 1;
}
.contactformsec
  .contactform
  .gform_wrapper.gravity-theme
  .gform_fields
  input::placeholder,
.contactformsec
  .contactform
  .gform_wrapper.gravity-theme
  .gform_fields
  textarea::placeholder {
  color: #000;
  opacity: 1;
}
.contactformsec
  .contactform
  .gform_wrapper.gravity-theme
  .gform_fields
  input[type="submit"] {
  width: 100%;
  padding: 16.5px 25px;
  text-transform: uppercase;
  color: #000000;
  font-size: 19px;
  background-color: #deba8b;
  border: 1px solid#DEBA8B;
  transition: 0.5s;
}
.contactformsec
  .contactform
  .gform_wrapper.gravity-theme
  .gform_fields
  input[type="submit"]:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
.contactformsec .contactform .gform_wrapper.gravity-theme .gfield_description {
  padding: 4px 10px;
  font-size: 14px;
}
.contactformsec .contactform .gform_wrapper .gform_validation_errors {
  font-size: 14px;
}
.contactformsec
  .contactform
  .gform_wrapper.gravity-theme
  .gform_fields
  input:focus,
.contactformsec
  .contactform
  .gform_wrapper.gravity-theme
  .gform_fields
  textarea:focus {
  border-color: #deba8b;
}
.contactformsec .contactform .gform_wrapper.gravity-theme .gform_title {
  display: none;
}
/* CSS Modification 13.10.22 */
.header-cart-count {
  position: absolute;
  right: -10px;
  top: -9px;
  font-size: 13px;
}
.products .add_to_cart_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 184px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #000000;
  color: #000000;
  font-size: 15px;
  font-weight: 400;
  font-family: "Crimson Text", serif;
  padding: 10px 0;
  margin: 0 auto 18px auto;
  transition: 0.5s;
}
.products .add_to_cart_button:hover {
  background: #deba8b !important;
  border: 1px solid #deba8b;
  color: #ffffff !important;
}

.products .woocommerce-LoopProduct-link {
  width: 100%;
  text-align: center;
}
.products .woocommerce-LoopProduct-link img {
  width: 100%;
  height: 72.47%;
  max-width: 100%;
  min-height: 264px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.products ul.products li.product .woocommerce-loop-product__title:hover {
  color: #deba8b;
}
.products ul.products li.product .woocommerce-loop-product__title {
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  font-family: "Crimson Text", serif;
  margin: 0;
}
.products .price {
  display: block;
  text-align: center;
  color: #000000 !important;
  font-size: 20px;
  font-weight: 400;
  font-family: "Crimson Text", serif;
  margin-bottom: 15px;
}
.products li::before {
  display: none;
}
.woocommerce ul.products li.product {
  align-items: center;
}
.woocommerce ul.products li.product .wc-forward {
  color: #000000 !important;
  font-size: 14px;
  text-decoration: none !important;
}
.woocommerce ul.products li.product .wc-forward:hover {
  color: #deba8b !important;
}
.shop_table ul li::before,
.wc_payment_methods li::before {
  display: none;
}
.shop_table ul li,
.wc_payment_methods li {
  padding-left: 0;
}
.wc_payment_method input[type="radio"]:checked + label::before {
  display: none;
}
.woocommerce-checkout .woocommerce-privacy-policy-text p {
  font-size: 15px;
}
.woocommerce-checkout .select2-selection__rendered {
  border: 1px solid #ddd;

  height: 36px;
}
.woocommerce-checkout ul li:before {
  display: none;
}
.woocommerce-checkout
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 34px;
}
.woocommerce-checkout
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 34px;
}
a.showcoupon {
  color: #000000 !important;
  text-decoration: none !important;
}
.woocommerce-checkout-review-order-table {
  width: 100%;
}
.woocommerce-checkout-review-order-table .cart_item {
  width: 100%;
}
.woocommerce-checkout-review-order-table .cart_item .product-total {
  text-align: end;
}
.woocommerce-checkout-review-order-table .order-total td {
  text-align: end;
}
.woocommerce-checkout-review-order-table .woocommerce-shipping-methods li {
  text-align: end;
}
.woocommerce-checkout-review-order-table .cart-subtotal td {
  text-align: end;
}
.single-product ul li::before {
  display: none;
}
.single-product li {
  padding-left: 0;
}
.single-product form.cart .alt {
  text-decoration: none;
  background-color: #deba8b;
  border: 1px solid #deba8b;
  text-transform: uppercase;
  padding: 12px 41px;
  font-size: 18px;
  color: #000000;
  height: 38px;
}
.products .woocommerce-loop-product__title{
  color: #000000 !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  font-family: "Crimson Text", serif;
  margin: 0;
}
.products .woocommerce-loop-product__title:hover{
  color: #deba8b !important;
}
.single-product .tabs li{
  margin-right: 20px;
}
.woocommerce-button,.woocommerce-Button,.woocommerce-checkout-review-order .button,.checkout-button{
  text-decoration: none;
  background-color: #deba8b;
  border: 1px solid #deba8b;
  text-transform: uppercase;
  padding: 12px 41px;
  font-size: 18px;
  color: #000000;
  text-decoration: none !important;
}
.woocommerce-button:hover,.woocommerce-Button:hover,.woocommerce-checkout-review-order .button:hover,.checkout-button:hover{
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none !important;
}
.woocommerce-account ul li::before{
  display: none;
}
.woocommerce-privacy-policy-text {
  margin-bottom: 30px;
}
.woocommerce-account .woocommerce-MyAccount-navigation {

  width: 100%;
  border-right: 1px solid black;

}
.woocommerce-account .woocommerce-MyAccount-navigation li::before{
  display: none;

}
.woocommerce-account .woocommerce-MyAccount-content {
  float: none;
  width: 100%;
}
.woocommerce-account .woocommerce-MyAccount-content p{
  font-size: 15px;
}
.woocommerce-account .woocommerce-MyAccount-navigation li{
  border-bottom: 1px solid black;
  padding-bottom: 10px;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  text-decoration: none !important;
  color: #deba8b !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link a:hover {
  text-decoration: none !important;
  color: #deba8b !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation li:last-child{
  border-bottom: 0;
}
.woocommerce-account table.account-orders-table td,.woocommerce-account table.account-orders-table td, .woocommerce-account table.account-orders-table td.woocommerce-orders-table__cell-order-actions {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.woocommerce-account table.account-orders-table th{
  padding-left: 8px;
  padding-right: 0.5rem;
}
.woocommerce-Address {
  border: 1px solid black;
  padding: 20px;
}
.woocommerce-account .woocommerce-MyAccount-content label {
  font-size: 16px;

}
.woocommerce-account .woocommerce-EditAccountForm input,.woocommerce-billing-fields input {
  border: 1px solid #ddd;

  height: 36px;
  font-size: 14px;
}
#order_comments{
  border: 1px solid #ddd;
}
.woocommerce-account .woocommerce-EditAccountForm #account_display_name+span em {
  font-size: 14px;
  font-style: normal;
}
table.wishlist_table {
  font-size: 100%;
  width: 100%;
}
tbody.wishlist-items-wrapper td {
  text-align: start;
}
h3#ship-to-different-address .checkbox {
  display: flex;
  align-items: center;
}
h3#ship-to-different-address .checkbox .input-checkbox{
  margin-right: 10px;
}
.woocommerce-product-gallery__image img{
  height: 100% !important;
  width: 100% !important;
  max-width: 100% !important;
}
.single-product .tabs li.active{
  color: #deba8b !important;
}
.single-product p.comment-form-comment {
  display: flex;
  flex-direction: column;
}
.single-product .submit{
  text-decoration: none;
  background-color: #deba8b;
  border: 1px solid #deba8b;
  text-transform: uppercase;
  padding: 12px 41px;
  font-size: 18px;
  color: #000000;
 }
.single-product li.yith_magnifier_thumbnail.active-thumbnail {
  border: 1px solid black;
}
.single-product li.yith_magnifier_thumbnail img{
  width: 135px !important;
  height: 135px !important;
display: flex;
align-items: center;
margin: auto;
}
.single-product .tabs {
  padding-top: 30px;
}

/* 17.10.22 */

.wooDash .woocommerce-MyAccount-navigation {
  background: #fef6df;
  border: 1px solid rgba(0, 0, 0, .2);
  margin-bottom: 0;
}
.wooDash .woocommerce-MyAccount-navigation li {
  margin: 0 !important;
  border: none !important;
  padding: 0;
}
.wooDash .woocommerce-MyAccount-navigation li a {
  font-size: 20px;
  width: 100%;
  display: block;
  padding: 15px 25px;
  border-bottom: 1px solid rgba(0, 0, 0, .2);
}
.wooDash .woocommerce-MyAccount-navigation li a:hover {
  background-color: #deba8b;
  border-bottom: 1px solid #deba8b;
  color: #ffffff !important;
}
.wooDash .woocommerce-MyAccount-navigation li.is-active a {
  background-color: #deba8b;
  border-bottom: 1px solid #deba8b;
  color: #ffffff !important;
}
.wooDash .woocommerce-MyAccount-navigation li:last-child a {
  border: none !important;
}
.wooDash .woocommerce-MyAccount-content a {
  color: #deba8b;
  text-decoration: none !important;
}
.wooDash .woocommerce-MyAccount-content a:hover {
  text-decoration: underline !important;
}
.wooDash .woocommerce-MyAccount-content p mark {
  color: #deba8b;
}
.wooDash .woocommerce-MyAccount-content .woocommerce-order-details table {
  width: 100%;
  background: #fef4dc78;
  border: 1px solid #000;
}
.wooDash .woocommerce-MyAccount-content .woocommerce-order-details table tr {
  border-bottom: 1px solid #000;
}
.wooDash .woocommerce-MyAccount-content .woocommerce-order-details table tr th, .wooDash .woocommerce-MyAccount-content .woocommerce-order-details table tr td {
  padding: 5px 10px;
}
.wooDash .woocommerce-cart-form table.shop_table {
  border: 1px solid #deba8b;
    padding: 10px;
    margin-bottom: 30px;
}
.wooDash .woocommerce-cart-form table.shop_table thead tr th {
  background: #deba8b;
  padding: 10px;
  text-align: center;
}
.wooDash .woocommerce-cart-form table.shop_table tbody tr {
  border-bottom: 1px solid #deba8b;
}
.wooDash .woocommerce-cart-form table.shop_table tbody tr:last-child {
  border-bottom: none;
}
.wooDash .woocommerce-cart-form table.shop_table tbody tr td {
  padding: 10px;
  text-align: center;
}
.wooDash .woocommerce-cart-form table.shop_table tbody tr td a {
  display: inline-block;
  color: #deba8b;
  text-decoration: none;
  line-height: 1.1;
}
.wooDash .woocommerce-cart-form table.shop_table tbody tr td a:hover {
  text-decoration: underline;
}
.wooDash .woocommerce-cart-form table.shop_table tbody tr td.product-thumbnail a img {
  max-width: 120px !important;
}
.wooDash .woocommerce-cart-form table.shop_table tbody tr td button.button {
  background-color: #deba8b;
  border: 1px solid #deba8b;
  text-transform: uppercase;
  padding: 8px 20px;
  color: #000000;
}
.wooDash .woocommerce-cart-form table.shop_table tbody tr td button.button:hover {
  background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid #ffffff;
    color: #ffffff;
}
.wooDash .cart_totals {
  background: #f4f3ef;
}
.wooDash .cart_totals h2 {
  text-align: center;
  padding: 10px;
}
.wooDash .cart_totals table {
  width: 100%;
}
.wooDash .cart_totals table tr {
  border-bottom: 1px solid rgba(0, 0, 0, .2);
}
.wooDash .cart_totals table tr:last-child {
  border-bottom: none;
}
.wooDash .cart_totals table tr th, .wooDash .cart_totals table tr td {
  padding: 10px;
}
.woocommerce ul.products li.product .wc-forward.added_to_cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 184px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #000000;
  color: #000000;
  font-size: 15px;
  font-weight: 400;
  font-family: "Crimson Text", serif;
  padding: 10px 0;
  margin: 0 auto 18px auto;
  transition: 0.5s;
}
.woocommerce ul.products li.product .wc-forward.added_to_cart:hover {
  background: #deba8b !important;
  border: 1px solid #deba8b;
  color: #ffffff !important;
}
.product-main-sec .woocommerce-main-image {
  height: 350px;
}
.product-main-sec .woocommerce-main-image img {
  height: 100%;
  object-fit: contain;
}
.yith-wcwl-add-button .add_to_wishlist {
  display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 184px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #000000;
    color: #000000;
    font-size: 15px;
    font-weight: 400;
    font-family: "Crimson Text", serif;
    padding: 10px;
    transition: 0.5s;
}
.yith-wcwl-wishlistexistsbrowse a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 140px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #000000;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  font-family: "Crimson Text", serif;
  padding: 8px 10px;
  transition: 0.5s;
}
.yith-wcwl-add-button .add_to_wishlist:hover, .yith-wcwl-wishlistexistsbrowse a:hover {
  background: #deba8b !important;
  border: 1px solid #deba8b;
  color: #ffffff !important;
}
.woocommerce-tabs.wc-tabs-wrapper li {
  margin: 0 !important;
}
.woocommerce-tabs.wc-tabs-wrapper li a {
  text-decoration: none;
  border: 1px solid #000000;
  color: #000000;
  font-size: 17px;
  font-weight: 400;
  font-family: "Crimson Text", serif;
  padding: 7px 20px;
  transition: 0.5s;
}
.woocommerce-tabs.wc-tabs-wrapper li a:hover {
  background: #deba8b !important;
  border: 1px solid #deba8b;
  color: #ffffff !important;
}
.woocommerce-tabs.wc-tabs-wrapper li.active a {
  background: #deba8b !important;
  border: 1px solid #deba8b;
  color: #ffffff !important;
}
.product .summary h1.product_title {
  font-size: 43px;
}
.thumbnails.slider #slider-prev, .thumbnails.slider #slider-next {
  height: 28px !important;
}
.shipping-calculator-button {
  color: #deba8b;
  text-decoration: none !important;
}
.shipping-calculator-button:hover {
  color: #000;
  text-decoration: underline !important;
}
.shipping-calculator-form .select2-selection__rendered {
  padding: 3px 10px;
    border: 1px solid #ddd;
}
.woocommerce-shipping-calculator .button {
  text-decoration: none;
  border: 1px solid #000000;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  font-family: "Crimson Text", serif;
  padding: 7px 25px;
  transition: 0.5s;
  background: transparent;
  text-transform: uppercase;
}
.woocommerce-shipping-calculator .button:hover {
  background: #deba8b !important;
  border: 1px solid #deba8b;
  color: #ffffff !important;
}
.wooDash .woocommerce-MyAccount-content .woocommerce-address-fields label {
  margin-bottom: 10px;
  font-size: 16px !important;
}
.wooDash .woocommerce-MyAccount-content .woocommerce-address-fields input.input-text {
  border: 1px solid #000 !important;
  font-size: 18px !important;
}
.wooDash .woocommerce-MyAccount-content .woocommerce-address-fields .select2-selection {
  padding-top: 0 !important;
  border: 1px solid #000 !important;
  margin-top: 0 !important;
  height: 35px;
  font-size: 18px;
}
.wooDash .woocommerce-MyAccount-content form .button {
  text-decoration: none;
  border: 1px solid #deba8b;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  font-family: "Crimson Text", serif;
  padding: 7px 25px;
  transition: 0.5s;
  background: transparent;
  text-transform: uppercase;
  background-color: #deba8b !important;
}
.wooDash .woocommerce-MyAccount-content form .button:hover {
  background-color: rgba(0, 0, 0, .2) !important;
  border-color: rgba(0, 0, 0, .2) !important;
}
.woocommerce-order-details table.order_details {
  width: 100%;
  background: #fef4dc78;
  border: 1px solid #000;
}
.woocommerce-order-details table.order_details tr th, .woocommerce-order-details table.order_details tr td {
  padding: 5px 10px;
}
.woocommerce-order-details table.order_details thead tr {
  border-bottom: 1px solid #000;
}
.woocommerce-order-details table.order_details tr {
  border-bottom: 1px solid #000 !important;
  height: 3rem !important;
}
.woocommerce-order-details table.order_details tr:last-child {
  border-bottom: none !important;
}
.woocommerce-thankyou-order-received {
  font-size: 26px;
    text-align: center;
}
table.wishlist_table {
  border: 1px solid #deba8b;
    padding: 10px;
    margin-bottom: 30px;
}
table.wishlist_table thead tr th {
  background: #deba8b;
  padding: 10px;
  text-align: center;
}
table.wishlist_table tbody tr {
  border-bottom: 1px solid #deba8b;
}
table.wishlist_table tbody tr:last-child {
  border-bottom: none;
}
table.wishlist_table tbody tr td {
  text-align: center !important;
}
table.wishlist_table tbody tr td a {
  color: #deba8b;
  text-decoration: none !important;
}
table.wishlist_table tbody tr td a:hover {
  text-decoration: underline !important;
}
table.wishlist_table tbody tr td a.add_to_cart_button {
  background: #deba8b;
  color: #fff;
  padding: 5px 10px;
  display: inline-block !important;
  margin: 0 !important;
}
table.wishlist_table tbody tr td a.add_to_cart_button:hover {
  background: rgba(0, 0, 0, .2);
}
.orderby {
  padding: 10px;
}
.orderby:focus-visible {
  outline: none;
}
.pageheading p {
    font-weight: 400;
    font-size: 20px;
}

  
.entirebox{
  padding: 30px 0 30px 0;
  height: 100vh;
}
.entirebox .entirelogoicon{
      width: 200px;
    height: 120px;
    margin: 0 auto;
}
.entirebox .entirelogoicon img,
.entirebox .entirebottle-imgbox img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.entirebox .entirebottle-imgbox{
  height: 200px;  
}

.entirebox .entire-butnbox{
  padding: 30px 50px;
  border: 1px solid #FFFFFF;
  max-width: 500px;
  margin: 0 auto;
  background: #00000045;
}
.entiretext p{
  color: #FFFFFF;
}
.entirebox .entire-butnbox input[type=number]{
  width: 100%;
  background: transparent;
  border: 1px solid transparent;
  font-size: 25px;
  text-align: center;
  border-radius: 0;
  outline: none;
  color: white;

}
.entirebox .entire-butnbox input[type=number]:focus,
.entirebox .entire-butnbox input[type=number]:active{
  border-color: white;
}
.entirebox .entire-butnbox .entire-butn{  
  padding: 8px 40px;
  width: auto;
  height: auto;
  line-height: 24px;
  font-size: 16px;
  background: white;
  color: #000000;
  margin-top: 15px;
  border: 1px solid transparent;
}
.entirebox .entire-butnbox .entire-butn:hover {
    background: #deba8b;
    color: #ffffff;
    border: 1px solid #deba8b;
}
.copyright-section h3, 
.copyright-section p{
  margin-bottom: 8px;
}
.copyright-section p a{
  color: #e1a27b;
}

/*======2/1/2023=======*/

.entire-butnbox {
    display: grid;
    justify-content: center;
}
a.entire-butn{
  width: 70%;
  margin: 15px auto 0;
}
.hasDatepicker{
  text-align: center;
}
.ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all{
  background: #deba8b;
}
.ui-datepicker-title select{
  border-color: #fff;
 /* color: #fff;*/
}
.ui-datepicker-year{
  color: #fff;
}
.ui-datepicker-year option{
  color: #000 !important;
}
.ui-datepicker-month{
  color: #fff;
}
.ui-datepicker-monthoption{
  color: #000 !important;
}
.ui-datepicker-title select:focus-visible{
  outline:none !important;
}
.ui-datepicker-calendar th{
  color: #deba8b;
}
.ui-datepicker-calendar td a{
  background: #fff !important;
  border-color: #deba8b !important;
}
/*.ui-state-active{
  color: #000 !important;
  background-color: #deba8b !important;
}*/
a.ui-state-default.ui-state-active{
  /*border-color: #000 !important;*/
  background: #deba8b !important;
}
.hasDatepicker:focus-visible{
  outline:none !important;
}
button.ui-datepicker-current.ui-state-default.ui-priority-secondary.ui-corner-all {
    background: #fff;
    color: #deba8b;
    border-color: #deba8b;
}
span.ui-icon.ui-icon-circle-triangle-w {
    filter: brightness(0) invert(1);
}
span.ui-icon.ui-icon-circle-triangle-e {
    filter: brightness(0) invert(1);
}
button.ui-datepicker-close.ui-state-default.ui-priority-primary.ui-corner-all {
    background: #deba8b;
    color: #fff;
    border: none;
}
button.ui-datepicker-close.ui-state-default.ui-priority-primary.ui-corner-all:hover{
  color: #deba8b;
  border: 1px solid #deba8b;
  background: transparent;
}
button.ui-datepicker-current.ui-state-default.ui-priority-secondary.ui-corner-all:hover{
  background:#deba8b;
  color: #fff;
}
.entire-butnbox input::placeholder{
  color: #deba8b !important;
}


/****14/02/2024***********/
input::-webkit-calendar-picker-indicator{
  display: none;
}

input[type="date"]::-webkit-input-placeholder{ 
  visibility: hidden !important;
}

/*****14/02/2024*********/

.entirebox .entire-butnbox input[type=date]{
    background: transparent !important;
    color: #fff !important;
    border: 1px solid #fff !important;
    padding: 20px 30px !important;
    text-align: center;
    font-size: 21px;
    text-transform: uppercase;
}
.entirebox .entire-butnbox input[type=date]:focus-visible {
    outline: none !important;
}

@media only screen and (max-width: 767px){
  .entiretext h5{
    font-size: 22px;
    line-height: 28px;
  }
  .entirebox .entirebottle-imgbox{
    height: 120px;
  }
.entirebox .entire-butnbox{
  padding: 20px 15px;
}
.entiretext p{
  font-size: 15px;
  line-height: 24px;
}
}



/* ========== responsive css =========== */

@media (min-width: 1025px) {
  /* navbar*/
  .navbar-nav .clickD {
    display: none;
  }
  .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    display: block;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1180px;
    padding: 0 20px;
    margin: 0 auto;
  }
}

@media (max-width: 1499px) {
  .bottles-benefits-innr ul li p br {
    display: none;
  }
  .bottles-benefits-innr {
    padding-right: 30px;
  }
  .clmn-quality-right {
    padding: 90px 100px;
  }
  .clmn-quality-right-tw {
    padding: 90px 100px;
  }
  .elementalbottlebox img {
    max-width: 90%;
  }
  .elementalbottlebox {
    right: -135px;
  }
}

@media (max-width: 1399px) {
  .fullwidthmaincont {
    padding: 50px 70px 50px 140px;
  }
  .ord-rght-page-fixd-btn {
    right: -126px;
  }
  .ord-rght-page-fixd-btn a {
    padding: 16px 57px;
    font-size: 20px;
  }
  .clmn-quality-right {
    padding: 80px 70px;
  }
  .clmn-quality-right-tw {
    padding: 80px 70px;
  }
  .quality-all-inr-info i {
    margin-right: 0;
    padding-right: 20px;
  }
  .clmn-ensrgn-right-tw {
    padding: 40px 70px;
  }
  .clmn-ensrgn-right {
    padding: 40px 70px;
  }
  .wrap-bottles-benefits-innr {
    padding: 80px 70px;
  }
  .quality-frst-txt {
    padding: 30px;
  }
  .crewfullwidth {
    padding: 60px 70px;
  }
  .bottle-benift-sec {
    padding: 40px 0;
  }
  .ingadientshd h4::before {
    width: 140px;
  }
  .cocktailmaincont {
    padding: 0 70px;
  }
  .cocktail-cont {
    padding: 38px;
  }
}

@media (max-width: 1199px) {
  .main-head .navbar-nav li {
    margin: 0 15px;
  }
  .ord-rght-page-fixd-btn {
    right: -112px;
  }
  .ord-rght-page-fixd-btn a {
    padding: 12px 57px;
    font-size: 16px;
  }
  .buybutndiv {
    margin-right: 15px;
  }
  .topicon ul li {
    padding-left: 10px;
  }
  .buybutn {
    padding: 12px 35px;
  }
  .pageheading h2 {
    font-size: 30px;
  }
  .page-section-title-tw h3 {
    font-size: 30px;
  }
  /*elementalsec*/
  .floatboxcont {
    padding: 20px;
  }
  .fullwidthmaincont {
    padding: 50px 70px 50px 120px;
  }

  .ensurgn-frst-txt {
    padding: 20px 20px;
  }
  .cap-page-top-sec {
    padding: 60px 0;
  }
  .cap-top-innr-dtls {
    padding: 30px 20px;
  }
  .cap-top-innr-dtls h3 {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .cap-top-innr-dtls p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .cap-top-innr-dtls a {
    padding: 15px 40px;
    font-size: 18px;
  }
  .clmn-quality-right {
    padding: 60px 50px;
  }
  .clmn-quality-right-tw {
    padding: 60px 50px;
  }
  .quality-frst-txt {
    padding: 15px;
  }
  .quality-all-inr-info i {
    width: 120px;
  }
  .quality-all-inr-info h3 {
    font-size: 30px;
  }
  .quality-all-inr-info h3::before {
    bottom: -10px;
  }
  .quality-all-inr-info {
    margin-bottom: 20px;
  }
  .quality-frst-txt p {
    font-size: 16px;
  }
  .product-main-sec {
    padding: 60px 0 0 0;
  }
  .product-page-title h3 {
    font-size: 30px;
  }
  .product-page-title {
    margin-bottom: 25px;
  }
  .top-price-offer span {
    font-size: 10px;
    line-height: 1;
    padding: 5px 10px;
  }
  .top-inr-pdt-img-dtls h4 {
    font-size: 16px;
  }
  .prdt-last-icn p {
    font-size: 15px;
    max-width: 160px;
  }
  .innr-wrap-product-dtls .buy-btn {
    width: 160px;
    font-size: 14px;
    padding: 8px 0;
  }
  .pdt-thrt-itm-lst span {
    max-width: 160px;
  }
  .wrap-bottles-benefits-innr {
    padding: 60px 50px;
  }
  .bottles-benefits-innr h3 {
    font-size: 30px;
  }
  .clmn-ensrgn-right-tw {
    padding: 60px 50px;
  }
  .ensurgn-frst-txt.two {
    padding: 20px;
  }
  .bottles-benefits-innr {
    padding: 20px;
  }
  .crew-cont p {
    font-size: 16px;
  }
  .crew-cont {
    padding: 20px;
  }
  .crewfullwidth {
    padding: 60px 50px;
  }
  .cocktailmaincont {
    padding: 0 50px;
  }
  .cocktail-cont {
    padding: 20px;
  }
  .ingadientshd h4::before {
    width: 100px;
  }



  .product .summary h1.product_title {
    font-size: 34px;
  }
}

@media (max-width: 1024px) {
  /* navbar*/
  .navbar-nav .clickD {
    position: absolute;
    right: 0;
    top: 17px;
    width: 20px;
    height: 20px;
    background: url(images/sort-down.svg) center center no-repeat;
    display: block;
    background-size: 10px;
    cursor: pointer;
  }
  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .sub-menu > li.menu-item-has-children .clickD {
    top: 8px;
    right: 5px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .sub-menu > li.menu-item-has-children .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .navbar-nav > li.menu-item-has-children {
    padding-right: 20px;
  }
  .sub-menu > li.menu-item-has-children > a {
    padding-right: 20px;
  }

  .sub-menu.show {
    display: block;
  }

  .navbar-nav > li {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .navbar-nav > li.current-menu-item > a:after,
  .navbar-nav > li > a:after,
  .navbar-nav > li.menu-item-has-children > a:after {
    width: 100%;
    opacity: 0;
  }

  .navbar-nav > li.current-menu-item > a:after,
  .navbar-nav > li > a:hover:after,
  .navbar-nav > li.menu-item-has-children:hover > a:after {
    width: 100%;
    opacity: 1;
  }

  /* navbar end*/
}

@media (max-width: 991px) {
  /* navbar*/
  .navbar-toggler {
    position: relative;
    width: 33px;
    height: 28px;
    padding: 0;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
  }
  .stick,
  .stick:after,
  .stick:before {
    width: 30px;
    height: 2px;
    background: #ffffff;
    position: absolute;
    left: 0;
    top: auto;
    transition: all 0.6s;
    border-radius: 5px;
  }
  .stick:before {
    content: "";
    top: -10px;
    left: 0;
  }
  .stick:after {
    content: "";
    top: 10px;
    left: 0;
  }
  .stick.open {
    transform: translateX(-50px);
    background: transparent;
  }
  .stick.open:before {
    transform: rotate(45deg) translate(42px, -28px);
    left: 2px;
  }
  .stick.open:after {
    transform: rotate(-45deg) translate(42px, 28px);
    left: 2px;
  }

  .navbar-nav .clickD {
    top: 8px;
    right: 10px !important;
    -webkit-transform: rotate(0) !important;
    transform: rotate(0) !important;
  }
  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg) !important;
    transform: rotate(180deg) !important;
  }
  .sub-menu,
  .navbar-nav > li > .sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
    right: inherit;
  }
  .navbar-nav > li.menu-item-has-children {
    padding-right: 0;
  }
  .navbar-nav > li {
    margin: 0;
    padding: 0;
  }
  .navbar-nav li.menu-item-has-children > a {
    padding-right: 30px !important;
  }
  .navbar-nav > li > a {
    padding: 8px 20px;
    display: inline-block;
    width: 100%;
  }
  .sub-menu > li > a {
    padding-left: 40px;
  }
  .sub-menu .sub-menu > li > a {
    padding-left: 60px;
  }
  .sub-menu .sub-menu .sub-menu > li > a {
    padding-left: 80px;
  }

  .navbar-nav > li > a:after {
    bottom: 0;
  }
  /* navbar end*/

  /* push nav */

  .navbar-collapse {
    background: #000000;
    position: fixed;
    top: 0;
    height: 100% !important;
    width: 290px;
    overflow-y: auto;
    transition: inherit !important;
    right: 0;
    margin: 0;
    display: block !important;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    z-index: 100;
  }
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
  }
  .navbar-collapse .navbar-nav {
    margin: 80px 0 0 !important;
    padding: 0 0 40px 0;
  }
  .navbar-collapse .navbar-toggler {
    display: block;
    right: 20px;
    top: 20px;
    position: absolute;
  }
  #navoverlay.open {
    display: block;

    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: all;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
  }
  body.open-nav,
  html.open-nav {
    /* height: 100%; */
    overflow: hidden !important;
  }
  .mblogo {
    display: block;
    width: 100%;
    text-align: center;
  }
  .desktoplogo {
    display: none;
  }

  /* push nav end */
  .main-head .navbar-brand {
    position: relative;
    top: 0;
    margin: 0;
  }
  .main-head .navbar-nav {
    align-items: baseline;
  }
  .main-head .navbar-nav li {
    text-align: left;
    margin: 0 15px;
  }
  .main-head .navbar-nav li:nth-child(3) {
    margin-right: 15px;
  }
  .main-head .navbar-nav li:nth-child(4) {
    margin-left: 15px;
  }
  .navbar-toggler:hover {
    background: none;
  }
  .main-head .navbar {
    padding: 15px 0 15px 0;
  }
  .navbar-brand {
    width: 140px;
  }
  .navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 15px;
    z-index: 10;
  }
  .cmnbutn {
    padding: 9px 20px;
    letter-spacing: normal;
  }
  .page-section-title-tw h3 {
    font-size: 25px;
  }
  .bannerpagesection {
    height: 550px;
  }
  /*footer*/
  .footer-logo {
    margin: auto;
  }
  .footer-clm-one {
    width: 100%;
  }
  .footer-clm-two {
    width: 33%;
  }
  .footer-clm-three {
    width: 42%;
  }
  .footer-clm-four {
    width: 25%;
  }
  /*footer*/
  .pageheading h2 {
    font-size: 25px;
  }
  /*elemental*/
  .floatboxcont {
    padding: 15px;
  }
  .fullwidthmaincont {
    padding: 40px 40px 40px 120px;
  }
  .mystixmixes-card h4 {
    font-size: 20px;
  }
  .cap-page-top-sec {
    padding: 40px 0;
  }
  .cap-top-innr-dtls h3 {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .cap-top-innr-dtls a {
    font-size: 16px;
    padding: 10px 40px;
  }
  .quality-all-inr-info h3 {
    font-size: 25px;
  }
  .quality-frst-txt p {
    font-size: 14px;
  }
  .clm-product-all {
    margin-bottom: 30px;
  }
  .top-inr-pdt-img-dtls .prodt-img-lnk {
    margin-bottom: 20px;
  }
  .top-inr-pdt-img-dtls .pdt-img-lnk-wrap {
    margin-bottom: 20px;
  }
  .top-price-offer {
    right: inherit;
    transform: translateX(-50%);
    left: 50%;
  }
  .product-page-title h3 {
    font-size: 25px;
  }

  .ensurgn-frst-txt h3 {
    font-size: 25px;
  }
  .bottles-benefits-innr h3 {
    font-size: 25px;
  }
  .ensurgn-frst-txt.two {
    padding: 15px;
  }
  .bottles-benefits-innr {
    padding: 15px 15px;
  }
  .ensurgn-frst-txt {
    padding: 15px 15px;
  }
  .crew-cont p {
    font-size: 15px;
  }
  .crew-cont {
    padding: 15px;
  }
  .cocktail-cont {
    padding: 15px;
  }
  .ingadientshd h4::before {
    width: 80px;
  }
  .ingadientshd h4 {
    letter-spacing: normal;
  }
  .cocktail-cont .pageheading h2 {
    letter-spacing: normal;
  }
  .cocktail-row {
    align-items: center;
  }
  .processlist li {
    font-size: 15px;
    padding-left: 8px;
  }
  .ingradientslist li {
    font-size: 15px;
  }
  .mystixmix-imgbox {
    height: 255px;
  }
  /* CSS Modification 13.10.22 */
  .banner_sec {
    min-height: 200px;
  }
  /* CSS Modification 13.10.22 */

  .product .summary h1.product_title {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  /* images alignment for wordpress content pages */
  .alignright,
  .alignleft,
  .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    clear: both;
    margin-bottom: 24px;
  }

  .buybutn {
    padding: 9px 30px;
    font-size: 16px;
  }
  .main-head .navbar {
    padding: 0px 0 13px 0;
  }
  .main-head .navbar.sticky {
    padding: 15px 15px;
  }
  .navbar-brand {
    width: 100px;
  }
  .searchtoggle {
    right: -96px;
  }
  .bannerpagesection {
    height: 450px;
  }

  /*footer*/
  .footer-clm-two {
    width: 25.3%;
  }
  .footer-clm-three {
    width: 41.3%;
  }
  .footer-clm-four {
    width: 33.3%;
  }
  .footer-links-sec h4 {
    font-size: 16px;
  }

  /*footer*/
  /*elemental*/
  .elementalbottlebox {
    right: 0;
    top: auto;
    left: 0;
    margin: auto;
    bottom: 0px;
    width: 150px;
    height: 280px;
    transform: inherit;
    text-align: center;
  }
  .elementalsec {
    overflow: hidden;
  }
  .elementalbottlebox img {
    max-width: 100%;
    height: 100%;
  }
  .fullwidthmaincont {
    padding: 40px 20px;
  }
  /*elemental*/
  .clmn-ensrgn-right {
    padding: 40px 20px;
  }
  .clmn-ensrgn-right-tw {
    padding: 40px 20px;
  }
  .cmngap {
    padding: 40px 0;
  }
  /*contact*/
  .contactbnn-info h2 {
    letter-spacing: normal;
    font-size: 35px;
  }
  .home-intragram-sec {
    padding-top: 40px;
  }
  /*crew page*/
  .crewfullwidth {
    padding: 40px 20px;
  }
  .wrap-bottles-benefits-innr {
    width: 100%;
    position: relative;
  }
  .wrap-bottles-benefits-innr:before {
    position: absolute;
    content: "";
    background: rgba(1, 23, 30, 0.7);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
  }
  .bottle-benift-sec {
    padding: 0 0;
  }
  .bottles-bnfitimgbox {
    padding: 40px 0;
  }
  .bottle-benift-sec::before {
    content: none;
  }

  /*ozeancmnsec*/
  .ozn-rght-img-hm-lst {
    position: relative;
  }
  .ozean-last-main-hm-sec::before {
    z-index: -1;
    width: 100%;
  }
  .innr-wrap-ozn-lst-dtlts {
    padding-right: 0px;
    margin-bottom: 30px;
  }
  .ozean-last-main-hm-sec {
    padding: 40px 0;
  }
  .ozn-rght-img-hm-lst {
    padding: 0 15px;
  }
  .ozn-btl-img-extra {
    width: 180px;
    height: 300px;
    transform: inherit;
    left: 0;
    top: auto;
    right: 0;
    bottom: 25px;
    margin: auto;
  }
  .ozn-btl-img-extra figure {
    margin-bottom: 0;
    width: 100%;
    height: 100%;
  }
  .ozn-rght-img-hm-lst figure {
    margin-bottom: 0;
  }
  .ozn-btl-img-extra figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  /*ozeancmnsec*/
  /*creats ozean*/
  .ozean-creat-card {
    margin-top: 50px;
  }
  .ozean-creatimgbox {
    margin-bottom: 40px;
  }
  .cap-main-top-clm-one {
    width: 100%;
  }
  .cap-main-top-clm-two {
    width: 100%;
  }
  .quality-rw:nth-child(even) {
    flex-direction: inherit;
  }
  .quality-frst-txt {
    width: 100%;
    margin: 0;
  }
  .clmn-quality-right {
    padding: 40px 20px;
  }
  .quality-all-inr-info i {
    width: 100px;
    padding-right: 10px;
  }
  .clm-product-all:nth-child(1) .innr-wrap-product-dtls {
    padding-top: 0;
  }
  .clm-product-all:nth-child(4) .innr-wrap-product-dtls {
    padding-top: 0;
  }
  .top-inr-pdt-img-dtls .pdt-img-lnk-wrap {
    height: inherit;
  }
  .top-inr-pdt-img-dtls .prodt-img-lnk {
    height: inherit;
  }
  .cap-page-top-sec::before {
    width: 50%;
  }
  .wrap-bottles-benefits-innr {
    padding: 40px 20px;
  }
  .ozean-creatsec.cmngap {
    padding: 40px 0;
  }
  .ensuring-goods-home-sec {
    padding-top: 40px;
  }
  .page-section-title {
    margin-bottom: 40px;
  }
  .page-section-title-tw {
    margin-bottom: 45px;
  }
  .ord-rght-page-fixd-btn a {
    padding: 15px 40px;
    font-size: 16px;
  }
  .ord-rght-page-fixd-btn {
    right: -95px;
  }
  .ord-rght-page-fixd-btn {
    top: 39%;
  }
  .cocktailmaincont {
    padding: 0 20px;
  }
  .cocktailimgbox:before {
    transform: inherit;
    top: auto;
    bottom: 5%;
    height: 330px;
  }
  .ingadientshd h4::before {
    width: 120px;
  }
  .cocktail-row {
    padding-top: 40px;
  }
  .cocktailmaincont {
    padding-top: 40px;
  }
  .mystixmix-imgbox {
    height: 280px;
  }
  /* CSS Modification 13.10.22 */
  .banner_sec {
    min-height: 145px;
  }
  .contactformsec
    .contactform
    .gform_wrapper.gravity-theme
    .gform_fields
    input[type="submit"] {
    line-height: inherit !important;
    padding: 15.5px 25px;
  }
  /* CSS Modification 13.10.22 */

  /* 17.10.22 */

  .wooDash .woocommerce-MyAccount-navigation {
    margin-bottom: 30px;
  }
  .wooDash .woocommerce-MyAccount-content p {
    margin-bottom: 15px;
  }
  .wooDash .woocommerce-MyAccount-content table {
    width: 100%;
  }
  .wooDash .wishlist_table.mobile li {
    display: flex;
    padding: 5px !important;
    justify-content: space-between;
    border-bottom: 1px solid #deba8b;
    margin: 0;
  }
  .wooDash .wishlist_table.mobile li:last-child {
    border-bottom: none;
  }
  .wooDash .wishlist_table.mobile li::before {
    display: none;
  }
  .wooDash .wishlist_table.mobile li .item-wrapper {
    width: calc(100% - 120px);
    margin: 0;
  }
  .wooDash .wishlist_table.mobile li .item-wrapper h3 {
    font-size: 20px;
  }
  .wooDash .wishlist_table.mobile li .item-wrapper h3 a {
    color: #deba8b;
    text-decoration: none !important;
  }
  .wooDash .wishlist_table.mobile li .add_to_cart_button {
    background: #deba8b;
    color: #fff;
    padding: 5px 10px;
    display: inline-block !important;
    margin: 0 !important;
    text-decoration: none;
  }
  .wooDash .wishlist_table.mobile li .add_to_cart_button:hover {
    background: rgba(0, 0, 0, .2);
  }
  .wooDash .wishlist_table.mobile li .remove_from_wishlist {
    color: #deba8b;
  }
  .wooDash .wishlist_table.mobile {
    border: 1px solid #deba8b;
  }
}

@media (max-width: 575px) {

  .thumbnails.slider {
    width: 100% !important;
  }
  .thumbnails.slider .yith_magnifier_gallery {
    width: 100% !important;
  }
}

@media (max-width: 479px) {
  .navbar-brand {
    width: 100px;
  }
  .bannerpagesection {
    height: 380px;
  }
  /*footer*/
  .footer-clm-two {
    width: 100%;
  }
  .footer-clm-three {
    width: 100%;
  }
  .footer-clm-four {
    width: 100%;
  }
  .cocktailimgbox:before {
    height: 200px;
  }
  .ingadientshd h4::before {
    width: 80px;
  }
  .cap-top-innr-dtls a {
    padding: 9px 20px;
    font-size: 15px;
    letter-spacing: normal;
  }
  /*footer*/

  /* 17.10.22 */

  .wooDash .woocommerce-cart-form table.shop_table tbody tr td button.button {
    font-size: 14px;
  }
  .product .summary h1.product_title {
    font-size: 24px;
  }
  .wooDash .wishlist_table.mobile li .item-wrapper h3 {
    font-size: 16px;
}
}

.woocommerce-products-header {
  display: none;
}
.woocommerce-breadcrumb {
  display: none;
}
.woocommerce .woocommerce-cart-form .shop_table_responsive {
  width: 100%;
}
#ship-to-different-address label input[type="checkbox"] {
  display: block;
}
.woocommerce-checkout form #order_review,
.woocommerce-checkout form #order_review_heading {
  width: 100%;
}

.woocommerce form.woocommerce-ResetPassword input{
    border: 1px solid #ddd;
}
.woocommerce-account.woocommerce-lost-password .woocommerce .woocommerce-ResetPassword .woocommerce-form-row--first {
  width: 100%;
}