/*
 *	=======================================================================
    + NO-JS CSS
    -----------------------------------------------------------------------
    + PAGE LOADING ANIMATION FIXES
    + MENU
    + BROWSER SCROLL BAR
    + TYPE
 *	=======================================================================
 */
/*
 *	=======================================================================
	   + IAMROBERT MIXINS/SETTINGS
	  -----------------------------------------------------------------------
      SPACING
    	-----------------------------------------------------------------------
      + REM-CALC (ZURB)
      + EM UNITS
      + Aspect Ratio MIXIN
    	-----------------------------------------------------------------------
      TYPOGRAPHY
    	-----------------------------------------------------------------------
      + FLUID TYPE
      + LETTER TRACKING
    	-----------------------------------------------------------------------


 *	=======================================================================
 */
/*
 *	=======================================================================
	  +  REM-CALC (ZURB)
 *	=======================================================================
 */
/*
 *	=======================================================================
	+ EM UNITS
	https://css-tricks.com/snippets/sass/px-to-em-functions/
	font-size: em-calc(32);
 *	=======================================================================
 */
/*
 * =======================================================================
	+ Aspect Ratio MIXIN
 * =======================================================================
 */
/*
 *	=======================================================================
	  TYPOGRAPHY
	  -----------------------------------------------------------------------
    + Fluid Type
 *	=======================================================================
 */
/*
 *	=======================================================================
	+ LETTER TRACKING
	  -----------------------------------------------------------------------
    https://silvawebdesigns.com/how-to-calculate-css-letter-spacing-vs-tracking-in-typography/
 *	=======================================================================
 */
*, *::after, *::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

* {
  font: inherit;
}

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, 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,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, hr {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: var(--color-bg, white);
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main, form legend {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

button, input, textarea, select {
  margin: 0;
}

.btn, .form-control, .link, .reset {
  background-color: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select.form-control::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

input::-ms-clear {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, video, svg {
  max-width: 100%;
}

/* + PAGE LOADING ANIMATION FIXES
    ======================================================================*/
#loader {
  display: none !important;
}

body {
  max-height: none;
  overflow-y: auto;
}

.is-initial-load {
  max-height: none !important;
  overflow-y: auto !important;
}

.animation-loading {
  display: none !important;
}

.footer-rounded-div {
  margin-bottom: var(--mp);
}

.footer-rounded-div .rounded-div-wrap {
  display: none !important;
}

/* + MENU
    ======================================================================*/
.f-header {
  height: auto;
}

.f-header__nav-control {
  display: none;
}

.f-header__nav {
  position: static;
  -webkit-box-shadow: none;
          box-shadow: none;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.f-header__nav::before {
  display: none;
}

.f-header__nav {
  min-height: auto;
}

@media not all and (min-width: 56.25rem) {
  .f-header__nav-grid {
    min-height: auto;
  }
  .f-header__dropdown-control::after {
    display: none;
  }
}
.f-header__dropdown-control + .f-header__dropdown {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.3s var(--cubic);
  transition: all 0.3s var(--cubic);
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
@media not all and (min-width: 56.25rem) {
  .f-header__dropdown-control + .f-header__dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    height: auto;
  }
}
.f-header__dropdown-control[aria-expanded=true] + .f-header__dropdown {
  display: block;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.3s var(--cubic);
  transition: all 0.3s var(--cubic);
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  overflow: auto;
  height: 100%;
}

/*
* =======================================================================
+ BROWSER SCROLL BAR
* =======================================================================
*/
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  border-radius: 0px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border: 0px none #ffffff;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

::-webkit-scrollbar-thumb:active {
  background: #787878;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border: 0px none #ffffff;
  border-radius: 0px;
}

::-webkit-scrollbar-track:hover {
  background: #f1f1f1;
}

::-webkit-scrollbar-track:active {
  background: #f1f1f1;
}

::-webkit-scrollbar-corner {
  background: transparent;
  display: none;
  height: 0px;
  width: 0px;
}

/* + TYPE
    ======================================================================*/
h3,
.h3 {
  padding-top: calc(var(--step-3-pt) + var(--lh-x1));
}
h3 + :is(p, .p),
.h3 + :is(p, .p) {
  margin-top: 0;
}
/*# sourceMappingURL=no-js.css.map */