@use '../settings/fonts' as *;
@use '../settings/baseColors' as *;
@use 'sass:color';

html, html a, body {
  -webkit-font-smoothing: antialiased;
}

a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

body {
  font-family: $font-primary;
  font-size: 14px;
  color: $default-text-color;
  line-height: 1.5;
  letter-spacing: 0.2px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: $font-secondary;
  letter-spacing: 0.5px;
  line-height: 1.5;
  font-weight: 400;

  a {
    font-family: $font-secondary;
  }

  small {
    font-weight: 300;
    color: color.adjust($default-dark, $lightness: 5%);
  }
}

p {
  font-family: $font-primary;
  line-height: 1.9;
}

.lead {
  font-size: 18px;
}

ul {
  margin-bottom: 0;
}

a {
  color: $default-info;

  &:hover,
  &:focus {
    text-decoration: none;
    color: darken($default-info, 10%);
  }

  &:focus {
    outline: none;
  }

  &.text-gray {
    &:hover,
    &:focus,
    &.active {
      color: $default-dark !important;
    }
  }
}

:focus {
  outline: none;
}

hr {
  border-top: 1px solid $border-color;
}


a.btn {
    color:#fff;
  }

a.btn:hover {
  color:#fff;
}

.btn-color {
  color:#fff;
}

.btn-color:hover {
  color:#fff;
}
