/*
Theme Name: Icebox Bar
Theme URI: https://bykinful.com
Author: Kinful
Author URI: https://bykinful.com
Description: Icebox Bar Theme by Kinful
Version: 1.0
*/

/* Colors
------------------
Black: #E1D9C6
Rose Gold: #534C48
------------------
*/

/* Fonts
------------------
Meno Display
Montserrat Bold
------------------
*/

/* html,
body {
  scroll-behavior: smooth;
} */

body {
  /* overflow-x: hidden; */
  color: #332e2e;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: url(./assets/cursor.png), auto;
}

a {
  color: inherit;
  cursor: url(./assets/cursor-link.png), auto;
}

.pink-color {
  color: #d559a0;
}

.black-color {
  color: #332e2e;
}

.white-color {
  color: #ffffff;
}

.pink-bg {
  background-color: #d559a0;
}

.black-bg {
  background-color: #332e2e;
}

.white-bg {
  background-color: #ffffff;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.center-text {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
}

.flex.space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex.align-end {
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}

.flex.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex.justify-end {
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
}

.flex.no-wrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex .col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.body.ie .flex .col {
  -webkit-box-flex: auto;
  -ms-flex: auto;
  flex: auto;
}

.four-fifths {
  width: 80%;
}

.three-fourths {
  width: 75%;
}

.two-thirds {
  width: 66.6666%;
}

.three-fifths {
  width: 60%;
}

.one-half {
  width: 50%;
}

.two-fifths {
  width: 40%;
}

.one-third {
  width: 33.3333%;
}

.one-fourth {
  width: 25%;
}

.one-fifth {
  width: 20%;
}

.page#default {
  min-height: 100vh;
}

section.pad {
  padding-top: 100px;
  padding-bottom: 100px;
}

section.pad.no_pad_bot {
  padding-bottom: 0;
}

.wrapper {
  position: relative;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 60px;
}

.wrapper.full {
  max-width: 100%;
  padding-left: 120px;
}

.wrapper.xxl {
  max-width: 1560px;
}

.wrapper.xl {
  max-width: 1440px;
}

.wrapper.lg {
  max-width: 1200px;
}

.wrapper.md {
  max-width: 865px;
}

.wrapper.sm {
  max-width: 720px;
}

.wrapper.xs {
  max-width: 600px;
}

.flex img {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

img.lazy {
  display: block;
}

.overlay,
.lazy-overlay,
.bg {
  position: relative;
}

.overlay:before,
.lazy-overlay:before,
.bg.lazy:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  background-color: #808376;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.lazy-overlay:before,
.bg.lazy:before {
  z-index: 2;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.lazy-overlay.loaded:before {
  opacity: 0;
}

.bg.lazy.loaded:before {
  background-color: transparent;
}

/* Buttons */

.btn {
  color: #332e2e;
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.63rem;
  line-height: 0.88rem;
  letter-spacing: 0.175em;
  padding: 15px 30px;
  border: 1px solid #332e2e !important;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  background: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.btn.wide {
  padding: 15px 50px;
}

.btn:hover {
  background: #534c48;
  color: #fff;
}

.btn.black {
  background: #332e2e;
  border-color: #332e2e;
  color: #fff;
}

.btn.black:hover {
  background: #fff;
  color: #332e2e;
}

.btn.pink {
  color: #d559a0;
  border-color: #d559a0 !important;
}

.btn.pink:hover {
  background: #d559a0;
  color: #fff;
}

.btn.transparent {
  background: transparent;
}

.btn.transparent:hover {
  background: #332e2e;
}

.link {
  padding-bottom: 2px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: 0.3s;
}

.link a {
  text-decoration: none;
}

.link a:after,
.link span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  height: 0.06em;
  background: inherit;
  transition: 0.3s;
  width: 100%;
}

.link.rtl:hover a:after,
.link.rtl:hover span:after {
  left: -100%;
}

.link.ltr a:after {
  left: -100%;
}

.link.ltr:hover a:after {
  left: 0;
}

.link.black a:after,
.link.black span:after {
  background: #332e2e;
}

ul {
  margin-left: 0;
}

ul li {
  list-style: none;
  position: relative;
  padding-left: 35px;
}

ul li:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 8px;
  height: 9px;
  width: 9px;
  border: 1px solid #332e2e;
  background: #332e2e;
}

/* content margins */

.inner > *,
.inner ul > *,
.inner ol > *,
.wrapper.content > *,
.wrapper.content ul > * {
  margin-bottom: 25px;
}

.inner > *:last-child,
.inner ul > *:last-child,
.inner ol > *:last-child,
.wrapper.content > *:last-child,
.wrapper.content ul > *:last-child {
  margin-bottom: 0;
}

.bg {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

#overlay {
  display: block;
  height: 100%;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999998 !important;
  background-color: #fff;
}

.container {
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}

.container.shift_right {
  transform: translate3d(435px, 0, 0);
}

.logo a {
  display: inline-block;
  text-decoration: none;
}

.logo h1 {
  font-size: 6rem;
  line-height: 4.45rem;
  text-indent: -0.5rem;
  background: -o-linear-gradient(
    left,
    #d459a2 0%,
    #c15694 12.5%,
    #98697c 25%,
    #929c64 37.5%,
    #7fbc55 50%,
    #929c64 62.5%,
    #98697c 75%,
    #c15694 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#d459a2),
    color-stop(12.5%, #c15694),
    color-stop(25%, #98697c),
    color-stop(37.5%, #929c64),
    color-stop(50%, #7fbc55),
    color-stop(62.5%, #929c64),
    color-stop(75%, #98697c),
    to(#c15694)
  );
  background: linear-gradient(
    to right,
    #d459a2 0%,
    #c15694 12.5%,
    #98697c 25%,
    #929c64 37.5%,
    #7fbc55 50%,
    #929c64 62.5%,
    #98697c 75%,
    #c15694 100%
  );
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: shine 3.5s ease-in-out infinite;
  animation: shine 3.5s ease-in-out infinite;
}

.subtle-shine {
  background: -o-linear-gradient(
    left,
    #d459a2 0%,
    #c15694 12.5%,
    #98697c 25%,
    #929c64 37.5%,
    #7fbc55 50%,
    #929c64 62.5%,
    #98697c 75%,
    #c15694 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#d459a2),
    color-stop(12.5%, #c15694),
    color-stop(25%, #98697c),
    color-stop(37.5%, #929c64),
    color-stop(50%, #7fbc55),
    color-stop(62.5%, #929c64),
    color-stop(75%, #98697c),
    to(#c15694)
  );
  background: linear-gradient(
    to right,
    #d459a2 0%,
    #c15694 12.5%,
    #98697c 25%,
    #929c64 37.5%,
    #7fbc55 50%,
    #929c64 62.5%,
    #98697c 75%,
    #c15694 100%
  );
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: shine 3.5s ease-in-out infinite;
  animation: shine 3.5s ease-in-out infinite;
}

.ie .subtle-shine {
  background: transparent;
  color: #534c48;
}

@-webkit-keyframes shine {
  to {
    background-position: 200% center;
  }
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.featherlight {
  z-index: 9999;
}

.featherlight .featherlight-content {
  padding-top: 0;
  border-bottom: 0;
}

.featherlight .featherlight-inner p {
  padding-bottom: 25px;
  text-align: center;
}

.featherlight .featherlight-content img {
  max-width: 75%;
  margin: 0 auto;
  max-height: 650px;
}

@supports (object-fit: contain) {
  .featherlight .featherlight-content img {
    max-width: 950px;
    max-height: 550px;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.featherlight:last-of-type {
  background: white;
}

.featherlight-next,
.featherlight-previous {
  position: fixed;
  left: auto;
  /* right: auto; */
  height: 25px;
  top: 50%;
}

.featherlight-next {
  left: calc(100% - 85px);
}

.featherlight-previous {
  right: calc(100% - 25px);
}

.featherlight-next span,
.featherlight-previous span {
  display: block;
  font-size: 0;
  line-height: 1;
  margin-top: 0;
  text-shadow: none;
  color: black;
}

.featherlight-next span:after,
.featherlight-previous span:after {
  content: "";
  display: inline-block;
  background: url(./assets/swipe-arrow.svg);
  background-repeat: no-repeat;
  background-size: 38px;
  width: 50px;
  height: 25px;
}

.featherlight-previous span:after {
  -webkit-transform: rotate(-180deg) translateY(11px);
  -ms-transform: rotate(-180deg) translateY(11px);
  transform: rotate(-180deg) translateY(11px);
}

.featherlight .featherlight-close-icon {
  position: fixed;
  top: 25px;
  right: 25px;
  font-size: 1rem;
  color: #100540;
}

.featherlight.featherlight-first-slide.featherlight-last-slide
  .featherlight-next
  span:after,
.featherlight.featherlight-first-slide.featherlight-last-slide
  .featherlight-previous
  span:after,
.featherlight.featherlight-first-slide.featherlight-last-slide span ~ span {
  display: none !important;
}

.featherlight.featherlight-first-slide.featherlight-last-slide span {
  pointer-events: none !important;
}

.slick-lightbox-close:before {
  color: #332e2e;
  opacity: 1;
  font-size: 24px;
}

.slick-lightbox-slick-item {
  max-height: calc(100vh - 300px) !important;
  margin-top: 100px;
}

@supports (object-fit: contain) {
  .slick-lightbox-slick-img {
    height: 100% !important;
    object-fit: contain;
    width: 100% !important;
    max-height: calc(100vh - 300px) !important;
  }
}

.global_hero .wrapper {
  min-height: 100vh;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.global_hero .inner {
  max-width: 475px;
  padding-top: 60px;
}

.global_hero .one-half:first-child {
  width: 45%;
}

.global_hero .one-half:last-child {
  width: 55%;
}

.global_hero .bg {
  /* background-size: 85% !important; */
  background-size: 77% !important;
}

.global_hero .scroll-down {
  display: block;
  position: absolute;
  left: 120px;
  bottom: 60px;
  /* height: 96px; */
  width: 37px;
}

.global_hero .scroll-down img {
  width: 100%;
}

.quotes {
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.quotes .slick-slide {
  display: flex;
  justify-content: center;
}

.quotes .quote.inner {
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
}

.quotes .slick-track {
  display: flex;
  align-content: center;
}

.quotes .slick-dots {
  bottom: -55px;
}
