:root {
  --theme-body-font: "Sora", sans-serif;
  --theme-heading-font: "Syne", sans-serif;
  --font-color: #000;
  --theme-color-light: #fff;
  --theme-color-danger: #fcf0eb;
}

body {
  font-size: 1rem;
  font-family: var(--theme-body-font);
  color: var(--font-color);
  line-height: 1.5rem;
}

.container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--theme-heading-font);
  font-weight: 700;
  color: var(--font-color);
}

h1 {
  font-size: 3.125rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.563rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.125rem;
}

.btn_custom {
  padding: 17px 35px;
  border-radius: 38px;
  text-transform: capitalize;
  font-family: var(--theme-body-font);
  font-size: 0.938rem;
  font-weight: 700;
  line-height: 1rem;
  display: inline-block !important;
}

.btn_danger_custom {
  border-radius: 38px;
  border: 1px solid #eb3719;
  background-color: #eb3719;
  color: rgb(255, 255, 255);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
.btn_danger_custom:hover {
  border: 1px solid #eb3719;
  background-color: transparent;
  color: #eb3719;
}

.btn_custom_outline_dark {
  border-radius: 38px;
  border: 1px solid #eb3719;
  background-color: transparent;
  color: #eb3719;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
.btn_custom_outline_dark:hover {
  border: 1px solid #eb3719;
  background-color: #eb3719;
  color: rgb(255, 255, 255);
}

a {
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: linear;
}

.py-6 {
  padding-top: 90px;
  padding-bottom: 90px;
}/*# sourceMappingURL=global.css.map */