/* *******************************************************************
  ==== UTILS ====
******************************************************************* */

/* ===================================================================
  DISPLAY
=================================================================== */

.hidden {
  display: none !important;
}

/* ===================================================================
  DIMENSION
=================================================================== */

/* ==== WIDTH ==== */

.wg-max-w-none {
  max-width: none !important;
}

/* ===================================================================
  MARGIN & PADDING
=================================================================== */

/* ==== MARGIN ==== */

.wg-m-reset-0 {
  margin: 0 !important;
}

/* ===================================================================
  FLEX
=================================================================== */

/* ==== BASE ==== */

.wg-flex {
  display: flex;
}

/* ==== COL ==== */

.wg-col {
  flex-direction: column;
}

.wg-col.mobile {
  flex-direction: row;
}

@media (min-width: 768px) {
  .wg-col.mobile {
    flex-direction: column;
  }
}

/* ==== ROW ==== */

.wg-row {
  flex-direction: row;
}

/* ==== ROW ==== */

.wg-row-reset-child > * {
  margin: 0 !important;
  max-width: none !important;
  padding: 0 !important;
}

/* ===================================================================
  GLASS
=================================================================== */

/* ==== BASE ==== */

.wg-glass-box {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid transparent;
  margin: 10px auto;
  overflow: hidden;
  padding: 10px;
  position: relative;
  width: 90%;
}

.wg-glass-box.glass-box--radius {
  border-radius: 20px;
}

.wg-glass-box.glass-box--white {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 20px 10px rgba(255, 255, 255, 1);
}

@media (min-width: 1200px) {
  .wg-glass-box.glass-box--w-half-per {
    width: 50%;
  }
}

/* ==== BASE::BEFORE ==== */

.wg-glass-box::before {
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

/* ==== BASE::AFTER ==== */

.wg-glass-box::after {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 1px;
}

/* ==== BASE::BEFORE & BASE::AFTER ==== */

.wg-glass-box.glass-box--white::before,
.wg-glass-box.glass-box--white::after {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    transparent,
    rgba(255, 255, 255, 0.3)
  );
}

/* ==== CONTENT ==== */

.wg-glass-box-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

/* ===================================================================
  TITLES
=================================================================== */

/* ==== BASE ==== */

.wg-title {
  font-family: "Roboto", Sans-serif !important;
  text-transform: capitalize !important;
}

h1.wg-title {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
}

h2.wg-title {
  font-size: 2rem;
  font-weight: 700;
}

h3.wg-title {
  font-size: 1.8rem;
  font-weight: 700;
}

/* ===================================================================
  TYPO
=================================================================== */

/* ==== BASE ==== */

p.wg-p,
.wg-p {
  margin: 0;
}
