/* Global Styles */
html {
  font-size: 14px; /* base */
}

:root {
  --fs-14: 1rem;
  --fs-16: 1.14rem;
  --fs-17: 1.21rem;
  --fs-18: 1.29rem;
  --fs-22: 1.57rem;
  --fs-24: 1.71rem;
  --fs-34: 2.43rem;
  --fs-38: 2.53rem;
  --fs-48: 3.43rem;
  --fs-70: 5rem;
}

/* Font-size utility classes */
.fs-14 { font-size: var(--fs-14) !important; }
.fs-16 { font-size: var(--fs-16) !important; }
.fs-17 { font-size: var(--fs-17) !important; }
.fs-18 { font-size: var(--fs-18) !important; }
.fs-22 { font-size: var(--fs-22) !important; }
.fs-24 { font-size: var(--fs-24) !important; }
.fs-34 { font-size: var(--fs-34) !important; }
.fs-38 { font-size: var(--fs-38) !important; }
.fs-48 { font-size: var(--fs-48) !important; }
.fs-70 { font-size: var(--fs-70) !important; }

.ff-jost{
  font-family: "Jost", sans-serif;
}
.ff-josefin{
  font-family: "Josefin Sans", sans-serif;
}
body {
  font-family: 'Jost', sans-serif;
  color: #333;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

.custom-logo{
  height: 70px;
}
/* Navigation */
.navbar {
  background-color: #1a1a1a;
  padding: 0.5rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #ff5e00 !important;
}

.navbar-nav .nav-link {
  color: white !important;
  margin-right: 1.5rem;
  font-weight: 500;
}

.navbar .btn {
  background-color: #c44100;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 9px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.navbar .btn:hover {
  background-color: #e65100;
}


.e-con-full{
  padding: 0 !important;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.section-title p {
  color: #666;
}


/* Load More Button */
.load-more-btn {
  background-color: #ff5e00;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  margin: 2rem auto;
  display: block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.load-more-btn:hover {
  background-color: #e65100;
}


/* Dots for carousels */
.dot {
  height: 10px;
  width: 10px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #ff5e00;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 2rem;
}

.see-all-btn {
    padding-top: .70rem !important;
    padding-bottom: .70rem !important;
}

.wn-card-back .see-all-btn{
	 padding-top: .50rem !important;
    padding-bottom: .50rem !important;
}