/*----------------------------------
	Common HTML elements and more for easier usage
------------------------------------*/
html {
  overflow-x: hidden;
  /*scroll-behavior: smooth;*/
  overscroll-behavior-y: none;
}

html, html a, body {
  -webkit-font-smoothing: antialiased;
}

html {
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-size: 1rem;
  font-family: Montserrat, sans-serif;
  color: #335260;
  line-height: 1.6;
  background-color: #f4f4f4;
 
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-family: Montserrat, sans-serif;
  line-height: 1.2;
  color: #00000;
  margin-top: 0;
  margin-bottom: .5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /*text-transform: capitalize;*/
  margin-bottom: 0.15rem;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #242424;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

h1 a:focus, h1 a:hover,
h2 a:focus,
h2 a:hover,
h3 a:focus,
h3 a:hover,
h4 a:focus,
h4 a:hover,
h5 a:focus,
h5 a:hover,
h6 a:focus,
h6 a:hover {
  color: #13b1cd;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

em,
li {
  font-size: 1rem;
  font-weight: 300;
  color: #242424;
}

em > a,
li > a {
  color: #242424;
}

em > a:hover,
li > a:hover {
  color: #13b1cd;
}

small {
  color: #656565;
}

label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #242424;
  margin-bottom: .25rem;
}

i {
  line-height: 1;
}

/* Paragraph */
p {
  font-size: 1.1rem;
  font-weight: 300;
  color: #00000;
  line-height: 1.9;
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Links */
a {
  color: #fff;
  text-decoration: none;
}

a:focus, a:hover {
  color: #007bb8;
  text-decoration: none;
}

a:focus {
  outline: none;
}

/*----------------------------------
  Selection
------------------------------------*/
::selection {
  color: #F2FAFD;
  background: #5d57a2;
  text-shadow: none;
}

::-webkit-selection {
  color: #fff;
  background: #13b1cd;
  text-shadow: none;
}

:active,
:focus {
  outline: none;
}


/*Shopping*/

#snipcart {
    position: relative;
    z-index: 99999999;
}

.header__button {
    display: flex;
    align-items: center;
    height: 24px;
    border: none;
    background-color: transparent;
    white-space: nowrap;
    cursor: pointer;
    padding-left: 8px;
    position: relative;
}

/*.snipcart-add-item {*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    border: none;*/
/*    border-radius: 50px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    background: black;*/
/*}*/

/*.snipcart-add-item:hover > .ti-shopping-cart-full {*/
/*    color: #13b1cd;*/
/*}*/

.ti-shopping-cart-full {
    transition: all 0.5s ease;
    font-size: 18px;
}

.g-ul-li-lr-5--xs {
    position: relative;
    top: 0;
    display: flex;
    justify-content: center;
}

/*End shopping*/

/*----------------------------------
  Button
------------------------------------*/
.s-btn {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  border: none;
  white-space: nowrap;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-btn:focus, .s-btn:hover {
  text-decoration: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-btn.focus {
  text-decoration: none;
}

.s-btn:active, .s-btn.active {
  background-image: none;
  outline: 0;
}

.s-btn.disabled, .s-btn:disabled,
fieldset[disabled] .s-btn {
  cursor: not-allowed;
  opacity: .65;
}

.s-btn__element--left, .s-btn__element--right {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}

/* Sizes
------------------------------ */
.s-btn--xs {
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.5rem 1.25rem;
}

.s-btn--sm {
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.75rem 1.25rem;
}

.s-btn--md {
  font-size: 0.8125rem;
  font-weight: 400;
  padding: 1rem 2.5rem;
}

.s-btn-icon--md {
  font-size: 1rem;
  padding: 0.9375rem 1.5625rem 0.75rem;
}

/* Styles
------------------------------ */
.s-btn--white-brd {
  color: #fff;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #fff;
}

.s-btn--white-brd:focus, .s-btn--white-brd:hover {
  color: #222324;
  background: #fff;
  border-color: #fff;
}

.s-btn--white-bg {
  color: #222324;
  background: #fff;
}

.s-btn--white-bg:focus, .s-btn--white-bg:hover {
  color: #13b1cd;
  background: #fff;
}

.s-btn--dark-bg {
  color: #fff;
  background: #222324;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #222324;
}

.s-btn--dark-bg:focus, .s-btn--dark-bg:hover {
  color: #fff;
  background: #13b1cd;
  border-color: #13b1cd;
}

.s-btn--dark-brd {
  color: #222324;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #222324;
}

.s-btn--dark-brd:focus, .s-btn--dark-brd:hover {
  color: #fff;
  background: #222324;
  border-color: #222324;
}

.s-btn--primary-bg {
  color: #fff;
  background: #13b1cd;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #13b1cd;
}

.s-btn--primary-bg:focus, .s-btn--primary-bg:hover {
  color: #fff;
  background: #13b1cd;
  border-color: #13b1cd;
}

.s-btn--primary-brd {
  color: #13b1cd;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #13b1cd;
}

.s-btn--primary-brd:focus, .s-btn--primary-brd:hover {
  color: #fff;
  background: #13b1cd;
  border-color: #13b1cd;
}

.s-btn-icon--white-brd {
  border-left: none;
}

.s-btn-icon--dark-brd {
  border-left: none;
}

/*----------------------------------
  FAQ
------------------------------------*/
.s-faq__pseudo {
  position: relative;
}

.s-faq__pseudo:before {
  position: absolute;
  left: 12.5rem;
  bottom: -1rem;
  z-index: -1;
  font-size: 9.375rem;
  font-family: Playfair Display, serif;
  color: rgba(245, 248, 249, 0.8);
  content: "\0026";
}

.s-faq-grid__divider {
  display: inline-block;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.3);
  margin: .3125rem 0;
}

.s-faq-grid__title {
  font-size: 1rem;
  color: #fff;
  margin: .3125rem 0 0 .5rem;
}

.s-faq .cbp-caption {
  border-bottom: none;
}

/*----------------------------------
  Form Input
------------------------------------*/

/* Form Input v2 */
.s-form-v2__input {
  height: 3.5rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: #656565;
  border: none;
  box-shadow: none;
  letter-spacing: .1rem;
  padding: .625rem 1.25rem;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-form-v2__input::-webkit-input-placeholder {
  color: #656565;
}

.s-form-v2__input::-moz-placeholder {
  color: #656565;
}

.s-form-v2__input:-ms-input-placeholder {
  color: #656565;
}

.s-form-v2__input::placeholder {
  color: #656565;
}

.s-form-v2__input:focus {
  font-weight: 400;
  color: #656565;
  box-shadow: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-form-v2__input:focus::-webkit-input-placeholder {
  color: #656565;
}

.s-form-v2__input:focus::-moz-placeholder {
  color: #656565;
}

.s-form-v2__input:focus:-ms-input-placeholder {
  color: #656565;
}

.s-form-v2__input:focus::placeholder {
  color: #656565;
}

/*----------------------------------
  Icons
------------------------------------*/
.s-icon {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-icon:focus, .s-icon:hover {
  text-decoration: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

/* Sizes
------------------------------ */
.s-icon--sm {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.8125rem;
  padding: 0.6875rem;
}

.s-icon--md {
  width: 3.125rem;
  height: 3.125rem;
  font-size: 1.125rem;
  padding: 0.75rem;
}

.s-icon--lg {
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.625rem;
  padding: 0.5625rem 1rem;
}

/* Styles
------------------------------ */
.s-icon--white-brd {
  color: #fff;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #fff;
  line-height: 1.4;
}

.s-icon--white-brd:focus, .s-icon--white-brd:hover {
  color: #fff;
  background: #13b1cd;
  border-color: #13b1cd;
}

.s-icon--white-bg {
  color: #222324;
  background: #fff;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #fff;
  line-height: 1.4;
}

.s-icon--white-bg:focus, .s-icon--white-bg:hover {
  color: #13b1cd;
  background: #fff;
  border-color: #fff;
}

.s-icon--primary-brd {
  color: #13b1cd;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #13b1cd;
  line-height: 1.4;
}

.s-icon--primary-brd:focus, .s-icon--primary-brd:hover {
  color: #fff;
  background: #13b1cd;
  border-color: #13b1cd;
}

.s-icon--primary-bg {
  color: #fff;
  background: #13b1cd;
  line-height: 1.6;
}

/*----------------------------------
  Promo Block
------------------------------------*/
/* Promo Block v6 */
.s-promo-block-v6 {
  position: relative;
  z-index: 1;
}

.s-promo-block-v6:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-180deg, rgba(28, 123, 172, 0.1) 20%, #5d6e6f 110%);
  background-repeat: repeat-x;
  content: " ";
}

/*----------------------------------
  Scroll To Section
------------------------------------*/
/* Scroll To Section v1 */
.s-scroll-to-section-v1--bc {
  position: absolute;
  left: 50%;
  bottom: 0.625rem;
  z-index: 1;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  text-align: center;
}

/*----------------------------------
  Header
------------------------------------*/
.s-header__navbar {
  background: transparent;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  height: 60px
}

.logo-wrapper {
    position:absolute;
    top:-1px;
    left:0;
}

.logo-area {
    top: -23px;
    left:10px;
}

.logo-area-b {
    max-width: 54px;
}

.logo-area-w {
    max-width: 54px;
}
/* Container
------------------------------ */
.s-header__container {
  width: 100%;
  height: auto;
  display: table;
  padding: 0.75rem;
  opacity: 15;
}

.s-header__container:before, .s-header__container:after {
  content: " ";
  display: table;
}

.s-header__container:after {
  clear: both;
}

.container-fluid {
  padding-left: 2.1875rem;
  padding-right: 2.1875rem;
}

/* Navbar Row
------------------------------ */
.s-header__navbar-row {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.s-header__navbar-row-col {
  width: 50%;
  display: table-cell;
  vertical-align: middle;
}

/* Logo
------------------------------ */
.s-header__logo {
  position: relative;
  z-index: 9999;
  width: 100%;
  height: auto;
  float: left;
}

.s-header__logo-link {
  display: inline-block;
  padding: 1rem 0;
  width: 0;
}

.s-header__logo-link:focus, .s-header__logo-link:hover {
  text-decoration: none;
}

.s-header__logo-img-default, .s-header__logo-img-shrink {
  display: block;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header__logo-img-default {
  opacity: 1;
}

.s-header__logo-img-shrink {
  position: absolute;
  top: 1rem;
  left: 0;
  opacity: 0;
}

@media (max-width: 61.9em) {
  .s-header__logo {
    width: auto;
    height: auto;
    float: left;
  }
}

/* Trigger
------------------------------ */
.s-header__trigger {
  position: relative;
  z-index: 9999;
  width: 3.125rem;
  height: 3.125rem;
  float: right;
  overflow: hidden;
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

/* Trigger Icon */
.s-header__trigger-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  /*width: 1.375rem;*/
  /*height: 0.0625rem;*/
  width: 1.7rem;
  height: 0.09375rem;
  background: #fff;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header__trigger-icon:before, .s-header__trigger-icon:after {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  content: " ";
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: transform 0.5s, width 0.5s, top 0.3s;
  transition: transform 0.5s, width 0.5s, top 0.3s;
}

.s-header__trigger-icon:before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  /*-webkit-transform: translate3d(0, 0.4375rem, 0);*/
  /*transform: translate3d(0, 0.4375rem, 0);*/
  -webkit-transform: translate3d(0, 0.56875rem, 0);
  transform: translate3d(0, 0.56875rem, 0);
}

.s-header__trigger-icon:after {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  /*-webkit-transform: translate3d(0, -0.4375rem, 0);*/
  /*transform: translate3d(0, -0.4375rem, 0);*/
    -webkit-transform: translate3d(0, -0.56875rem, 0);
  transform: translate3d(0, -0.56875rem, 0);
}

.s-header__trigger--dark .s-header__trigger-icon {
  background: #222324;
}

.s-header__trigger svg {
  position: absolute;
  top: 0;
  left: 0;
}

.s-header__trigger circle {
  -webkit-transition: stroke-dashoffset 0.4s 0s;
  transition: stroke-dashoffset 0.4s 0s;
}

/* Trigger Is Active Style */
.-is-active.s-header__trigger {
  /*-webkit-transform: rotate(90deg);*/
  /*transform: rotate(90deg);*/
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);  
}

.-is-active .s-header__trigger-icon {
  background: #fff;
}

.-is-active .s-header__trigger-icon:before, .-is-active .s-header__trigger-icon:after {
  width: 50%;
  -webkit-transition: transform 0.5s, width 0.5s;
  transition: transform 0.5s, width 0.5s;
}

.-is-active .s-header__trigger-icon:before {
  /*-webkit-transform: rotate(45deg);*/
  /*transform: rotate(45deg);*/
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  left: 14.75px;
  top: 1px;
}

.-is-active .s-header__trigger-icon:after {
  /*-webkit-transform: rotate(-45deg);*/
  /*transform: rotate(-45deg);*/
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  left: 13.5px;
}

.-is-active.s-header__trigger circle {
  stroke-dashoffset: 0;
  -webkit-transition: stroke-dashoffset 0.4s 0.3s;
  transition: stroke-dashoffset 0.4s 0.3s;
}

.header-menu-btn {
    top: -10px
}
/* Overlay
------------------------------ */
.s-header-bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(34, 35, 36, 0);
  visibility: hidden;
  -webkit-transition: all 1s ease-in 0.4s;
  transition: all 1s ease-in 0.4s;
}

.s-header-bg-overlay.-is-open {
  background: rgba(34, 35, 36, 0.99);
  visibility: visible;
  opacity: 0.9;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

/* Nav
------------------------------ */
.s-header__nav {
  height: 100%;
  padding: 7.5rem 0;
}

/* Menu List */
.s-header__nav-menu {
  width: 18.75rem;
  float: right;
  text-align: right;
  margin-bottom: 0;
}

@media (max-width: 47.9em) {
  .s-header__nav-menu {
    width: 50%;
  }
}

@media (max-width: 33.9em) {
  .s-header__nav-menu {
    width: 100%;
    float: none;
  }
}

.s-header__nav-menu-item {
  padding: 0 0 0 5.625rem;
  margin-bottom: .3125rem;
}

@media (max-width: 47.9em) {
  .s-header__nav-menu-item {
    padding-left: 0;
  }
}

.s-header__nav-menu-link {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 300;
  color: #fff;
  opacity: .85;
  padding: .3125rem;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header__nav-menu-link-divider {
  position: relative;
}

.s-header__nav-menu-link-divider:before {
  position: absolute;
  top: 50%;
  right: -2.5rem;
  width: 2.1875rem;
  height: 0.0625rem;
  background: rgba(255, 255, 255, 0);
  content: " ";
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header__nav-menu-link-divider[href]:focus, .s-header__nav-menu-link-divider[href]:hover {
  color: #fff;
}

.s-header__nav-menu-link-divider[href]:hover:before {
  right: 0;
  background: white;
}

.s-header__nav-menu-link-divider:focus, .s-header__nav-menu-link-divider:hover {
  color: #fff;
}

.s-header__nav-menu-link-divider:hover {
  opacity: 1;
  padding-right: 2.5rem;
}

.s-header__nav-menu-link-divider.-is-active {
  padding-right: 2.5rem;
}

.s-header__nav-menu-link-divider.-is-active:before {
  right: 0;
  background: white;
}

.registered-icon {
    font-size: 12px;
    position: relative;
    bottom: 7px;
    right: 3px;
}

/* Action
------------------------------ */
.s-header__action {
  margin-bottom: 0;
}

.s-header__action--lb {
  position: absolute;
  left: 1.875rem;
  bottom: 1.875rem;
}

.s-header__action--rb {
  position: absolute;
  right: 1.875rem;
  bottom: 1rem;
  padding-bottom: 0!important;
}

.s-header__action-item {
  padding: 0;
  margin-left: .1875rem;
  margin-right: .3125rem;
}

.s-header__action-link {
  position: relative;
  font-size: 0.95rem;
  /*color: rgba(255, 255, 255, 0.2);*/
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  padding: .3125rem;
}

.s-header__action-link:first-child {
  padding-left: 0;
}

.s-header__action-link:last-child {
  padding-right: 0;
}

.s-header__action-link:hover {
  /*color: rgba(255, 255, 255, 0.7);*/
  color: rgba(255, 255, 255, 0.3);
}

.s-header__action-link.-is-active {
  color: white;
}

/* Menu Open/Close
------------------------------ */
.s-header-bg-overlay .s-header__nav-menu-item {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  -webkit-transform: translate3d(0, 1.25rem, 0);
  transform: translate3d(0, 1.25rem, 0);
}

.s-header-bg-overlay .s-header__action-item {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

@media (max-width: 47.9em) {
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item,
  .s-header-bg-overlay.-is-open .s-header__action-item {
    opacity: 1;
  }
}

@media (min-width: 34em) {
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item {
    opacity: 1;
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(1) {
    -webkit-transition: all 0.4s 0.2s ease-out;
    transition: all 0.4s 0.2s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(2) {
    -webkit-transition: all 0.4s 0.4s ease-out;
    transition: all 0.4s 0.4s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(3) {
    -webkit-transition: all 0.4s 0.6s ease-out;
    transition: all 0.4s 0.6s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(4) {
    -webkit-transition: all 0.4s 0.8s ease-out;
    transition: all 0.4s 0.8s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(5) {
    -webkit-transition: all 0.4s 1s ease-out;
    transition: all 0.4s 1s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(6) {
    -webkit-transition: all 0.4s 1.2s ease-out;
    transition: all 0.4s 1.2s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(7) {
    -webkit-transition: all 0.4s 1.4s ease-out;
    transition: all 0.4s 1.4s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(8) {
    -webkit-transition: all 0.4s 1.6s ease-out;
    transition: all 0.4s 1.6s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(9) {
    -webkit-transition: all 0.4s 1.8s ease-out;
    transition: all 0.4s 1.8s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(10) {
    -webkit-transition: all 0.4s 2s ease-out;
    transition: all 0.4s 2s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__action-item {
    opacity: 1;
  }
  .s-header-bg-overlay.-is-open .s-header__action-item:nth-child(1) {
    -webkit-transition: all 0.4s 0.4s ease-out;
    transition: all 0.4s 0.4s ease-out;
  }
  .s-header-bg-overlay.-is-open .s-header__action-item:nth-child(2) {
    -webkit-transition: all 0.4s 0.8s ease-out;
    transition: all 0.4s 0.8s ease-out;
  }
  .s-header-bg-overlay.-is-open .s-header__action-item:nth-child(3) {
    -webkit-transition: all 0.4s 1.2s ease-out;
    transition: all 0.4s 1.2s ease-out;
  }
  .s-header-bg-overlay.-is-open .s-header__action-item:nth-child(4) {
    -webkit-transition: all 0.4s 1.6s ease-out;
    transition: all 0.4s 1.6s ease-out;
  }
}

/* Shrink
------------------------------ */
/* Navbar */
.s-header__shrink .s-header__navbar {
  box-shadow: 0 0 0.9375rem 0 rgba(34, 35, 36, 0.05);
}

.s-header__shrink.-is-open .s-header__navbar {
  background: transparent;
}

/* Logo */
.s-header__shrink.-is-open .s-header__logo-img-default {
  opacity: 1;
}

.s-header__shrink.-is-open .s-header__logo-img-shrink {
  opacity: 0;
}

.s-header__shrink .s-header__navbar {
  background: #fff;
  box-shadow: 0 8px 6px -6px rgba(0,0,0,0.3);
}

.s-header__shrink .s-header__logo-img-default {
  /*opacity: 0;*/
  filter: invert(100%) brightness(0%);
}

/*.s-header__shrink .s-header__logo-img-shrink {*/
/*  opacity: 1;*/
/*}*/

/* Trigger Icon */
.s-header__shrink.-is-open .s-header__trigger-icon {
  background: #fff;
}

.s-header__shrink .s-header__trigger-icon {
  background: #222324;
}

.s-header__shrink .snipcart-total-price {
    color: rgb(51, 82, 96);
}

/*.s-header__shrink .snipcart-cartIcon {*/
/*    filter: invert(100%) brightness(0%);*/
/*}*/

.s-header__shrink .dropbtn {
    filter: invert(100%) brightness(0%);
    background-size: contain;
}

/*.s-header__shrink .langbtn {*/
/*    filter: invert(100%) brightness(0%);*/
/*    background-size: contain;*/
/*}*/

.s-header__shrink .separatingDots {
    background-image: radial-gradient(circle, rgb(51, 82, 96) 1px, transparent 1.5px);
    background-size: 100% 20%;
}

/*.s-header__shrink .snipcart-items-count {*/
/*    background: black;*/
/*    color: white;*/
/*}*/

/*----------------------------------
  Footer
------------------------------------*/
.s-footer__logo {
  position: relative;
  z-index: 1;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.s-footer__logo:before {
  position: absolute;
  top: 0;
  left: 0.9375rem;
  bottom: 0;
  width: 90%;
  height: auto;
  z-index: -1;
  background: url("../../assets/images/worldmap.webp") no-repeat center center;
  background-size: cover;
  content: " ";
}

.footer-instagram {
    display: flex;
    gap: 0.28rem;
}

.email_icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}

.email_icon svg {
    height: 16px;
    flex-shrink: 0;
    margin-right: 6px;
}

.footer-instagram svg path, .location_icon svg path, .email_icon svg path {
    transition: all 0.5s ease;
}

.footer-instagram:hover svg path {
    fill: #007bb8 !important;
}

.location_icon svg, .email_icon svg {
    width: 16px;
}

.g-color--white-opacity[href]:hover .location_icon svg path {
    fill: #007bb8
}

.g-color--white-opacity[href]:hover .email_icon svg path {
    fill: #007bb8
}

/*----------------------------------
  Back To Top
------------------------------------*/
.s-back-to-top {
  position: fixed;
  right: 3.125rem;
  bottom: -3.125rem;
  display: block;
  width: 1.875rem;
  height: 3rem;
  z-index: 9;
  background: #007bb8;
  border-radius: 3.125rem;
  text-align: center;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-back-to-top:before {
  display: block;
  font-size: 0.75rem;
  font-style: normal;
  font-family: themify;
  color: #fff;
  line-height: 3rem;
  content: "\e627";
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-back-to-top:hover {
  background: #fff;
}

.s-back-to-top:hover:before {
  color: #13b1cd;
}

.s-back-to-top:focus, .s-back-to-top:hover {
  text-decoration: none;
}

/* The button becomes visible */
.s-back-to-top.-is-visible {
  bottom: 3.125rem;
  opacity: .8;
}

.s-back-to-top.-is-visible:hover {
  opacity: 1;
}

/* If the user keeps scrolling down, the button is out of focus and becomes less visible */
.s-back-to-top.-zoom-out {
  opacity: .6;
}

/*----------------------------------
  Cubeportfolio
------------------------------------*/
.s-portfolio__filter-v1-item {
  font-size: 0.8125rem;
  color: #656565 !important;
  text-transform: uppercase;
  margin-bottom: 0 !important;
}

.s-portfolio__filter-v1-item:hover {
  color: #007bb8 !important;
}

.s-portfolio__filter-v1-item.cbp-filter-item-active {
  color: #007bb8  !important;
  font-size: 16px;
}

.s-portfolio__filter-v1.cbp-l-filters-text {
  margin-bottom: 0;
}

/* Image Effect
------------------------------ */

/* Store banner
------------------------------ */
.products_container {
    padding-bottom: 6.25rem;
    background: #222324;
}


.newStoreBanner {
    background: white;
    padding: 20px !important;
    border-radius: 20px !important;
    border: 10px solid #222324;
}

.products_header {
    color: white;
}

.storeBanner-image__wrapper {
  width: 100% !important;
  height: 100% !important;
  position: relative;
  box-shadow: 0 0 0 11px #fff;
  border-radius: 10px;
}

.testing_banner:before {
    content: "";
    display: block;
    padding-top: calc(100% + 107px);
}

.storeBanner-image {
  width: 77% !important;
  position: absolute;
  top: 0;
  left: 11%;
}

.storeBanner-product__description {
  position: absolute;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.choco-product__description {
    height: 80px;
}

.storeBanner-product__name {
  display: flex;
  width: 100%;
  justify-content: space-between;
  font-weight: bold;
  color: black;
}

.storeBanner-product__name:lang(am) {
    font-size: 15px;
}

.storeBanner-product__text {
  font-size: 12px;
  color: #6a7b85;
  width: 250px;
}

.storeBanner-product__pricing {
  position: absolute;
  bottom: 6px;
  font-size: 22px;
  font-weight: bold;
  color: black;
}

.storeBanner-product__pricing span {
  font-size: 11px;
  font-weight: normal;
  color: #6a7b85;
}

.storeBanner-product-info {
  position: absolute;
  cursor: pointer;
  width: 28px !important;
  top: 0;
  left: 0;
}

.storeBanner-product-info_close {
    width: 25px !important;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}

.storeBanner-product__buy {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  position: absolute;
  bottom: 0;
  pointer-events: none;
}

.storeBanner-product__buy-icon {
  width: 65% !important;
  position: absolute;
  left: 7px;
  top: 8px;
}

.s-icon--black-bg {
  color: #fff;
  background: #000;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #000;
  line-height: 1.4;
}


.storeBanner-product__info {
    width: 100%;
    height: auto;
    position: absolute;
    background: #fff;
    backdrop-filter: blur(30px);
    z-index: 11111111;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.15);
    display: none;
    align-items: center;
    justify-content: center;
}

.storeBanner-product__info-text {
    font-size: 12px;
}

.storeBanner-product_magnifier-wrapper {
    position: absolute;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    width: 100px;
    height: 100px;
    background: transparent;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}

.storeBanner-product_magnifier {
    width: 30px !important;
    cursor: pointer;
}

.storeBanner-image:hover + .storeBanner-product_magnifier-wrapper {
    opacity: 1;
}

.storeBanner-product_magnifier-wrapper:hover {
    opacity: 1;
}

.storeBanner-product_description {
    position: absolute;
    width: 37px !important;
    top: 50px;
    right: 0;
    pointer-events: none;
}

.teaUpperIcon {
    top: 0;
}

.waterUpperIcon {
    top: 0;
}

.chocoUpperIcon {
    top: 0;
}

.coffeeUpperIcon {
    top: 0;
}

.wineUpperIcon {
    top: 0;
}

.vodkaUpperIcon {
    top: 0;
}

.brandyUpperIcon {
    top: 0;
}

.ginUpperIcon {
    top: 0;
}

.newIcon {
    top: 100px;
}


/* Store buy button
------------------------------ */

.pushable {
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    width: 45px;
    height: 45px;
    pointer-events: all;
    padding: 0;
}
.front {
  display: block;
  border-radius: 50%;
  font-size: 1.25rem;
  background: black;
  color: white;
  transform: translateY(-4px);
  width: 45px;
  height: 45px;
}

.pushable:active .front {
  transform: translateY(-2px);
}

.pushable:focus:not(:focus-visible) {
  outline: none;
}

.front {
  transition:
          transform
          600ms
          cubic-bezier(.3, .7, .4, 1);
}

.pushable:hover .front {
  transform: translateY(-6px);
  transition:
          transform
          250ms
          cubic-bezier(.3, .7, .4, 1.5);
}

.pushable:active .front {
  transform: translateY(-2px);
  transition: transform 34ms;
}
/* Store buy button end
------------------------------ */

.snipCart-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    top: 1px;
}

.separatingDots {
    width: 20px;
    height: 20px;
    background-image: radial-gradient(circle, white 1px, transparent 1.5px);
    background-size: 100% 20%;
}

.snipcart-total-price {
    color: white;
}

.snipcart-items-count {
    display: none;
    background: transparent;
    font-size: 15px;
    color: white;
    text-align: center;
    line-height: 15px;
    font-weight: bold;
}

.header__button-count-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: row;
    gap: 5px;
    flex-shrink: 0;
}

.header__cart-button {
    display: flex;
    align-items: center;
    height: 32px;
    width: 32px;
    border: none;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    padding: 0;
    margin: 0;
    border: 1px solid white;
    border-radius: 50px;
    transition: all 0.5s linear(0 0%, 0.22 2.1%, 0.86 6.5%, 1.11 8.6%, 1.3 10.7%, 1.35 11.8%, 1.37 12.9%, 1.37 13.7%, 1.36 14.5%, 1.32 16.2%, 1.03 21.8%, 0.94 24%, 0.89 25.9%, 0.88 26.85%, 0.87 27.8%, 0.87 29.25%, 0.88 30.7%, 0.91 32.4%, 0.98 36.4%, 1.01 38.3%, 1.04 40.5%, 1.05 42.7%, 1.05 44.1%, 1.04 45.7%, 1 53.3%, 0.99 55.4%, 0.98 57.5%, 0.99 60.7%, 1 68.1%, 1.01 72.2%, 1 86.7%, 1 100%);
}

.header__cart-button--is-open {
    width: 95px;
    flex-direction: row-reverse;
    background: black;
    justify-content: space-between;
    padding-left: 10px;
}

.header__items-count-text {
    display: none;
    font-size: 7px;
    color: white;
    font-weight: bold;
    line-height: 8px;
}

.snipcart-cartIcon {
    background: white;
    width: 30px;
    height: 30px;
    border: 3px solid black;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.login-icon {
    width: 17px;
    position: relative;
    right: 7px;
    bottom: 0;
    content: url('../../assets/images/login_icon_w.svg');
}


/* Store banner end
------------------------------ */

.s-portfolio__img-effect {
  position: relative;
  display: block;
}

.s-portfolio__img-effect:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  content: " ";
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.cbp-item-wrapper:hover > .s-portfolio__img-effect {
    transform: scale(1.2);
    -webkit-filter: brightness(60%);
    filter: brightness(60%);
}

.gallery-item {
    border-radius: 15px;
    border: 7px solid #222324;
}

.s-portfolio__img-effect{
  transition: .4s ease-in-out;
}



.s-portfolio__img-effectMin {
  position: relative;
  display: block;
}

.s-portfolio__img-effectMin:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background:  rgba(198,200,225,0.92);
  content: " ";
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__img-effectSpr {
  position: relative;
  display: block;
}

.s-portfolio__img-effectSpr:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #80d1f5ed;
  content: " ";
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__img-effectChoco {
  position: relative;
  display: block;
}

.s-portfolio__img-effectChoco:after {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #422c1ced;
  content: " ";
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__img-effectTea {
  position: relative;
  display: block;
}

.s-portfolio__img-effectTea:after {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #cd6127ed;
  content: " ";
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__img-effectFurniture {
  position: relative;
  display: block;
}

.s-portfolio__img-effectFurniture:after {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #6d9189ed;
  content: " ";
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__img-effectPrinting {
  position: relative;
  display: block;
}

.s-portfolio__img-effectPrinting:after {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #f0ae03ed;
  content: " ";
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__img-effectCoffee {
  position: relative;
  display: block;
}

.s-portfolio__img-effectCoffee:after {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #1b1410ed;
  content: " ";
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__img-effectGin {
  position: relative;
  display: block;
}

.s-portfolio__img-effectGin:after {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #616c3bed;
  content: " ";
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__img-effectVodka {
  position: relative;
  display: block;
}

.s-portfolio__img-effectVodka:after {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #bacfd8ed;
  content: " ";
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__img-effectBrandy {
  position: relative;
  display: block;
}

.s-portfolio__img-effectBrandy:after {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #974d16ed;
  content: " ";
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__img-effectWine {
  position: relative;
  display: block;
}

.s-portfolio__img-effectWine:after {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #522025ed;
  content: " ";
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}


.s-portfolio__item:hover .s-portfolio__img-effectMin:after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.s-portfolio__item:hover .s-portfolio__img-effect:after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/*@media (min-width: 736px) {*/
    .s-portfolio__item:hover .s-portfolio__img-effectSpr:after {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
    .s-portfolio__item:hover .s-portfolio__img-effectChoco:after {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
    
    .s-portfolio__item:hover .s-portfolio__img-effectTea:after {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
    
    .s-portfolio__item:hover .s-portfolio__img-effectFurniture:after {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
    
    .s-portfolio__item:hover .s-portfolio__img-effectPrinting:after {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
    
    .s-portfolio__item:hover .s-portfolio__img-effectCoffee:after {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
    
    .s-portfolio__item:hover .s-portfolio__img-effectGin:after {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
    
    .s-portfolio__item:hover .s-portfolio__img-effectVodka:after {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
    
    .s-portfolio__item:hover .s-portfolio__img-effectBrandy:after {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
    .s-portfolio__item:hover .s-portfolio__img-effectWine:after {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
/*}*/


/* Position
------------------------------ */
.s-portfolio__caption-hover--cc {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  padding: 1.875rem;
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

/*@media (min-width: 736px) {*/
    .cbp-item-wrapper:hover .s-portfolio__caption-hover--cc {
      opacity: 1;
      -webkit-transform: translate3d(0, -50%, 0);
      transform: translate3d(0, -50%, 0);
    }
/*}*/

.hoverText {
    opacity: 1;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.hoverBackground {
  position: relative;
  display: block;
}

.hoverBackground:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(128,209,245,0.92);
  content: " ";
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.product-info-phone {
  transition-duration: 50ms;
  visibility: hidden;
}

.returnPolicy {
    display: list-item;
    list-style: none;
    line-height: 1.707;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    position: absolute;
    top: 174.5px;
}

@media (max-width: 736px) {

  .product-info-phone {
    visibility: visible;
  }

  /*.s-portfolio__item:hover .product-info-phone {*/
  /*  visibility: hidden;*/
  /*}*/
}

.product-info-phone {
  position: absolute;
  width: 40px !important;
  bottom: 10px;
  right: 15px;
}

/* Paginations v1
------------------------------ */
.s-portfolio__paginations-v1 .cbp-nav-controls {
  display: none;
}

.s-portfolio__paginations-v1 .cbp-nav-pagination {
  padding-left: .625rem;
}

.s-portfolio__paginations-v1 .cbp-nav-pagination-item {
  margin: 0 .9375rem;
}

.s-portfolio__paginations-v1 .cbp-nav-pagination-active {
  background: #13b1cd;
}

/* Tab v1
------------------------------ */
.s-tab__filter-v1 {
  display: block;
  font-size: 1.75rem;
  color: #fff;
  text-align: center;
  border: none;
  cursor: pointer;
  letter-spacing: .0625rem;
  line-height: 2rem;
  padding: 0 0 2rem;
  margin: 0 0 2rem;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-tab__filter-v1:before {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 5rem;
  height: 0.0625rem;
  background: rgba(255, 255, 255, 0.3);
  content: " ";
  margin-left: -2.5rem;
}

.s-tab__filter-v1:last-child {
  padding: 0;
  margin: 0;
}

.s-tab__filter-v1:last-child:before {
  display: none;
}

.s-tab__filter-v1.cbp-filter-item-active {
  color: #13b1cd;
}

.s-tab__grid-v1-item {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #656565;
}

/*----------------------------------
  Google Map
------------------------------------*/
/* Custom Style */
.s-google-map,
.s-google-map .s-google-container {
  position: relative;
  height: 550px;
}

/* Info Window: White background and box outline */
.gm-style > div:first-child > div + div > div:last-child > div > div:first-child > div {
  background-color: #fff !important;
  box-shadow: none !important;
}

/* Info Window: Arrow colour */
.gm-style > div:first-child > div + div > div:last-child > div > div:first-child > div > div > div {
  background-color: #fff !important;
  box-shadow: none !important;
}

.gm-style > div:first-child > div + div > div:last-child > div > div:first-child > div:first-child {
  display: none;
}

/* Info Window: Let's remove image icon inside close button */
.gm-style > div:first-child > div + div > div:last-child > div > div:last-child > img {
  display: none;
}

/* Info Window: New arrow style */
.gm-style > div:first-child > div + div > div:last-child > div > div:last-child {
  overflow: inherit !important;
}

.gm-style > div:first-child > div + div > div:last-child > div > div:last-child:after {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.75rem;
  font-family: themify;
  color: #656565;
  content: "\e646";
}

/* Info Window: Positioning of infowindow */
.gm-style-iw {
  top: 1.375rem !important;
  left: 1.375rem !important;
}

/*----------------------------------
  Swiper
------------------------------------*/
.s-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.js__swiper-one-item {
    pointer-events: none;
}

/* Arrows v1
------------------------------ */
.s-swiper__arrow-v1--left, .s-swiper__arrow-v1--right {
  position: absolute;
  top: 50%;
  z-index: 1;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

@media (max-width: 47.9em) {
  .s-swiper__arrow-v1--left, .s-swiper__arrow-v1--right {
    opacity: 0;
  }
}

.s-swiper__arrow-v1--left {
  left: 2rem;
}

.s-swiper__arrow-v1--right {
  right: 2rem;
}

@media (max-width: 47.9em) {
  .s-swiper:hover .s-swiper__arrow-v1--left, .s-swiper:hover .s-swiper__arrow-v1--right {
    opacity: 1;
  }
}

/* Pagination v1
------------------------------ */
.s-swiper__pagination-v1--bc {
  position: absolute;
  bottom: 1.875rem !important;
  text-align: center;
  z-index: 1;
}

.s-swiper__pagination-v1 .swiper-pagination-bullet {
  width: 1rem;
  height: 0.5625rem;
  border-radius: 0.9375rem;
  opacity: .7;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-swiper__pagination-v1 .swiper-pagination-bullet-active {
  width: 1.875rem;
  background: #13b1cd;
  opacity: 1;
}

.s-swiper__pagination-v1--white .swiper-pagination-bullet {
  background: #fff;
}

.s-swiper__pagination-v1--white .swiper-pagination-bullet-active {
  background: #13b1cd;
}

.s-swiper__pagination-v1--dark .swiper-pagination-bullet {
  background: #b2b2b2;
}

.s-swiper__pagination-v1--dark .swiper-pagination-bullet-active {
  background: #422c1c;
}

/*water*/
.s-swiper__pagination-v1--water .swiper-pagination-bullet {
  background: #b2b2b2;
}
.s-swiper__pagination-v1--water .swiper-pagination-bullet-active {
  background: rgb(128,209,245);
}

/*tea*/
.s-swiper__pagination-v1--tea .swiper-pagination-bullet {
  background: #b2b2b2;
}
.s-swiper__pagination-v1--tea .swiper-pagination-bullet-active {
  background: #cd6127;
}

/*furniture*/
.s-swiper__pagination-v1--furniture .swiper-pagination-bullet {
  background: #b2b2b2;
}
.s-swiper__pagination-v1--furniture .swiper-pagination-bullet-active {
  background: #6d9189;
}

/*printing*/
.s-swiper__pagination-v1--printing .swiper-pagination-bullet {
  background: #b2b2b2;
}
.s-swiper__pagination-v1--printing .swiper-pagination-bullet-active {
  background: #f0ae03;
}

/*coffee*/
.s-swiper__pagination-v1--coffee .swiper-pagination-bullet {
  background: #b2b2b2;
}
.s-swiper__pagination-v1--coffee .swiper-pagination-bullet-active {
  background: #1b1410;
}

/*dry gin*/
.s-swiper__pagination-v1--gin .swiper-pagination-bullet {
  background: #b2b2b2;
}
.s-swiper__pagination-v1--gin .swiper-pagination-bullet-active {
  background: #616c3b;
}

/*vodka*/
.s-swiper__pagination-v1--vodka .swiper-pagination-bullet {
  background: #b2b2b2;
}
.s-swiper__pagination-v1--vodka .swiper-pagination-bullet-active {
  background: #bacfd8;
}

/*brandy*/
.s-swiper__pagination-v1--brandy .swiper-pagination-bullet {
  background: #b2b2b2;
}
.s-swiper__pagination-v1--brandy .swiper-pagination-bullet-active {
  background: #974d16;
}

/*wine*/
.s-swiper__pagination-v1--wine .swiper-pagination-bullet {
  background: #b2b2b2;
}
.s-swiper__pagination-v1--wine .swiper-pagination-bullet-active {
  background: #522025;
}

.first{
  background: url(../img/2240x1260_webp/waterfast.webp) 50% 0 no-repeat;
}

.second{
  background: url(../img/1920x1080/07.jpg) 50% 0 no-repeat;
}

.third{
  background: url(../img/1920x1080/04.jpg) 50% 0 no-repeat;
  background-size: auto 100%;
}

.fourth{
  background: url(../img/1920x1080/waterstats.jpg) 50% 0 no-repeat;
  background-size: cover;
}

.firstChoco{
  background: url(../img/1920x1080/chocofast.jpg) 50% 0 no-repeat;
  background-size: cover;
}

.secondChoco{
  background: url(../img/1920x1080/choconetwork.jpg) 50% 0 no-repeat;
  background-size: cover;
}

.thirdChoco{
  background: url(../img/1920x1080/nutrition.jpg) 50% 0 no-repeat;
  background-size: cover;
}

.fourthChoco{
  background: url(../img/1920x1080/chocostats.jpg) 50% 0 no-repeat;
  background-size: cover;
}

.firstTea{
  background: url(../img/1920x1080/teafast.jpg) 50% 0 no-repeat;
}

.secondTea{
  background: url(../img/1920x1080/teanetwork.jpg) 50% 0 no-repeat;
}

.thirdTea{
  background: url(../img/1920x1080/nutrition.jpg) 50% 0 no-repeat;
  background-size: auto 100%;
}

.fourthTea{
  background: url(../img/1920x1080/teastats.jpg) 50% 0 no-repeat;
}

.firstFurniture{
  background: url(../img/1920x1080/furniturefast.jpg) 50% 0 no-repeat;
}

.fourthFurniture{
  background: url(../img/1920x1080/woodstats.jpg) 50% 0 no-repeat;
}

.firstPrint{
  background: url(../img/1920x1080/printfast.jpg) 50% 0 no-repeat;
}

.fourthPrint{
  background: url(../img/1920x1080/printstats.jpg) 50% 0 no-repeat;
}
.firstCoffee{
  background: url(../img/1920x1080/coffeefast.jpg) 50% 0 no-repeat;
}

.fourthCoffee{
  background: url(../img/1920x1080/coffeestats.jpg) 50% 0 no-repeat;
}
.firstGin{
  background: url(../img/1920x1080/ginfast.jpg) 50% 0 no-repeat;
}

.fourthGin{
  background: url(../img/1920x1080/ginstats.jpg) 50% 0 no-repeat;
}

.firstVodka{
  background: url(../img/1920x1080/vodkafast.jpg) 50% 0 no-repeat;
}

.fourthVodka{
  background: url(../img/1920x1080/vodkastats.jpg) 50% 0 no-repeat;
}
.firstBrandy{
  background: url(../img/1920x1080/brandyfast.jpg) 50% 0 no-repeat;
}

.fourthBrandy{
  background: url(../img/1920x1080/brandystats.jpg) 50% 0 no-repeat;
}

.firstWine{
  background: url(../img/1920x1080/winefast.jpg) 50% 0 no-repeat;
}

.fourthWine{
  background: url(../img/1920x1080/winestats.jpg) 50% 0 no-repeat;
}

.firstLollipop{
  background: url(../img/1920x1080/scffast.jpg) 50% 0 no-repeat;
}

.fourthLollipop{
  background: url(../img/1920x1080/scfstats.jpg) 50% 0 no-repeat;
}

.firstCheese{
  background: url(../img/1920x1080/cheesefast.jpg) 50% 0 no-repeat;
}

.fourthCheese{
  background: url(../img/1920x1080/cheesestats.jpg) 50% 0 no-repeat;
}

.firstPods{
  background: url(../img/1920x1080_webp/podsfast.webp) 50% 0 no-repeat;
}

.fourthPods{
  background: url(../img/1920x1080_webp/podstats.webp) 50% 0 no-repeat;
}

.firstToys{
  background: url(../img/1920x1080/toysfast.jpg) 50% 0 no-repeat;
}

.fourthToys{
  background: url(../img/1920x1080/toysstats.jpg) 50% 0 no-repeat;
}

.firstFish{
  background: url(../img/1920x1080/fishfast.jpg) 50% 0 no-repeat;
}

.fourthFish{
  background: url(../img/1920x1080/fishstats.jpg) 50% 0 no-repeat;
}

.waterInfo{
    background: url(../img/1920x1080/14.jpg) 50% 0 no-repeat;
}

.textAlign{
    text-align: justify;
    text-justify: inter-word;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #f1f1f1;
  /*min-width: 160px;*/
  overflow: auto;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  border-radius: 10px;
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {background-color: #ddd;}

.show {
  display: block;
}

.lang{
  font-family: Montserrat, sans-serif;
  transition: background-color 0.5s;
}

.lang:hover{
  background-color: rgba(128,209,245,0.92);
}

.selectedLang{
  background-color: rgba(128,209,245,0.92);
}



.dropdown-arrow {
    width: 0; 
    height: 0; 
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 5px solid #fff;
}

.snipcart-customer-signin {
    flex-direction: row-reverse;
    font-size: 10px;
    color: white;
    margin-right: 15px;
}

.header-profile_buttons {
    width: 100%;
    background: black;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    height: 33px;
}


    .popup-div {
        border: none;
        box-shadow: 0 0 20px 0 black;
        display: flex;
        flex-direction: column;
        color: #fff;
        position: absolute;
        transition: opacity .15s, transform .15s, left 0s, -webkit-transform .15s;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(-50%) scaleY(0);
        transform: translateX(-50%) scaleY(0);
        -webkit-transform-origin: left top;
        transform-origin: left top;
        padding: 10px 16px;
        background-color: #000;
        z-index: 10;
        left: 50%;
        top: 15px;
        gap: 5px;
        border-radius: 2px;
    }

    .hover-div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 5px;
    }

    .popup-div span {
        width: 100%;
        cursor: pointer;
        transition: all .15s ease-in-out;
        padding: 0 5px;
        border-radius: 5px;
        font-size: 12px;
    }

    .popup-div span:hover {
        color: white;
        background-color: #007bb8;
    }


    .lang-popup-div span {
        padding: 3px 5px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        font-size: 11px;
    }

    .hover-div:hover .popup-div {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) scaleY(1);
    }
    
    .langPreview {
        color: white;
        font-size: 10px;
        cursor: default;
        -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none; /* Safari */
        -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
        user-select: none; 
    }

    .header__checkout {
        flex-direction: row-reverse;
        font-size: 10px;
        color: white;
        margin-right: 15px;
    }





@media screen and (max-width: 991px) {
    .bigScreen {
        display: none;
    }
}



video {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
}

.pods_video {
    top:calc(100% - 54vh);
}

@media screen and (max-width: 480px) {
    .pods_video {
        top:calc(100% - 28vh);
    }
}

@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
    .pods_video {
        top: 50%;
    } /* your css rules for ipad portrait */
}
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape) {
    .pods_video {
        top: 50%;
    } /* your css rules for ipad landscape */
}

.hide-video {
  height: 100vh;
  width: 100%;
  background: white;
  position: absolute;
  z-index: -1;
}


.social-icons {
    display: flex;
    justify-content: center;
}

.social_instagram {
    /*background: url(../../images/instagram.svg);*/
    width: 30px;
    display: inline-block;
    position: relative;
    top: 3px;
    margin-right: 1.25rem;
}

.social_instagram svg path {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.social_instagram:hover svg path {
    fill: #007bb8;
    /*color: #007bb8 !important;*/
}

.menu-instagram {
    width:20px;
    position:relative;
    bottom:2px;
    transition: 0.5s;
}

.s-header__action-link:hover .menu-instagram {
    filter: brightness(0.4);
}

.header-logo {
    width: 9%;
    min-width: 130px;
    position: absolute;
    top: 25px;
}

@media screen and (max-width: 991px) {
    .header-logo {
        width: 14%;
    }
}

@media screen and (max-width: 736px) {
    .social-icons {
        justify-content: flex-end;
    }
    
    .header-logo {
        min-width: 35px;
        top: 23px;
        left: -5px;
    }
    
    
    #js__filters-portfolio-gallery {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        max-width: 100%;
        justify-content: center;     /* Center items when they fit */
        -ms-overflow-style: none;  /* Internet Explorer 10+ */
        scrollbar-width: none;  /* Firefox */
    }
    
    #js__filters-portfolio-gallery::-webkit-scrollbar { 
        display: none;  /* Safari and Chrome */
    }
    
    .cbp-filter-item {
        flex-shrink: 0;
    }
    
    #js__filters-portfolio-gallery:after {
        content: "";
        display: block;
        width: 50px;
        position: absolute;
        height: 10%;
        right: 13px;
        z-index: 2;
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
        /* FF3.6-15 */
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(34, 35, 36, 0.9) 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=1 );
        /* IE6-9 */
    }
    
    #js__filters-portfolio-gallery:before {
        content: "";
        display: block;
        width: 50px;
        position: absolute;
        height: 10%;
        left: 13px;
        z-index: 2;
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
        /* FF3.6-15 */
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(34, 35, 36, 0.9) 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=1 );
        /* IE6-9 */
    }
    
    .cbp-filter-item_first {
        padding-left: 30px !important;
    }
    .cbp-filter-item_last {
        padding-right: 30px !important;
    }
    
}

@media (max-width: 100vw) {   /* Use viewport width (100vw) to determine when items should be aligned */
  #js__filters-portfolio-gallery {
    justify-content: flex-start; /* Align items to the left when they fit */
  }
}

@media (min-width: 992px){
    .col-md-offset-2 {
        margin-left: 0 !important;
        position: relative;
        left: 10.666667%;
    }
}

.product-info-wrapper {
  display: flex;
  justify-content: center;
}

.product-info {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  height: 74px;
  width: 90px;
}

.product-img {
  width: 53% !important;
}

.product-text {
  color: white;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  top: 10px;
}

.container {
    position: relative;
}

.about-texts_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.digitalPass {
    width: 120px;
    height: 174px;
    background: url(../img/digitalPass.webp) no-repeat;
    background-size: contain;
    margin-top: 45px;
}

.digitalPassPDF {
    position: absolute;
    bottom: 9px;
    left: 53px;
    display: inline-block;
    width: 14px;
    height: 14px;
}

.g-promo-section {
    min-height: 778px;
}

@media only screen and (min-width: 834px) and (orientation: portrait)
{
    .container {
        width: 800px !important;
    }
    .s-footer__logo {
        margin-left: 0 !important;
    }
    .hideOnIpad {
        display: none;
    }
}


/*mobile hover*/

.hoverText {
    opacity: 1;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}


.s-portfolio__img-effectSprMobile {
  position: relative;
  display: block;
}

.s-portfolio__img-effectSprMobile:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(128,209,245,0.92);
  content: " ";
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__img-effectChocoMobile {
  position: relative;
  display: block;
}

.s-portfolio__img-effectChocoMobile:after {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #422c1ced;
  content: " ";
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__img-effectTeaMobile {
  position: relative;
  display: block;
}

.s-portfolio__img-effectTeaMobile:after {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #cd6127ed;
  content: " ";
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__img-effectFurnitureMobile {
  position: relative;
  display: block;
}

.s-portfolio__img-effectFurnitureMobile:after {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #6d9189ed;
  content: " ";
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__img-effectPrintingMobile {
  position: relative;
  display: block;
}

.s-portfolio__img-effectPrintingMobile:after {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #f0ae03ed;
  content: " ";
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__img-effectCoffeeMobile {
  position: relative;
  display: block;
}

.s-portfolio__img-effectCoffeeMobile:after {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #1b1410ed;
  content: " ";
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__img-effectGinMobile {
  position: relative;
  display: block;
}

.s-portfolio__img-effectGinMobile:after {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #616c3bed;
  content: " ";
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__img-effectVodkaMobile {
  position: relative;
  display: block;
}

.s-portfolio__img-effectVodkaMobile:after {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #bacfd8ed;
  content: " ";
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__img-effectBrandyMobile {
  position: relative;
  display: block;
}

.s-portfolio__img-effectBrandyMobile:after {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #974d16ed;
  content: " ";
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__img-effectWineMobile {
  position: relative;
  display: block;
}

.s-portfolio__img-effectWineMobile:after {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #522025ed;
  content: " ";
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}


.list-inline {
    /*position: unset !important;*/
}

/*New gallery*/
.newGallery-wrapper {
  width: 100%;
  height: 400px;
  position: relative;
  padding-top: 15px;
}

.swiper-container {
  width: 100%;
  height: 95%;
}

.swiper-slide {
  text-align: center;
  background: #f4f4f4;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-general {
  padding: 75px 0;
  margin: 0 auto;
  width: 800px;
}
.container-general .gallery-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 70vh;
}
.container-general .gallery-wrap .item {
  flex: 1;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: none;
  transition: all 0.8s ease;
}
.container-general .gallery-wrap .item:hover {
  flex: 7;
}

.wrap-effect-1 .item:first-of-type {
  background-image: url("../img/water/gs_1.jpg");
}
.wrap-effect-1 .item:nth-of-type(2) {
  background-image: url("../img/water/gs_3.jpg");
}
.wrap-effect-1 .item:nth-of-type(3) {
  background-image: url("../img/water/gs_4.jpg");
}
.wrap-effect-1 .item:nth-of-type(4) {
  background-image: url("../img/water/gs_5.jpg");
}
.wrap-effect-1 .item:last-of-type {
  background-image: url("../img/water/gs_7.jpg");
}

.wrap-effect-2 .item:hover {
  transform: translate3d(0, 0, 100px);
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
  filter: saturate(2) contrast(120%);
}
.wrap-effect-2 .item:first-of-type {
  background-image: url("https://cdn.dribbble.com/users/729829/screenshots/4854597/galshir-umbrella.jpg");
}
.wrap-effect-2 .item:nth-of-type(2) {
  background-image: url("https://cdn.dribbble.com/users/729829/screenshots/4776189/galshir-genesis.png");
}
.wrap-effect-2 .item:nth-of-type(3) {
  background-image: url("https://cdn.dribbble.com/users/729829/screenshots/5329211/galshir-walking.gif");
}
.wrap-effect-2 .item:nth-of-type(4) {
  background-image: url("https://cdn.dribbble.com/users/729829/screenshots/4611698/galshir-paper-boat.png");
}
.wrap-effect-2 .item:last-of-type {
  background-image: url("https://cdn.dribbble.com/users/729829/screenshots/4544774/galshir-window.png");
}

.wrap-effect-3 .item:hover {
  animation: rotate 0.7s ease-in-out both;
  border-radius: 10px;
  border: 1px solid gray;
}
.wrap-effect-3 .item:first-of-type {
  background-image: url("https://cdn.dribbble.com/users/729829/screenshots/5947483/galshir-wind_2x.png");
}
.wrap-effect-3 .item:nth-of-type(2) {
  background-image: url("https://cdn.dribbble.com/users/729829/screenshots/5754705/galshir-rain_2x.png");
}
.wrap-effect-3 .item:nth-of-type(3) {
  background-image: url("https://cdn.dribbble.com/users/729829/screenshots/5355160/galshir-attack.gif");
}
.wrap-effect-3 .item:nth-of-type(4) {
  background-image: url("https://cdn.dribbble.com/users/729829/screenshots/4742049/galshir-samurai.png");
}
.wrap-effect-3 .item:last-of-type {
  background-image: url("https://cdn.dribbble.com/users/729829/screenshots/5594777/galshir-winter-cycling_2x.jpg");
}

.wrap-effect-4 .item:hover {
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
  filter: saturate(2) contrast(120%);
}
.wrap-effect-4 .item:first-of-type {
  background-image: url("https://cdn.dribbble.com/users/729829/screenshots/4226693/galshir-iphone-x-lemonade.gif");
}
.wrap-effect-4 .item:nth-of-type(2) {
  background-image: url("https://cdn.dribbble.com/users/729829/screenshots/4475663/galshir-musical-instruments.gif");
}
.wrap-effect-4 .item:nth-of-type(3) {
  background-image: url("https://cdn.dribbble.com/users/729829/screenshots/5431797/galshir-lemonade-ring.gif");
}
.wrap-effect-4 .item:nth-of-type(4) {
  background-image: url("https://cdn.dribbble.com/users/729829/screenshots/4419736/galshir-lemonade-bike.gif");
}
.wrap-effect-4 .item:last-of-type {
  background-image: url("https://cdn.dribbble.com/users/729829/screenshots/4281500/galshir-lemonade-camera.gif");
}

.inspire {
  border: 1px solid rgba(22, 76, 167, 0.6);
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  margin: 10px;
  padding: 10px;
}
.inspire:after {
  background: #38ef7d;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.4;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: -10;
}
.inspire:hover:after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  25% {
    transform: rotate(10deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-10deg) translate3d(0, 0, 0);
  }
  75% {
    transform: rotate(5deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}
/*New gallery end*/

#js__scroll-to-gallery {
    background: #222324;
}

.gallery-description_header {
    color: white;
}

.gallery-description_text {
    color: gray;
}


.menu-button {
    position: relative;
    top: 1px;
    width: 40px;
    margin-left: 28px;
}

/*Currency Dropdown*/

.dropbtn {
  background: url('../../assets/images/exchange_w.svg');
  color: white;
  /*padding: 10px;*/
  padding: 8px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  background-size: contain;
  margin-top: 3px;
}

.language {
    /*margin-top: 3px;*/
    margin-left: 30px;
}

.langbtn {
  background: url('../../assets/images/language_w.svg');
  color: white;
  padding: 8px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  background-size: contain;
  outline: none !important;
}

.dropdown {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin-right: 4px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  /*min-width: 160px;*/
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  font-size: 14px;
}

.dropdown-content span {
  color: black;
  padding: 6px 16px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

/*.dropdown span:hover {background-color: #ddd;}*/

.show {display: block;}

/*Currency Dropdown end*/


/*Menu navigation*/

.menu_items-wrapper {
  -webkit-transition: all 0.4s 1.4s ease-out;
  transition: all 0.4s 1.4s ease-out;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
    display: flex;
    flex-direction: column;
    gap: 65px;
    position: absolute;
    right: 0;
    left: 0;
    align-items: center;
    /*top: calc(50% - 187.5px);*/
    top: calc(50% - 277.5px);
    pointer-events: none;


    opacity: 0;
    -webkit-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    -webkit-transform: translate3d(0, 1.25rem, 0);
    transform: translate3d(0, 1.25rem, 0);
}


.s-header-bg-overlay.-is-open .menu_items-wrapper {
  opacity: 1;
  -webkit-transition: all 0.4s 0.8s ease-out;
  transition: all 0.4s 0.8s ease-out;
}

.menu_item_block {
  display: flex;
  flex-direction: row;
  gap: 70px;
  pointer-events: all;
  align-items: baseline;
}

.menu_item {
  height: 50px;
  width: 50px;
  background-size: contain;
  position: relative;
  display: flex;
  justify-content: center;
  cursor: pointer;
  border-radius: 13px;
  transition: all 0.5s ease-in-out;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
}

.menu_item img {
    transition: all 0.5s ease-in-out;
    width: 50px;
    border-radius: 13px;
}

.menu_item:hover img {
  filter: invert(100%);
  background: black;
}

.menu_item-text {
  text-align: center;
  width: 135px;
  color: white;
  font-size: 13px;
  pointer-events: none;
}

.menu-items_upper {
  position: absolute;
  right: 0;
  left: 0;
  height: 10px;
  /*top: calc(45% - 220px);*/
  top: calc(45% - 280px);
  display: flex;
  justify-content: center;
  gap: 50px;
  pointer-events: none;

  opacity: 0;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  -webkit-transform: translate3d(0, 1.25rem, 0);
  transform: translate3d(0, 1.25rem, 0);
}


.s-header-bg-overlay.-is-open .menu-items_upper {
    opacity: 1;
    -webkit-transition: all 0.4s 0.6s ease-out;
    transition: all 0.4s 0.6s ease-out;
}

.menu-items_upper-line {
    background: white;
    display: inline-block;
    width: 200px;
    height: 2px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    margin-right: -15px;
    margin-left: -20px;
}

.menu-items_upper-icon {
    width: 40px;
    height: 40px;
    position: relative;
    top: -20px;
}

.menu-items_upper-text {
    position: absolute;
    top: -25px;
    right: 0;
    left: 0;
    color: white;
    font-size: 15px;
}


@media (max-width: 767px) {
    .menu-items_upper {
        display:none;
    }
    .menu_items-wrapper {
        display:none;
    }
    
    .menu-button {
        margin-left: 0;
        width: 30px;
    }
    
    .language {
        margin-left: 15px;
    }
}


/*Mobile menu navigation*/

.h-scroll {
  height: calc(100% + 22px);
  overflow-x: scroll;
}

.menu {
    width: 100%;
    height: 82px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.4);
    margin: 40px auto;
    overflow: hidden;
    position: relative;
    border-radius: 3px;

    opacity: 0;
    -webkit-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    -webkit-transform: translate3d(0, 1.25rem, 0);
    transform: translate3d(0, 1.25rem, 0);
}


.s-header-bg-overlay.-is-open .menu {
    opacity: 1;
    -webkit-transition: all 0.4s 0.6s ease-out;
    transition: all 0.4s 0.6s ease-out;
}

.menu:before {
  content: "";
  display: block;
  width: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(34, 35, 36, 0.9) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=1 );
  /* IE6-9 */
}

.menu:after {
  content: "";
  display: block;
  width: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(34, 35, 36, 0.9) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=1 );
  /* IE6-9 */
}
.menu .menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}
.menu .menu-list .item {
  display: inline-block;
  font-size: 22px;
  padding: 8px 20px;
  cursor: pointer;
  color: #333;
}
.menu .menu-list .item .tile {
    font-size: 28px;
    width: 55px;
    height: 55px;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    border-radius: 13px;
}

.tile-icon {
    width: 100%;
    position: absolute;
    border-radius: 15px;
}

.productName {
    font-size: 12px;
    position: relative;
    bottom: -18px;
    color: white;
}

.menu .menu-list .item:hover {
  color: purple;
}

.menu .menu-list .item:first-child {
  padding-left: 50px;
}
.menu .menu-list .item:last-child {
  padding-right: 50px;
}

@media (min-width: 767px) {
    .menu {
        display:none;
    }
}


/*Size toggle switch*/
.inactiveMixin {
  content: "";
  position: absolute;
  display: block;
}
.beforeAnimation {
  transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
}
.afterAnimation {
  box-shadow: 0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 0px 0 hsla(0, 0%, 0%, 0.04), 0 4px 9px hsla(0, 0%, 0%, 0.13), 0 3px 3px hsla(0, 0%, 0%, 0.05);
  transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
}
.toggleWrapper {
    position: absolute;
    width: 100px;
    height: 22px;
    bottom: 11px;
    left: calc(50% - 47px);
    display: flex;
    justify-content: space-between;
}

.toys_wrapper {
    left: calc(50% - 25px);
}

.size {
    position: absolute;
    z-index: 123123;
    font-size: 14px;
    top: 2px;
    color: whitesmoke;
    pointer-events: none;
    font-weight: bold;
}

.lollipop-size {
    font-size: 12px;
    align-self: flex-end;
}

.three {
    /*font-size: 13px !important;*/
    left: 10%;
    display: none;
}

.five {
    right: 56%;
}

.twenty {
    left: 10%;
    display: none;
}

.thirty {
    right: 50%;
}

.toggleWrapper input.mobileToggle {
  opacity: 0;
  position: absolute;
}
.toggleWrapper input.mobileToggle + label {
  position: relative;
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: 0.4s ease;
  height: 22px;
  width: 50px;
  border: 1px solid #e4e4e4;
  border-radius: 60px;
}
.toggleWrapper input.mobileToggle + label:before {
    content: "";
    position: absolute;
    display: block;
    transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
    height: 23px;
    width: 55px;
    top: 0;
    left: 0;
    border-radius: 30px;
    background: #f05124;
}
.toggleWrapper input.mobileToggle + label:after {
    content: "CM";
    position: absolute;
    display: block;
    box-shadow: 0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 0 0 hsla(0, 0%, 0%, 0.04), 0 4px 9px hsla(0, 0%, 0%, 0.13), 0 3px 3px hsla(0, 0%, 0%, 0.05);
    transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
    background: whitesmoke;
    height: 23px;
    width: 23px;
    top: 0;
    left: 0;
    border-radius: 60px;
    font-size: 12px;
    text-align: center;
    line-height: 23px;
}



.toggleWrapper:lang(am) input.mobileToggle + label:after {
    content: "ՍՄ";
    position: absolute;
    display: block;
    box-shadow: 0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 0 0 hsla(0, 0%, 0%, 0.04), 0 4px 9px hsla(0, 0%, 0%, 0.13), 0 3px 3px hsla(0, 0%, 0%, 0.05);
    transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
    background: whitesmoke;
    height: 23px;
    width: 23px;
    top: 0;
    left: 0;
    border-radius: 60px;
    font-size: 12px;
    text-align: center;
    line-height: 23px;
}

.toggleWrapper input.mobileToggle:checked + label::before {
  background: #f05124;
  transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
}

.toggleWrapper input.mobileToggle:checked ~ #three {
  display: block;
}

.toggleWrapper input.mobileToggle:checked ~ #five {
  display: none;
}

.toggleWrapper input.mobileToggle:checked + label::after {
  left: 32px;
}


/*Order popup*/
.orderPopup_wrapper {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 100000000;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center; 
}

.orderPopup {
    background: white;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30rem;
}

.orderPopup_form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.orderPopup_header {
    font-size: 19px;
    font-weight: bold;
}

.orderPopup_text {
    font-size: 13px;
    color: black;
    margin-bottom: 3rem;
}

.orderPopUp_okBtn {
    height: 30px;
    line-height: 25px;
    text-align: center;
    padding: 0rem 2rem !important;
}
/*End Order popup*/

.g-font-size-45--xs:lang(am) {
    font-size: 3.6875rem !important;
}

#mobile {
    flex-direction: column;
    gap: 15px;
    padding: 0;
}

.podsVideo {
    top:calc(100% - 55vh);
}

@media all and (max-width: 768px) {
    .digitalPass {
        position: relative;
        width: 100%;
        background-position: center;
        left: 0;
    }
    
    .digitalPassPDF {
        bottom: 16px;
        left: 154px;
    }
    
    .aboutUsInfo_wrapper {
        padding-bottom: 2rem !important;
    }
    .s-header__navbar-row {
        gap: 40px;
    }
    .g-ul-li-lr-5--xs {
        top: -11px;
    }
    .g-font-size-45--xs:lang(am) {
        font-size: 2.4rem !important;
    }
    .-is-active .s-header__trigger-icon:after {
      /*-webkit-transform: rotate(-45deg);*/
      /*transform: rotate(-45deg);*/
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg);
      left: 13px;
    }
    
    .podsVideo {
        top:calc(100% - 38vh);
    }
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 25px;
    /*margin-right: 50px;*/
    /*position: relative;*/
    /*bottom: 15px;*/
}

.logos img {
    height: 12px;
    flex-shrink: 0;
}
