/* ==========================================================================
   UTILS
   ========================================================================== */
.d-none{display:none}
.d-flex{display:flex}
.d-grid{display:grid}
.d-block{display:block}
.flex-wrap{flex-wrap:wrap}
.align-items-center{align-items:center}
.justify-content-center{justify-content:center}
.justify-content-between{justify-content:space-between}
.justify-content-end{justify-content:flex-end}
.flex-grow-1{flex-grow:1}
.gap-2{gap:.5rem}
.gap-3{gap:.75rem}
.p-0{padding:0}
.p-3{padding:.75rem}
.p-4{padding:1rem}
.px-3{padding-left:.75rem;padding-right:.75rem}
.px-4{padding-left:1rem;padding-right:1rem}
.py-2{padding-top:.5rem;padding-bottom:.5rem}
.py-4{padding-top:1rem;padding-bottom:1rem}
.py-5{padding-top:1.5rem;padding-bottom:1.5rem}
.pt-4{padding-top:1rem}
.mx-auto{margin-left:auto;margin-right:auto}
.mb-0{margin-bottom:0}
.mb-1{margin-bottom:.25rem}
.mb-2{margin-bottom:.5rem}
.mb-3{margin-bottom:.75rem}
.mb-4{margin-bottom:1rem}
.mb-5{margin-bottom:1.5rem}
.mt-3{margin-top:.75rem}
.mt-4{margin-top:1rem}
.me-2{margin-right:.5rem}
.me-3{margin-right:.75rem}
.me-1{margin-right:.25rem}
.ms-1{margin-left:.25rem}
.text-center{text-align:center}
.text-white{color:#fff}
.text-white-50{color:rgba(255,255,255,.5)}
.text-muted{color:var(--text-muted)}
.text-danger{color:var(--primary-red)}
.text-warning{color:#ffc107}
.text-decoration-none{text-decoration:none}
.text-uppercase{text-transform:uppercase}
.fw-bold{font-weight:700}
.small{font-size:.875rem}
.fs-3{font-size:1.75rem}
.fs-4{font-size:1.5rem}
.border{border:1px solid}
.border-top{border-top:1px solid}
.border-start{border-left:1px solid}
.border-secondary{border-color:#6c757d}
.rounded-circle{border-radius:50%}
.rounded-pill{border-radius:50rem}
.position-relative{position:relative}
.position-absolute{position:absolute}
.top-0{top:0}
.start-0{left:0}
.w-100{width:100%}
.container-custom{width:100%;max-width:1200px;margin:0 auto;padding-left:1rem;padding-right:1rem}
.h-100{height:100%}
.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)}
.transition{transition:all .2s ease}
.scale-75{transform:scale(.75)}
.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
@media (min-width:768px){.d-md-flex{display:flex}}
.w-24{width:24px}
.h-24{height:24px}
.min-w-24{min-width:24px}
.bg-warning{background-color:#ffc107}
.bg-secondary{background-color:#6c757d}
.text-dark{color:#000}
.text-xs{font-size:.75rem}
.u-bg-transparent{background:transparent!important}
.max-w-800{max-width:800px}
.z-1{z-index:1}
.section-title{font-size:1.5rem;font-weight:700;color:#fff;margin-bottom:1rem;margin-top:0.5rem;padding-left:0.5rem;border-left:4px solid #c80000}
