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

@font-face {
  font-family: dropkicker;
  src: url(../font/dropkicker/Dropkicker-Regular-BF64e5680b0e3f3.ttf);
}
@font-face {
  font-family: poppins;
  src: url(../font/Poppins/Poppins-Regular.ttf);
}
h1, h2, h3, h4 {
  font-family: dropkicker;
}

h1 {
  font-size: 50px;
  letter-spacing: 3px;
  font-weight: 300;
}

h2 {
  font-size: 40px;
  letter-spacing: 2px;
  text-transform: capitalize;
}

h3 {
  font-size: 40px;
  letter-spacing: 2px;
  text-transform: capitalize;
}

h4 {
  font-size: 24px;
  text-transform: capitalize;
  letter-spacing: 2px;
}

h5 {
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: capitalize;
}

p {
  font-size: 16px;
  line-height: 1.7;
}

body {
  font-family: poppins;
}

a {
  text-decoration: none;
}

ul li {
  list-style: none;
}

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

.btn a {
  width: 180px;
  padding: 15px 10px;
  text-transform: uppercase;
  display: block;
  text-align: center;
}

.primary-btn a {
  border: 1px solid #fff;
  background: #b68b53;
  color: #fff;
  transition: all 0.2s linear;
}

.primary-btn:hover a {
  border: 1px solid #ffffff;
  background: #000000;
  color: #fff;
}

.secondary-btn a {
  border: 1px solid #fff;
  color: #fff;
  transition: all 0.2s linear;
}

.secondary-btn:hover a {
  border: 1px solid #ffffff;
  background: #b68b53;
  color: #fff;
}

.tagline {
  padding: 10px 20px;
  border: 1px solid #b68b53;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.tagline img {
  width: 20px;
}

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

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

.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: #f4f4f4 !important;
}
.sticky a {
  color: #000;
}
.sticky .primary-menu {
  border-right: 1px solid #000;
}
.sticky .header-toggle span {
  background-color: #000;
}
.sticky .logo img {
  width: 150px;
  fill: #fff;
}
.sticky .right-top a {
  color: #000;
}

.inner-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/banner/inner-banner.jpg);
  background-position: center;
  background-size: cover;
  padding: 200px 0 100px;
  color: #fff;
  text-align: center;
}/*# sourceMappingURL=global.css.map */

 .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    /* Popup box */
    .popup {
      background: white;
      position: relative;
      padding: 3rem;
      border-radius: 10px;
      max-width: 600px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .pop-head{
      font-size: 2rem;
    }

    /* Close button */
    .close-icon {
      background-color: #f44336;
      color: white;
      border: none;
      padding: 8px 16px;
      margin-top: 15px;
      cursor: pointer;
      border-radius: 5px;
      position: absolute;
      right: -20px;
      top: -30px;
    }