
body {
  margin: 0px;
  padding: 0px;

}

/* nav */

nav  {
  list-style-type: none;
}

/* Custom container class */
.container-custom {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =========== Top Section =========== */
.top-secs {
  background: #c13a3a;
}

.secs-top-left {
  display: flex;
  gap: 15px;
}

.secs-top-right {
  display: flex;
  gap: 15px;
  font-size: small;
  color: white;
}

/* Custom utility classes using CSS variables */
.bg-primary {
  background-color: var(--color-primary);
}

.text-primary {
  color: var(--color-primary);
}

.border-primary {
  border-color: var(--color-primary);
}

.bg-cta {
  background-color: var(--color-cta);
}

.text-cta {
  color: var(--color-cta);
}

/* Add similar classes for your other custom colors */
a:where(:not(.wp-element-button)){
    color:inherit;
    text-decoration: none;
}
.text-white{
    color: #ffffff !important;
}