/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "JUST Sans", sans-serif;
  color: #fff;
  background-color: #000;
}

section {
  padding: 60px 0;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.navbar {
  background: #000;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  top: 0px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
}

.navbar .navbar-brand img {
  max-height: 80px;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
#gallery {
  margin-top: 102px;
  padding: 0;
}

#gallery .hover {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
}

#gallery .hover p {
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

#gallery .hover:hover {
  background-color: #000000de;
}

#gallery .hover:hover p {
  opacity: 1;
  transform: translateY(0);
}

#gallery .row div {
  visibility: hidden;
}

/*--------------------------------------------------------------
# Loading BackDrop
--------------------------------------------------------------*/

.loading {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.hideLoading {
  animation: hideLoading 0.2s forwards;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #fff;
  border-bottom-color: #f33679;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes hideLoading {
  to {
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Back to Top Button
--------------------------------------------------------------*/

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 100px;
  height: 60px;
  width: 60px;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50rem;
  z-index: 1030;
  pointer-events: none;
  cursor: pointer;
}

.showBackToTopButton {
  animation: showBackToTopButton 0.7s cubic-bezier(0.5, 0, 0, 1) forwards;
}

.hideBackToTopButton {
  animation: hideBackToTopButton 0.7s cubic-bezier(0.5, 0, 0, 1) forwards;
}

@keyframes showBackToTopButton {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0px);
    opacity: 1;
    pointer-events: all;
  }
}

@keyframes hideBackToTopButton {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(30px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Cookies PopUp
--------------------------------------------------------------*/

#cookies-popup {
  position: fixed;
  bottom: 5%;
  left: 5%;
  z-index: 1030;
  width: 100%;
  max-width: 430px;
}

#cookies-popup .content {
  border-radius: 10px;
  padding: 20px;
  box-shadow: 13px 10px 8px -3px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  color: #000;
  font-family: "Gilroy";
}

#cookies-popup .privacy-link {
  text-decoration: underline;
}

#cookies-popup .privacy-link:hover {
  color: #880835;
  text-decoration: underline;
}

#cookies-popup p {
  font-size: 90%;
}

.showCookiePopup {
  animation: showCookiePopup 1.5s ease forwards;
}

.hideCookiePopup {
  animation: hideCookiePopup 1.5s ease forwards;
}

@media (max-width: 576px) {
  #cookies-popup {
    bottom: 70px;
    left: 0;
  }
}

@keyframes hideCookiePopup {
  0% {
    transform: scale(1);
  }

  20% {
    transform: scale(0.9);
  }

  to {
    transform: translateY(1200px) scale(0.9);
  }
}

@keyframes showCookiePopup {
  0% {
    transform: translateY(1200px) scale(0.9);
  }

  80% {
    transform: translateY(0) scale(0.9);
  }

  to {
    transform: scale(1);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  background: #000;
  color: #fff;
  font-size: 14px;
  padding: 20px 0;
  visibility: hidden;
}

/*--------------------------------------------------------------
# Custom Bootstrap Classes
--------------------------------------------------------------*/

/**
* Width and Heigth
*/

/**
* Margin and Padding
*/

/**
* Text
*/

.text-pink {
  color: #f03578;
}

.text-yellow {
  color: #efd81d;
}

.text-justify {
  text-align: justify;
}

.ff-gilroy {
  font-family: "Gilroy";
}

/**
* Background
*/

/**
* Buttons
*/

.btn-gray {
  --bs-btn-color: #fff;
  --bs-btn-bg: #adadad;
  --bs-btn-border-color: #adadad;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #7d7d7d;
  --bs-btn-hover-border-color: #adadad;
  --bs-btn-focus-shadow-rgb: 173, 173, 173;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #7d7d7d;
  --bs-btn-active-border-color: #7d7d7d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #adadad;
  --bs-btn-disabled-border-color: #adadad;
}

.btn-outline-pink {
  --bs-btn-color: #fff;
  --bs-btn-border-color: #f03578;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #f03578;
  --bs-btn-hover-border-color: #f03578;
  --bs-btn-focus-shadow-rgb: 240, 53, 120;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #f03578;
  --bs-btn-active-border-color: #f03578;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f03578;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f03578;
  --bs-gradient: none;
}

/**
* Responsive Media Queries
*/

/* xxl */
@media (max-width: 1400px) {
}

/* xl */
@media (min-width: 1200px) {
}

/* lg */
@media (min-width: 992px) {
}

/* sm */
@media (max-width: 556px) {
}

/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/

/**
* JUST Sans
*/

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/JUST-Sans-ExBold.woff") format("woff"),
    url("../fonts/JUST-Sans-ExBold.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/JUST-Sans-Bold.woff") format("woff"),
    url("../fonts/JUST-Sans-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/JUST-Sans-SemiBold.woff") format("woff"),
    url("../fonts/JUST-Sans-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/JUST-Sans-Medium.woff") format("woff"),
    url("../fonts/JUST-Sans-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/JUST-Sans-Regular.woff") format("woff"),
    url("../fonts/JUST-Sans-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/JUST-Sans-Light.woff") format("woff"),
    url("../fonts/JUST-Sans-Light.woff2") format("woff2");
}

@font-face {
  font-family: "JUST Sans";
  font-style: normal;
  font-stretch: 100%;
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/JUST-Sans-ExLight.woff") format("woff"),
    url("../fonts/JUST-Sans-ExLight.woff2") format("woff2");
}

/**
* Gotham
*/

@font-face {
  font-family: "Gotham";
  src: url(../fonts/GothamLight.ttf) format("truetype");
  font-style: normal;
  font-stretch: 100%;
  font-display: swap;
  font-weight: 200;
}

/**
* Gilroy
*/

@font-face {
  font-family: "Gilroy";
  src: url(../fonts/Gilroy-ExtraBold.otf) format("opentype");
  font-style: normal;
  font-stretch: 100%;
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: "Gilroy";
  src: url(../fonts/Gilroy-Medium.ttf) format("truetype");
  font-style: normal;
  font-stretch: 100%;
  font-display: swap;
  font-weight: 600;
}

@font-face {
  font-family: "Gilroy";
  src: url(../fonts/Gilroy-Light.otf) format("opentype");
  font-style: normal;
  font-stretch: 100%;
  font-display: swap;
  font-weight: 300;
}
