@import url(https://fonts.googleapis.com/css2?family=Sevillana&display=swap);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

@font-face {
  font-family: lexend;
  src: url(../font/Lexend/Lexend-VariableFont_wght.ttf);
}
@font-face {
  font-family: petrona;
  src: url(../font/Petrona/Petrona-VariableFont_wght.ttf);
}
h1 {
  font-size: 60px;
  font-family: petrona;
  text-transform: capitalize;
  line-height: 1.2;
}

h2 {
  font-size: 38px;
  font-family: petrona;
  line-height: 1.2;
}

h3 {
  font-size: 38px;
  font-family: petrona;
  line-height: 1.2;
}

h4 {
  font-size: 28px;
  font-family: petrona;
}

h5 {
  font-size: 24px;
  font-family: petrona;
}

body {
  font-family: lexend;
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

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

.primary-btn {
  background: rgba(255, 255, 255, 0);
  border: none;
}
.primary-btn a {
  display: inline-block;
  padding: 15px 35px;
  background: maroon;
  color: #fff;
  border-radius: 50px;
  font-size: 18px;
  transition: all 0.2s linear;
}

.primary-btn:hover a {
  background: #ffe4e1;
  color: maroon;
}

.secondary-btn {
  background: rgba(255, 255, 255, 0);
  border: none;
}
.secondary-btn a {
  display: inline-block;
  padding: 15px 35px;
  background: #ffe4e1;
  color: maroon;
  border-radius: 50px;
  font-size: 18px;
  transition: all 0.2s linear;
}

.secondary-btn:hover a {
  background: maroon;
  color: #ffe4e1;
}

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

.tagline {
  display: inline-block;
  text-transform: uppercase;
  font-size: 18px;
  color: maroon;
}

.sticky {
  box-shadow: 0 2px 20px 0 rgba(209, 209, 209, 0.6);
  position: fixed !important;
  top: 0;
  width: 100%;
  padding: 0;
  z-index: 999;
  transition: all 0.2s linear;
  background-color: #ffe4e1 !important;
}

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

.dropdown-nav {
  position: relative;
}

.dropdown {
  position: absolute;
  width: 200px;
  background-color: #f7f7f7;
  padding: 15px 20px;
  border-radius: 10px;
  transform: translateY(30px);
  transition: all 0.2s linear;
  visibility: hidden;
  z-index: 9;
}
.dropdown ul {
  display: flex;
  flex-direction: column;
  text-align: start;
  align-items: start;
  gap: 10px;
}
.dropdown li {
  text-align: start;
}

.dropdown-nav:hover .dropdown {
  transform: translateY(0);
  visibility: visible;
}/*# sourceMappingURL=global.css.map */