/* Typography Styles */
html,
body {
  scroll-behavior: auto !important;
}

body {
  background-color: $white-color;
  font-family: $body-font;
  font-size: $body-font-size;
  font-weight: $body-font-weight;
  color: $body-color;
  line-height: $body-line-Height;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
@include media-breakpoint-down(md) {
  body {
    font-size: $body-sm-font-size;
  }
}

a,
.btn {
  color: $title-color;
  text-decoration: none;
  outline: none;
  @include default-transition1;

  &:hover {
    color: $theme-color;
  }

  &:active,
  &:focus,
  &:hover,
  &:visited {
    text-decoration: none;
    outline: none;
  }
}

button,
.btn {
  @include default-transition1;
}

iframe {
  border: none;
  width: 100%;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  font-family: $title-font;
  color: $title-color;
  font-weight: 600;
  line-height: 1.5;
}

p {
  margin: 0 0 10px 0;
  color: $body-color;
  line-height: $paragraph-line-Height;
  font-weight: $body-font-weight;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.h1,
h1 {
  font-size: 38px;
}

.h2,
h2 {
  font-size: 32px;
}

.h3,
h3 {
  font-size: 26px;
}

.h4,
h4 {
  font-size: 22px;
}

.h5,
h5 {
  font-size: 20px;
}

.h6,
h6 {
  font-size: 18px;
}

li {
  list-style-type: none;
}

.text-address{
  font-size: 24px;
}
@include media-breakpoint-down(lg) {
  .h2,
  h2 {
    font-size: 26px;
  }
}

@include media-breakpoint-down(md) {
  .h2,
  h2 {
    font-size: 22px;
  }
  .text-address{
    font-size: 20px;
  }
}

.text-shadow-thm {
  text-shadow: 3px 3px 10px $theme-color;
}

.text-shadow-thm2 {
  text-shadow: 3px 3px 10px $theme-color2;
}

.text-shadow-thm3 {
  text-shadow: 3px 3px 10px $theme-color3;
}

.text-shadow-dark {
  text-shadow: 3px 3px 10px $dark-color;
}

.text-shadow-gray {
  text-shadow: 3px 3px 10px $gray-color;
}

.text-shadow {
  text-shadow: 0px 0px 5px #00000070
}