/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "JUST Sans", sans-serif;
  color: #fff;
  height: 100vh;
}

main {
  min-height: 85%;
  display: flex;
  flex-direction: column;
}

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;
  transition: all 0.3s;
}

header .top-bar {
  width: var(--progress);
  height: 5px;
  background-color: #f82d78;
  transition: width 0.2s ease-out;
}

header .navbar {
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  --bs-navbar-toggler-border-color: #000;
  --bs-navbar-color: #000;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23000' class='bi bi-list' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

header .navbar .offcanvas {
  --bs-offcanvas-bg: #000;
  height: 100vh;
}

header .navbar .offcanvas .btn-close {
  color: #fff;
  opacity: 1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' class='bi bi-x-lg' viewBox='0 0 16 16'%3E%3Cpath d='M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854Z'/%3E%3C/svg%3E")
    center/1em no-repeat;
}

.header-scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
}

@media (max-width: 575px) {
  header .navbar .offcanvas-body {
    position: relative;
    background: radial-gradient(
        circle at 99% 0%,
        rgba(180, 0, 180, 0.2) 0%,
        rgba(180, 0, 180, 0.15) 15%,
        rgba(180, 0, 180, 0.15) 20%,
        rgba(0, 0, 0, 0) 40%,
        rgb(0, 0, 0, 0) 100%
      ),
      radial-gradient(
        circle at 0% 100%,
        rgba(180, 0, 180, 0.2) 0%,
        rgba(180, 0, 180, 0.15) 15%,
        rgba(180, 0, 180, 0.15) 20%,
        rgba(0, 0, 0, 0) 40%,
        rgb(0, 0, 0, 0) 100%
      );
    overflow: hidden;
  }

  header .navbar .offcanvas-body::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    left: -80px;
    bottom: 100px;
  }

  header .navbar .offcanvas-body::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    top: 100px;
  }
}

/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/
#banner {
  background-image: url("../img/banner.png");
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  position: relative;
  padding-top: 140px;
  padding-bottom: 60px;
}

#banner .transparent-input:focus {
  border-color: rgba(243, 54, 121, 0.2) !important;
  box-shadow: 0 0 0 0.25rem rgba(243, 54, 121, 0.25);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  min-height: 15%;
  background: #f33679;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
}

/*--------------------------------------------------------------
# Custom Bootstrap Classes
--------------------------------------------------------------*/

/**
* Padding and Margin
*/

/**
* Width and Heigth
*/

/**
* Text
*/

.text-pink {
  color: #ff2e7b;
}

.text-justify {
  text-align: justify;
  hyphens: auto;
}

.fs-90 {
  font-size: 90%;
}

.ls-1 {
  letter-spacing: 0.15rem;
}

.lh-100 {
  line-height: 100%;
}

/**
* Border
*/

/**
* Buttons
*/

.btn-green {
  --bs-btn-color: #fff;
  --bs-btn-bg: #00ff00;
  --bs-btn-border-color: #00ff00;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #00c800;
  --bs-btn-hover-border-color: #00c800;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #00c800;
  --bs-btn-active-border-color: #00c800;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #65c589;
  --bs-btn-disabled-border-color: #65c589;
}

/**
* Responsive Media Queries
*/

/* xxl */
@media (max-width: 1400px) {
}

/* xl */
@media (max-width: 1200px) {
}

/* lg */
@media (min-width: 992px) {
}

/* sm */
@media (min-width: 556px) {
  .fs-sm-5 {
    font-size: 1.25rem;
  }

  .offcanvas {
    height: auto;
  }
}

/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@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");
}
