@font-face {
  font-family: CormorantGaramond;
  font-weight: 400;
  src: url("/static/fonts/CormorantGaramond-Regular.ttf");
}
@font-face {
  font-family: RobotoCondensed;
  font-weight: 400;
  src: url("/static/fonts/RobotoCondensed-Regular.ttf");
}
@font-face {
  font-family: Fira Sans;
  font-weight: 400;
  src: url("/static/fonts/firasans-regular.otf");
}
* {
  margin: 0;
  padding: 0;
}

*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  /* 1rem = 10px */
  box-sizing: border-box;
}

body {
  font-family: RobotoCondensed, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: CormorantGaramond, serif;
  text-wrap: balance !important;
}

.xl-text {
  font-size: 65px;
}

@media only screen and (max-width: 992px) {
  .xl-text {
    font-size: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .xl-text {
    font-size: 30px;
  }
}
.gradient-text {
  background-image: linear-gradient(to right bottom, var(--bs-primary), var(--bs-secondary));
  -webkit-background-clip: text;
  color: transparent;
  backface-visibility: hidden;
}

[data-bs-theme=dark] .gradient-text {
  background-image: linear-gradient(to right, var(--bs-primary), var(--bs-gray-500));
}

[data-bs-theme=light] .gradient-text {
  background-image: linear-gradient(to right, var(--bs-primary), var(--bs-gray-500));
}

.theme-toggle,
.theme-toggle #bd-theme {
  z-index: 1000;
}

.footer .dropdown-menu .dropdown-item {
  border-radius: 0.25rem;
}

.footer .dropdown-menu {
  --bs-dropdown-min-width: 12rem;
  --bs-dropdown-padding-x: .25rem;
  --bs-dropdown-padding-y: .25rem;
  --bs-dropdown-font-size: .875rem;
  font-size: 0.875rem;
}

.footer .dropdown-menu li + li {
  margin-top: 0.225rem;
}

footer,
.footer {
  font-size: smaller;
}

.fixed-top {
  transition: all 0.5s ease-in-out;
}

[data-bs-theme=light] footer,
.footer {
  background-color: var(--bs-light);
  color: var(--bs-dark);
}

[data-bs-theme=dark] footer,
.footer {
  background-color: var(--bs-dark);
  color: var(--bs-light);
}

[data-bs-theme=light] nav {
  background-color: var(--bs-light);
  color: var(--bs-dark);
}

[data-bs-theme=dark] nav {
  background-color: var(--bs-dark);
  color: var(--bs-light);
}

@media (max-width: 992px) {
  .contact .list-group-item {
    font-size: 1rem !important;
  }
}
@media (max-width: 576px) {
  .contact .list-group-item {
    font-size: 1rem !important;
  }
  footer,
  .footer {
    font-size: 16px !important;
  }
}
[data-bs-theme=light] .tags .badge {
  color: var(--bs-dark);
}

[data-bs-theme=dark] .tags .badge {
  color: var(--bs-light);
}

.terms-section h2 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--bs-primary);
  font-weight: bold;
}

.map-container {
  width: 100%;
  height: 100%;
}

.logo-brand {
  font-family: RobotoCondensed, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  padding: 5px 10px;
  max-width: fit-content;
  border-radius: 5px;
}
@media only screen and (max-width: 1200px) {
  .logo-brand {
    font-size: 1.25rem;
    padding: 4px 8px;
  }
}

.navbar-brand {
  font-family: RobotoCondensed, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  padding: 5px 10px;
  max-width: fit-content;
  border-radius: 5px;
}
@media only screen and (max-width: 1200px) {
  .navbar-brand {
    font-size: 1.25rem;
    padding: 4px 8px;
  }
}

.navbar-brand:hover,
.navbar-brand:focus {
  background-color: var(--bs-dark);
  color: var(--bs-light);
}

.nav-pills .nav-link {
  color: var(--bs-dark);
  background-color: var(--bs-secondary);
  margin-bottom: 5px;
}

.nav-pills .nav-link:hover {
  color: var(--bs-white);
  background-color: var(--bs-primary);
  margin-bottom: 5px;
}

.nav-scroller {
  position: relative;
  z-index: 2;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.navbar-nav .dropdown-menu .dropdown-item {
  border-radius: 0.25rem;
}

.navbar-nav .dropdown-menu-end {
  width: 8rem;
}

.navbar-nav .dropdown-menu {
  --bs-dropdown-min-width: 12rem;
  --bs-dropdown-padding-x: .25rem;
  --bs-dropdown-padding-y: .25rem;
  --bs-dropdown-font-size: .875rem;
  font-size: 0.875rem;
}

.navbar-nav .dropdown-menu li + li {
  margin-top: 0.225rem;
}

.dropdown-menu .dropdown-item {
  border-radius: 0.25rem;
}

.dropdown-menu-end {
  width: 8rem;
}

.dropdown-menu {
  --bs-dropdown-min-width: 12rem;
  --bs-dropdown-padding-x: .25rem;
  --bs-dropdown-padding-y: .25rem;
  --bs-dropdown-font-size: .875rem;
  font-size: 0.875rem;
}

.dropdown-menu li + li {
  margin-top: 0.225rem;
}

ul.dropdown-menu.show:empty {
  display: none !important;
}

.navbar .dropdown-fullwidth {
  position: static;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar .dropdown-fullwidth .dropdown-menu {
  left: 0;
  right: 0;
  top: 32px;
  margin: 1.25rem auto;
  max-width: 1320px !important;
  padding: 1rem 0;
  padding-bottom: 1rem;
}

.tag-list-badge {
  padding: 0.5rem 1.75rem;
}

.divider {
  font-size: 30px;
  display: flex;
  align-items: center;
}

.divider::before,
.divider::after {
  flex: 1;
  content: "";
  padding: 3px;
  background-color: var(--bs-secondary);
  margin: 5px;
}

.theme-icon {
  font-size: x-small;
}

.theme-toggle .dropdown-menu .dropdown-item {
  border-radius: 0.25rem;
}

.theme-toggle .dropdown-menu-end {
  width: 8rem;
}

.theme-toggle .dropdown-menu {
  --bs-dropdown-min-width: 12rem;
  --bs-dropdown-padding-x: .25rem;
  --bs-dropdown-padding-y: .25rem;
  --bs-dropdown-font-size: .875rem;
  font-size: 0.875rem;
}

.theme-toggle .dropdown-menu li + li {
  margin-top: 0.225rem;
}

.lang-toggle .dropdown-menu .dropdown-item {
  border-radius: 0.25rem;
}

.lang-toggle .dropdown-menu-end {
  width: 8rem;
}

.lang-toggle .dropdown-menu {
  --bs-dropdown-min-width: 12rem;
  --bs-dropdown-padding-x: .25rem;
  --bs-dropdown-padding-y: .25rem;
  --bs-dropdown-font-size: .875rem;
  font-size: 0.875rem;
}

.to-top-btn {
  position: fixed;
  z-index: 1000;
  opacity: 0;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  outline: none;
  background-color: var(--bs-primary);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.to-top-btn:hover {
  background-color: var(--bs-secondary);
}

/* SWIPER */
.swiper-pagination {
  --swiper-pagination-color: var(--bs-secondary);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0, 0, 0, 0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: var(--bs-secondary);
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
}

.swiper-pagination-bullet-active {
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 30px;
  --swiper-pagination-bullet-height: 8px;
  border-radius: 4px;
}

.swiper-scrollbar-drag {
  background: var(--bs-secondary);
  opacity: 1;
}

.swiper-buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 10px;
  margin-top: 15px;
}

.swiper-button-next,
.swiper-button-prev {
  padding: 10px;
  border: 1px solid black;
  cursor: pointer;
  margin-right: 10px;
}

.swiper-navBtn {
  color: #000;
  height: 40px;
  width: 40px;
  background: #FFE4E1;
  border-radius: 50%;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .swiper-navBtn {
    display: none;
  }
}
/* IMAGES STYLE */
.bg-position-center {
  background-position: center center !important;
  background-position-x: center;
  background-position-y: center;
}

.bg-size-cover {
  background-size: cover !important;
}

.product-card img {
  object-fit: contain;
}

.product-card img {
  --s: 5px;
  /* control the size */
  padding: var(--s);
  border: var(--s) solid rgba(0, 0, 0, 0);
  /* change the last color to customize the outline color */
  background: conic-gradient(from 90deg at 2px 2px, rgba(0, 0, 0, 0) 25%, var(--bs-primary) 0);
}

.top-right {
  position: absolute;
  top: 8px;
  right: 16px;
}

.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
}

.bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
}

.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

.bottom-centered {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.swiper-custom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

div.upright-nav {
  text-orientation: upright;
}

.upright-nav h4 {
  writing-mode: vertical-lr;
  color: var(--clr-nav);
  letter-spacing: 1.5px;
  opacity: 0.5;
  font-family: "Roboto Condensed" !important;
}

.upright-nav h4:hover {
  opacity: 1;
  transition: opacity 300ms ease;
}

.img-magnifier-container {
  position: relative;
}

[data-visible=false] .img-magnifier-glass {
  opacity: 0;
}

.img-magnifier-glass {
  position: absolute;
  border-radius: 50%;
  cursor: crosshair;
  /*Set the size of the magnifier glass:*/
  width: 200px;
  height: 200px;
  z-index: 1000;
  opacity: 1;
  -webkit-mask-image: url("/static/images/mask.png");
  mask-image: url("/static/images/mask.png");
  -webkit-mask-size: 200px 200px;
  mask-size: 200px 200px;
}

/* Extra small devices (phones, 576px and down) */
@media only screen and (max-width: 576px) {
  .img-magnifier-glass {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .img-magnifier-glass {
    width: 300px !important;
    height: 300px !important;
    -webkit-mask-size: 300px 300px !important;
    mask-size: 300px 300px !important;
  }
}
.btn-xs.btn-icon {
  font-size: 0.75rem;
}

.btn-icon {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 0.92969rem;
  font-weight: 400;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
}

.btn-social {
  color: var(--bs-primary);
  border: 1px solid var(--bs-primary);
  border-radius: 0.5rem;
}

.btn-social:hover {
  color: var(--bs-light);
  background-color: var(--bs-secondary);
  border-color: var(--bs-secondary);
}

.btn.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon {
  --si-btn-size: 2.75rem;
  --si-btn-icon-size: 1.25rem;
  flex-shrink: 0;
  width: var(--si-btn-size);
  height: var(--si-btn-size);
  padding: 0;
}

.btn-instagram:hover,
.btn-instagram:focus,
.btn-instagram:active {
  border-color: #405de6 !important;
  background-color: #405de6 !important;
  color: #fff !important;
  box-shadow: 0 0.375rem 1.125rem -0.375rem rgba(64, 93, 230, 0.8) !important;
}

.btn-google:hover,
.btn-google:focus,
.btn-google:active {
  border-color: #ea4335 !important;
  background-color: #ea4335 !important;
  color: #fff !important;
  box-shadow: 0 0.375rem 1.125rem -0.375rem rgba(234, 67, 53, 0.8) !important;
}

.btn-twitter:hover,
.btn-twitter:focus,
.btn-twitter:active {
  border-color: rgb(0, 0, 0) !important;
  background-color: rgb(0, 0, 0) !important;
  color: #fff !important;
  box-shadow: 0 0.375rem 1.125rem -0.375rem rgba(0, 0, 0, 0.8) !important;
}

.btn-facebook:hover,
.btn-facebook:focus,
.btn-facebook:active {
  border-color: #1877f2 !important;
  background-color: #1877f2 !important;
  color: #fff !important;
  box-shadow: 0 0.375rem 1.125rem -0.375rem rgba(24, 119, 242, 0.8) !important;
}

.join-us-artist, .join-us-gallery {
  position: relative;
  overflow: hidden;
}
.join-us-artist::before, .join-us-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform: scale(1);
  backface-visibility: hidden;
}
.join-us-artist::before {
  background-image: url(/static/images/slide-2.jpg);
  opacity: 0.65;
}
.join-us-gallery::before {
  background-image: url(/static/images/slide-3.jpg);
  opacity: 0.65;
}
.join-us-artist:hover::before, .join-us-gallery:hover::before {
  filter: brightness(0.9);
  transform: scale(1.05);
  opacity: 0.95;
}
.join-us-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backface-visibility: hidden;
  color: var(--bs-white);
  padding: 5rem 2.5rem;
}

.footer {
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .footer {
    font-size: 1.25rem;
  }
}
.footer-brand-description {
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .footer-brand-description {
    font-size: 1.25rem;
  }
}
.footer-nav .nav-link {
  padding: 0;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .footer-nav .nav-link {
    font-size: 1.25rem;
  }
}

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveFront {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.reveal {
  opacity: 1;
  animation-name: moveInRight;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
}

.carousel-caption {
  backface-visibility: hidden;
}

.carousel-caption h1 {
  animation-name: moveInLeft;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}

.carousel-caption p.lead {
  animation-name: moveInRight;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}

.carousel-caption .btn {
  animation-name: moveFront;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}

/* Animations Scrolling */
.fade-in {
  opacity: 0;
  transition: opacity 250ms ease-in;
}

.fade-in.appear {
  opacity: 1;
}

.from-left {
  transform: translateX(-50%);
}

.from-right {
  transform: translateX(50%);
}

.from-left,
.from-right {
  transition: opacity 250ms ease-in, transform 400ms ease-in;
  opacity: 0;
}

.from-left.appear,
.from-right.appear {
  transform: translateX(0);
  opacity: 1;
}

.scroller {
  max-width: 760px;
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroller[data-animated=true] {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated=true] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction=right] {
  --_animation-direction: reverse;
}

.scroller[data-direction=left] {
  --_animation-direction: forwards;
}

.scroller[data-speed=fast] {
  --_animation-duration: 20s;
}

.scroller[data-speed=slow] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}
.fancy-link {
  background-image: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 300ms ease;
  width: fit-content;
  /* extra styling */
  text-decoration: none;
  font-weight: 400;
}

.fancy-link:hover {
  background-size: 100% 2px;
}

.section-stories {
  padding: 5rem 0;
  position: relative;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -10;
  opacity: 0.15;
}
.bg-video__content {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.story__card {
  width: 75%;
  margin: 0 auto;
  transform: skewX(-15deg);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  padding: 4rem;
  padding-left: 9rem;
  overflow: hidden;
  background-color: var(--bs-light);
  color: var(--bs-dark);
}
[data-bs-theme=dark] .story__card {
  background-color: var(--bs-dark);
  color: var(--bs-light);
}
@media only screen and (max-width: 768px) {
  .story__card {
    width: 100%;
    padding: 2rem;
    transform: skewX(0deg);
  }
}
.story__shape {
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  overflow: hidden;
  float: left;
  position: relative;
  transform: translateX(-2rem) skewX(15deg);
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  shape-outside: circle(50% at 50% 50%);
  transition: all 0.5s;
}
@media only screen and (max-width: 768px) {
  .story__shape {
    transform: translateX(-2rem) skewX(0deg);
  }
}
.story__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.5s;
}
@media only screen and (max-width: 768px) {
  .story__img {
    opacity: 1;
  }
}
.story__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0%);
  text-align: center;
  text-transform: uppercase;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--bs-light);
  opacity: 0;
  transition: all 0.5s;
  backface-visibility: hidden;
  border-radius: 0.3rem;
}
@media only screen and (max-width: 768px) {
  .story__caption {
    display: none;
  }
}
.story__card_text {
  transform: skewX(15deg);
  line-height: 1.6;
}
@media only screen and (max-width: 992px) {
  .story__card_text {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .story__card_text {
    transform: skewX(0deg);
    line-height: 1.4;
  }
}
.story__card_text--content {
  font-size: 1.75rem;
}
@media only screen and (max-width: 992px) {
  .story__card_text--content {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .story__card_text--content {
    font-size: 1.35rem;
  }
}
.story__card_text--author {
  font-size: 1.75rem;
  font-weight: bold;
  margin-top: 1rem;
  color: var(--bs-primary);
}
@media only screen and (max-width: 992px) {
  .story__card_text--author {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .story__card_text--author {
    font-size: 1.35rem;
  }
}
.story__card_heading {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 992px) {
  .story__card_heading {
    font-size: 1.65rem;
  }
}
@media only screen and (max-width: 768px) {
  .story__card_heading {
    font-size: 1.5rem;
  }
}
.story__card:hover {
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
}
.story__card:hover .story__img {
  transform: scale(1.05);
  opacity: 0.5;
}
.story__card:hover .story__caption {
  opacity: 1;
  top: 50%;
  transform: translate(-50%, -50%);
}

[data-bs-theme=light] .stories-heading {
  color: var(--bs-dark);
}

[data-bs-theme=dark] .stories-heading {
  color: var(--bs-light);
}
