* {
  font-family: "Montserrat", serif !important;
  font-optical-sizing: auto;
}

.logo {
  max-width: 300px;
}

.form-thankyou {
  background-color: #0b79b4;
}
.cursor-pointer {
  cursor: pointer;
}
.spinner-preloader {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  cursor: wait;
}

.w-fit-content {
  width: fit-content;
}

.spinner-preloader.show {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.spinner-bg {
  position: absolute;
  background-color: #f4f6f9;
  height: 100%;
  width: 100%;
  opacity: 0.7;
}

.fs-7 {
  font-size: 0.85rem;
}
.fs-8 {
  font-size: 0.75rem;
}
.fs-9 {
  font-size: 0.65rem;
}
.fs-10 {
  font-size: 0.55rem;
}

ul.social-media img {
  width: 35px;
  height: 35px;
}

.white-space-nowrap {
  white-space: nowrap;
}

.border-ra-15px {
  border-radius: 15px;
  overflow: hidden;
}

.border-ra-20px {
  border-radius: 20px !important;
  overflow: hidden;
}

.border-ra-30px {
  border-radius: 30px;
  overflow: hidden;
}

#footer {
  padding: 50px 0;
  background-color: #055078;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.footer-main p,
.footer-main a {
  color: #ffffff;
}

.footer-absolute {
  padding: 16px 0;
  background-color: #0b79b4;
  color: #ffffff;
}

.footer-absolute p,
.footer-absolute a {
  color: #ffffff;
  font-weight: 500;
  text-align: center;
}

.footer-main .logo img {
  max-width: 400px;
  margin-bottom: 2rem;
}

.footer-main .footer-col-title {
  position: relative;
  font-family: var(--secondary-font-family);
  font-weight: 900;
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 0;
  padding-bottom: 0;
}

.btn-footer {
  min-width: 200px;
}

.required {
  position: relative;
}
.required::after {
  content: "*";
  color: red;
  position: absolute;
  top: 0;
  right: -10px;
}
:root {
  --bg: #f7f9fc;
  --card: #ffffff;
  --muted: #6b7280;
  --accent: #0ea5a4;
  --radius: 10px;
  --gap: 16px;
  --max-width: 980px;
}
* {
  box-sizing: border-box;
}
body {
 
  background: var(--bg);
  color: #0f172a;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 6px 18px rgba(8, 15, 30, 0.06);
}

form {
  display: grid;
  gap: 18px;
}
section {
  border: 1px solid #eef2f7;
    background: #ffff;
  padding: 14px;
  border-radius: 8px;
}
section h2 {
  font-size: 18px;
  margin: 0 0 6px;
      text-decoration: underline;
          font-weight: 700;
}
.grid {
  display: grid;
  gap: 12px;
}
 .grid{display:grid; gap:12px}
    .cols-2{grid-template-columns:1fr 1fr}
    .cols-3{grid-template-columns:repeat(3,1fr)}
label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  font-weight: 500;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e6edf3;
  border-radius: 8px;
  font-size: 14px;
}
textarea {
  min-height: 80px;
  resize: vertical;
}
.helper {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
.controls {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.radio-group,
.checkbox-group {
  display: flex;
  /* flex-direction: column; */
  gap: 12px;
  flex-wrap: wrap;
}
.small {
  font-size: 13px;
}
.required-star {
  color: #ef4444;
}
.actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.note {
  font-size: 13px;
  color: var(--muted);
}
.hidden {
  display: none;
}
@media (max-width: 900px) {
  .cols-2,
  .cols-3 {
    grid-template-columns: 1fr;
  }
}

/* simple accessible focus styles */
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(14, 165, 164, 0.12);
  border-color: var(--accent);
}

.success {
  background: #ecfdf5;
  color: #065f46;
  padding: 10px 12px;
  border-radius: 8px;
}

label:has([type="radio"]){
  display: flex;
  gap: 6px;
}

.spinner-preloader {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  cursor: wait;
}

.w-fit-content {
  width: fit-content;
}

.spinner-preloader.show {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.spinner-bg {
  position: absolute;
  background-color: #f4f6f9;
  height: 100%;
  width: 100%;
  opacity: 0.7;
}