/*================================================== 
  RESET & DESTYLE
==================================================*/ 
* {
  margin: 0;
  padding: 0;
  min-height: 0;
  min-width: 0;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html, body, div, article, section, aside, header, footer, hgroup, nav, h1, h2, h3, h4, h5, h6, ul, li, a, p, small, img {
  border: none;
  display: block;
}

html {
  width: 100%;
  height: 100%;
  position: static;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.15;
}
/*
@media screen and (max-width: calc(576px - 0.2px)) {
  html {
    font-size: 10px;
  }
}

@media screen and (min-width: 575.9px) {
  html {
    font-size: 11px;
  }
}

@media screen and (min-width: 767.8px) {
  html {
    font-size: 12px;
  }
}

@media screen and (min-width: 992px) {
  html {
    font-size: 13px;
  }
}

@media screen and (min-width: 1200px) {
  html {
    font-size: 14px;
  }
}

@media screen and (min-width: 1400px) {
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 1600px) {
  html {
    font-size: 18px;
  }
}

@media screen and (min-width: 1920px) {
  html {
    font-size: 20px;
  }
}
*/
body {
  width: 100%;
  height: 100%;
  position: relative;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}
/*
@media screen and (max-width: calc(576px - 0.2px)) {
  body::before {
    content: "sm";
  }
}

@media screen and (min-width: 768px)and (max-width: calc(992px - 0.2px)) {
  body::before {
    content: "lg";
  }
}

@media screen and (min-width: 1200px) {
  body::before {
    content: "xl";
  }
}
*/
a {
  zoom: 1;
  outline: 0;
  text-decoration: none;
  background-color: transparent;
  color: inherit;
}

@media (any-hover:hover) {
  a:hover,
  a:active {
    text-decoration: none;
    filter: alpha(opacity=70);
    -webkit-transition: all .3s;
    transition: all .3s;
    -moz-opacity: 0.7;
    opacity: 0.7;
  }
}

@media (min-width: 767.8px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

img {
  width: 100%;
  outline: 0;
  border: 0;
  border-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

dl, ol, ul {
  list-style: none;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

abbr[title] {
  text-decoration: underline;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace,monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img ,embed, object ,iframe {
  vertical-align: bottom;
}

iframe {
  max-width: 100%;
}

label {
  display: inline-block;
  vertical-align: middle;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button, [type="button"], [type="reset"], [type="submit"] {
  cursor: pointer;
}

button:disabled, [type="button"]:disabled, [type="reset"]:disabled, [type="submit"]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type="number"] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

table {
  table-layout: fixed;
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}


/*================================================== 
  UTILITY 
==================================================*/ 
.hide {
  display: none !important;
}

.show-block {
  display: block !important;
}

.show-inline {
  display: inline !important;
}

.show-inline-block {
  display: inline-block !important;
}

.show-flex {
  display: flex !important;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

@media screen and (max-width: 575.8px) {
  .xs-none {
    display: none !important;
  }
  .xs-block {
    display: block !important;
  }
}

@media screen and (max-width: 767.8px) {
  .msd-none {
    display: none !important;
  }
  .msd-block {
    display: block !important;
  }
}

@media screen and (min-width: 576px) {
  .sm-hide {
    display: none !important;
  }
  .sm-show-block {
    display: block !important;
  }
  .sm-show-inline {
    display: inline !important;
  }
  .sm-show-inline-block {
    display: inline-block !important;
  }
  .sm-show-flex {
    display: flex !important;
  }
  .sm-text-left {
    text-align: left !important;
  }
  .sm-text-center {
    text-align: center !important;
  }
  .sm-text-right {
    text-align: right !important;
  }
}

@media screen and (min-width: 768px) {
  .md-hide {
    display: none !important;
  }
  .md-show-block {
    display: block !important;
  }
  .md-show-inline {
    display: inline !important;
  }
  .md-show-inline-block {
    display: inline-block !important;
  }
  .md-show-flex {
    display: flex !important;
  }
  .md-text-left {
    text-align: left !important;
  }
  .md-text-center {
    text-align: center !important;
  }
  .md-text-right {
    text-align: right !important;
  }
}

@media screen and (min-width: 992px) {
  .lg-hide {
    display: none !important;
  }
  .lg-show-block {
    display: block !important;
  }
  .lg-show-inline {
    display: inline !important;
  }
  .lg-show-inline-block {
    display: inline-block !important;
  }
  .lg-show-flex {
    display: flex !important;
  }
  .lg-text-left {
    text-align: left !important;
  }
  .lg-text-center {
    text-align: center !important;
  }
  .lg-text-right {
    text-align: right !important;
  }
}