@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #2488F6;
    --color-red: #EA3223;
    --color-green: #A3CB38;
    --text-color: #333;
    --text-color-light: #4f4f4f;
    --text-white: #fff;
    --color-blue: #2488F6;
    --color-gray1: #333333;
    --color-gray3: #828282;
    --color-gray4: #BDBDBD;
    --color-gray5: #E0E0E0;
    --color-orange: #F48C06;
    --color-yellow: #fde404;
    --color-white: #fff;
}

*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}

html, body {
  height: 100%;
  font-size: unset;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 22px;
	line-height: 1.6;
}
body > div[ng-view]{
  height: 100%;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
  outline: none;
  border: none;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  margin: 0;
  padding: 0;
}

ul, li {
    list-style-type: none;
}

a {
    text-decoration: none;
    cursor: pointer;
}

h2 {
  font-weight: 800;
  font-size: 30px;
  color: var(--text-color);
  margin-bottom: 20px;
}

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

.error-msg{
    font-size: 12px;
    color: red;
    font-style: italic;
}
.alertify-notifier{
  font-size: 12px;
}
/* footer */
footer {
  background-color: var(--color-gray1);
  color: var(--color-gray5);
  line-height: 1.8;
  width: 100%;
  padding-bottom: 1rem;
  margin-top: auto;
}
footer h1{
  font-size: 1.85rem;
  line-height: 1.4;
  padding: 2rem 0 1rem;
  font-weight: 900;
}

footer p {
  font-size: 18px;
}

.icon-phone{
  background-size: contain;
  background-position: center center;
  background: url(/assets/img/icon-phone.svg) no-repeat;
  width: 30px;
  height: 30px;
}

@media screen and (min-width:970px) {
  .hide-on-desktop {
    display: none;
  }
}

@media screen and (max-width:969px){
  .hide-on-mobile-tablet {
    display: none;
  }
}