/* universal CSS File  */

@charset "utf-8";
/* GLOBAL RESETS :: START */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd,q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center,dl, dt, dd, ol, ul, li, fieldset, form, label, legend{margin:0; padding:0; border:0; outline:0; font-size:100%; background:transparent; resize:none}
body {
    line-height:1
}
a, a:hover {
    text-decoration:none; 
    outline:none;
}

a:active, a:focus {
    outline:0
} 
img {
    border:none; 
    vertical-align:top;
}

/* DEFAULT FORM STYLING */
input[type="radio"], input[type="checkbox"] {
    vertical-align:-2px;
}
/* textarea {resize:none} */
input {
    visibility:visible; 
    outline:none;
}

/* INDIVIDUAL RESET */
.reset {
    list-style:none; 
    padding:0; 
    margin:0;
}

/* FLOATS */
.lf {
    float:left;
} 
.rf {
    float:right;
}

/* CLEAR FLOAT */
.clear {
    clear:both; 
    padding:0; 
    margin:0; 
    overflow:hidden; 
    height:0;
}

/* POSITION RELATIVE */
.rel {
    position:relative;
}

/* WIDTH 100% */
.fullwid {
    width:100%;
}

/* DISPLAY INLINE */
.inline {
    display:inline;
}

/* font SIZES */
.vsmlTxt {
    font-size:10px;
}
.smlTxt {
    font-size:11px;
}
.paraTxt {
    font-size:12px;
}
.bigTxt {
    font-size:14px;
}

/*font WEIGHTS */
.strong {
    font-weight:bold;
} 
.normTxt, .normTxt a {
    font-weight:normal;
}

/* OVERFLOW-HIDDEN */
.ovfl-hidden {
    overflow:hidden;
}

/* TEXT ALIGN */
.centerAll {
    text-align:center;
}
.rightAlign {
    text-align:right;
}
.leftAlign {
    text-align:left;
}
.justfy {
    text-align:justify;
}

/* NO MARGIN */
.nomargin {
    margin:0;
}
.lftmargin {
    margin-left:0;
}
.rgtmargin {
    margin-right:0;
}

/*HTML5 Reset*/
header,footer,aside,article,nav,hgroup,section {
    display:block;
}

.error{
    color:#ff0000;
    font-size: 11px;
}

/* === RESET BASELINE === */
*, *::before, *::after {
    box-sizing: border-box;
}
  
html:focus-within {
    Scroll-behavior: smooth;
}
  
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1.5;
    background-color: #fff;
    color: #000;
}
  
body {
    font-size: 16px;
}
  
  /* === ACCESSIBILITY === */
a {
    color: inherit;
    text-decoration: none;
}
  
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #005fcc;
    outline-offset: 2px;
}
  
button, input, textarea, select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}
  
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}
  
h1, h2, h3, h4, h5, h6,
p, blockquote, figure {
    margin: 0;
}

/* === FORM ELEMENTS === */
input, button, textarea, select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

button {
    cursor: pointer;
    background-color: transparent;
    border: none;
}

fieldset {
    border: none;
    margin: 0;
    padding: 0;
}
  
/* === REDUCED MOTION FOR ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
  
/* GLOBAL RESETS :: END */
