* {
  margin: 0px;
  padding: 0px;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
  font-family: "DM Sans", sans-serif;
  src: url(../font/DM_Sans/static/DMSans-Regular.ttf);
}
body {
  font-family: "DM Sans", sans-serif;
}

h1 {
  font-size: 45px;
}

h2 {
  font-size: 45px;
  text-transform: capitalize;
}

h4 {
  font-size: 24px;
}

h3 {
  font-size: 45px;
  text-transform: capitalize;
}

h5 {
  font-size: 24px;
}

p {
  line-height: 1.5;
  font-size: 16px;
  color: #464646;
  letter-spacing: 0.5px;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1340px;
  padding: 0px 20px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

ul li {
  list-style: none;
}

.section-padding {
  padding: 80px 0px;
}

.primary-btn {
  border: none;
}

.primary-btn a {
  padding: 12px 30px;
  font-size: 18px;
  letter-spacing: 1px;
  background-color: #babf57;
  transition: all 0.2s linear;
  color: #000000;
  display: inline-block;
}

.primary-btn a:hover {
  background-color: #326e53;
  color: #fff;
}

.sec-title-border {
  display: flex;
  gap: 30px;
  align-items: center;
}
.sec-title-border .sec-title__tagline {
  position: relative;
  top: -21px;
  margin: 0;
  margin-top: 30px;
  color: #326e53;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.sec-title-border .sec-title__tagline::before {
  content: "";
  position: absolute;
  top: -26px;
  left: 0px;
  width: 16px;
  height: 16px;
  background-color: #326e53;
}
.sec-title-border .sec-title__tagline::after {
  content: "";
  position: absolute;
  top: -20px;
  right: 0px;
  width: 10px;
  height: 10px;
  background-color: #babf57;
}

.sticky {
  box-shadow: 0px 2px 20px 0px rgba(209, 209, 209, 0.6);
  position: fixed !important;
  top: 0;
  width: 100%;
  padding: 0px;
  z-index: 999;
  background-color: #326e53;
}
.sticky nav a {
  color: var(--black);
}

.seo-none {
  display: none;
}

/*--------------------------------------------------------------
# Inner Page Common Style
--------------------------------------------------------------*/
.inner-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../uploads/banners/inner-banner.webp);
  background-position: center;
  background-size: cover;
  padding: 150px 0px 100px;
  color: #fff;
  text-align: center;
}

.breadcrumb {
  margin-top: 15px;
  font-size: 18px;
}
.breadcrumb a {
  color: #fff;
}
.breadcrumb .back-page a {
  color: #babf57;
}/*# sourceMappingURL=global.css.map */