@charset "UTF-8";
/*
 * BRAINSCIENTIST - Main CSS / Grid System
 * Simplified flex grid with modern defaults
 */
/* === FLEX GRID SYSTEM === */
.row {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  gap: 0;
  /* Use padding on cols instead, or add gap here */
}
.row.reverse {
  flex-direction: row-reverse;
}
.row.natural-height {
  align-items: flex-start;
}
.row.flex-column {
  flex-direction: column;
}
/* Base column */
.col, .col-xs {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 1rem;
}
/* Alignment utilities */
.row.start-xs {
  justify-content: flex-start;
}
.row.center-xs {
  justify-content: center;
}
.row.end-xs {
  justify-content: flex-end;
}
.row.top-xs {
  align-items: flex-start;
}
.row.middle-xs {
  align-items: center;
}
.row.bottom-xs {
  align-items: flex-end;
}
.row.around-xs {
  justify-content: space-around;
}
.row.between-xs {
  justify-content: space-between;
}
/* Column sizes */
.col-xs-12 {
  flex-basis: 50%;
  max-width: 50%;
}
.col-xs-24 {
  flex-basis: 100%;
  max-width: 100%;
}
/* === RESPONSIVE BREAKPOINTS === */
/* Small (≥576px) */
@media (min-width: 576px) {
  .col-sm {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-12 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-24 {
    flex-basis: 100%;
    max-width: 100%;
  }
}
/* Medium (≥768px) */
@media (min-width: 768px) {
  .col-md {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-8 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-md-12 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-24 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .row.center-md {
    justify-content: center;
  }
  .row.between-md {
    justify-content: space-between;
  }
}
/* Large (≥992px) */
@media (min-width: 992px) {
  .col-lg {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-6 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-8 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-lg-12 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-24 {
    flex-basis: 100%;
    max-width: 100%;
  }
}
/* XL (≥1200px) */
@media (min-width: 1200px) {
  .col-xl {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-xl-12 {
    flex-basis: 50%;
    max-width: 50%;
  }
}
/* === SPACING UTILITIES === */
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-3 {
  padding-top: 1rem !important;
}
.pt-5 {
  padding-top: 3rem !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-3 {
  padding-bottom: 1rem !important;
}
.pb-5 {
  padding-bottom: 3rem !important;
}
/* === DISPLAY UTILITIES === */
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
.d-flex {
  display: flex !important;
}
.show {
  display: block !important;
}
.row.show {
  display: flex !important;
}
.hide {
  display: none !important;
}
/* === TEXT UTILITIES === */
.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
/* === BASE HTML RESET === */
html {
  height: 100%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
html, body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  color: var(--color-text, #333);
}

/*******************************************************************/
/* ftrtch dino */
/* [type: CSS] [file:main-css] [2.221] DESIGN*/
/*******************************************************************/
/* 0.2 P>P */
/* db 92 */