:root {
  --header-height: 64px;
  --footer-height: 68px;
  --default-color: #01539c;
  --default-text-color: #6b7280;
  --default-text-color-dark: #111827;
}
html {
  font-size: 62.5%;
  box-sizing: border-box;
}
body {
  line-height: 1.4;
}

* {
  font-family: "Inter", sans-serif;
  box-sizing: inherit;
  /*color: var(--default-text-color);*/
}
.main {
  overflow: hidden;
  background-color: #fff;
}
a {
  color: var(--default-color);
  text-decoration: none !important;
}
input,
select {
  color: var(--default-text-color-dark);
}
.hover-basic:hover {
  opacity: 0.85;
}
.btn-basic {
  border-radius: 6px;
  background-color:rgba(1, 83, 156, 0.87);
  min-height: 38px;
  min-width: 100px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
}
.btn-basic:hover {
  color: #fff;
  background-color: rgba(1, 83, 156, 0.87);
}
.text-color-dark {
  color: var(--default-text-color-dark);
}
.fw-100 {
  width: 100%;
}
.pt-20 {
  padding-top: 20px;
}
.pb-20 {
  padding-bottom: 20px;
}

@media (min-width: 1200px) {
  .mw-1170 {
    max-width: 1170px;
  }
}

.is_bold {
  font-weight: bold;
}
.noHover{
  pointer-events: none;
  opacity: .3;
}
/* Css for IE10+ */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .main--wrapContent {
    /*header height: 64px*/
    /*footer height: 68px*/
    min-height: calc(100vh - 64px - 68px);
  }
}
